| 6144 | // --------------------------------------------------------------------------- |
| 6145 | |
| 6146 | static DerivedGeodeticCRSNNPtr createDerivedGeodeticCRS() { |
| 6147 | |
| 6148 | auto derivingConversion = Conversion::create( |
| 6149 | PropertyMap().set(IdentifiedObject::NAME_KEY, "Some conversion"), |
| 6150 | PropertyMap().set(IdentifiedObject::NAME_KEY, "Some method"), |
| 6151 | std::vector<OperationParameterNNPtr>{}, |
| 6152 | std::vector<ParameterValueNNPtr>{}); |
| 6153 | |
| 6154 | return DerivedGeodeticCRS::create( |
| 6155 | PropertyMap().set(IdentifiedObject::NAME_KEY, "Derived geodetic CRS"), |
| 6156 | GeographicCRS::EPSG_4326, derivingConversion, |
| 6157 | CartesianCS::createGeocentric(UnitOfMeasure::METRE)); |
| 6158 | } |
| 6159 | |
| 6160 | // --------------------------------------------------------------------------- |
| 6161 |
no test coverage detected