 | 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
Syntaxpublic 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
)
Public Sub MakeProjected (
min_lon As Double,
min_lat As Double,
max_lon As Double,
max_lat As Double
)
Public Sub MakeProjected (
min_lon As Double,
min_lat As Double,
max_lon As Double,
max_lat As Double
)
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
)
member MakeProjected :
min_lon : float *
min_lat : float *
max_lon : float *
max_lat : float -> unit
member MakeProjected :
min_lon : float *
min_lat : float *
max_lon : float *
max_lat : float -> unit
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