CartographyProj2Xy Method |
Convert coordinates from projetion coordinates to local grid x-y coordinates
Namespace: DHI.ProjectionsAssembly: DHI.Projections (in DHI.Projections.dll) Version: 16.0.0.0 (11.1.1.1111)
Syntax public void Proj2Xy(
double east,
double north,
out double x,
out double y
)
Public Sub Proj2Xy (
east As Double,
north As Double,
<OutAttribute> ByRef x As Double,
<OutAttribute> ByRef y As Double
)
public:
void Proj2Xy(
double east,
double north,
[OutAttribute] double% x,
[OutAttribute] double% y
)
member Proj2Xy :
east : float *
north : float *
x : float byref *
y : float byref -> unit
Parameters
- east
- Type: SystemDouble
Easting - north
- Type: SystemDouble
Northing - x
- Type: SystemDouble
Local grid x coordinate - y
- Type: SystemDouble
Local grid y coordinate
See Also