From d928db15d53805d9b728b440079756081961c536 Mon Sep 17 00:00:00 2001 From: Even Rouault Date: Wed, 14 Nov 2018 17:40:42 +0100 Subject: Implement RFC 2: Initial integration of "GDAL SRS barn" work This work mostly consists of: - a C++ implementation of the ISO-19111:2018 / OGC Topic 2 "Referencing by coordinates" classes to represent Datums, Coordinate systems, CRSs (Coordinate Reference Systems) and Coordinate Operations. - methods to convert between this C++ modeling and WKT1, WKT2 and PROJ string representations of those objects - management and query of a SQLite3 database of CRS and Coordinate Operation definition - a C API binding part of those capabilities This is all-in-one squashed commit of the work of https://github.com/OSGeo/proj.4/pull/1040 --- data/sql/prime_meridian.sql | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 data/sql/prime_meridian.sql (limited to 'data/sql/prime_meridian.sql') diff --git a/data/sql/prime_meridian.sql b/data/sql/prime_meridian.sql new file mode 100644 index 00000000..5fa9a349 --- /dev/null +++ b/data/sql/prime_meridian.sql @@ -0,0 +1,16 @@ +--- This file has been generated by scripts/build_db.py. DO NOT EDIT ! + +INSERT INTO "prime_meridian" VALUES('EPSG','8901','Greenwich',0.0,'EPSG','9102',0); +INSERT INTO "prime_meridian" VALUES('EPSG','8902','Lisbon',-9.0754862,'EPSG','9110',0); +INSERT INTO "prime_meridian" VALUES('EPSG','8903','Paris',2.5969213,'EPSG','9105',0); +INSERT INTO "prime_meridian" VALUES('EPSG','8904','Bogota',-74.04513,'EPSG','9110',0); +INSERT INTO "prime_meridian" VALUES('EPSG','8905','Madrid',-3.411658,'EPSG','9110',0); +INSERT INTO "prime_meridian" VALUES('EPSG','8906','Rome',12.27084,'EPSG','9110',0); +INSERT INTO "prime_meridian" VALUES('EPSG','8907','Bern',7.26225,'EPSG','9110',0); +INSERT INTO "prime_meridian" VALUES('EPSG','8908','Jakarta',106.482779,'EPSG','9110',0); +INSERT INTO "prime_meridian" VALUES('EPSG','8909','Ferro',-17.4,'EPSG','9110',0); +INSERT INTO "prime_meridian" VALUES('EPSG','8910','Brussels',4.220471,'EPSG','9110',0); +INSERT INTO "prime_meridian" VALUES('EPSG','8911','Stockholm',18.03298,'EPSG','9110',0); +INSERT INTO "prime_meridian" VALUES('EPSG','8912','Athens',23.4258815,'EPSG','9110',0); +INSERT INTO "prime_meridian" VALUES('EPSG','8913','Oslo',10.43225,'EPSG','9110',0); +INSERT INTO "prime_meridian" VALUES('EPSG','8914','Paris RGS',2.201395,'EPSG','9110',0); -- cgit v1.2.3