<feed xmlns='http://www.w3.org/2005/Atom'>
<title>PROJ/test, 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>Rename gie_failing to work around MS wildcard bug (#799)</title>
<updated>2018-02-12T21:45:20+00:00</updated>
<author>
<name>Thomas Knudsen</name>
<email>busstoptaktik@users.noreply.github.com</email>
</author>
<published>2018-02-12T21:45:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=ab2d175bf1674e3472576250281e7fdb68f09198'/>
<id>ab2d175bf1674e3472576250281e7fdb68f09198</id>
<content type='text'>
For reasons unknown to anyone but the geniuses from Redmond: In
MSWindows, the wildcard pattern "*.gie" expands to all files having
an extension *starting* with ".gie".

In other words "dir *.gie" will list files with extension ".gie"
*and* with extension ".gie_failing".

This means that running "gie test\gigs\*.gie" will run all gigs
tests, even the ones known to fail.

So rather than getting a quick check for regressions, one gets
a lot of noise and no easy way to be sure whether any regressions
have appeared.

To work around this oddity, we rename all files ending in
".gie_failing" to end in ".gie.failing" - and while at it,
adding all the non-failing gigs tests to the AppVeyor test suite.

This extends the regression test suite, run at the end of each
AppVeyor integration, to over 2500 individual tests.

Test coverage, however, is still hovering just below 75%, so
there's still plenty of room and reason for additional tests.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
For reasons unknown to anyone but the geniuses from Redmond: In
MSWindows, the wildcard pattern "*.gie" expands to all files having
an extension *starting* with ".gie".

In other words "dir *.gie" will list files with extension ".gie"
*and* with extension ".gie_failing".

This means that running "gie test\gigs\*.gie" will run all gigs
tests, even the ones known to fail.

So rather than getting a quick check for regressions, one gets
a lot of noise and no easy way to be sure whether any regressions
have appeared.

To work around this oddity, we rename all files ending in
".gie_failing" to end in ".gie.failing" - and while at it,
adding all the non-failing gigs tests to the AppVeyor test suite.

This extends the regression test suite, run at the end of each
AppVeyor integration, to over 2500 individual tests.

Test coverage, however, is still hovering just below 75%, so
there's still plenty of room and reason for additional tests.</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>
</feed>
