<feed xmlns='http://www.w3.org/2005/Atom'>
<title>PROJ/test/gie, branch iso19111_dev</title>
<subtitle>Forked from https://github.com/OSGeo/PROJ</subtitle>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/'/>
<entry>
<title>Add Tobler-Mercator projection</title>
<updated>2018-10-15T09:58:53+00:00</updated>
<author>
<name>Ivan Veselov</name>
<email>veselov@gmail.com</email>
</author>
<published>2018-10-15T09:58:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=f2b8a5e8a43d119aa66bccc0b0cac3ebbf828bd4'/>
<id>f2b8a5e8a43d119aa66bccc0b0cac3ebbf828bd4</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 #1133 from Fil/bertin1953</title>
<updated>2018-10-11T09:47:56+00:00</updated>
<author>
<name>Kristian Evers</name>
<email>kristianevers@gmail.com</email>
</author>
<published>2018-10-11T09:47:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=249588acd5dddafcd0ae33a0ae6dfc5431dea4bc'/>
<id>249588acd5dddafcd0ae33a0ae6dfc5431dea4bc</id>
<content type='text'>
the Bertin 1953 projection</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
the Bertin 1953 projection</pre>
</div>
</content>
</entry>
<entry>
<title>Merge remote-tracking branch 'osgeo/master' into bertin1953</title>
<updated>2018-10-11T09:19:02+00:00</updated>
<author>
<name>Kristian Evers</name>
<email>kristianevers@gmail.com</email>
</author>
<published>2018-10-11T09:19:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=0e3debf173bfe9d9dccf337a5c41fe2e1bf1ded3'/>
<id>0e3debf173bfe9d9dccf337a5c41fe2e1bf1ded3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Support LCC 2SP Michigan projection</title>
<updated>2018-10-10T23:50:36+00:00</updated>
<author>
<name>Ivan Veselov</name>
<email>veselov@gmail.com</email>
</author>
<published>2018-10-10T23:45:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=8fc1197f495c42d3249894bc5cfcaebde6162472'/>
<id>8fc1197f495c42d3249894bc5cfcaebde6162472</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add a affine transformation method, and make geogoffset as a particular case of it (fixes #535)</title>
<updated>2018-10-01T19:31:51+00:00</updated>
<author>
<name>Even Rouault</name>
<email>even.rouault@spatialys.com</email>
</author>
<published>2018-10-01T10:32:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=fe29f8acdce81607c11a597f4bffc7ff61fa9c19'/>
<id>fe29f8acdce81607c11a597f4bffc7ff61fa9c19</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add geographic offset transformation method.</title>
<updated>2018-10-01T09:17:41+00:00</updated>
<author>
<name>Even Rouault</name>
<email>even.rouault@spatialys.com</email>
</author>
<published>2018-09-29T08:01:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=1583a566a208d2451fb1acc8bcf16fbd8151983e'/>
<id>1583a566a208d2451fb1acc8bcf16fbd8151983e</id>
<content type='text'>
The Geographic offsets transformation adds an offset to the geographic longitude,
latitude coordinates, and an offset to the ellipsoidal height.
This method is normally only used when low accuracy is tolerated. It is documented
as coordinate operation method code 9619 (for geographic 2D) and 9660 (for
geographic 3D) in the EPSG dataset.

It can also be used to implement the method Geographic2D with Height Offsets
(code 9618) by noting that the input vertical component is a gravity-related
height and the output vertical component is the ellispoid height (dh being
the geoid undulation).

It can also be used to implement the method Vertical offset (code 9616)

It is used for example to transform:
- from the old Greek geographic 2D CRS to the newer GGRS87 CRS
- from Tokyo + JSLD69 height to WGS 84
- from Baltic 1977 height to Black Sea height

It is also useful to document the implicit zero-offset transformation
we do in pipelines such as

+proj=pipeline +step +inv +proj=longlat +ellps=A
               +step +proj=longlat +ellps=B

that can be explicited as

+proj=pipeline +step +inv +proj=longlat +ellps=A
               +step +proj=geogoffset [+dlon=0 +dlat=0 +dh=0]
               +step +proj=longlat +ellps=B
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The Geographic offsets transformation adds an offset to the geographic longitude,
latitude coordinates, and an offset to the ellipsoidal height.
This method is normally only used when low accuracy is tolerated. It is documented
as coordinate operation method code 9619 (for geographic 2D) and 9660 (for
geographic 3D) in the EPSG dataset.

It can also be used to implement the method Geographic2D with Height Offsets
(code 9618) by noting that the input vertical component is a gravity-related
height and the output vertical component is the ellispoid height (dh being
the geoid undulation).

It can also be used to implement the method Vertical offset (code 9616)

It is used for example to transform:
- from the old Greek geographic 2D CRS to the newer GGRS87 CRS
- from Tokyo + JSLD69 height to WGS 84
- from Baltic 1977 height to Black Sea height

It is also useful to document the implicit zero-offset transformation
we do in pipelines such as

+proj=pipeline +step +inv +proj=longlat +ellps=A
               +step +proj=longlat +ellps=B

that can be explicited as

+proj=pipeline +step +inv +proj=longlat +ellps=A
               +step +proj=geogoffset [+dlon=0 +dlat=0 +dh=0]
               +step +proj=longlat +ellps=B
</pre>
</div>
</content>
</entry>
<entry>
<title>Req. changes for Bertin1953:</title>
<updated>2018-09-24T11:00:31+00:00</updated>
<author>
<name>Philippe Rivière</name>
<email>fil@rezo.net</email>
</author>
<published>2018-09-24T11:00:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=5f4fa9ccba63ac89e09035688588ced7649ff43f'/>
<id>5f4fa9ccba63ac89e09035688588ced7649ff43f</id>
<content type='text'>
- classification
- tests
- coding style
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- classification
- tests
- coding style
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix typo in Plate Carree projection name (#1132)</title>
<updated>2018-09-22T19:51:51+00:00</updated>
<author>
<name>Philippe Rivière</name>
<email>fil@rezo.net</email>
</author>
<published>2018-09-22T19:51:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=a3e88d098bd511ff915ff667be7adbd7ca94938c'/>
<id>a3e88d098bd511ff915ff667be7adbd7ca94938c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>autoconf: fix 'make check' on out-of-tree builds</title>
<updated>2018-09-19T15:31:26+00:00</updated>
<author>
<name>Even Rouault</name>
<email>even.rouault@spatialys.com</email>
</author>
<published>2018-09-19T15:31:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=00f6873a159806cf08a3f51d90776e2840ede946'/>
<id>00f6873a159806cf08a3f51d90776e2840ede946</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Rename nad/ directory as data/</title>
<updated>2018-09-18T20:58:57+00:00</updated>
<author>
<name>Even Rouault</name>
<email>even.rouault@spatialys.com</email>
</author>
<published>2018-09-18T18:32:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=d7366ffdd5cbe5ba6c2d9f917d064085bbc3eddc'/>
<id>d7366ffdd5cbe5ba6c2d9f917d064085bbc3eddc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
