ConvertTargetToSource Method

public bool ConvertTargetToSource(const CoordPoint &targetPoint, CoordPoint &sourcePoint) const;

public bool ConvertTargetToSource(constdouble sourceXYZ[], double targetXYZ[]) const;

 

Description

place holder

 

Example

void DataSource_Put(GeoCalc.DataSource & data)

{

if(data.get_IsLoaded() && data.get_Editable())

{

GeoCalc.AngularUnit au;

au.get_Identifiers().Add(string("GC"), string("A_Super_Great_AngularUnit"));

 

if(! data.PutAngularUnit(au, TRUE))

{

AfxMessageBox("PutAngularUnit failed");

}

}

}