| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-10-08 | promoteTo3D(): add a remark with the original CRS identifier (fixes #2368) | Even Rouault | |
| ``` $ projinfo EPSG:32631 --3d WKT2:2019 string: PROJCRS["WGS 84 / UTM zone 31N", [ ...snip ] REMARK["Promoted to 3D from EPSG:32631"]] ``` | |||
| 2020-10-08 | Add C API to work with datum ensemble | Even Rouault | |
| Add: - proj_crs_get_datum_ensemble() - proj_crs_get_datum_forced() - proj_datum_ensemble_get_member_count() - proj_datum_ensemble_get_accuracy() - proj_datum_ensemble_get_member() Make proj_create_geographic_crs_from_datum() and proj_create_geocentric_crs_from_datum() accept a datum ensemble. | |||
| 2020-10-08 | Make createOperations() work with DatumEnsemble | Even Rouault | |
| 2020-10-08 | Make CRS identification work with CRS with DatumEnsemble | Even Rouault | |
| 2020-10-08 | Add DatumEnsemble::asDatum() and use it in exportToWkt() | Even Rouault | |
| to allow exporting DatumEnsemble to WKT < 2019. | |||
| 2020-10-08 | Add a AuthorityFactory::createDatumEnsemble() method, and make it inherit ↵ | Even Rouault | |
| from ObjectUsage as mandated by ISO 19111:2019 | |||
| 2020-10-08 | Database: import datum ensemble accuracy and members (but do not use them) | Even Rouault | |
| 2020-10-08 | getCRSInfoList(): make it use area description | Even Rouault | |
| 2020-10-08 | Database: use extended description for extent/area of use, as done by ↵ | Even Rouault | |
| epsg.org WKT export | |||
| 2020-10-06 | Database: instanciate DynamicGeodeticReferenceFrame (things like ITRFxxx, ↵ | Even Rouault | |
| WGS 84 (Gxxxx), etc.) when possible | |||
| 2020-10-06 | Database: add a reference_frame_epoch column to the geodetic_datum for ↵ | Even Rouault | |
| dynamic datums, but not yet used | |||
| 2020-10-06 | Database: "minimal" update to EPSG v10.003 | Even Rouault | |
| Content mostly unchanged since v9.9 This update is "minimal" in that it mostly reflects the removal of the 'area' table, replaced now by 'extent', 'scope' and 'usage' Other new aspects of EPSG v10 are left aside. | |||
| 2020-10-05 | proj_crs_create_bound_crs_to_WGS84(): make it work on ↵ | Even Rouault | |
| verticalCRS/compoundCRS such as EPSG:4326+5773 and EPSG:4326+3855 | |||
| 2020-10-02 | createOperations(): avoid elimination of ballpark transformation that can ↵ | Even Rouault | |
| help for NAD83->WGS84->NAD83(2011) hops | |||
| 2020-09-30 | Merge pull request #2361 from rouault/ortho_ellipsoidal | Even Rouault | |
| Implement ellipsoidal formulation of +proj=ortho (fixes #397) | |||
| 2020-09-30 | Merge pull request #2344 from rouault/tinshift | Even Rouault | |
| Add a +proj=tinshift for triangulation-based transformations | |||
| 2020-09-30 | Add a +proj=tinshift for triangulation-based transformations | Even Rouault | |
| Implements RFC-6 | |||
| 2020-09-27 | Ortho ellipsoidal inverse: improve accuracy in polar case with (x,y) close ↵ | Even Rouault | |
| to (0,0) | |||
| 2020-09-27 | Ortho ellipsoidal inverse: add domain check for oblique case, and slighly ↵ | Even Rouault | |
| improve initial guessing | |||
| 2020-09-26 | Ortho ellipsoidal inverse: add non iterative implementations for polar and ↵ | Even Rouault | |
| equatorial | |||
| 2020-09-26 | Ortho: add visibility condition for ellipsoidal case. Credits to @cffk | Even Rouault | |
| 2020-09-26 | Implement ellipsoidal formulation of +proj=ortho (fixes #397) | Even Rouault | |
| - Map ESRI 'Local' to +proj=ortho when Scale_Factor = 1 and Azimuth = 0 - Map ESRI 'Orthographic' to a PROJ WKT2 'Orthographic (Spherical)' which maps to +proj=ortho +f=0 to froce spherical evaluation | |||
| 2020-09-17 | createOperations(): tune sorting of transformations so that the ones with ↵ | Even Rouault | |
| greater 'version numbers' are prefered over other ones, when all other comparison criteria are equal. Helps with Amersfoort RD New to EPSG:4326 | |||
| 2020-09-17 | Adjust createBoundCRSToWGS84IfPossible() and operation filtering (for POSGAR ↵ | Even Rouault | |
| 2007 to WGS84 issues) (fixes #2356) - We make createBoundCRSToWGS84IfPossible() more restrictive. If there are more than one Helmert transformation from the CRS to WGS 84 covering the area of use of the CRS, we do not create a BoundCRS / +towgs84 - In createOperations() filtering, we are less aggressive in discarding operations that have the same area of use but worse accuracy. We do it only if they involve more transformation steps. We now get: ``` $ projinfo EPSG:5340 -o PROJ PROJ.4 string: +proj=longlat +ellps=GRS80 +no_defs +type=crs $ projinfo -s EPSG:5340 -t EPSG:4326 --spatial-test intersects --summary Candidate operations found: 2 EPSG:9264, POSGAR 2007 to WGS 84 (2), 0.5 m, Argentina EPSG:5351, POSGAR 2007 to WGS 84 (1), 1.0 m, Argentina ``` | |||
| 2020-09-09 | Database: update to EPSG 9.9 | Even Rouault | |
| 2020-08-26 | proj_create_vertical_crs_ex(): add a ACCURACY option to provide an explicit ↵ | Even Rouault | |
| accuracy, or derive it from the grid name if it is known | |||
| 2020-08-21 | createObjectsFromName(): add back case insensitivity when comparing names | Even Rouault | |
| Fixes #2332 Didn't affect released versions | |||
| 2020-08-21 | Helmert: fix regression when rotation terms are 0, but scale is not | Even Rouault | |
| Fixes #2333 Was due to 3dc92ad7014e1cf20a3bc95c8c21a34a371fcb78 Doesn't affect released versions | |||
| 2020-08-20 | projCtx_t: Copy ini file settings, proj4_init_rules, etc.. when initializing ↵ | Alan D. Snow | |
| context from global (#2331) | |||
| 2020-08-19 | Code reformatting | Even Rouault | |
| 2020-08-19 | Clone projCppContext context when copying projCtx_t (#2324) | Alan D. Snow | |
| 2020-08-16 | ENH: Add support for custum CA Bundle path (#2323) | Alan D. Snow | |
| Fixes #2320 | |||
| 2020-08-13 | WKT importer: tune for Oracle WKT and 'Lambert Conformal Conic' (#2321) | Even Rouault | |
| Fixes https://github.com/qgis/QGIS/issues/37898 | |||
| 2020-08-07 | ProjectedCRS::identify(): fix to be able to identify EPSG:2154 as a ↵ | Even Rouault | |
| candidate for 'RGF93_Lambert_93' (contributes to fixes https://github.com/qgis/QGIS/issues/32255) (#2315) | |||
| 2020-07-24 | Helmert 2D: do not require a useless convention= parameter | Even Rouault | |
| 2020-07-09 | Transverse Mercator South Orientated: restrict export to PROJ string to ↵ | Even Rouault | |
| cases where false_easting and false_northing are 0 | |||
| 2020-07-09 | PROJ string export of +proj=krovak +czech: make sure we export +czech ↵ | Even Rouault | |
| instead of +axis=swu (fixes #2299) | |||
| 2020-07-08 | formatting fix | Even Rouault | |
| 2020-07-06 | Merge pull request #2274 from snowman2/pjtype | Even Rouault | |
| ENH: Added temporal, engineering, and parametric datum PJ_TYPE enumerations | |||
| 2020-07-02 | Parse '+proj=something_not_latlong +vunits=' without +geoidgrids as a ↵ | Even Rouault | |
| Projected3D CRS and not a compound CRS with a unknown datum (fixes #2287) (#2288) | |||
| 2020-07-01 | WKT parser: do not raise warning when parsing a WKT2:2015 TIMECRS whose ↵ | Even Rouault | |
| TIMEUNIT is at the CS level, and not inside (#2276) Adresses testTemporal() and testCompoundWithTime() cases of https://github.com/OSGeo/PROJ/issues/2275#issuecomment-650765730 | |||
| 2020-06-26 | ENH: Added temporal, engineering, and parametric datum PJ_TYPE enumerations | snowman2 | |
| 2020-06-24 | ESRI WKT: correctly map 'Goode Homolosine' from ESRI:54052 (resp. 54053) to ↵ | Even Rouault | |
| 'Interrupted Googe Homolosine' (resp. 'Interrupted Googe Homolosine Ocean') | |||
| 2020-06-24 | test_defmodel.cpp: increase comparison tolerance for ARM and MIPS platforms ↵ | Even Rouault | |
| (fixes #2271) | |||
| 2020-06-17 | Merge pull request #2265 from rouault/fix_createOperations_bound_to_geod | Even Rouault | |
| createOperations(): fix transformations between BoundCRS and Geocentric CRS | |||
| 2020-06-16 | Merge pull request #2248 from rouault/database_nzgd2000_defmodel | Even Rouault | |
| Database: register NZGD2000 -> ITRF96 transformation for NZGD2000 database | |||
| 2020-06-16 | createOperations(): fix transformations between BoundCRS and Geocentric CRS | Even Rouault | |
| 2020-06-10 | Fix access violation in proj_context_get_database_metadata | Olli Räisä | |
| 2020-06-06 | Database: make sure we can deal with 'Geog3D to Geog2D+GravityRelatedHeight' ↵ | Even Rouault | |
| records as we do with the more common 'Geographic3D to GravityRelatedHeight' | |||
| 2020-06-06 | createOperations(): improve name of inverse transformation when there are ↵ | Even Rouault | |
| registered transformations between compoundCRS and something else | |||
