pe_geogtran_load_constants |
Loads any available constants for a geographic transformation.
int pe_geogtran_load_constants (PE_GEOGTRAN geogtran);
geogtran | Geographic transformation object |
Loads into memory any available constants for the geographic coordinate system. You may want to load constants for the grid-based geographic transformation methods, such as NADCON and NTv2. While the memory footprint can be large, the performance is usually improved.
On success, the number of constants. Otherwise, 0.
PE_GEOGTRAN agd2wgs = pe_factory (8139);
if (0 == pe_geogtran_load_constants(agd2wgs))
{
/* Quit. */
}
else
{
/* Run the transformation. */
}