PROJCRSParser
Objective-C
@interface PROJCRSParser : NSObject
Swift
class PROJCRSParser : NSObject
Coordinate Reference System Well-known text parser
-
Convert a CRS object into a proj4 coordinate reference system
Declaration
Parameters
crs
CRS object
Return Value
coordinate reference system
-
Convert a geodetic or geographic crs into a proj4 coordinate reference system
Declaration
Objective-C
+ (projPJ)convertGeo:(CRSGeoCoordinateReferenceSystem *)geo;
Swift
class func convertGeo(_ geo: CRSGeoCoordinateReferenceSystem!) -> projPJ!
Parameters
geo
geodetic or geographic crs
Return Value
coordinate reference system
-
Convert a projected crs into a proj4 coordinate reference system
Declaration
Objective-C
+ (projPJ)convertProjected:(CRSProjectedCoordinateReferenceSystem *)projected;
Swift
class func convertProjected(_ projected: CRSProjectedCoordinateReferenceSystem!) -> projPJ!
Parameters
projected
projected crs
Return Value
coordinate reference system
-
Convert a compound crs into a proj4 coordinate reference system
Declaration
Objective-C
+ (projPJ)convertCompound:(CRSCompoundCoordinateReferenceSystem *)compound;
Swift
class func convertCompound(_ compound: CRSCompoundCoordinateReferenceSystem!) -> projPJ!
Parameters
compound
compound crs
Return Value
coordinate reference system