| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-09-04 | C API: add proj_create_ellipsoidal_3D_cs() | Even Rouault | |
| 2019-08-20 | C API: add proj_context_set_autoclose_database() to automatically close ↵ | Even Rouault | |
| database (fixes #1565) | |||
| 2019-08-20 | Merge pull request #1547 from rouault/json_export | Even Rouault | |
| Add CRS JSON export (refs #1545) | |||
| 2019-08-17 | PROJJSON: rename file as projjson.schema.json, and add versionning to it and ↵ | Even Rouault | |
| to exported PROJJSON strings | |||
| 2019-08-09 | C API: add proj_as_projjson() | Even Rouault | |
| 2019-07-19 | Add set discard superseded method to api (#1534) | Matt Littlemore | |
| Closes #1519 | |||
| 2019-07-01 | C API: add proj_concatoperation_get_step_count() and ↵ | Even Rouault | |
| proj_concatoperation_get_step() | |||
| 2019-06-30 | Database: import scope/remarks for coordinate operation and add C API | Even Rouault | |
| - Import scope and remarks for coordinate operations of the EPSG dataset. Database size goes from 5.2 MB to 5.55 MB - Add proj_get_scope() and proj_get_remarks() | |||
| 2019-06-01 | Add proj_grid_get_info_from_database to allow retrieval of grid | Nyall Dawson | |
| metadata from a grid filename | |||
| 2019-05-12 | Fix doc of proj_identify() | Even Rouault | |
| 2019-05-08 | proj_normalize_for_visualization(): fix crash when ctx == nullptr | Even Rouault | |
| 2019-05-08 | proj_normalize_for_visualization(): fix when there are coordinate operation ↵ | Even Rouault | |
| alternatives | |||
| 2019-04-22 | code format fix | Even Rouault | |
| 2019-04-18 | Improve doc of proj_coordoperation_get_towgs84_values() (fixes #1430) | Even Rouault | |
| 2019-04-02 | Make sure that ISO19111 C++ code sets pj_errno on errors | Kristian Evers | |
| 2019-04-02 | Merge pull request #1391 from kbevers/noop | Kristian Evers | |
| Add no-op operation. It does nothing. | |||
| 2019-03-29 | Adopt use of the noop conversion in ISO19111 code | Kristian Evers | |
| 2019-03-29 | Add proj_normalize_for_visualization() | Even Rouault | |
| Fixes #1301 This function takes the output PJ from proj_create_crs_to_crs(), and add (or undo) the needed axis swap operations so that the object returned by proj_normalize_for_visualization() has the usual GIS axis order. In this implementation, this does something only if the coordinate system of the source or target CRS, geographic or projected, has NORTH, EAST ordering. CompoundCRS wrapping those objects are also handled. | |||
| 2019-03-28 | Objet -> Object | Nyall Dawson | |
| 2019-03-26 | c_api.cpp: avoid mixing enum types. Coverity CID 193542 | Even Rouault | |
| 2019-02-20 | typo fixes: s/Explictly/Explicitly/ and s/instanciat/instantiat/ | Even Rouault | |
| 2019-02-20 | CoordinateOperation: add a hasBallparkTransformation() method that can be ↵ | Even Rouault | |
| used to know if it includes a very approximative transformation term | |||
| 2019-02-17 | Modify the default strategy of researching intermediate CRS to do it only if ↵ | Even Rouault | |
| there is no direct transformation | |||
| 2019-02-16 | Make sure proj_get_source_crs() and proj_get_target_crs() work on 'pseudo' ↵ | Even Rouault | |
| PJ object returned by proj_create_crs_to_crs() when there are several alternatives | |||
| 2019-02-11 | Make tmerc an alias for etmerc. (#1234) | Kristian Evers | |
| * Make tmerc an alias for etmerc This switches the algorithm used in tmerc to the Poder/Engsager tmerc algorithm. The original tmerc algorithm of Evenden/Snyder origin can still be accessed by adding the +approx flag when initializing a tmerc projection. The +approx flag can also be used when initializing UTM projections, in which case the Evenden/Snyder algorithm is used as well. If a tmerc projection is instantiated on a spherical earth the Evenden/Snyder algorithm is used as well since the Poder/Engsager algorithm is only defined on the ellipsoid. +proj=etmerc can still be instantiated for backwards compatibility reasons. Co-authored-by: Kristian Evers <kristianevers@gmail.com> Co-authored-by: Even Rouault <even.rouault@spatialys.com> | |||
| 2019-02-11 | Use pj_new() | Even Rouault | |
| 2019-02-07 | Rename proj_crs_list_destroy() to proj_crs_info_list_destroy() | Even Rouault | |
| 2019-02-07 | Add proj_get_crs_info_list_from_database() | Even Rouault | |
| This method is intended to be used typically by GUI that lists all possible CRS. What is does could be done by previously existing functions, but it is much faster. It typically runs in less than 0.1s (hot run) versus ~0.5s with the method that consists in enumerating all codes and instanciating a PJ object for each of them. | |||
| 2019-01-22 | proj_create_crs_to_crs(): defer selection of actual coordinate operation ↵ | Even Rouault | |
| until proj_trans() is called (fixes #1229) | |||
| 2019-01-17 | Remove proj_create_from_proj_string() and proj_create_from_user_input(), and ↵ | Even Rouault | |
| make proj_create() do more or less what proj_create_from_user_input() did before (fixes #1214) | |||
| 2019-01-09 | Allocate projCtx_t as a C++ object | Even Rouault | |
| 2019-01-09 | proj.db search: use pj_find_file() mechanism instead of hand coded ↵ | Even Rouault | |
| simplified version of it | |||
| 2019-01-04 | WKT export: no longer export Geographic 3D CRS in WKT1, unless strict mode ↵ | Even Rouault | |
| is disabled | |||
| 2019-01-02 | Typo fixes | Even Rouault | |
| 2018-12-31 | pj_obj_create(): avoid warning to be emitted when expot to PROJ string is ↵ | Even Rouault | |
| not possible | |||
| 2018-12-30 | Rename proj_obj_XXX as proj_XXX and PJ_OBJ_XXX as PJ_XXX | Even Rouault | |
| 2018-12-30 | Merge projects.h into proj_internal.h | Even Rouault | |
| 2018-12-30 | Make ISO-19111 objects of type CoordinateOperation directly usable with ↵ | Even Rouault | |
| proj_trans() and similar methods | |||
| 2018-12-30 | Remove PJ_OBJ type since it is now merged into PJ | Even Rouault | |
| 2018-12-26 | cpp conversion: move source files in apps/ iso19111/ conversions/ ↵ | Even Rouault | |
| projections/ transformations/ tests/ subdirectories | |||
