pe_projection_from_string |
Creates a map projection object from its string representation
PE_PROJECTION pe_projection_from_string (const char *buffer);
buffer | The string representation of the map projection object |
PE_projection_from_string creates a map projection object from its string representation.
On success, a map projection object; otherwise, a null pointer
PE_PROJECTION proj;
char *proj_metadata = PROJECTION[\"Mercator\"];
proj = pe_projection_from_string(proj_metadata);