| Age | Commit message (Collapse) | Author |
|
|
|
Fix tests still running despite being disabled in Release 5.2
|
|
`LANGUAGES` in this context was first introduced as a CMake 3 feature, but we advertise 2.6 support. Removing the keyword restores compatibility.
|
|
This fix was included in release 6.0, simple backport to 5.2.
|
|
|
|
RFC3: Dependency management
|
|
Added Fortran-Proj, bindings for PROJ in Fortran.
|
|
|
|
sweep parameter depending on the satellite (fixes #1179)
|
|
squashed cherry-picking of master commits:
be58913801f400d9b00c8c3e8cdecb7e5fa89d38
5511ab8f4d75d7df6712619c77d2fa3e5dc07f1c
1b5e8db29f58627cdb722a6083348486e78bc4b0
9ae6713916f495b6f150915609a545275c5de699
0196fc54f779ef3a8045af0a3650b21908a178d2
ed0ee0bc9f0bada66eb42f6d0ed602d12558cf7c
2f48fe12dbd9be9075ea1359f01b4243b6e415bb
|
|
Closes #1159
|
|
|
|
|
|
These are included with proj-datumgrid:
- Australia
- Canada: ntv2_0.gsb
- Germany: BETA2007.gsb
|
|
|
|
|
|
|
|
|
|
in +towgs84 case, we use sprintf() with floating-point formatter to output
the ellipsoid parameters. For a locale with decimal separtor != dot, the
resulting string will not be parsed correctly by proj_atof(), leading to
wrong numeric result.
The fix is similar to the one done in pj_latlong_from_proj()
Note for later: if using C++, we could use a locale-independent formatting
solution to avoid such issue.
|
|
This removes some questions that are no longer valid
(covered elsewhere in the docs), adjusts the wording in other questions
and fixes formatting and making it proper rst/sphinx syntax.
With this, #1070 is almost fixed.
|
|
|
|
|
|
Modifications for Intel compilers
|
|
|
|
Also, workaround issue:
CMake Error at test/unit/CMakeLists.txt:7 (string):
string sub-command REGEX, mode REPLACE needs at least 6 arguments
total to command.
|
|
|
|
Don't install test executables.
|
|
Don't install gtest libraries.
|
|
|
|
|
|
Fix SONAME decrement from libproj.so.13 to libproj.so.12.
|
|
Increment age instead of revision for added interfaces, see:
https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
|
|
Steps 1.1-1.4 from HOWTO-RELEASE. Will publish the archives later today (evening central european time).
|
|
|
|
|
|
|
|
Previous to this commit cs2cs did not convert angular output to degrees
when using operations setting PJ->right = PJ_IO_UNITS_ANGULAR. This
commit adopts the conventions used after the introduction of pipelines.
In practice, this allows the following and similar transformations to
output in degrees and not radians:
```
echo 37.3916666667 -6.9325000 | cs2cs +proj=latlong +ellps=clrk80 \
+to +proj=molodensky +ellps=clrk80 +da=-112.145 +df=-0.54750714e-4 \
+dx=-175 +dy=-23 +dz=-303
37.39 -6.93 -8.2
```
|
|
|
|
|
|
cct: forward comments to output
|
|
Any text written after the coordinate input will automatically be
forwarded to the output stream. Text in columns before the coordinate
input is discarded in the output. This works for any combination of -c, -t
and -z parameters:
$ echo 12 56 100 2018.0 comment comment | cct +proj=merc
1335833.8895 7522963.2411 100.0000 2018.0000 comment commen
$ echo text 12 56 100 2018.0 comment | cct -c 2,3,4,5 +proj=merc
1335833.8895 7522963.2411 100.0000 2018.0000 comment
$ echo text 12 56 comment | cct -c 2,3 -t0 -z0 +proj=merc
1335833.8895 7522963.2411 0.0000 0.0000 comment
$ echo 12 56 comment | cct -t0 -z0 +proj=merc
1335833.8895 7522963.2411 0.0000 0.0000 comment
Closes #918
|
|
Added the version of introduction and removed comment about angular and
linear output (it's an internal implementation detail that users doesn't
need to be aware of).
|
|
Specify number of decimals to display when transforming coordinates with either proj, cs2cs or cct.
|
|
be more expansive in ignorance
|
|
|
|
4D API: honour vto_meter / vunits for proj=longlat
|
|
This worked for cs2cs / pj_transform(), but not the new API
|
|
Ensure correct axis ratio for images in documentation
|
|
image to caption
|
|
https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=10033. Credit to OSS Fuzz. master only
|