<feed xmlns='http://www.w3.org/2005/Atom'>
<title>PROJ/docs/source/operations/projections/tmerc.rst, branch 7.1.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>tmerc/utm: add a +algo=auto/evenden_snyder/poder_engsager parameter</title>
<updated>2020-04-14T23:07:18+00:00</updated>
<author>
<name>Even Rouault</name>
<email>even.rouault@spatialys.com</email>
</author>
<published>2020-04-14T15:17:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=964569728722e9e91f152410a4747a0ba078bd84'/>
<id>964569728722e9e91f152410a4747a0ba078bd84</id>
<content type='text'>
The default remains +alg=poder_engsager.
This default value can be changed in proj.ini

+algo=auto will use Evenden Synder implementation if the error in
doing so remains below 0.1 mm on Earth-sized ellipsoid
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The default remains +alg=poder_engsager.
This default value can be changed in proj.ini

+algo=auto will use Evenden Synder implementation if the error in
doing so remains below 0.1 mm on Earth-sized ellipsoid
</pre>
</div>
</content>
</entry>
<entry>
<title>Doc: use 'ellipsoidal' to refer to the ellipsoidal formulation (to be opposed to the spherical one)</title>
<updated>2020-03-11T08:22:32+00:00</updated>
<author>
<name>Even Rouault</name>
<email>even.rouault@spatialys.com</email>
</author>
<published>2020-03-10T17:09:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=aa71df059f2eee4f33f0b137948c1f71d8260b88'/>
<id>aa71df059f2eee4f33f0b137948c1f71d8260b88</id>
<content type='text'>
Instead of 'elliptical'.
Was suggested by @cffk in https://github.com/OSGeo/PROJ/pull/2030#issuecomment-596132341

An elliptical projection is a projection whose global shape fits inside an
ellipsoid, like Mollweide. At least according to
https://www.merriam-webster.com/dictionary/elliptical%20projection
and
https://en.wikipedia.org/wiki/Mollweide_projection
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Instead of 'elliptical'.
Was suggested by @cffk in https://github.com/OSGeo/PROJ/pull/2030#issuecomment-596132341

An elliptical projection is a projection whose global shape fits inside an
ellipsoid, like Mollweide. At least according to
https://www.merriam-webster.com/dictionary/elliptical%20projection
and
https://en.wikipedia.org/wiki/Mollweide_projection
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove occurences of deprecated PROJ.4 syntax</title>
<updated>2020-03-04T23:18:01+00:00</updated>
<author>
<name>Kristian Evers</name>
<email>kristianevers@gmail.com</email>
</author>
<published>2020-03-04T19:40:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=341e0e7eb4f95de5c6ccc24ee98b7bb304964449'/>
<id>341e0e7eb4f95de5c6ccc24ee98b7bb304964449</id>
<content type='text'>
+no_defs and +datum has no effect on the behaviour of proj, so can be
left out in these examples in the docs. +no_defs in rare occasions would
have had an effect in older PROJ versions but not from PROJ 6 and
onwards. +datum has ever only been honoured by cs2cs and pj_transform().

Fixes #2017
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
+no_defs and +datum has no effect on the behaviour of proj, so can be
left out in these examples in the docs. +no_defs in rare occasions would
have had an effect in older PROJ versions but not from PROJ 6 and
onwards. +datum has ever only been honoured by cs2cs and pj_transform().

