pe_parameter_from_string

Creates a parameter object from its string representation

Usage syntax

PE_PARAMETER pe_parameter_from_string (const char *buffer);

Parameters
buffer The string representation of the parameter object
Description

Creates a parameter object from its string representation.

Returns

On success, a parameter object; otherwise, a null pointer

Examples

PE_PARAMETER par1;

char *par_metadata = “PARAMETER[\"false_easting\",1000000]”;

par1 = pe_parameter_from_string(par_metadata);