Click or drag to resize

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
Syntax
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
)

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