pe_authority_from_string |
|
Creates an authority object from its string representation
PE_AUTHORITY pe_authority_from_string (const char *buffer);
buffer | The string representation of the authority objectc |
This function creates an authority object from its string representation.
On success, an authority object; otherwise, a null pointer
PE_AUTHORITY auth1;
char *authority_metadata = "AUTHORITY[\"EPSG\",4326]";
auth1 = pe_authority_from_string(authority_metadata);