| 82 | } |
| 83 | |
| 84 | static BoundCRSNNPtr createBoundCRS() { |
| 85 | return BoundCRS::create( |
| 86 | GeographicCRS::EPSG_4807, GeographicCRS::EPSG_4326, |
| 87 | Transformation::create( |
| 88 | PropertyMap(), GeographicCRS::EPSG_4807, |
| 89 | GeographicCRS::EPSG_4326, nullptr, PropertyMap(), |
| 90 | {OperationParameter::create( |
| 91 | PropertyMap().set(IdentifiedObject::NAME_KEY, "foo"))}, |
| 92 | {ParameterValue::create( |
| 93 | Measure(1.0, UnitOfMeasure::SCALE_UNITY))}, |
| 94 | {})); |
| 95 | } |
| 96 | |
| 97 | static ProjectedCRSNNPtr createProjectedCRS() { |
| 98 | PropertyMap propertiesCRS; |
nothing calls this directly
no test coverage detected