Get/Set
The InnerGeodetic property provides access to the GeodeticCoordSys on which this ProjectedCoordSys is based. The Datum property in the InnerGeodetic system is synchronized with the Datum property for this ProjectedCoordSys and the Datum property for the Projection contained in this ProjectedCoordSys. If any one of these is changed, all will be automatically changed.
Private Sub GeoCalcNET_ProjectedCoordSys_InnerGeodetic(ByVal cs As GeoCalcNET.ProjectedCoordSys, ByVal data As GeoCalcNET.DataSourceComponent)
Dim innerCS As GeoCalcNET.GeodeticCoordSys = cs.InnerGeodetic
cs.InnerGeodetic = data.GetGeodeticCoordSys("BMG", "WGS84_coordinate_system")
End Sub
private void GeoCalcNET_ProjectedCoordSys_InnerGeodetic(GeoCalcNET.ProjectedCoordSys cs, GeoCalcNET.DataSourceComponent data)
{
GeoCalcNET.GeodeticCoordSys innerCS = cs.InnerGeodetic;
cs.InnerGeodetic = data.GetGeodeticCoordSys("BMG", "WGS84_coordinate_system");
}