| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-12-10 | C API: add extra output parameters to proj_coordoperation_get_param() | Even Rouault | |
| 2018-12-10 | C API: add a proj_coordoperation_get_method_info() method | Even Rouault | |
| 2018-12-10 | C API: add proj_uom_get_info_from_database() | Even Rouault | |
| 2018-12-10 | C API: add PJ_OBJ_CATEGORY_PRIME_MERIDIAN and PJ_OBJ_TYPE_PRIME_MERIDIAN | Even Rouault | |
| 2018-12-10 | proj_obj_cs_get_axis_info(): add out_unit_auth_name and out_unit_code parameters | Even Rouault | |
| 2018-12-10 | Molodensky: allow parameters to be set to zero | Even Rouault | |
| The computations work perfectly when one or all parameters are zero. I've been shown a case where there was no ellipsoid change, so da = df = 0. | |||
| 2018-12-07 | Merge remote-tracking branch 'rouault/gdalbarn' | Even Rouault | |
| 2018-12-07 | Experimental C API: add proj_obj_query_geodetic_crs_from_datum() (for GDAL ↵ | Even Rouault | |
| Idrisi driver) | |||
| 2018-12-06 | Speed-up createBoundCRSToWGS84IfPossible() | Even Rouault | |
| 2018-12-06 | projinfo: display deprecation info | Even Rouault | |
| 2018-12-06 | Add API to retrieve non-deprecated equivalent of an object | Even Rouault | |
| 2018-12-06 | Fix special handling of Azimuth parameter of Krovak | Even Rouault | |
| 2018-12-06 | Fine tune axis denomination when exporting to WKT1_GDAL | Even Rouault | |
| 2018-12-06 | Coordinate operation search: add a authority_to_authority_preference table ↵ | Even Rouault | |
| to restrict and prioritize searches | |||
| 2018-12-06 | Merge remote-tracking branch 'rouault/gdalbarn' | Even Rouault | |
| 2018-12-06 | Take into account supersession information to filter out irrelevant ↵ | Even Rouault | |
| transformations | |||
| 2018-12-06 | Merge remote-tracking branch 'rouault/gdalbarn' | Even Rouault | |
| 2018-12-05 | experimental C API: add proj_obj_convert_conversion_to_other_method() | Even Rouault | |
| 2018-12-05 | Allow ellipsoid flattening to be set to zero | Kristian Evers | |
| Issue raised in https://github.com/OSGeo/proj.4/issues/1191. | |||
| 2018-12-04 | Add proj_obj_create_vertical_crs() and proj_obj_create_compound_crs() | Even Rouault | |
| 2018-12-04 | WKT1 export of LOCAL_CS: add UNIT if explicitly set | Even Rouault | |
| 2018-12-04 | export to WKT1 of geocentric CRS: do not emit a TOWGS84 node if the datum is ↵ | Even Rouault | |
| WGS84 | |||
| 2018-12-04 | Improve management of 'deprecated' suffix in object names | Even Rouault | |
| 2018-12-04 | Improve recognition of WKT1 datum names | Even Rouault | |
| 2018-12-03 | Merge pull request #1189 from rouault/projinfo_improvements | Even Rouault | |
| Projinfo improvements: output operation summary and add --area option | |||
| 2018-12-03 | projinfo: add a --area option (refs #1188) | Even Rouault | |
| 2018-12-03 | Merge pull request #1182 from rouault/plug_new_code | Even Rouault | |
| Remove data/epsg, IGNF and esri.* files / support legacy +init=epsg:XXXX syntax | |||
| 2018-12-03 | projinfo: output operation summary, even in non summary mode (refs #1188) | Even Rouault | |
| 2018-12-03 | Export to ESRI WKT: make it use verbatim WKT definition from the database ↵ | Even Rouault | |
| when possible | |||
| 2018-12-03 | WKTParser: fix to avoid creation of empty nodes | Even Rouault | |
| 2018-12-02 | identify: improve GeographicCRS identification when the CRS name has no match | Even Rouault | |
| 2018-12-02 | improve identify() for projected and bound CRS | Even Rouault | |
| 2018-12-01 | Add testing of projinfo utility | Even Rouault | |
| 2018-12-01 | Fix PROJ_GRID_AVAILABILITY_IGNORED | Even Rouault | |
| 2018-12-01 | Rename test/old/ to test/cli/ to better reflect their nature | Even Rouault | |
| 2018-12-01 | importFromWKT: deal with uncommon formulation of EPSG:3857 | Even Rouault | |
| 2018-12-01 | importFromWKT: morph GDAL_WKT1 datum names into their EPSG spelling | Even Rouault | |
| 2018-11-30 | API: move all advanced PJ_OBJ creation functions in a dedicated ↵ | Even Rouault | |
| proj_experimental.h header | |||
| 2018-11-30 | C API: do not 'cache' PROJ context in PJ_OBJ objects | Even Rouault | |
| We store the PJ_CONTEXT* in the PJ_OBJ objects, but this might cause issues in multi-threaded uses. For example, before this change, let's imagie: - a PJ_OBJ is created in thread A with a PJ_CONTEXT that is specific to this thread A - PJ_OBJ is transfered to another thread that operates on it. It might thus use the PJ_CONTEXT that was TLS(A) - in the meantime thread A does completely different things, but still operate on its PJ_CONTEXT. We might get a concurrent use of the PJ_CONTEXT despite working on different PJ_OBJ Another situation is when using constructor functions that take two PJ_OBJ. Up to now, we arbitrarily selected the context of one of the arguments to attach it to the new object. So better be explicit on which context is used. For reference, in those wrappers of the C++ API, the context is mostly used for two things: - reporting C++ exceptions as PROJ errors with the error handler attached to the PJ_CONTEXT - using the database handle that is associated with the PJ_CONTEXT. | |||
| 2018-11-29 | importFromWKT v1: properly handle latitude_of_origin=0 for Mercator_1SP | Even Rouault | |
| 2018-11-29 | proj_create_crs_to_crs(): rename arguments, update doc, and add a few test cases | Even Rouault | |
| 2018-11-29 | C API extensions and renaming | Even Rouault | |
| - proj_obj_create_projected_XXXXX() are renamed to proj_obj_create_conversion_snake_case() and just instanciate a Conversion object - Advanced manipulation functions are moved to a dedicated section at bottom of proj.h - New C API needed for GDAL OGRSpatialReference | |||
| 2018-11-29 | Preserve EPSG code when importFromWKT WKT1_GDAL of EPSG:3857 | Even Rouault | |
| 2018-11-29 | exportToWKT WKT1_GDAL: export axis by default for GeocentricCRS | Even Rouault | |
| 2018-11-29 | importFromWKT: check we have a valid unit where we need one | Even Rouault | |
| 2018-11-29 | Redirect epsg:XXXX and IGNF:XXXX CRS expansions to the database, and remove ↵ | Even Rouault | |
| the data/epsg and data/IGNF files | |||
| 2018-11-29 | Add unit test for pj_tranform() now that cs2cs no longer use it | Even Rouault | |
| 2018-11-29 | Reformat test .cpp files | Even Rouault | |
| 2018-11-29 | cs2cs: upgrade to use proj_create_crs_to_crs() | Even Rouault | |
| 2018-11-26 | test/fuzzers/build_google_oss_fuzzers.sh: statically link against sqlite3 | Even Rouault | |
