| 340 | // WktParserSem::WktParserSem(const std::string wktin) : WktParser(wktin) {} |
| 341 | |
| 342 | int WktParserSem::Pcs_Epsg() { |
| 343 | int res; |
| 344 | if (isWkt1) { |
| 345 | res = ValueInt(compoundPfx + "PROJCS.AUTHORITY"); |
| 346 | } else { |
| 347 | res = ValueInt(compoundPfx + "PROJCRS.ID"); |
| 348 | } |
| 349 | return res; |
| 350 | } |
| 351 | |
| 352 | int WktParserSem::Vert_Epsg() { |
| 353 | int res; |
no outgoing calls
no test coverage detected