|  |  | 
ModestMaps.Geo.LinearProjection(ModestMaps.Geo.IProjection)
WGS84
ModestMaps.Geo.MercatorProjection(ModestMaps.Geo.IProjection)
SphericalMercator
 
 
| class SphericalMercator(ModestMaps.Geo.MercatorProjection)
 |  |  | Spherical mercator projection for most commonly-used web map tile scheme. 
 This projection is identified by the name "spherical mercator" in the
 TileStache config. The simplified projection used here is described in
 greater detail at: http://trac.openlayers.org/wiki/SphericalMercator
 
 |  |  | Method resolution order:SphericalMercatorModestMaps.Geo.MercatorProjectionModestMaps.Geo.IProjection
 Methods defined here:
 
 __init__(self)
 coordinateProj(self, coord)Convert from Coordinate object to a Point object in EPSG:900913
 locationProj(self, location)Convert from Location object to a Point object in EPSG:900913
 projCoordinate(self, point)Convert from Point object in EPSG:900913 to a Coordinate object
 projLocation(self, point)Convert from Point object in EPSG:900913 to a Location object
 Data and other attributes defined here:
 
 srs = '+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lo...0 +units=m +nadgrids=@null +wktext +no_defs +over'
 Methods inherited from ModestMaps.Geo.MercatorProjection:
 
 rawProject(self, point)
 rawUnproject(self, point)
 Methods inherited from ModestMaps.Geo.IProjection:
 
 coordinateLocation(self, coordinate)
 locationCoordinate(self, location)
 project(self, point)
 unproject(self, point)
 |  
 
| class WGS84(ModestMaps.Geo.LinearProjection)
 |  |  | Unprojected projection for the other commonly-used web map tile scheme. 
 This projection is identified by the name "WGS84" in the TileStache config.
 
 |  |  | Method resolution order:WGS84ModestMaps.Geo.LinearProjectionModestMaps.Geo.IProjection
 Methods defined here:
 
 __init__(self)
 coordinateProj(self, coord)Convert from Coordinate object to a Point object in EPSG:4326
 locationProj(self, location)Convert from Location object to a Point object in EPSG:4326
 projCoordinate(self, point)Convert from Point object in EPSG:4326 to a Coordinate object
 projLocation(self, point)Convert from Point object in EPSG:4326 to a Location object
 Data and other attributes defined here:
 
 srs = '+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs'
 Methods inherited from ModestMaps.Geo.LinearProjection:
 
 rawProject(self, point)
 rawUnproject(self, point)
 Methods inherited from ModestMaps.Geo.IProjection:
 
 coordinateLocation(self, coordinate)
 locationCoordinate(self, location)
 project(self, point)
 unproject(self, point)
 |  |