Changeset 980
- Timestamp:
- Mar 1, 2005, 1:10:12 PM (20 years ago)
- Location:
- inundation/ga/storm_surge/pyvolution
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/ga/storm_surge/pyvolution/data_manager.py
r967 r980 20 20 .tsh: ASCII format for storing meshes and associated boundary and region info 21 21 22 23 #Not yet implemented24 22 .nc: Native ferret NetCDF format 25 23 26 27 FIXME: What else 24 A typical dataflow can be described as follows 25 26 Manually created files: 27 ASC, PRJ: Digital elevation models (gridded) 28 TSH: Triangular meshes (e.g. dreated from pmesh) 29 NC Model outputs for use as boundary conditions (e.g from MOST) 30 31 32 AUTOMATICALLY CREATED FILES: 33 34 ASC, PRJ -> DEM -> PTS: Conversion of DEM's to native pts file 35 36 NC -> SWW: Conversion of MOST bundary files to boundary sww 37 38 PTS + TSH -> TSH with elevation: Least squares fit 39 40 TSH -> SWW: Conversion of TSH to sww viewable using Swollen 41 42 TSH + Boundary SWW -> SWW: SImluation using pyvolution 43 28 44 29 45 """ -
inundation/ga/storm_surge/pyvolution/documentation/assumptions.txt
r850 r980 3 3 If one wished to recreate scenarios prior to that date it must be done 4 4 using some relative time (e.g. 0). 5 6 7 All spatial data relates to the WGS84 datum (or GDA94) and has been 8 projected into UTM with false easting of 500000 and false northing of 9 1000000 on the southern hemisphere (0 on the northern). 10 11 It is currently assumed that all computations take place within one UTM zone. 12 13 DEMs, meshes and boundary conditions can have different origins within 14 one UTM zone. However, the computation will use that of the mesh. 15 16 The dataflow is: (See data_manager.py) 17 18 19 20 21
Note: See TracChangeset
for help on using the changeset viewer.