CrossSectionLocatedGetGeoReferencedCoords Method  | 
 
            If cross section coordinates are valid, returns the geographic (in the landscape's 
            plane) coordinates of all points, otherwise null. Raw data must be present.
            
 
    Namespace: 
   DHI.Mike1D.CrossSectionModule
    Assembly:
   DHI.Mike1D.CrossSectionModule (in DHI.Mike1D.CrossSectionModule.dll) Version: 19.0.0.0 (11.1.1.1111)
Syntaxpublic bool GetGeoReferencedCoords(
	out double[] geoX,
	out double[] geoY
)
Public Function GetGeoReferencedCoords ( 
	<OutAttribute> ByRef geoX As Double(),
	<OutAttribute> ByRef geoY As Double()
) As Boolean
public:
bool GetGeoReferencedCoords(
	[OutAttribute] array<double>^% geoX, 
	[OutAttribute] array<double>^% geoY
)
Parameters
- geoX
 - Type: SystemDouble
the Cartesian X coordinates of all points (NOT the 
            longitudinal coordinates) - geoY
 - Type: SystemDouble
the Cartesian Y coordinates of all points 
Return Value
Type: 
Booleantrue if ok
RemarksThe Euclidean distance between the coordinate points may not
            match the cross sectional coordinate. 
            
See Also