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