pe_projcs_load_constants |
Loads the constants for a projected coordinate system object.
int pe_projcs_load_constants (PE_PROJCS projcs);
projcs | The projected coordinate system object |
Many projections calculate intermediate values that are constants for a particular set of parameters and spheroid. The pe_projcs_load_constants function will place these values into memory. This will improve performance. Constants are not loaded automatically because of memory issues. Deleting the projected coordinate system will remove the constants from memory. You can also call pe_projcs_unload_constants. You can check whether the constants are loaded with pe_projcs_isconstloaded. If you clone a projected coordinate system, the constants are not loaded in the new object.
On success, a nonnegative integer. On failure, zero.
int load = pe_projcs_load_constants(spcs_ca5);