| 2124 | // --------------------------------------------------------------------------- |
| 2125 | |
| 2126 | static ProjectedCRSNNPtr createProjected() { |
| 2127 | PropertyMap propertiesCRS; |
| 2128 | propertiesCRS.set(Identifier::CODESPACE_KEY, "EPSG") |
| 2129 | .set(Identifier::CODE_KEY, 32631) |
| 2130 | .set(IdentifiedObject::NAME_KEY, "WGS 84 / UTM zone 31N"); |
| 2131 | return ProjectedCRS::create( |
| 2132 | propertiesCRS, GeographicCRS::EPSG_4326, |
| 2133 | Conversion::createUTM(PropertyMap(), 31, true), |
| 2134 | CartesianCS::createEastingNorthing(UnitOfMeasure::METRE)); |
| 2135 | } |
| 2136 | |
| 2137 | // --------------------------------------------------------------------------- |
| 2138 |
no test coverage detected