Last change
on this file since 8717 was
8427,
checked in by davies, 13 years ago
|
Adding the trapezoidal channel validation test, and editing the ANUGA manual
|
File size:
441 bytes
|
Rev | Line | |
---|
[7281] | 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 |
---|
[7564] | 9 | # ncgen -k classic -o old.sww fred.ncd |
---|
[7281] | 10 | # rm -f fred.ncd |
---|
[7564] | 11 | # |
---|
| 12 | # If you are not sure what type of SWW file you have, do: |
---|
| 13 | # ncdump -k <sww_file> |
---|
[7281] | 14 | ###### |
---|
| 15 | |
---|
[7564] | 16 | ncdump $1 | ncgen -o $2 |
---|
Note: See
TracBrowser
for help on using the repository browser.