source: misc/tools/n2o/n2o.sh @ 7564

Last change on this file since 7564 was 7564, checked in by rwilson, 14 years ago

Streamlined the script.

  • Property svn:executable set to *
File size: 441 bytes
Line 
1#!/bin/bash
2
3######
4# A simple script to convert a NetCDF 64-bit offset file to a NetCDF
5# classic format file, which is viewable by the Windows viewer.
6#
7# This script is overkill; to convert new file new.sww to old.sww do:
8#     ncdump new.sww > fred.ncd
9#     ncgen -k classic -o old.sww fred.ncd
10#     rm -f fred.ncd
11#
12# If you are not sure what type of SWW file you have, do:
13#     ncdump -k <sww_file>
14######
15
16ncdump $1 | ncgen -o $2
Note: See TracBrowser for help on using the repository browser.