|
Class STProjectorManager
Extends STProcess
Manages projecting from a source SRS to a desintation SRS.
Either SRSes or Projectors, with settings already set, can be provided
for the projecting.
@author jim
Copyright, SchoonerTurtles LLP, 2009
Static Functions
Returns | Function | Throws |
|
Project(Geometry TheGeometry,STSRS TheSource,STSRS TheDestin) |
Exception |
|
Project(STContentBounded TheContent,STSRS TheSource,
STSRS TheDestin) |
Exception |
|
Project(double[] RefX,double[] RefY,STSRS TheSource,
STSRS TheDestin) |
Exception |
double[] |
ProjectCoordinate(double RefX,double RefY,STSRS TheSource,
STSRS TheDestin) |
Exception |
|
ProjectTo(STContentBounded TheContent,STSRS TheDestin) |
Exception |
Static Functions
Project(Geometry TheGeometry,STSRS TheSource,STSRS TheDestin)
Exception Fast function to project a JTS (OGC SimpleFeature) geometry
Parameters: TheGeometry TheSource TheDestin Returns:
Project(STContentBounded TheContent,STSRS TheSource,
STSRS TheDestin)
Exception Project content from a known reference system to a new reference system
Parameters: TheContent TheSource TheDestin Returns:
Project(double[] RefX,double[] RefY,STSRS TheSource,
STSRS TheDestin)
Exception Fast function to project points from one reference system to another. Bypasses the high level code for projecting including checking the points are within bounds of the projection.
Parameters: RefX RefY TheSource TheDestin Returns:
double[] ProjectCoordinate(double RefX,double RefY,STSRS TheSource,
STSRS TheDestin)
Exception Fast function to project points from one reference system to another. Bypasses the high level code for projecting including checking the points are within bounds of the projection.
Parameters: RefX RefY TheSource TheDestin Returns:
ProjectTo(STContentBounded TheContent,STSRS TheDestin)
Exception Project content to a new reference system
Parameters: TheContent TheDestin Returns:
|