| 135 | } |
| 136 | |
| 137 | static CompoundCRSNNPtr createCompoundCRS() { |
| 138 | PropertyMap properties; |
| 139 | properties.set(Identifier::CODESPACE_KEY, "codespace") |
| 140 | .set(Identifier::CODE_KEY, "code") |
| 141 | .set(IdentifiedObject::NAME_KEY, "horizontal + vertical"); |
| 142 | return CompoundCRS::create( |
| 143 | properties, |
| 144 | std::vector<CRSNNPtr>{createProjectedCRS(), createVerticalCRS()}); |
| 145 | } |
| 146 | |
| 147 | PJ_CONTEXT *m_ctxt = nullptr; |
| 148 |
no test coverage detected