README 895 B

1234567891011121314151617
  1. Performs cartographic transformations and geodetic computations.
  2. The Proj class can convert from geographic (longitude,latitude) to native map
  3. projection (x,y) coordinates and vice versa, or from one map projection
  4. coordinate system directly to another.
  5. The Geod class can perform forward and inverse geodetic, or Great Circle,
  6. computations. The forward computation involves determining latitude, longitude
  7. and back azimuth of a terminus point given the latitude and longitude of an
  8. initial point, plus azimuth and distance. The inverse computation involves
  9. determining the forward and back azimuths and distance given the latitudes and
  10. longitudes of an initial and terminus point.
  11. Input coordinates can be given as python arrays, lists/tuples, scalars or
  12. numpy/Numeric/numarray arrays. Optimized for objects that support the Python
  13. buffer protocol (regular python and numpy array objects).