<feed xmlns='http://www.w3.org/2005/Atom'>
<title>PROJ/test/gie, branch 5.0</title>
<subtitle>Forked from https://github.com/OSGeo/PROJ</subtitle>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/'/>
<entry>
<title>Take into account +towgs84=0,0,0 in pipeline to still imply geodetic-&gt;cartesian-&gt;geodetic (fixes #881)</title>
<updated>2018-03-21T10:35:41+00:00</updated>
<author>
<name>Even Rouault</name>
<email>even.rouault@spatialys.com</email>
</author>
<published>2018-03-21T02:45:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=c49fcf76a814fc4caa707aecd18324a0f8efc225'/>
<id>c49fcf76a814fc4caa707aecd18324a0f8efc225</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Introduce late expansion of +datum parameters. Fixes #872.</title>
<updated>2018-03-20T21:47:47+00:00</updated>
<author>
<name>Kristian Evers</name>
<email>kristianevers@gmail.com</email>
</author>
<published>2018-03-20T20:47:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=35a2b5cbe6386e985ae53c95b618dc89f60d6e60'/>
<id>35a2b5cbe6386e985ae53c95b618dc89f60d6e60</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #857 from kbevers/return-error-instead-of-zeros</title>
<updated>2018-03-12T12:58:49+00:00</updated>
<author>
<name>Kristian Evers</name>
<email>kristianevers@gmail.com</email>
</author>
<published>2018-03-12T12:38:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=c4895fdf89254e4969f474355c28d67e7dc7e74d'/>
<id>c4895fdf89254e4969f474355c28d67e7dc7e74d</id>
<content type='text'>
Make sure that transient errors are returned correctly
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Make sure that transient errors are returned correctly
</pre>
</div>
</content>
</entry>
<entry>
<title>Download BETA2007 grid from proj-datumgrid package in CI scripts.</title>
<updated>2018-02-23T12:48:21+00:00</updated>
<author>
<name>Kristian Evers</name>
<email>kristianevers@gmail.com</email>
</author>
<published>2018-02-23T12:13:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=da5a3cd178f532c6d1462ad3262eab99ff24146e'/>
<id>da5a3cd178f532c6d1462ad3262eab99ff24146e</id>
<content type='text'>
Following PR #806 which removed various grids from nad/, we now have
to download the BETA2007 grid before that DHDN_ETRS89 test can pass
successfully.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Following PR #806 which removed various grids from nad/, we now have
to download the BETA2007 grid before that DHDN_ETRS89 test can pass
successfully.
</pre>
</div>
</content>
</entry>
<entry>
<title>revert tolerances for chamb and vandg2 to previous values</title>
<updated>2018-02-14T11:08:27+00:00</updated>
<author>
<name>Kristian Evers</name>
<email>kristianevers@gmail.com</email>
</author>
<published>2018-02-14T11:08:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=62854317de0de4c4de436f837376c3e60321a3c1'/>
<id>62854317de0de4c4de436f837376c3e60321a3c1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Ensure cs2cs emulation gets correct ellipsoid defn (#798)</title>
<updated>2018-02-12T19:44:00+00:00</updated>
<author>
<name>Thomas Knudsen</name>
<email>busstoptaktik@users.noreply.github.com</email>
</author>
<published>2018-02-12T19:44:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=715ec0b90aec05f15554c6591ea8cfd09d5cf043'/>
<id>715ec0b90aec05f15554c6591ea8cfd09d5cf043</id>
<content type='text'>
Copy ellipsoid definition for proj=cart directly into the
proj_create call, rather than calling pj_inherit_ellipsoid_def
afterwards.

Previously, the ellipsoid definition was left out from the call.

pj_init_ctx would then pick up WGS84 from proj_def.dat, and the
init would succeed (and the possibly wrong ellipsoid definition
would later on be overwritten with the correct values by
pj_inherit_ellipsoid_def.

But if PROJ_LIB was not set or proj_def.dat was inaccessible for
other reasons, things went wrong.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Copy ellipsoid definition for proj=cart directly into the
proj_create call, rather than calling pj_inherit_ellipsoid_def
afterwards.

Previously, the ellipsoid definition was left out from the call.

pj_init_ctx would then pick up WGS84 from proj_def.dat, and the
init would succeed (and the possibly wrong ellipsoid definition
would later on be overwritten with the correct values by
pj_inherit_ellipsoid_def.

But if PROJ_LIB was not set or proj_def.dat was inaccessible for
other reasons, things went wrong.</pre>
</div>
</content>
</entry>
<entry>
<title>Avoid invalid ellps error messages from pj_init (#794)</title>
<updated>2018-02-12T15:45:09+00:00</updated>
<author>
<name>Thomas Knudsen</name>
<email>busstoptaktik@users.noreply.github.com</email>
</author>
<published>2018-02-12T15:45:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=f1dd367c64de4f48eb48f6dcf17c2be93c7eaafc'/>
<id>f1dd367c64de4f48eb48f6dcf17c2be93c7eaafc</id>
<content type='text'>
Reset error type PJD_ERR_MAJOR_AXIS_NOT_GIVEN for operations
that do not need an ellipsoid.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Reset error type PJD_ERR_MAJOR_AXIS_NOT_GIVEN for operations
that do not need an ellipsoid.</pre>
</div>
</content>
</entry>
<entry>
<title>Update a few gie tests</title>
<updated>2018-02-10T17:31:16+00:00</updated>
<author>
<name>Thomas Knudsen</name>
<email>thokn@sdfe.dk</email>
</author>
<published>2018-02-10T17:31:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=75fca1c0e2fdd58d997ff962936888b6f983e8ec'/>
<id>75fca1c0e2fdd58d997ff962936888b6f983e8ec</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Relax tolerance slightly for two tests failing on OS/X</title>
<updated>2018-02-10T15:09:50+00:00</updated>
<author>
<name>Thomas Knudsen</name>
<email>thokn@sdfe.dk</email>
</author>
<published>2018-02-10T15:09:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=357af968915f4d1300b14fbd1e9188318d15399f'/>
<id>357af968915f4d1300b14fbd1e9188318d15399f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Handle sign convention for vertical datum shifts</title>
<updated>2018-02-10T13:57:50+00:00</updated>
<author>
<name>Thomas Knudsen</name>
<email>thokn@sdfe.dk</email>
</author>
<published>2018-02-10T13:57:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=3c62e6e7263b3a0e6e2397db5b43607f4b7fbe1d'/>
<id>3c62e6e7263b3a0e6e2397db5b43607f4b7fbe1d</id>
<content type='text'>
Also make corresponding sign corrections in a number of tests,
and comment out a few tests which work correctly, but report
failure since gie is not yet ready to handle unusual axis
orders in cases with angular output coordinates.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also make corresponding sign corrections in a number of tests,
and comment out a few tests which work correctly, but report
failure since gie is not yet ready to handle unusual axis
orders in cases with angular output coordinates.
</pre>
</div>
</content>
</entry>
</feed>
