Changeset 2691


Ignore:
Timestamp:
Apr 11, 2006, 1:18:00 PM (19 years ago)
Author:
duncan
Message:

comments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • inundation/fit_interpolate/interpolate.py

    r2690 r2691  
    5050
    5151          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)
    5354              Points may appear multiple times
    5455              (e.g. if vertices have discontinuities)
     
    5758              integers representing indices of all vertices in the mesh.
    5859
    59           mesh_origin: 3-tuples consisting of
     60          mesh_origin: A geo_reference object or 3-tuples consisting of
    6061              UTM zone, easting and northing.
    6162              If specified vertex coordinates are assumed to be
     
    6465          max_vertices_per_cell: Number of vertices in a quad tree cell
    6566          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.
    6670        """
    6771       
     
    7680            vertex_coordinates = vertex_coordinates.get_data_points( \
    7781                absolute = True)
    78             msg = "Use a Geospatial_data object or a meshorigin. Not both."
     82            msg = "Use a Geospatial_data object or a mesh origin. Not both."
    7983            assert mesh_origin == None, msg
    8084           
Note: See TracChangeset for help on using the changeset viewer.