<feed xmlns='http://www.w3.org/2005/Atom'>
<title>PROJ/test/unit, branch 8.2.1</title>
<subtitle>Forked from https://github.com/OSGeo/PROJ</subtitle>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/'/>
<entry>
<title>Merge pull request #2985 from rouault/wkt1_hotine_without_rectified_grid_angle</title>
<updated>2021-12-17T00:18:17+00:00</updated>
<author>
<name>Even Rouault</name>
<email>even.rouault@spatialys.com</email>
</author>
<published>2021-12-17T00:17:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=4608ef43d6cf41f7acc61d228caab3234e04b28b'/>
<id>4608ef43d6cf41f7acc61d228caab3234e04b28b</id>
<content type='text'>
WKT1 import: correctly deal with missing rectified_grid_angle parameter</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
WKT1 import: correctly deal with missing rectified_grid_angle parameter</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #2976 from rouault/compound_to_compound_ballpark</title>
<updated>2021-12-09T16:38:19+00:00</updated>
<author>
<name>Even Rouault</name>
<email>even.rouault@spatialys.com</email>
</author>
<published>2021-12-09T15:45:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=c9fe5a1a06c7becf257b23842cc13e89416489b0'/>
<id>c9fe5a1a06c7becf257b23842cc13e89416489b0</id>
<content type='text'>
createOperations(): improvement for "NAD83(CSRS) + CGVD28 height" to "NAD83(CSRS) + CGVD2013(CGG2013) height"</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
createOperations(): improvement for "NAD83(CSRS) + CGVD28 height" to "NAD83(CSRS) + CGVD2013(CGG2013) height"</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #2937 from rouault/fix_2936</title>
<updated>2021-11-14T14:49:06+00:00</updated>
<author>
<name>Even Rouault</name>
<email>even.rouault@spatialys.com</email>
</author>
<published>2021-11-14T14:48:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=4db10d9e13223fd5aaafc2c187d9a96676c1d385'/>
<id>4db10d9e13223fd5aaafc2c187d9a96676c1d385</id>
<content type='text'>
createOperations(): do not stop at the first operation in the PROJ namespace for vertical transformations</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
createOperations(): do not stop at the first operation in the PROJ namespace for vertical transformations</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #2934 from toonn/cross-platform-test</title>
<updated>2021-11-10T14:51:23+00:00</updated>
<author>
<name>Even Rouault</name>
<email>even.rouault@spatialys.com</email>
</author>
<published>2021-11-10T14:27:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=a461817ade4b77110f95db6b5f7dd6e8aa8254b9'/>
<id>a461817ade4b77110f95db6b5f7dd6e8aa8254b9</id>
<content type='text'>
test: Make CApi test cross-platform</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
test: Make CApi test cross-platform</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #2917 from rouault/fix_boundcrs_name</title>
<updated>2021-11-03T10:26:06+00:00</updated>
<author>
<name>Even Rouault</name>
<email>even.rouault@spatialys.com</email>
</author>
<published>2021-11-03T09:58:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=4739adcc55a0a0cacd5691de1f9951561e08ac2b'/>
<id>4739adcc55a0a0cacd5691de1f9951561e08ac2b</id>
<content type='text'>
BoundCRS WKT import: fix setting of name</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
BoundCRS WKT import: fix setting of name</pre>
</div>
</content>
</entry>
<entry>
<title>CMake: revise how we deal with symbol export and static builds</title>
<updated>2021-10-23T14:27:30+00:00</updated>
<author>
<name>Even Rouault</name>
<email>even.rouault@spatialys.com</email>
</author>
<published>2021-10-23T14:17:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=6e9b324ab7bf5909df7e68409e060282db14fa54'/>
<id>6e9b324ab7bf5909df7e68409e060282db14fa54</id>
<content type='text'>
- Remove the explicit PROJ_MSVC_DLL_IMPORT symbol used for importing
  symbols from a MSVC .dll: by default on MSVC, we use
  now __declspec(dllimport), unless PROJ_MSVC_DLL_EXPORT is defined
  by PROJ at build time. This makes it easier for users: they
  don't have to define anything special. This simplifies in particular
  the build of our binaries
- For static builds, export -DPROJ_DLL= as public, so that users
  that import PROJ through CMake mechanism don't have to do it
  manually.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Remove the explicit PROJ_MSVC_DLL_IMPORT symbol used for importing
  symbols from a MSVC .dll: by default on MSVC, we use
  now __declspec(dllimport), unless PROJ_MSVC_DLL_EXPORT is defined
  by PROJ at build time. This makes it easier for users: they
  don't have to define anything special. This simplifies in particular
  the build of our binaries
- For static builds, export -DPROJ_DLL= as public, so that users
  that import PROJ through CMake mechanism don't have to do it
  manually.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add fallback_strategy to tinshift transform</title>
<updated>2021-10-21T20:18:29+00:00</updated>
<author>
<name>Johannes Schauer Marin Rodrigues</name>
<email>josch@mister-muffin.de</email>
</author>
<published>2021-10-16T13:38:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=f5aed82fc6eee896606e95dc15e578cd9f058a2c'/>
<id>f5aed82fc6eee896606e95dc15e578cd9f058a2c</id>
<content type='text'>
 - 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
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 - 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
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #2889 from jjimenezshaw/mx_inegi_ggm10</title>
<updated>2021-10-15T21:35:04+00:00</updated>
<author>
<name>Even Rouault</name>
<email>even.rouault@spatialys.com</email>
</author>
<published>2021-10-15T21:35:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=04928472dbee772b6b31c78352dc486fb6543a91'/>
<id>04928472dbee772b6b31c78352dc486fb6543a91</id>
<content type='text'>
Add transformations for GGM10, Mexican geoid model</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add transformations for GGM10, Mexican geoid model</pre>
</div>
</content>
</entry>
<entry>
<title>Geographic 3D CRS: allow to export to WKT1:ESRI if only the GEOGCS is known (and thus extrapolating a VERTCS) (fixes #2757)</title>
<updated>2021-10-12T09:12:53+00:00</updated>
<author>
<name>Even Rouault</name>
<email>even.rouault@spatialys.com</email>
</author>
<published>2021-10-12T09:12:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=785a6507068c7e8ae28d4286028ea0d12f607213'/>
<id>785a6507068c7e8ae28d4286028ea0d12f607213</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix export to WKT1:ESRI of CRS, datum, ellipsoids name that don't have a EPSG equivalent and have parentheses in their name</title>
<updated>2021-10-12T08:58:55+00:00</updated>
<author>
<name>Even Rouault</name>
<email>even.rouault@spatialys.com</email>
</author>
<published>2021-10-12T08:58:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=4387332ea628282570d712d5b4b6dccc2ea5e604'/>
<id>4387332ea628282570d712d5b4b6dccc2ea5e604</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
