get_Parameters Method

WRAPPER_API ParameterCollection &get_Parameters()

WRAPPER_API const ParameterCollection &get_Parameters() const

 

Description

The get_Parameters method returns the ParameterCollection that stores values used to customize this VerticalDatum.  For a description of the specific parameters needed by each type of VerticalDatum, click on the description link on the ClassType Enumeration page.

 

Example

void VerticalDatum_getParameters(GeoCalcPBW::DataSource & data)

{

GeoCalcPBW::VerticalDatum vd(GeoCalcPBW::VerticalDatum::ClassType::NGVD29);

GeoCalcPBW::Envelope * env = data.GetEnvelope(L"BMG", L"STANDARD_ENVELOPE");

vd.set_Envelope(*env);

vd.get_Parameters().set_StringItem(L"path", L"parfiles");

vd.get_Parameters().set_StringItem(L"extension", L".94");

delete env;

}