Fixes #2017
</pre>
</div>
</content>
</entry>
<entry>
<title>Some improvements to the docs for tmerc and omerc (#1281)</title>
<updated>2019-02-24T13:21:26+00:00</updated>
<author>
<name>Thomas Knudsen</name>
<email>busstoptaktik@users.noreply.github.com</email>
</author>
<published>2019-02-24T13:21:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=38a1525b01b45420de01b0df71befd030253ebe3'/>
<id>38a1525b01b45420de01b0df71befd030253ebe3</id>
<content type='text'>

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>

</pre>
</div>
</content>
</entry>
<entry>
<title>Make tmerc an alias for etmerc. (#1234)</title>
<updated>2019-02-11T22:58:16+00:00</updated>
<author>
<name>Kristian Evers</name>
<email>kristianevers@gmail.com</email>
</author>
<published>2019-02-11T22:58:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=5141b3908e59a26c9fe66de94bb7388bff741b58'/>
<id>5141b3908e59a26c9fe66de94bb7388bff741b58</id>
<content type='text'>
* Make tmerc an alias for etmerc

This switches the algorithm used in tmerc to the Poder/Engsager
tmerc algorithm. The original tmerc algorithm of Evenden/Snyder
origin can still be accessed by adding the +approx flag when
initializing a tmerc projection. The +approx flag can also
be used when initializing UTM projections, in which case the
Evenden/Snyder algorithm is used as well.

If a tmerc projection is instantiated on a spherical earth
the Evenden/Snyder algorithm is used as well since the
Poder/Engsager algorithm is only defined on the ellipsoid.

+proj=etmerc can still be instantiated for backwards compatibility
reasons.

Co-authored-by: Kristian Evers &lt;kristianevers@gmail.com&gt;
Co-authored-by: Even Rouault &lt;even.rouault@spatialys.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Make tmerc an alias for etmerc

This switches the algorithm used in tmerc to the Poder/Engsager
tmerc algorithm. The original tmerc algorithm of Evenden/Snyder
origin can still be accessed by adding the +approx flag when
initializing a tmerc projection. The +approx flag can also
be used when initializing UTM projections, in which case the
Evenden/Snyder algorithm is used as well.

If a tmerc projection is instantiated on a spherical earth
the Evenden/Snyder algorithm is used as well since the
Poder/Engsager algorithm is only defined on the ellipsoid.

+proj=etmerc can still be instantiated for backwards compatibility
reasons.

Co-authored-by: Kristian Evers &lt;kristianevers@gmail.com&gt;
Co-authored-by: Even Rouault &lt;even.rouault@spatialys.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Add headings on tables where needed.</title>
<updated>2018-11-05T00:24:40+00:00</updated>
<author>
<name>Elliott Sales de Andrade</name>
<email>quantum.analyst@gmail.com</email>
</author>
<published>2018-11-05T00:24:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=9b33399b46f3e8aadc983f3fbd5483959df5461e'/>
<id>9b33399b46f3e8aadc983f3fbd5483959df5461e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Ensure correct axis ratio for images in documentation; move proj-string from image to caption</title>
<updated>2018-08-27T21:47:03+00:00</updated>
<author>
<name>Juernjakob Dugge</name>
<email>juernjakob@gmail.com</email>
</author>
<published>2018-08-23T21:14:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=3378c5ec96fb3f067beffc6c3acd15765d5ce5d1'/>
<id>3378c5ec96fb3f067beffc6c3acd15765d5ce5d1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace +k with +k_0 in doc examples</title>
<updated>2018-07-06T09:23:59+00:00</updated>
<author>
<name>Kristian Evers</name>
<email>kristianevers@gmail.com</email>
</author>
<published>2018-07-06T09:23:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=dbf24f23b835453435cb24e5c925db5202a9a925'/>
<id>dbf24f23b835453435cb24e5c925db5202a9a925</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Set projection plot scale to 100% for better PDF output"</title>
<updated>2018-05-14T20:14:01+00:00</updated>
<author>
<name>Kristian Evers</name>
<email>kristianevers@gmail.com</email>
</author>
<published>2018-05-14T20:14:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=6284d19e1d2efdc60fd3752187c275e345ab423b'/>
<id>6284d19e1d2efdc60fd3752187c275e345ab423b</id>
<content type='text'>
This had unexpected side-effects when building the HTML docs on Travis
compared to locally. The correct solution would be to set different
scaling depending on the output.

This reverts commit 325477ed0fac2c9233c2f6a2b7bb4125e04df24c.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This had unexpected side-effects when building the HTML docs on Travis
compared to locally. The correct solution would be to set different
scaling depending on the output.

This reverts commit 325477ed0fac2c9233c2f6a2b7bb4125e04df24c.
</pre>
</div>
</content>
</entry>
<entry>
<title>Set projection plot scale to 100% for better PDF output</title>
<updated>2018-05-14T18:57:00+00:00</updated>
<author>
<name>Kristian Evers</name>
<email>kristianevers@gmail.com</email>
</author>
<published>2018-05-14T18:57:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=325477ed0fac2c9233c2f6a2b7bb4125e04df24c'/>
<id>325477ed0fac2c9233c2f6a2b7bb4125e04df24c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
