Click or drag to resize

CIPJMakeProjected Method

Create a default projected coordinate system from lat-long ranges.

Namespace:  GeoEngine.Core.GXNetX
Assembly:  geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntax
public void MakeProjected(
	double min_lon,
	double min_lat,
	double max_lon,
	double max_lat
)

public void MakeProjected(
	double min_lon,
	double min_lat,
	double max_lon,
	double max_lat
)

Parameters

min_lon
Type: SystemDouble
Minimum longitude
min_lat
Type: SystemDouble
Minimum latitude
max_lon
Type: SystemDouble
Maximum longitude
max_lat
Type: SystemDouble
Maximum latitude
Remarks
Terminates with invalid or unsupported ranges. If the map crosses the equator, or if map is within 20 degrees of the equator, uses an equatorial mercator projection centered at the central longitude. Otherwise, uses a Lambert Conic Conformal (1SP) projection for the map. Global maps outside of +/- 70 degrees latitude are not supported.
See Also