@cpp.js/package-proj 1.0.0-beta.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +34 -0
- package/README.md +47 -0
- package/cppjs-package-proj.podspec +14 -0
- package/cppjs.build.js +11 -0
- package/cppjs.config.js +54 -0
- package/dist/prebuilt/Android-arm64-v8a/include/geodesic.h +837 -0
- package/dist/prebuilt/Android-arm64-v8a/include/proj/common.hpp +489 -0
- package/dist/prebuilt/Android-arm64-v8a/include/proj/coordinateoperation.hpp +2129 -0
- package/dist/prebuilt/Android-arm64-v8a/include/proj/coordinates.hpp +115 -0
- package/dist/prebuilt/Android-arm64-v8a/include/proj/coordinatesystem.hpp +892 -0
- package/dist/prebuilt/Android-arm64-v8a/include/proj/crs.hpp +1591 -0
- package/dist/prebuilt/Android-arm64-v8a/include/proj/datum.hpp +860 -0
- package/dist/prebuilt/Android-arm64-v8a/include/proj/io.hpp +1389 -0
- package/dist/prebuilt/Android-arm64-v8a/include/proj/metadata.hpp +470 -0
- package/dist/prebuilt/Android-arm64-v8a/include/proj/nn.hpp +385 -0
- package/dist/prebuilt/Android-arm64-v8a/include/proj/util.hpp +781 -0
- package/dist/prebuilt/Android-arm64-v8a/include/proj.h +2214 -0
- package/dist/prebuilt/Android-arm64-v8a/include/proj_constants.h +836 -0
- package/dist/prebuilt/Android-arm64-v8a/include/proj_experimental.h +52 -0
- package/dist/prebuilt/Android-arm64-v8a/include/proj_symbol_rename.h +428 -0
- package/dist/prebuilt/Android-arm64-v8a/lib/cmake/proj/proj-config-version.cmake +52 -0
- package/dist/prebuilt/Android-arm64-v8a/lib/cmake/proj/proj-config.cmake +79 -0
- package/dist/prebuilt/Android-arm64-v8a/lib/cmake/proj/proj-targets-release.cmake +19 -0
- package/dist/prebuilt/Android-arm64-v8a/lib/cmake/proj/proj-targets.cmake +106 -0
- package/dist/prebuilt/Android-arm64-v8a/lib/cmake/proj/proj4-targets-release.cmake +19 -0
- package/dist/prebuilt/Android-arm64-v8a/lib/cmake/proj/proj4-targets.cmake +106 -0
- package/dist/prebuilt/Android-arm64-v8a/lib/cmake/proj4/proj-targets-release.cmake +19 -0
- package/dist/prebuilt/Android-arm64-v8a/lib/cmake/proj4/proj-targets.cmake +106 -0
- package/dist/prebuilt/Android-arm64-v8a/lib/cmake/proj4/proj4-config-version.cmake +52 -0
- package/dist/prebuilt/Android-arm64-v8a/lib/cmake/proj4/proj4-config.cmake +79 -0
- package/dist/prebuilt/Android-arm64-v8a/lib/cmake/proj4/proj4-targets-release.cmake +19 -0
- package/dist/prebuilt/Android-arm64-v8a/lib/cmake/proj4/proj4-targets.cmake +106 -0
- package/dist/prebuilt/Android-arm64-v8a/lib/libproj.so +0 -0
- package/dist/prebuilt/Android-arm64-v8a/lib/pkgconfig/proj.pc +14 -0
- package/dist/prebuilt/Android-arm64-v8a/share/doc/proj/AUTHORS +42 -0
- package/dist/prebuilt/Android-arm64-v8a/share/doc/proj/COPYING +34 -0
- package/dist/prebuilt/Android-arm64-v8a/share/doc/proj/NEWS +3170 -0
- package/dist/prebuilt/Android-arm64-v8a/share/man/man1/cct.1 +370 -0
- package/dist/prebuilt/Android-arm64-v8a/share/man/man1/cs2cs.1 +537 -0
- package/dist/prebuilt/Android-arm64-v8a/share/man/man1/geod.1 +263 -0
- package/dist/prebuilt/Android-arm64-v8a/share/man/man1/gie.1 +524 -0
- package/dist/prebuilt/Android-arm64-v8a/share/man/man1/proj.1 +326 -0
- package/dist/prebuilt/Android-arm64-v8a/share/man/man1/projinfo.1 +853 -0
- package/dist/prebuilt/Android-arm64-v8a/share/man/man1/projsync.1 +227 -0
- package/dist/prebuilt/Android-arm64-v8a/share/proj/CH +22 -0
- package/dist/prebuilt/Android-arm64-v8a/share/proj/GL27 +23 -0
- package/dist/prebuilt/Android-arm64-v8a/share/proj/ITRF2000 +24 -0
- package/dist/prebuilt/Android-arm64-v8a/share/proj/ITRF2008 +94 -0
- package/dist/prebuilt/Android-arm64-v8a/share/proj/ITRF2014 +55 -0
- package/dist/prebuilt/Android-arm64-v8a/share/proj/deformation_model.schema.json +582 -0
- package/dist/prebuilt/Android-arm64-v8a/share/proj/nad.lst +142 -0
- package/dist/prebuilt/Android-arm64-v8a/share/proj/nad27 +810 -0
- package/dist/prebuilt/Android-arm64-v8a/share/proj/nad83 +745 -0
- package/dist/prebuilt/Android-arm64-v8a/share/proj/other.extra +53 -0
- package/dist/prebuilt/Android-arm64-v8a/share/proj/proj.db +0 -0
- package/dist/prebuilt/Android-arm64-v8a/share/proj/proj.ini +51 -0
- package/dist/prebuilt/Android-arm64-v8a/share/proj/projjson.schema.json +1174 -0
- package/dist/prebuilt/Android-arm64-v8a/share/proj/triangulation.schema.json +214 -0
- package/dist/prebuilt/Android-arm64-v8a/share/proj/world +214 -0
- package/dist/prebuilt/CMakeLists.txt +44 -0
- package/dist/prebuilt/Emscripten-x86_64/include/geodesic.h +837 -0
- package/dist/prebuilt/Emscripten-x86_64/include/proj/common.hpp +489 -0
- package/dist/prebuilt/Emscripten-x86_64/include/proj/coordinateoperation.hpp +2129 -0
- package/dist/prebuilt/Emscripten-x86_64/include/proj/coordinates.hpp +115 -0
- package/dist/prebuilt/Emscripten-x86_64/include/proj/coordinatesystem.hpp +892 -0
- package/dist/prebuilt/Emscripten-x86_64/include/proj/crs.hpp +1591 -0
- package/dist/prebuilt/Emscripten-x86_64/include/proj/datum.hpp +860 -0
- package/dist/prebuilt/Emscripten-x86_64/include/proj/io.hpp +1389 -0
- package/dist/prebuilt/Emscripten-x86_64/include/proj/metadata.hpp +470 -0
- package/dist/prebuilt/Emscripten-x86_64/include/proj/nn.hpp +385 -0
- package/dist/prebuilt/Emscripten-x86_64/include/proj/util.hpp +781 -0
- package/dist/prebuilt/Emscripten-x86_64/include/proj.h +2214 -0
- package/dist/prebuilt/Emscripten-x86_64/include/proj_constants.h +836 -0
- package/dist/prebuilt/Emscripten-x86_64/include/proj_experimental.h +52 -0
- package/dist/prebuilt/Emscripten-x86_64/include/proj_symbol_rename.h +428 -0
- package/dist/prebuilt/Emscripten-x86_64/lib/cmake/proj/proj-config-version.cmake +52 -0
- package/dist/prebuilt/Emscripten-x86_64/lib/cmake/proj/proj-config.cmake +79 -0
- package/dist/prebuilt/Emscripten-x86_64/lib/cmake/proj/proj-targets-release.cmake +19 -0
- package/dist/prebuilt/Emscripten-x86_64/lib/cmake/proj/proj-targets.cmake +107 -0
- package/dist/prebuilt/Emscripten-x86_64/lib/cmake/proj/proj4-targets-release.cmake +19 -0
- package/dist/prebuilt/Emscripten-x86_64/lib/cmake/proj/proj4-targets.cmake +107 -0
- package/dist/prebuilt/Emscripten-x86_64/lib/cmake/proj4/proj-targets-release.cmake +19 -0
- package/dist/prebuilt/Emscripten-x86_64/lib/cmake/proj4/proj-targets.cmake +107 -0
- package/dist/prebuilt/Emscripten-x86_64/lib/cmake/proj4/proj4-config-version.cmake +52 -0
- package/dist/prebuilt/Emscripten-x86_64/lib/cmake/proj4/proj4-config.cmake +79 -0
- package/dist/prebuilt/Emscripten-x86_64/lib/cmake/proj4/proj4-targets-release.cmake +19 -0
- package/dist/prebuilt/Emscripten-x86_64/lib/cmake/proj4/proj4-targets.cmake +107 -0
- package/dist/prebuilt/Emscripten-x86_64/lib/libproj.a +0 -0
- package/dist/prebuilt/Emscripten-x86_64/lib/pkgconfig/proj.pc +14 -0
- package/dist/prebuilt/Emscripten-x86_64/share/doc/proj/AUTHORS +42 -0
- package/dist/prebuilt/Emscripten-x86_64/share/doc/proj/COPYING +34 -0
- package/dist/prebuilt/Emscripten-x86_64/share/doc/proj/NEWS +3170 -0
- package/dist/prebuilt/Emscripten-x86_64/share/man/man1/cct.1 +370 -0
- package/dist/prebuilt/Emscripten-x86_64/share/man/man1/cs2cs.1 +537 -0
- package/dist/prebuilt/Emscripten-x86_64/share/man/man1/geod.1 +263 -0
- package/dist/prebuilt/Emscripten-x86_64/share/man/man1/gie.1 +524 -0
- package/dist/prebuilt/Emscripten-x86_64/share/man/man1/proj.1 +326 -0
- package/dist/prebuilt/Emscripten-x86_64/share/man/man1/projinfo.1 +853 -0
- package/dist/prebuilt/Emscripten-x86_64/share/man/man1/projsync.1 +227 -0
- package/dist/prebuilt/Emscripten-x86_64/share/proj/CH +22 -0
- package/dist/prebuilt/Emscripten-x86_64/share/proj/GL27 +23 -0
- package/dist/prebuilt/Emscripten-x86_64/share/proj/ITRF2000 +24 -0
- package/dist/prebuilt/Emscripten-x86_64/share/proj/ITRF2008 +94 -0
- package/dist/prebuilt/Emscripten-x86_64/share/proj/ITRF2014 +55 -0
- package/dist/prebuilt/Emscripten-x86_64/share/proj/deformation_model.schema.json +582 -0
- package/dist/prebuilt/Emscripten-x86_64/share/proj/nad.lst +142 -0
- package/dist/prebuilt/Emscripten-x86_64/share/proj/nad27 +810 -0
- package/dist/prebuilt/Emscripten-x86_64/share/proj/nad83 +745 -0
- package/dist/prebuilt/Emscripten-x86_64/share/proj/other.extra +53 -0
- package/dist/prebuilt/Emscripten-x86_64/share/proj/proj.db +0 -0
- package/dist/prebuilt/Emscripten-x86_64/share/proj/proj.ini +51 -0
- package/dist/prebuilt/Emscripten-x86_64/share/proj/projjson.schema.json +1174 -0
- package/dist/prebuilt/Emscripten-x86_64/share/proj/triangulation.schema.json +214 -0
- package/dist/prebuilt/Emscripten-x86_64/share/proj/world +214 -0
- package/dist/prebuilt/iOS-iphoneos/include/geodesic.h +837 -0
- package/dist/prebuilt/iOS-iphoneos/include/proj/common.hpp +489 -0
- package/dist/prebuilt/iOS-iphoneos/include/proj/coordinateoperation.hpp +2129 -0
- package/dist/prebuilt/iOS-iphoneos/include/proj/coordinates.hpp +115 -0
- package/dist/prebuilt/iOS-iphoneos/include/proj/coordinatesystem.hpp +892 -0
- package/dist/prebuilt/iOS-iphoneos/include/proj/crs.hpp +1591 -0
- package/dist/prebuilt/iOS-iphoneos/include/proj/datum.hpp +860 -0
- package/dist/prebuilt/iOS-iphoneos/include/proj/io.hpp +1389 -0
- package/dist/prebuilt/iOS-iphoneos/include/proj/metadata.hpp +470 -0
- package/dist/prebuilt/iOS-iphoneos/include/proj/nn.hpp +385 -0
- package/dist/prebuilt/iOS-iphoneos/include/proj/util.hpp +781 -0
- package/dist/prebuilt/iOS-iphoneos/include/proj.h +2214 -0
- package/dist/prebuilt/iOS-iphoneos/include/proj_constants.h +836 -0
- package/dist/prebuilt/iOS-iphoneos/include/proj_experimental.h +52 -0
- package/dist/prebuilt/iOS-iphoneos/include/proj_symbol_rename.h +428 -0
- package/dist/prebuilt/iOS-iphoneos/lib/cmake/proj/proj-config-version.cmake +52 -0
- package/dist/prebuilt/iOS-iphoneos/lib/cmake/proj/proj-config.cmake +79 -0
- package/dist/prebuilt/iOS-iphoneos/lib/cmake/proj/proj-targets-release.cmake +19 -0
- package/dist/prebuilt/iOS-iphoneos/lib/cmake/proj/proj-targets.cmake +108 -0
- package/dist/prebuilt/iOS-iphoneos/lib/cmake/proj/proj4-targets-release.cmake +19 -0
- package/dist/prebuilt/iOS-iphoneos/lib/cmake/proj/proj4-targets.cmake +108 -0
- package/dist/prebuilt/iOS-iphoneos/lib/cmake/proj4/proj-targets-release.cmake +19 -0
- package/dist/prebuilt/iOS-iphoneos/lib/cmake/proj4/proj-targets.cmake +108 -0
- package/dist/prebuilt/iOS-iphoneos/lib/cmake/proj4/proj4-config-version.cmake +52 -0
- package/dist/prebuilt/iOS-iphoneos/lib/cmake/proj4/proj4-config.cmake +79 -0
- package/dist/prebuilt/iOS-iphoneos/lib/cmake/proj4/proj4-targets-release.cmake +19 -0
- package/dist/prebuilt/iOS-iphoneos/lib/cmake/proj4/proj4-targets.cmake +108 -0
- package/dist/prebuilt/iOS-iphoneos/lib/libproj.a +0 -0
- package/dist/prebuilt/iOS-iphoneos/lib/pkgconfig/proj.pc +14 -0
- package/dist/prebuilt/iOS-iphoneos/share/doc/proj/AUTHORS +42 -0
- package/dist/prebuilt/iOS-iphoneos/share/doc/proj/COPYING +34 -0
- package/dist/prebuilt/iOS-iphoneos/share/doc/proj/NEWS +3170 -0
- package/dist/prebuilt/iOS-iphoneos/share/man/man1/cct.1 +370 -0
- package/dist/prebuilt/iOS-iphoneos/share/man/man1/cs2cs.1 +537 -0
- package/dist/prebuilt/iOS-iphoneos/share/man/man1/geod.1 +263 -0
- package/dist/prebuilt/iOS-iphoneos/share/man/man1/gie.1 +524 -0
- package/dist/prebuilt/iOS-iphoneos/share/man/man1/proj.1 +326 -0
- package/dist/prebuilt/iOS-iphoneos/share/man/man1/projinfo.1 +853 -0
- package/dist/prebuilt/iOS-iphoneos/share/man/man1/projsync.1 +227 -0
- package/dist/prebuilt/iOS-iphoneos/share/proj/CH +22 -0
- package/dist/prebuilt/iOS-iphoneos/share/proj/GL27 +23 -0
- package/dist/prebuilt/iOS-iphoneos/share/proj/ITRF2000 +24 -0
- package/dist/prebuilt/iOS-iphoneos/share/proj/ITRF2008 +94 -0
- package/dist/prebuilt/iOS-iphoneos/share/proj/ITRF2014 +55 -0
- package/dist/prebuilt/iOS-iphoneos/share/proj/deformation_model.schema.json +582 -0
- package/dist/prebuilt/iOS-iphoneos/share/proj/nad.lst +142 -0
- package/dist/prebuilt/iOS-iphoneos/share/proj/nad27 +810 -0
- package/dist/prebuilt/iOS-iphoneos/share/proj/nad83 +745 -0
- package/dist/prebuilt/iOS-iphoneos/share/proj/other.extra +53 -0
- package/dist/prebuilt/iOS-iphoneos/share/proj/proj.db +0 -0
- package/dist/prebuilt/iOS-iphoneos/share/proj/proj.ini +51 -0
- package/dist/prebuilt/iOS-iphoneos/share/proj/projjson.schema.json +1174 -0
- package/dist/prebuilt/iOS-iphoneos/share/proj/triangulation.schema.json +214 -0
- package/dist/prebuilt/iOS-iphoneos/share/proj/world +214 -0
- package/dist/prebuilt/iOS-iphonesimulator/include/geodesic.h +837 -0
- package/dist/prebuilt/iOS-iphonesimulator/include/proj/common.hpp +489 -0
- package/dist/prebuilt/iOS-iphonesimulator/include/proj/coordinateoperation.hpp +2129 -0
- package/dist/prebuilt/iOS-iphonesimulator/include/proj/coordinates.hpp +115 -0
- package/dist/prebuilt/iOS-iphonesimulator/include/proj/coordinatesystem.hpp +892 -0
- package/dist/prebuilt/iOS-iphonesimulator/include/proj/crs.hpp +1591 -0
- package/dist/prebuilt/iOS-iphonesimulator/include/proj/datum.hpp +860 -0
- package/dist/prebuilt/iOS-iphonesimulator/include/proj/io.hpp +1389 -0
- package/dist/prebuilt/iOS-iphonesimulator/include/proj/metadata.hpp +470 -0
- package/dist/prebuilt/iOS-iphonesimulator/include/proj/nn.hpp +385 -0
- package/dist/prebuilt/iOS-iphonesimulator/include/proj/util.hpp +781 -0
- package/dist/prebuilt/iOS-iphonesimulator/include/proj.h +2214 -0
- package/dist/prebuilt/iOS-iphonesimulator/include/proj_constants.h +836 -0
- package/dist/prebuilt/iOS-iphonesimulator/include/proj_experimental.h +52 -0
- package/dist/prebuilt/iOS-iphonesimulator/include/proj_symbol_rename.h +428 -0
- package/dist/prebuilt/iOS-iphonesimulator/lib/cmake/proj/proj-config-version.cmake +52 -0
- package/dist/prebuilt/iOS-iphonesimulator/lib/cmake/proj/proj-config.cmake +79 -0
- package/dist/prebuilt/iOS-iphonesimulator/lib/cmake/proj/proj-targets-release.cmake +19 -0
- package/dist/prebuilt/iOS-iphonesimulator/lib/cmake/proj/proj-targets.cmake +108 -0
- package/dist/prebuilt/iOS-iphonesimulator/lib/cmake/proj/proj4-targets-release.cmake +19 -0
- package/dist/prebuilt/iOS-iphonesimulator/lib/cmake/proj/proj4-targets.cmake +108 -0
- package/dist/prebuilt/iOS-iphonesimulator/lib/cmake/proj4/proj-targets-release.cmake +19 -0
- package/dist/prebuilt/iOS-iphonesimulator/lib/cmake/proj4/proj-targets.cmake +108 -0
- package/dist/prebuilt/iOS-iphonesimulator/lib/cmake/proj4/proj4-config-version.cmake +52 -0
- package/dist/prebuilt/iOS-iphonesimulator/lib/cmake/proj4/proj4-config.cmake +79 -0
- package/dist/prebuilt/iOS-iphonesimulator/lib/cmake/proj4/proj4-targets-release.cmake +19 -0
- package/dist/prebuilt/iOS-iphonesimulator/lib/cmake/proj4/proj4-targets.cmake +108 -0
- package/dist/prebuilt/iOS-iphonesimulator/lib/libproj.a +0 -0
- package/dist/prebuilt/iOS-iphonesimulator/lib/pkgconfig/proj.pc +14 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/doc/proj/AUTHORS +42 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/doc/proj/COPYING +34 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/doc/proj/NEWS +3170 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/man/man1/cct.1 +370 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/man/man1/cs2cs.1 +537 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/man/man1/geod.1 +263 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/man/man1/gie.1 +524 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/man/man1/proj.1 +326 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/man/man1/projinfo.1 +853 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/man/man1/projsync.1 +227 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/proj/CH +22 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/proj/GL27 +23 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/proj/ITRF2000 +24 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/proj/ITRF2008 +94 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/proj/ITRF2014 +55 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/proj/deformation_model.schema.json +582 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/proj/nad.lst +142 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/proj/nad27 +810 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/proj/nad83 +745 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/proj/other.extra +53 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/proj/proj.db +0 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/proj/proj.ini +51 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/proj/projjson.schema.json +1174 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/proj/triangulation.schema.json +214 -0
- package/dist/prebuilt/iOS-iphonesimulator/share/proj/world +214 -0
- package/dist/prebuilt/proj.xcframework/Info.plist +50 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e/Headers/geodesic.h +837 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e/Headers/proj/common.hpp +489 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e/Headers/proj/coordinateoperation.hpp +2129 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e/Headers/proj/coordinates.hpp +115 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e/Headers/proj/coordinatesystem.hpp +892 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e/Headers/proj/crs.hpp +1591 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e/Headers/proj/datum.hpp +860 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e/Headers/proj/io.hpp +1389 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e/Headers/proj/metadata.hpp +470 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e/Headers/proj/nn.hpp +385 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e/Headers/proj/util.hpp +781 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e/Headers/proj.h +2214 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e/Headers/proj_constants.h +836 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e/Headers/proj_experimental.h +52 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e/Headers/proj_symbol_rename.h +428 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e/libproj.a +0 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/geodesic.h +837 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/proj/common.hpp +489 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/proj/coordinateoperation.hpp +2129 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/proj/coordinates.hpp +115 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/proj/coordinatesystem.hpp +892 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/proj/crs.hpp +1591 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/proj/datum.hpp +860 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/proj/io.hpp +1389 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/proj/metadata.hpp +470 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/proj/nn.hpp +385 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/proj/util.hpp +781 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/proj.h +2214 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/proj_constants.h +836 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/proj_experimental.h +52 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/proj_symbol_rename.h +428 -0
- package/dist/prebuilt/proj.xcframework/ios-arm64_arm64e_x86_64-simulator/libproj.a +0 -0
- package/package.json +32 -0
|
@@ -0,0 +1,537 @@
|
|
|
1
|
+
.\" Man page generated from reStructuredText.
|
|
2
|
+
.
|
|
3
|
+
.
|
|
4
|
+
.nr rst2man-indent-level 0
|
|
5
|
+
.
|
|
6
|
+
.de1 rstReportMargin
|
|
7
|
+
\\$1 \\n[an-margin]
|
|
8
|
+
level \\n[rst2man-indent-level]
|
|
9
|
+
level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
|
|
10
|
+
-
|
|
11
|
+
\\n[rst2man-indent0]
|
|
12
|
+
\\n[rst2man-indent1]
|
|
13
|
+
\\n[rst2man-indent2]
|
|
14
|
+
..
|
|
15
|
+
.de1 INDENT
|
|
16
|
+
.\" .rstReportMargin pre:
|
|
17
|
+
. RS \\$1
|
|
18
|
+
. nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin]
|
|
19
|
+
. nr rst2man-indent-level +1
|
|
20
|
+
.\" .rstReportMargin post:
|
|
21
|
+
..
|
|
22
|
+
.de UNINDENT
|
|
23
|
+
. RE
|
|
24
|
+
.\" indent \\n[an-margin]
|
|
25
|
+
.\" old: \\n[rst2man-indent\\n[rst2man-indent-level]]
|
|
26
|
+
.nr rst2man-indent-level -1
|
|
27
|
+
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
|
|
28
|
+
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
|
|
29
|
+
..
|
|
30
|
+
.TH "CS2CS" "1" "01 Jun 2024" "9.4.1" "PROJ"
|
|
31
|
+
.SH NAME
|
|
32
|
+
cs2cs \- Cartographic coordinate system filter
|
|
33
|
+
.SH SYNOPSIS
|
|
34
|
+
.INDENT 0.0
|
|
35
|
+
.INDENT 3.5
|
|
36
|
+
.nf
|
|
37
|
+
\fBcs2cs\fP [\fB\-eEfIlrstvwW\fP [args]]
|
|
38
|
+
.in +2
|
|
39
|
+
[[\-\-area <name_or_code>] | [\-\-bbox <west_long,south_lat,east_long,north_lat>]]
|
|
40
|
+
[\-\-authority <name>] [\-\-3d]
|
|
41
|
+
[\-\-accuracy <accuracy>] [\-\-only\-best[=yes|=no]] [\-\-no\-ballpark]
|
|
42
|
+
[\-\-s_epoch {epoch}] [\-\-t_epoch {epoch}]
|
|
43
|
+
([\fI+opt[=arg]\fP ...] [+to \fI+opt[=arg]\fP ...] | {source_crs} {target_crs})
|
|
44
|
+
file ...
|
|
45
|
+
.in -2
|
|
46
|
+
.fi
|
|
47
|
+
.sp
|
|
48
|
+
.sp
|
|
49
|
+
where {source_crs} or {target_crs} is one of the possibilities accepted
|
|
50
|
+
by \fI\%proj_create()\fP, provided it expresses a CRS
|
|
51
|
+
.INDENT 0.0
|
|
52
|
+
.IP \(bu 2
|
|
53
|
+
a proj\-string,
|
|
54
|
+
.IP \(bu 2
|
|
55
|
+
a WKT string,
|
|
56
|
+
.IP \(bu 2
|
|
57
|
+
an object code (like "EPSG:4326", "urn:ogc:def:crs:EPSG::4326",
|
|
58
|
+
"urn:ogc:def:coordinateOperation:EPSG::1671"),
|
|
59
|
+
.IP \(bu 2
|
|
60
|
+
an Object name. e.g "WGS 84", "WGS 84 / UTM zone 31N". In that case as
|
|
61
|
+
uniqueness is not guaranteed, heuristics are applied to determine the appropriate best match.
|
|
62
|
+
.IP \(bu 2
|
|
63
|
+
a CRS name and a coordinate epoch, separated with \(aq@\(aq. For example "\fI\%ITRF2014@2025.0\fP". (\fIadded in 9.2\fP)
|
|
64
|
+
.IP \(bu 2
|
|
65
|
+
a OGC URN combining references for compound coordinate reference systems
|
|
66
|
+
(e.g "\fI\%urn:ogc:def:crs,crs:EPSG::2393,crs:EPSG::5717\fP" or custom abbreviated
|
|
67
|
+
syntax "EPSG:2393+5717"),
|
|
68
|
+
.IP \(bu 2
|
|
69
|
+
a OGC URN combining references for references for projected or derived CRSs
|
|
70
|
+
e.g. for Projected 3D CRS "UTM zone 31N / WGS 84 (3D)":
|
|
71
|
+
"\fI\%urn:ogc:def:crs,crs:EPSG::4979,cs:PROJ::ENh,coordinateOperation:EPSG::16031\fP"
|
|
72
|
+
(\fIadded in 6.2\fP)
|
|
73
|
+
.IP \(bu 2
|
|
74
|
+
a OGC URN combining references for concatenated operations
|
|
75
|
+
(e.g. "\fI\%urn:ogc:def:coordinateOperation,coordinateOperation:EPSG::3895,coordinateOperation:EPSG::1618\fP")
|
|
76
|
+
.IP \(bu 2
|
|
77
|
+
a PROJJSON string. The jsonschema is at \fI\%https://proj.org/schemas/v0.4/projjson.schema.json\fP (\fIadded in 6.2\fP)
|
|
78
|
+
.IP \(bu 2
|
|
79
|
+
a compound CRS made from two object names separated with " + ". e.g. "WGS 84 + EGM96 height" (\fIadded in 7.1\fP)
|
|
80
|
+
.UNINDENT
|
|
81
|
+
.sp
|
|
82
|
+
New in version 6.0.0.
|
|
83
|
+
|
|
84
|
+
.sp
|
|
85
|
+
\fBNOTE:\fP
|
|
86
|
+
.INDENT 0.0
|
|
87
|
+
.INDENT 3.5
|
|
88
|
+
before 7.0.1, it was needed to add +to between {source_crs} and {target_crs}
|
|
89
|
+
when adding a filename
|
|
90
|
+
.UNINDENT
|
|
91
|
+
.UNINDENT
|
|
92
|
+
.UNINDENT
|
|
93
|
+
.UNINDENT
|
|
94
|
+
.SH DESCRIPTION
|
|
95
|
+
.sp
|
|
96
|
+
\fI\%cs2cs\fP performs transformation between the source and destination
|
|
97
|
+
cartographic coordinate reference system on a set of input points. The coordinate
|
|
98
|
+
reference system transformation can include translation between projected and
|
|
99
|
+
geographic coordinates as well as the application of datum shifts.
|
|
100
|
+
.sp
|
|
101
|
+
The following control parameters can appear in any order:
|
|
102
|
+
.INDENT 0.0
|
|
103
|
+
.TP
|
|
104
|
+
.B \-I
|
|
105
|
+
Method to specify inverse translation, convert from \fI+to\fP coordinate system to
|
|
106
|
+
the primary coordinate system defined.
|
|
107
|
+
.UNINDENT
|
|
108
|
+
.INDENT 0.0
|
|
109
|
+
.TP
|
|
110
|
+
.B \-t<a>
|
|
111
|
+
Where \fIa\fP specifies a character employed as the first character to denote a control
|
|
112
|
+
line to be passed through without processing. This option applicable to
|
|
113
|
+
ASCII input only. (# is the default value).
|
|
114
|
+
.UNINDENT
|
|
115
|
+
.INDENT 0.0
|
|
116
|
+
.TP
|
|
117
|
+
.B \-d <n>
|
|
118
|
+
New in version 5.2.0.
|
|
119
|
+
|
|
120
|
+
.sp
|
|
121
|
+
Specify the number of decimals to round to in the output.
|
|
122
|
+
.UNINDENT
|
|
123
|
+
.INDENT 0.0
|
|
124
|
+
.TP
|
|
125
|
+
.B \-e <string>
|
|
126
|
+
Where \fIstring\fP is an arbitrary string to be output if an error is detected during
|
|
127
|
+
data transformations. The default value is a three character string: \fB*\et*\fP\&.
|
|
128
|
+
.UNINDENT
|
|
129
|
+
.INDENT 0.0
|
|
130
|
+
.TP
|
|
131
|
+
.B \-E
|
|
132
|
+
Causes the input coordinates to be copied to the output line prior to
|
|
133
|
+
printing the converted values.
|
|
134
|
+
.UNINDENT
|
|
135
|
+
.INDENT 0.0
|
|
136
|
+
.TP
|
|
137
|
+
.B \-l<[=id]>
|
|
138
|
+
List projection identifiers that can be selected with \fI+proj\fP\&. \fBcs2cs \-l=id\fP
|
|
139
|
+
gives expanded description of projection \fIid\fP, e.g. \fBcs2cs \-l=merc\fP\&.
|
|
140
|
+
.UNINDENT
|
|
141
|
+
.INDENT 0.0
|
|
142
|
+
.TP
|
|
143
|
+
.B \-lp
|
|
144
|
+
List of all projection id that can be used with the \fI+proj\fP parameter.
|
|
145
|
+
Equivalent to \fBcs2cs \-l\fP\&.
|
|
146
|
+
.UNINDENT
|
|
147
|
+
.INDENT 0.0
|
|
148
|
+
.TP
|
|
149
|
+
.B \-lP
|
|
150
|
+
Expanded description of all projections that can be used with the \fI+proj\fP
|
|
151
|
+
parameter.
|
|
152
|
+
.UNINDENT
|
|
153
|
+
.INDENT 0.0
|
|
154
|
+
.TP
|
|
155
|
+
.B \-le
|
|
156
|
+
List of all ellipsoids that can be selected with the \fI+ellps\fP parameters.
|
|
157
|
+
.UNINDENT
|
|
158
|
+
.INDENT 0.0
|
|
159
|
+
.TP
|
|
160
|
+
.B \-lm
|
|
161
|
+
List of hard\-coded prime meridians that can be selected with the \fI+pm\fP
|
|
162
|
+
parameter. Note that this list is no longer updated,
|
|
163
|
+
and some values may conflict with other sources.
|
|
164
|
+
.UNINDENT
|
|
165
|
+
.INDENT 0.0
|
|
166
|
+
.TP
|
|
167
|
+
.B \-lu
|
|
168
|
+
List of all distance units that can be selected with the \fI+units\fP parameter.
|
|
169
|
+
.UNINDENT
|
|
170
|
+
.INDENT 0.0
|
|
171
|
+
.TP
|
|
172
|
+
.B \-r
|
|
173
|
+
This options reverses the order of the first two expected
|
|
174
|
+
inputs from that specified by the CRS to the opposite
|
|
175
|
+
order. The third coordinate, typically height, remains
|
|
176
|
+
third.
|
|
177
|
+
.UNINDENT
|
|
178
|
+
.INDENT 0.0
|
|
179
|
+
.TP
|
|
180
|
+
.B \-s
|
|
181
|
+
This options reverses the order of the first two expected
|
|
182
|
+
outputs from that specified by the CRS to the opposite
|
|
183
|
+
order. The third coordinate, typically height, remains
|
|
184
|
+
third.
|
|
185
|
+
.UNINDENT
|
|
186
|
+
.INDENT 0.0
|
|
187
|
+
.TP
|
|
188
|
+
.B \-f <format>
|
|
189
|
+
Where \fIformat\fP is a printf format string to control the form of the output values.
|
|
190
|
+
For inverse projections, the output will be in degrees when this option is
|
|
191
|
+
employed. If a format is specified for inverse projection the output data
|
|
192
|
+
will be in decimal degrees. The default format is \fB"%.2f"\fP for forward
|
|
193
|
+
projection and DMS for inverse.
|
|
194
|
+
.UNINDENT
|
|
195
|
+
.INDENT 0.0
|
|
196
|
+
.TP
|
|
197
|
+
.B \-w<n>
|
|
198
|
+
Where \fIn\fP is the number of significant fractional digits to employ for seconds
|
|
199
|
+
output (when the option is not specified, \fB\-w3\fP is assumed).
|
|
200
|
+
.UNINDENT
|
|
201
|
+
.INDENT 0.0
|
|
202
|
+
.TP
|
|
203
|
+
.B \-W<n>
|
|
204
|
+
Where \fIn\fP is the number of significant fractional digits to employ for seconds
|
|
205
|
+
output. When \fB\-W\fP is employed the fields will be constant width
|
|
206
|
+
with leading zeroes. Valid range: \-W0 through \-W8.
|
|
207
|
+
.UNINDENT
|
|
208
|
+
.INDENT 0.0
|
|
209
|
+
.TP
|
|
210
|
+
.B \-v
|
|
211
|
+
Causes a listing of cartographic control parameters tested for and used by
|
|
212
|
+
the program to be printed prior to input data.
|
|
213
|
+
.UNINDENT
|
|
214
|
+
.INDENT 0.0
|
|
215
|
+
.TP
|
|
216
|
+
.B \-\-area <name_or_code>
|
|
217
|
+
New in version 8.0.0.
|
|
218
|
+
|
|
219
|
+
.sp
|
|
220
|
+
Specify an area of interest to restrict the results when researching
|
|
221
|
+
coordinate operations between 2 CRS. The area of interest can be specified either
|
|
222
|
+
as a name (e.g "Denmark \- onshore") or a AUTHORITY:CODE (EPSG:3237)
|
|
223
|
+
.sp
|
|
224
|
+
This option is mutually exclusive with \fI\%\-\-bbox\fP\&.
|
|
225
|
+
.UNINDENT
|
|
226
|
+
.INDENT 0.0
|
|
227
|
+
.TP
|
|
228
|
+
.B \-\-bbox <west_long,south_lat,east_long,north_lat>
|
|
229
|
+
New in version 8.0.0.
|
|
230
|
+
|
|
231
|
+
.sp
|
|
232
|
+
Specify an area of interest to restrict the results when researching
|
|
233
|
+
coordinate operations between 2 CRS. The area of interest is specified as a
|
|
234
|
+
bounding box with geographic coordinates, expressed in degrees in a
|
|
235
|
+
unspecified geographic CRS.
|
|
236
|
+
\fIwest_long\fP and \fIeast_long\fP should be in the [\-180,180] range, and
|
|
237
|
+
\fIsouth_lat\fP and \fInorth_lat\fP in the [\-90,90]. \fIwest_long\fP is generally lower than
|
|
238
|
+
\fIeast_long\fP, except in the case where the area of interest crosses the antimeridian.
|
|
239
|
+
.UNINDENT
|
|
240
|
+
.INDENT 0.0
|
|
241
|
+
.TP
|
|
242
|
+
.B \-\-only\-best[=yes|=no]
|
|
243
|
+
New in version 9.2.0.
|
|
244
|
+
|
|
245
|
+
.sp
|
|
246
|
+
Force \fIcs2cs\fP to only use the best transformation known by PROJ.
|
|
247
|
+
\fIcs2cs\fP will return an error if a grid needed for the best transformation is missing.
|
|
248
|
+
.sp
|
|
249
|
+
Best transformation should be understood as the most accurate transformation
|
|
250
|
+
available among all relevant for the point to transform, and if all known
|
|
251
|
+
grids required to perform such transformation were accessible (either locally
|
|
252
|
+
or through network).
|
|
253
|
+
.sp
|
|
254
|
+
Note that the default value for this option can be also set with the
|
|
255
|
+
\fBPROJ_ONLY_BEST_DEFAULT\fP environment variable, or with the
|
|
256
|
+
\fBonly_best_default\fP setting of \fI\%proj.ini\fP (\fI\%\-\-only\-best\fP
|
|
257
|
+
when specified overrides such default value).
|
|
258
|
+
.UNINDENT
|
|
259
|
+
.INDENT 0.0
|
|
260
|
+
.TP
|
|
261
|
+
.B \-\-no\-ballpark
|
|
262
|
+
New in version 8.0.0.
|
|
263
|
+
|
|
264
|
+
.sp
|
|
265
|
+
Disallow any coordinate operation that is, or contains, a
|
|
266
|
+
\fI\%Ballpark transformation\fP
|
|
267
|
+
.UNINDENT
|
|
268
|
+
.INDENT 0.0
|
|
269
|
+
.TP
|
|
270
|
+
.B \-\-accuracy <accuracy>
|
|
271
|
+
New in version 8.0.0.
|
|
272
|
+
|
|
273
|
+
.sp
|
|
274
|
+
Sets the minimum desired accuracy for candidate coordinate operations.
|
|
275
|
+
.UNINDENT
|
|
276
|
+
.INDENT 0.0
|
|
277
|
+
.TP
|
|
278
|
+
.B \-\-authority <name>
|
|
279
|
+
New in version 8.0.0.
|
|
280
|
+
|
|
281
|
+
.sp
|
|
282
|
+
This option can be used to restrict the authority of coordinate operations
|
|
283
|
+
looked up in the database. When not specified, coordinate
|
|
284
|
+
operations from any authority will be searched, with the restrictions set
|
|
285
|
+
in the \fBauthority_to_authority_preference\fP database table related to the authority
|
|
286
|
+
of the source/target CRS themselves.
|
|
287
|
+
If authority is set to \fBany\fP, then coordinate operations from any authority will be searched
|
|
288
|
+
If authority is a non\-empty string different of \fBany\fP, then coordinate operations
|
|
289
|
+
will be searched only in that authority namespace (e.g \fBEPSG\fP).
|
|
290
|
+
.sp
|
|
291
|
+
This option is mutually exclusive with \fI\%\-\-bbox\fP\&.
|
|
292
|
+
.UNINDENT
|
|
293
|
+
.INDENT 0.0
|
|
294
|
+
.TP
|
|
295
|
+
.B \-\-3d
|
|
296
|
+
New in version 9.1.
|
|
297
|
+
|
|
298
|
+
.sp
|
|
299
|
+
"Promote" 2D CRS(s) to their 3D version, where the vertical axis is the
|
|
300
|
+
ellipsoidal height in metres, using the ellipsoid of the base geodetic CRS.
|
|
301
|
+
Depending on PROJ versions and the exact nature of the CRS involved,
|
|
302
|
+
especially before PROJ 9.1, a mix of 2D and 3D CRS could lead to 2D or 3D
|
|
303
|
+
transformations. Starting with PROJ 9.1, both CRS need to be 3D for vertical
|
|
304
|
+
transformation to possibly happen.
|
|
305
|
+
.UNINDENT
|
|
306
|
+
.INDENT 0.0
|
|
307
|
+
.TP
|
|
308
|
+
.B \-\-s_epoch
|
|
309
|
+
New in version 9.4.
|
|
310
|
+
|
|
311
|
+
.sp
|
|
312
|
+
Epoch of coordinates in the source CRS, as decimal year.
|
|
313
|
+
Only applies to a dynamic CRS.
|
|
314
|
+
.UNINDENT
|
|
315
|
+
.INDENT 0.0
|
|
316
|
+
.TP
|
|
317
|
+
.B \-\-t_epoch
|
|
318
|
+
New in version 9.4.
|
|
319
|
+
|
|
320
|
+
.sp
|
|
321
|
+
Epoch of coordinates in the target CRS, as decimal year.
|
|
322
|
+
Only applies to a dynamic CRS.
|
|
323
|
+
.UNINDENT
|
|
324
|
+
.sp
|
|
325
|
+
The \fI+opt\fP run\-line arguments are associated with cartographic
|
|
326
|
+
parameters.
|
|
327
|
+
.sp
|
|
328
|
+
The \fI\%cs2cs\fP program requires two coordinate reference system (CRS) definitions. The first (or
|
|
329
|
+
primary is defined based on all projection parameters not appearing after the
|
|
330
|
+
\fI+to\fP argument. All projection parameters appearing after the \fI+to\fP argument
|
|
331
|
+
are considered the definition of the second CRS. If there is no
|
|
332
|
+
second CRS defined, a geographic CRS based on the
|
|
333
|
+
datum and ellipsoid of the source CRS is assumed. Note that the
|
|
334
|
+
source and destination CRS can both of same or different nature (geographic,
|
|
335
|
+
projected, compound CRS), or one of each and may have the same or different datums.
|
|
336
|
+
.sp
|
|
337
|
+
When using a WKT definition or a AUTHORITY:CODE, the axis order of the CRS will
|
|
338
|
+
be enforced. So for example if using EPSG:4326, the first value expected (or
|
|
339
|
+
returned) will be a latitude.
|
|
340
|
+
.sp
|
|
341
|
+
Internally, \fI\%cs2cs\fP uses the \fI\%proj_create_crs_to_crs()\fP function
|
|
342
|
+
to compute the appropriate coordinate operation, so implementation details of
|
|
343
|
+
this function directly impact the results returned by the program.
|
|
344
|
+
.sp
|
|
345
|
+
The environment parameter \fI\%PROJ_DATA\fP establishes the
|
|
346
|
+
directory for resource files (database, datum shift grids, etc.)
|
|
347
|
+
.sp
|
|
348
|
+
One or more files (processed in left to right order) specify the source of
|
|
349
|
+
data to be transformed. A \fB\-\fP will specify the location of processing standard
|
|
350
|
+
input. If no files are specified, the input is assumed to be from stdin.
|
|
351
|
+
For input data the two data values must be in the first two white space
|
|
352
|
+
separated fields and when both input and output are ASCII all trailing portions
|
|
353
|
+
of the input line are appended to the output line.
|
|
354
|
+
.sp
|
|
355
|
+
Input geographic data (longitude and latitude) must be in DMS or decimal
|
|
356
|
+
degrees format and input cartesian data must be in units consistent with the
|
|
357
|
+
ellipsoid major axis or sphere radius units. Output geographic coordinates will
|
|
358
|
+
normally be in DMS format (use \fB\-f %.12f\fP for decimal degrees with 12 decimal
|
|
359
|
+
places), while projected (cartesian) coordinates will be in linear
|
|
360
|
+
(meter, feet) units.
|
|
361
|
+
.SS Use of remote grids
|
|
362
|
+
.sp
|
|
363
|
+
New in version 7.0.0.
|
|
364
|
+
|
|
365
|
+
.sp
|
|
366
|
+
If the \fI\%PROJ_NETWORK\fP environment variable is set to \fBON\fP,
|
|
367
|
+
\fI\%cs2cs\fP will attempt to use remote grids stored on CDN (Content
|
|
368
|
+
Delivery Network) storage, when they are not available locally.
|
|
369
|
+
.sp
|
|
370
|
+
More details are available in the \fI\%Network capabilities\fP section.
|
|
371
|
+
.SH EXAMPLES
|
|
372
|
+
.SS Using PROJ strings
|
|
373
|
+
.sp
|
|
374
|
+
The following script
|
|
375
|
+
.INDENT 0.0
|
|
376
|
+
.INDENT 3.5
|
|
377
|
+
.sp
|
|
378
|
+
.nf
|
|
379
|
+
.ft C
|
|
380
|
+
cs2cs +proj=latlong +datum=NAD83 +to +proj=utm +zone=10 +datum=NAD27 \-r <<EOF
|
|
381
|
+
45°15\(aq33.1" 111.5W
|
|
382
|
+
45d15.551666667N \-111d30
|
|
383
|
+
+45.25919444444 111d30\(aq000w
|
|
384
|
+
EOF
|
|
385
|
+
.ft P
|
|
386
|
+
.fi
|
|
387
|
+
.UNINDENT
|
|
388
|
+
.UNINDENT
|
|
389
|
+
.sp
|
|
390
|
+
will transform the input NAD83 geographic coordinates into NAD27 coordinates in
|
|
391
|
+
the UTM projection with zone 10 selected. The geographic values of this
|
|
392
|
+
example are equivalent and meant as examples of various forms of DMS input.
|
|
393
|
+
The x\-y output data will appear as three lines of:
|
|
394
|
+
.INDENT 0.0
|
|
395
|
+
.INDENT 3.5
|
|
396
|
+
.sp
|
|
397
|
+
.nf
|
|
398
|
+
.ft C
|
|
399
|
+
1402285.93 5076292.58 0.00
|
|
400
|
+
.ft P
|
|
401
|
+
.fi
|
|
402
|
+
.UNINDENT
|
|
403
|
+
.UNINDENT
|
|
404
|
+
.sp
|
|
405
|
+
To get those exact values, you have need to have all current grids installed
|
|
406
|
+
(in that instance the NADCON5 \fBus_noaa_nadcon5_nad27_nad83_1986_conus.tif\fP grid)
|
|
407
|
+
locally or use networking capabilities mentioned above.
|
|
408
|
+
.sp
|
|
409
|
+
To make sure you will get the optimal result, you may add \fI\%\-\-only\-best\fP\&.
|
|
410
|
+
Assuming the above mentioned grid is \fInot\fP available,
|
|
411
|
+
.INDENT 0.0
|
|
412
|
+
.INDENT 3.5
|
|
413
|
+
.sp
|
|
414
|
+
.nf
|
|
415
|
+
.ft C
|
|
416
|
+
echo \-111.5 45.25919444444 | cs2cs \-\-only\-best +proj=latlong +datum=NAD83 +to +proj=utm +zone=10 +datum=NAD27
|
|
417
|
+
.ft P
|
|
418
|
+
.fi
|
|
419
|
+
.UNINDENT
|
|
420
|
+
.UNINDENT
|
|
421
|
+
.sp
|
|
422
|
+
would return:
|
|
423
|
+
.INDENT 0.0
|
|
424
|
+
.INDENT 3.5
|
|
425
|
+
.sp
|
|
426
|
+
.nf
|
|
427
|
+
.ft C
|
|
428
|
+
Attempt to use coordinate operation axis order change (2D) + Inverse of NAD27 to NAD83 (7) + axis order change (2D) + UTM zone 10N failed. Grid us_noaa_nadcon5_nad27_nad83_1986_conus.tif is not available. Consult https://proj.org/resource_files.html for guidance.
|
|
429
|
+
* * inf
|
|
430
|
+
.ft P
|
|
431
|
+
.fi
|
|
432
|
+
.UNINDENT
|
|
433
|
+
.UNINDENT
|
|
434
|
+
.sp
|
|
435
|
+
Otherwise, if you don\(aqt have the grid available and you don\(aqt specify \fI\%\-\-only\-best\fP:
|
|
436
|
+
.INDENT 0.0
|
|
437
|
+
.INDENT 3.5
|
|
438
|
+
.sp
|
|
439
|
+
.nf
|
|
440
|
+
.ft C
|
|
441
|
+
echo \-111.5 45.25919444444 | cs2cs \-\-only\-best +proj=latlong +datum=NAD83 +to +proj=utm +zone=10 +datum=NAD27
|
|
442
|
+
.ft P
|
|
443
|
+
.fi
|
|
444
|
+
.UNINDENT
|
|
445
|
+
.UNINDENT
|
|
446
|
+
.sp
|
|
447
|
+
would return:
|
|
448
|
+
.INDENT 0.0
|
|
449
|
+
.INDENT 3.5
|
|
450
|
+
.sp
|
|
451
|
+
.nf
|
|
452
|
+
.ft C
|
|
453
|
+
1402224.57 5076275.42 0.00
|
|
454
|
+
.ft P
|
|
455
|
+
.fi
|
|
456
|
+
.UNINDENT
|
|
457
|
+
.UNINDENT
|
|
458
|
+
.sp
|
|
459
|
+
which is the result when the NAD27 and NAD83 datums are dealt as identical,
|
|
460
|
+
which is an approximation at a level of several tens of metres.
|
|
461
|
+
.SS Using EPSG CRS codes
|
|
462
|
+
.sp
|
|
463
|
+
Transforming from WGS 84 latitude/longitude (in that order) to UTM Zone 31N/WGS 84
|
|
464
|
+
.INDENT 0.0
|
|
465
|
+
.INDENT 3.5
|
|
466
|
+
.sp
|
|
467
|
+
.nf
|
|
468
|
+
.ft C
|
|
469
|
+
cs2cs EPSG:4326 EPSG:32631 <<EOF
|
|
470
|
+
45N 2E
|
|
471
|
+
EOF
|
|
472
|
+
.ft P
|
|
473
|
+
.fi
|
|
474
|
+
.UNINDENT
|
|
475
|
+
.UNINDENT
|
|
476
|
+
.sp
|
|
477
|
+
outputs
|
|
478
|
+
.INDENT 0.0
|
|
479
|
+
.INDENT 3.5
|
|
480
|
+
.sp
|
|
481
|
+
.nf
|
|
482
|
+
.ft C
|
|
483
|
+
421184.70 4983436.77 0.00
|
|
484
|
+
.ft P
|
|
485
|
+
.fi
|
|
486
|
+
.UNINDENT
|
|
487
|
+
.UNINDENT
|
|
488
|
+
.SS Using EPSG CRS names
|
|
489
|
+
.sp
|
|
490
|
+
Transforming from WGS 84 latitude/longitude (in that order) with EGM96 height to
|
|
491
|
+
UTM Zone 31N/WGS 84 with WGS84 ellipsoidal height
|
|
492
|
+
.INDENT 0.0
|
|
493
|
+
.INDENT 3.5
|
|
494
|
+
.sp
|
|
495
|
+
.nf
|
|
496
|
+
.ft C
|
|
497
|
+
echo 45 2 0 | cs2cs "WGS 84 + EGM96 height" "WGS 84 / UTM zone 31N" \-\-3d
|
|
498
|
+
.ft P
|
|
499
|
+
.fi
|
|
500
|
+
.UNINDENT
|
|
501
|
+
.UNINDENT
|
|
502
|
+
.sp
|
|
503
|
+
outputs
|
|
504
|
+
.INDENT 0.0
|
|
505
|
+
.INDENT 3.5
|
|
506
|
+
.sp
|
|
507
|
+
.nf
|
|
508
|
+
.ft C
|
|
509
|
+
421184.70 4983436.77 50.69
|
|
510
|
+
.ft P
|
|
511
|
+
.fi
|
|
512
|
+
.UNINDENT
|
|
513
|
+
.UNINDENT
|
|
514
|
+
.sp
|
|
515
|
+
\fBNOTE:\fP
|
|
516
|
+
.INDENT 0.0
|
|
517
|
+
.INDENT 3.5
|
|
518
|
+
To get those exact values, you have need to have the EGM96 grid installed
|
|
519
|
+
locally or use networking capabilities mentioned above.
|
|
520
|
+
.UNINDENT
|
|
521
|
+
.UNINDENT
|
|
522
|
+
.SH SEE ALSO
|
|
523
|
+
.sp
|
|
524
|
+
\fBproj(1)\fP, \fBcct(1)\fP, \fBgeod(1)\fP, \fBgie(1)\fP, \fBprojinfo(1)\fP, \fBprojsync(1)\fP
|
|
525
|
+
.SH BUGS
|
|
526
|
+
.sp
|
|
527
|
+
A list of known bugs can be found at \fI\%https://github.com/OSGeo/PROJ/issues\fP
|
|
528
|
+
where new bug reports can be submitted to.
|
|
529
|
+
.SH HOME PAGE
|
|
530
|
+
.sp
|
|
531
|
+
\fI\%https://proj.org/\fP
|
|
532
|
+
.SH AUTHOR
|
|
533
|
+
Frank Warmerdam
|
|
534
|
+
.SH COPYRIGHT
|
|
535
|
+
1983-2024, PROJ contributors
|
|
536
|
+
.\" Generated by docutils manpage writer.
|
|
537
|
+
.
|