FME Coordinate System Manager class.
This class provides provides the ability to retrieve and define
coordinate system information: projections, datums, ellipsoids, and
units.
|
__init__()
x.__init__(...) initializes x; see help(type(x)) for signature |
|
|
a new object with type S, a subtype of T
|
|
string
|
defineCoordSys(coordSysParms)
Provides a name for a coordinate system defined by the parameters
passed in. |
|
|
None
|
|
string
|
|
None
|
defineDatum(datumName,
datumParams)
Defines a datum based on the parameters passed in. |
|
|
None
|
defineEllipsoid(ellipsoidName,
ellipsoidParams)
Defines a ellipsoid based on the parameters passed in. |
|
|
None
|
defineUnit(unitName,
unitParams)
Defines a unit based on the parameters passed in. |
|
|
string
|
getCoordSysAsOGCDef(coordSysName,
ogcDef)
Gets the OGC definition of the coordinate system whose name is passed
in. |
|
|
list of string s or None
|
getCoordSysList()
Retrieves the list of all supported coordinate system names. |
|
|
string or None
|
getCoordSysNameFromPrjFile(prjFileName)
Returns a coord system name for the coordinate system represented by
the contents of the .prj filename passed in The file is taken to hold
an ESRI Well Known Text (WKT) representation of a coordinate system
definition. |
|
|
list of string s
|
getCoordSysParms(coordSysName)
Returns the parameters associated with the coordinate system name in
the pairwise 'coordSysParms' array. |
|
|
FMEFeature
|
getCoordSysParmsAsFeature(coordSysName)
Retrieves the specified coordinate system and stores its definition
in a returned feature. |
|
|
list of string s
|
getDatumParms(datumName)
Gets the definition of the datum whose name is passed in. |
|
|
list of string s
|
getEllipsoidParms(ellipsoidName)
Gets the definition of the ellipsoid whose name is passed in. |
|
|
list of string s
|
getUnitParms(unitName)
Gets the definition of the unit whose name is passed in. |
|
|
list of string s
|
|
None
|
readDefsFromFile(fileName)
Reads definitions for Coordinate systems, Datums, Ellipsoids, and
Units from the specified file. |
|
|
string
|
reprojectDirectory()
Return the directory where the reprojection subsystem support files
live. |
|
|
None
|
writePrjFile(prjFileName,
coordSysName)
Writes a .prj file containing the ESRI Well Known Text representation
of the coord system name passed in . |
|
|
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__sizeof__ ,
__str__ ,
__subclasshook__
|