| 474 | } |
| 475 | |
| 476 | double WktParserSem::ProjectionScaleFactor() { |
| 477 | double res; |
| 478 | if (isWkt1) { |
| 479 | res = ValueSubDouble(compoundPfx + "PROJCS.PARAMETER", "scale_factor", 1); |
| 480 | } else { |
| 481 | res = ValueSubDouble(compoundPfx + "PROJCRS.CONVERSION.PARAMETER", "Scale factor at natural origin", 1); |
| 482 | } |
| 483 | return res; |
| 484 | } |
| 485 | |
| 486 | double WktParserSem::Pcs_Unit() { |
| 487 | double res; |
no outgoing calls
no test coverage detected