<feed xmlns='http://www.w3.org/2005/Atom'>
<title>PROJ/docs/source/operations, branch 8.2</title>
<subtitle>Forked from https://github.com/OSGeo/PROJ</subtitle>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/'/>
<entry>
<title>Remove terrible formatting</title>
<updated>2022-02-17T17:26:39+00:00</updated>
<author>
<name>Paul Ramsey</name>
<email>pramsey+github@cleverelephant.ca</email>
</author>
<published>2022-02-17T17:26:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=dc5e2394c7490938efa22b8f141ad9007b36c10a'/>
<id>dc5e2394c7490938efa22b8f141ad9007b36c10a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add note on named specializations</title>
<updated>2022-02-17T17:26:08+00:00</updated>
<author>
<name>Paul Ramsey</name>
<email>pramsey+github@cleverelephant.ca</email>
</author>
<published>2022-02-17T17:26:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=9544e2fee5423c40b4dfe5863fb68cbd6690d01b'/>
<id>9544e2fee5423c40b4dfe5863fb68cbd6690d01b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Doc: ob_tran.rst: fix name of o_lon_1, o_lat_1, o_lon_2, o_lat_2 parameters</title>
<updated>2022-02-11T20:28:33+00:00</updated>
<author>
<name>Even Rouault</name>
<email>even.rouault@spatialys.com</email>
</author>
<published>2022-02-11T20:26:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=6747bd232d490a90922d5f0cdb0f9b54cc53ba84'/>
<id>6747bd232d490a90922d5f0cdb0f9b54cc53ba84</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>labrd: document in the tagline and documentation that lat_0 is required (#2997)</title>
<updated>2022-01-07T15:36:55+00:00</updated>
<author>
<name>Bert Huijben</name>
<email>rhuijben@users.noreply.github.com</email>
</author>
<published>2022-01-07T14:19:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=a1ee5c0ac752836f541417c9a9c63439d94b23df'/>
<id>a1ee5c0ac752836f541417c9a9c63439d94b23df</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 #2992 from anbj/fix-formatting</title>
<updated>2021-12-23T19:47:48+00:00</updated>
<author>
<name>Even Rouault</name>
<email>even.rouault@spatialys.com</email>
</author>
<published>2021-12-23T19:47:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=96388832c7a6f35090f3042fd518daabb1c38f78'/>
<id>96388832c7a6f35090f3042fd518daabb1c38f78</id>
<content type='text'>
bertin1953.rst: fix formatting</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
bertin1953.rst: fix formatting</pre>
</div>
</content>
</entry>
<entry>
<title>Fix and additional options for Peirce Quincuncial projections (#2978)</title>
<updated>2021-12-20T20:23:20+00:00</updated>
<author>
<name>Toby C. Wilkinson</name>
<email>open@tobywilkinson.co.uk</email>
</author>
<published>2021-12-20T19:22:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=d5d60b7154d149de797737ecd96fde56bfecb7c2'/>
<id>d5d60b7154d149de797737ecd96fde56bfecb7c2</id>
<content type='text'>
This fixes the current forward implementation of Peirce Quincuncial proj to correctly flip/reflect out the southern hemisphere to four triangles, and rotate entire result to a square or diamond. (It there resolves the issues identified with pull request https://github.com/OSGeo/PROJ/pull/2230 , where southern hemisphere was wrongly projected over northern, and reverses the restriction to northern hemisphere introduced there). It also adds additional lateral projection of the hemispheres.

- This PR adds an optional parameter `+type` which allows selection of projection. The `+type=square` and `+type=diamond` types match in principle ESRI's twin implementations of square and diamond PQ projs. The **default** if not specified is `+type=diamond`.

- The previous behaviour restricted to the northern hemisphere can be reproduced using the `+type=nhemisphere`, though this is an edge case only.

- An additional `+type=horizontal` and `+type=vertical` rectangular lateral versions have been added that place each hemisphere side-by-side. This is primarily to allow creation of projections such as Greiger Triptychial, which also require the additional optional params `scrollx` or `scrolly` in order to shift parts of the projection from one side of the map to the other. 

- Additional documentation has been added to proj description, including quoting the usual meridian used in common usage of projection, and images showing the different types.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This fixes the current forward implementation of Peirce Quincuncial proj to correctly flip/reflect out the southern hemisphere to four triangles, and rotate entire result to a square or diamond. (It there resolves the issues identified with pull request https://github.com/OSGeo/PROJ/pull/2230 , where southern hemisphere was wrongly projected over northern, and reverses the restriction to northern hemisphere introduced there). It also adds additional lateral projection of the hemispheres.

- This PR adds an optional parameter `+type` which allows selection of projection. The `+type=square` and `+type=diamond` types match in principle ESRI's twin implementations of square and diamond PQ projs. The **default** if not specified is `+type=diamond`.

- The previous behaviour restricted to the northern hemisphere can be reproduced using the `+type=nhemisphere`, though this is an edge case only.

- An additional `+type=horizontal` and `+type=vertical` rectangular lateral versions have been added that place each hemisphere side-by-side. This is primarily to allow creation of projections such as Greiger Triptychial, which also require the additional optional params `scrollx` or `scrolly` in order to shift parts of the projection from one side of the map to the other. 

- Additional documentation has been added to proj description, including quoting the usual meridian used in common usage of projection, and images showing the different types.
</pre>
</div>
</content>
</entry>
<entry>
<title>Docs: Add new Ellipsoids page to explain ellipsoidal parameters (#2922)</title>
<updated>2021-11-20T07:58:48+00:00</updated>
<author>
<name>Brendan Jurd</name>
<email>direvus@gmail.com</email>
</author>
<published>2021-11-20T07:58:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=f93250223349d8e31c7f78fe9db8010fd8cfd64b'/>
<id>f93250223349d8e31c7f78fe9db8010fd8cfd64b</id>
<content type='text'>
Co-authored-by: Rohit &lt;rohitpingale103@gmail.com&gt;
Co-authored-by: Brendan Jurd &lt;brendan.jurd@geoplex.com.au&gt;
Co-authored-by: Mike Taves &lt;mwtoews@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Co-authored-by: Rohit &lt;rohitpingale103@gmail.com&gt;
Co-authored-by: Brendan Jurd &lt;brendan.jurd@geoplex.com.au&gt;
Co-authored-by: Mike Taves &lt;mwtoews@gmail.com&gt;</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>doc: clarify use of +datum option with +proj=latlon</title>
<updated>2021-09-29T15:52:04+00:00</updated>
<author>
<name>Kristian Evers</name>
<email>kristianevers@gmail.com</email>
</author>
<published>2021-09-29T15:52:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=769dcd7f6308581e565c59fa1862144809260452'/>
<id>769dcd7f6308581e565c59fa1862144809260452</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 #2836 from OSGeo/rouault-patch-1</title>
<updated>2021-09-02T12:30:14+00:00</updated>
<author>
<name>Even Rouault</name>
<email>even.rouault@spatialys.com</email>
</author>
<published>2021-09-02T11:58:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=61f3796a2b6f613894d49c83a7dcb5cf82014b74'/>
<id>61f3796a2b6f613894d49c83a7dcb5cf82014b74</id>
<content type='text'>
ortho.rst: fix typo</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ortho.rst: fix typo</pre>
</div>
</content>
</entry>
</feed>
