| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2022-01-08 | Database: update to EPSG 10.047 | Even Rouault | |
| 2022-01-04 | Database: update to EPSG 10.044 | Even Rouault | |
| 2021-12-06 | Database: update to EPSG v10.041 | Even Rouault | |
| 2021-11-25 | Update metadata.sql to PROJ-data version 1.9 | Alexander Nehrbass | |
| 2021-11-25 | Add vertical gird files for PL-geoid-2011, Polish geoid model | Alexander Nehrbass | |
| 2021-11-22 | Fix mapping of coordinate system codes for ft when ingesting ESRI | Nyall Dawson | |
| projection db | |||
| 2021-11-16 | When matching conversions from ESRI db, keep searching if we find | Nyall Dawson | |
| a deprecated conversion for a non-deprecated CRS | |||
| 2021-11-16 | Force conversion of Unity units to Years for epochs in esri projection engine db | Nyall Dawson | |
| 2021-11-16 | Update ESRI projection db using wkt2 definitions | Nyall Dawson | |
| 2021-11-08 | Update ESRI Projection Engine db to version 12.9 | Nyall Dawson | |
| 2021-11-04 | Database: update to EPSG v10.039 | Even Rouault | |
| 2021-10-22 | Merge pull request #2907 from josch/tinshiftfallback | Even Rouault | |
| add fallback strategy for tinshift transform to use closest triangle for points not in any | |||
| 2021-10-21 | Add fallback_strategy to tinshift transform | Johannes Schauer Marin Rodrigues | |
| - this bumps format_version of tinshift JSON to 1.1 for the new field fallback_strategy - the default behaviour without that field is retained - if fallback_strategy is set to "nearest_side", then points that do not fall into any of the triangles will be transformed according to the nearest triangle - if fallback_centroid is set to "nearest_side", then points that do not fall into any of the triangles will be transformed according to the triangle with the nearest centroid | |||
| 2021-10-21 | Database: update to EPSG v10.038 | Even Rouault | |
| 2021-10-21 | Merge pull request #2906 from jjimenezshaw/za_cdngi_sageoid2010 | Even Rouault | |
| Add grid alternative for SAGEOID2010, South African geoid model | |||
| 2021-10-15 | Merge pull request #2889 from jjimenezshaw/mx_inegi_ggm10 | Even Rouault | |
| Add transformations for GGM10, Mexican geoid model | |||
| 2021-10-13 | add za_cdngi_sageoid2010.tif vertical grid file for SAGEOID2010.dat | Javier Jimenez Shaw | |
| 2021-10-08 | update metadata.sql to PROJ_DATA version 1.8 | Javier Jimenez Shaw | |
| 2021-10-08 | Set area of use compatible with grid file | Javier Jimenez Shaw | |
| 2021-10-07 | add GGM10 (Mexico to NAVD88) to geoid_model sql table | Javier Jimenez Shaw | |
| 2021-10-07 | add mx_inegi_ggm10.tif vertical grid file, with custom transformation | Javier Jimenez Shaw | |
| 2021-10-07 | Database: update to EPSG v10.037 | Even Rouault | |
| 2021-09-28 | Add a mapping for versioned authorities, so that one can use IAU:xxxx or ↵ | Even Rouault | |
| IAU_2015:xxxx transparently | |||
| 2021-09-28 | Database: add IAU_2015 CRS | Even Rouault | |
| 2021-09-28 | Database: add check for Orthographic conversion | Even Rouault | |
| 2021-09-28 | Database: add some hand made entries early | Even Rouault | |
| 2021-09-27 | Database: update to EPSG v10.036 | Even Rouault | |
| 2021-09-17 | Database: add a 'anchor' field to geodetic_datum and vertical_datum tables | Even Rouault | |
| Update database layout version number to 1.2 consequently This new capability will be used by IAU planetary CRS (refs #2601) | |||
| 2021-09-15 | Database: update to EPSG v10.035 | Even Rouault | |
| This seriously impacts French CRS users with the introduction of new datums, geodetic CRS and projected CRS based on "RGF 93 v2" and "RGF 93 v2b", and the previous single "RGF 93" being renamed as "RGF 93 v1". To be noted too, the addition of a null transformation between NAD83(2011) and WGS 84, which impacts a number of tests in the test suite. | |||
| 2021-09-14 | PROJJSON: support additional properties allowed in id object (version, ↵ | Even Rouault | |
| authority_citation, uri) for parity with WKT2:2019 | |||
| 2021-08-28 | Database: update to EPSG v10.033 | Even Rouault | |
| 2021-08-19 | BoundCRS: accept importing/exporting in WKT2 and PROJJSON the ↵ | Even Rouault | |
| scope/area/extent/id attributes (fixes #2813) For PROJJSON only, also accept the ``name`` attribute. | |||
| 2021-07-08 | Database: update to EPSG v10.028 | Even Rouault | |
| 2021-06-19 | Database: update to EPSG v10.027 | Even Rouault | |
| 2021-06-10 | Database: update to EPSG v10.026 | Even Rouault | |
| 2021-05-27 | Database: update to EPSG v10.024 | Even Rouault | |
| 2021-05-24 | Database: decrease DB size by using WITHOUT ROWID tables | Even Rouault | |
| None of our tables are indexed by a INTEGER PRIMARY KEY, but most of them are by a (auth_name, code) primary key. Consequently they can benefit from being created as WITHOUT ROWID tables (https://sqlite.org/withoutrowid.html), which avoids an index to be created on the rowid we don't use. WITHOUT ROWID is a feature added in SQLite 3.8.2, so as our baseline is 3.11, we can use it. This decreases the DB size from 7,749,632 to 7,229,440 bytes, without any measurable consequence on performance. | |||
| 2021-05-23 | Database: add a ANALYZE step during proj.db creation | Even Rouault | |
| This will create the sqlite_stat* table (generally sqlite_stat1). This speeds up a bit the test suite. Runtime of ``make test_cpp_api-check`` goes from the range [14.0 s, 14.6 s] to [13.0s, 13.5s] on my machine. | |||
| 2021-05-17 | projsync: make it filter out files not intended for the current version | Even Rouault | |
| * Add a PROJ_DATA.VERSION in proj.db to indicate the target PROJ-data package version * Make projsync use that information and the version_added and version_removed properties added in https://github.com/OSGeo/PROJ-data/pull/67 to filter out files that are not relevant * Add --no-version-filtering and --verbose switches | |||
| 2021-05-17 | Merge pull request #2723 from rouault/grid_alternatives_AGQG_20201120 | Even Rouault | |
| grid_alternatives.sql: reference AGQG_20201120.gsb | |||
| 2021-05-16 | Database: map ESRI spain/peninsula and spain/baleares grids | Even Rouault | |
| 2021-05-16 | grid_alternatives.sql: reference AGQG_20201120.gsb (cf OSGeo/PROJ-data#63) | Even Rouault | |
| 2021-05-16 | Database: update to EPSG v10.022 | Even Rouault | |
| 2021-05-11 | Update metadata | Nyall Dawson | |
| 2021-05-10 | Update ESRI projection db to 12.8 | Nyall Dawson | |
| 2021-04-23 | Move data/proj_outIGNF.dist-real to test/cli | Even Rouault | |
| 2021-04-23 | Remove uselss data/epsg-deprecated and update data/README | Even Rouault | |
| 2021-04-23 | Remove useless file data/sql/method_triggers.sql | Even Rouault | |
| 2021-04-23 | Database: update to EPSG v10.019 | Even Rouault | |
| Non-trivial updates: - some vertical CRS are now encoded as DerivedVerticalCRS. e.g EPSG:8228 "NAVD88 height (ft)", with base EPSG:5703 "NAVD88 height". As we don't have support in our PROJ db model for DerivedVerticalCRS, modify the import script to 'resolve' the derivation up to the original datum. - Method EPSG:1069 'Change of Vertical Unit' is no longer used. It is replaced by a generic-purpose EPSG:1104 method that doesn't take any conversion factor. And generic conversions EPSG:7812 and EPSG:7813 are now used in concatenated operations, which require code changes as well. | |||
| 2021-04-08 | Merge pull request #2647 from rouault/integer_or_text | Even Rouault | |
| Database: decrease db size | |||
