Click or drag to resize
CIPJMakeProjected Method
Create a default projected coordinate system from lat-long ranges.

Available since Oasis montaj version: 5.1.5
License: Available to anyone.  

Namespace: GeoEngine.Core.GXNetX
Assembly: geoengine.core.gxnetx (in geoengine.core.gxnetx.dll)
Notes
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.
Syntax
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
See Also