Changeset 2691
- Timestamp:
- Apr 11, 2006, 1:18:00 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/fit_interpolate/interpolate.py
r2690 r2691 50 50 51 51 vertex_coordinates: List of coordinate pairs [xi, eta] of 52 points constituting a mesh (or an m x 2 Numeric array) 52 points constituting a mesh (or an m x 2 Numeric array or 53 a geospatial object) 53 54 Points may appear multiple times 54 55 (e.g. if vertices have discontinuities) … … 57 58 integers representing indices of all vertices in the mesh. 58 59 59 mesh_origin: 3-tuples consisting of60 mesh_origin: A geo_reference object or 3-tuples consisting of 60 61 UTM zone, easting and northing. 61 62 If specified vertex coordinates are assumed to be … … 64 65 max_vertices_per_cell: Number of vertices in a quad tree cell 65 66 at which the cell is split into 4. 67 68 Note: Don't supply a vertex coords as a geospatial object and 69 a mesh origin, since geospatial has its own mesh origin. 66 70 """ 67 71 … … 76 80 vertex_coordinates = vertex_coordinates.get_data_points( \ 77 81 absolute = True) 78 msg = "Use a Geospatial_data object or a mesh origin. Not both."82 msg = "Use a Geospatial_data object or a mesh origin. Not both." 79 83 assert mesh_origin == None, msg 80 84
Note: See TracChangeset
for help on using the changeset viewer.