LuciadCPillar C# 2023.0.03
Luciad.Geodesy.CoordinateReferenceProvider Class Reference

Factory to create coordinate references from EPSG and OGC identifiers. More...

Static Public Member Functions

static Luciad.Geodesy.CoordinateReference Create (string identifier)
 Creates the coordinate reference from a given EPSG, WKT (version 1) or OGC identifier. More...
 

Detailed Description

Factory to create coordinate references from EPSG and OGC identifiers.

Warning
C# documentation translation is incomplete. You can find more information in the C++ documentation for luciad::CoordinateReferenceProvider.

Member Function Documentation

◆ Create()

Luciad.Geodesy.CoordinateReference Luciad.Geodesy.CoordinateReferenceProvider.Create ( string  identifier)
inlinestatic

Creates the coordinate reference from a given EPSG, WKT (version 1) or OGC identifier.

A list of supported epsg references can be found here. Example usage: Creation of the WGS-84 coordinate reference system with an EPSG identifier.

Creation of the WGS-84 coordinate reference system with a WKT identifier.

Creation of the Web Mercator coordinate reference system with an OGC identifier.

identifier

an EPSG, WKT (version 1) or OGC identifier, for example "EPSG:3857" or "urn:ogc:def:crs:EPSG::3857".

the coordinate reference.

luciad::ParseException

when the coordinate reference is not supported or cannot be parsed.

Warning
C# documentation translation is incomplete. You can find more information in the C++ documentation for luciad::CoordinateReferenceProvider::create.