Click or drag to resize
CPJCreateRectified Method
Create a rectified PJ from lon,lat,rotation

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

Namespace: GeoEngine.Core.GXNet
Assembly: geoengine.core.gxnet (in geoengine.core.gxnet.dll)
Notes
Given an X,Y coordinate system, the lat/lon origin and angle of the coordinate system, this will create a PJ to convert between X,Y coordinates and Lon,Lat. The Lon/Lat is determined using a Transverse Mercator projection with central meridian through the center of the coordinates on a WGS 84 datum.
Syntax
public static CPJ CreateRectified(
	double d1,
	double d2,
	double d3,
	double d4,
	double d5,
	double d6,
	int i7
)

Parameters

d1
Type: SystemDouble
longitude at (X,Y) origin
d2
Type: SystemDouble
latitude at (X,Y) origin
d3
Type: SystemDouble
(X,Y) origin
d4
Type: SystemDouble
d5
Type: SystemDouble
coordinate Y relative to geographic N (deg azm)
d6
Type: SystemDouble
scale to convert X,Y to m.
i7
Type: SystemInt32
See PJ_RECTConstant

Return Value

Type: CPJ
PJ Object
See Also