 | CIPJSetWMSCoordSys Method |
Set coordinate system from a WMS coordsys string.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic void SetWMSCoordSys(
string coord,
double min_x,
double min_y,
double max_x,
double max_y
)
public void SetWMSCoordSys(
string coord,
double min_x,
double min_y,
double max_x,
double max_y
)
Public Sub SetWMSCoordSys (
coord As String,
min_x As Double,
min_y As Double,
max_x As Double,
max_y As Double
)
Public Sub SetWMSCoordSys (
coord As String,
min_x As Double,
min_y As Double,
max_x As Double,
max_y As Double
)
public:
void SetWMSCoordSys(
String^ coord,
double min_x,
double min_y,
double max_x,
double max_y
)
public:
void SetWMSCoordSys(
String^ coord,
double min_x,
double min_y,
double max_x,
double max_y
)
member SetWMSCoordSys :
coord : string *
min_x : float *
min_y : float *
max_x : float *
max_y : float -> unit
member SetWMSCoordSys :
coord : string *
min_x : float *
min_y : float *
max_x : float *
max_y : float -> unit
Parameters
- coord
- Type: SystemString
WMS style coordinate string - min_x
- Type: SystemDouble
Minimum X bounding box - min_y
- Type: SystemDouble
Minimum Y - max_x
- Type: SystemDouble
Maximum X - max_y
- Type: SystemDouble
Maximum Y
Remarks
WMS coordinate strings supported:
EPSG:code
where "code" is the EPSG code number
"EPSG:4326" is geographic "WGS 84" (see datum.csv)
"EPSG:25834" is projected "ETRS89 / UTM zone 34N"
(see ipj_pcs.csv)
The bounding box for EPSG systems must be defined in the
EPSG coordinate system. If a bounding box is provided,
it will not be changed.
AUTO:wm_id,epsg_units,lon,lat (see OGC documentation)
for "AUTO" coordinates, the "epsg_units" is the units
of the bounding box. This procedure will transform
the supplied bounding box from these units to the
units of the projection. Normally, this is from
long/lat (9102) to metres (9001).
See Also