source: trunk/misc/tools/n2o/n2o.sh @ 8427

Last change on this file since 8427 was 8427, checked in by davies, 13 years ago

Adding the trapezoidal channel validation test, and editing the ANUGA manual

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.