Changeset 980


Ignore:
Timestamp:
Mar 1, 2005, 1:10:12 PM (20 years ago)
Author:
ole
Message:

Comments

Location:
inundation/ga/storm_surge/pyvolution
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • inundation/ga/storm_surge/pyvolution/data_manager.py

    r967 r980  
    2020.tsh: ASCII format for storing meshes and associated boundary and region info
    2121
    22 
    23 #Not yet implemented
    2422.nc: Native ferret NetCDF format
    2523
    26 
    27 FIXME: What else
     24A typical dataflow can be described as follows
     25
     26Manually created files:
     27ASC, PRJ:     Digital elevation models (gridded)
     28TSH:          Triangular meshes (e.g. dreated from pmesh)
     29NC            Model outputs for use as boundary conditions (e.g from MOST)
     30
     31
     32AUTOMATICALLY CREATED FILES:
     33
     34ASC, PRJ  ->  DEM  ->  PTS: Conversion of DEM's to native pts file
     35
     36NC -> SWW: Conversion of MOST bundary files to boundary sww
     37
     38PTS + TSH -> TSH with elevation: Least squares fit
     39
     40TSH -> SWW:  Conversion of TSH to sww viewable using Swollen
     41
     42TSH + Boundary SWW -> SWW: SImluation using pyvolution
     43
    2844
    2945"""
  • inundation/ga/storm_surge/pyvolution/documentation/assumptions.txt

    r850 r980  
    33If one wished to recreate scenarios prior to that date it must be done
    44using some relative time (e.g. 0).
     5
     6
     7All spatial data relates to the WGS84 datum (or GDA94) and has been
     8projected into UTM with false easting of 500000 and false northing of
     91000000 on the southern hemisphere (0 on the northern).
     10
     11It is currently assumed that all computations take place within one UTM zone.
     12
     13DEMs, meshes and boundary conditions can have different origins within
     14one UTM zone. However, the computation will use that of the mesh.
     15
     16The dataflow is: (See data_manager.py)
     17
     18
     19 
     20
     21 
Note: See TracChangeset for help on using the changeset viewer.