<feed xmlns='http://www.w3.org/2005/Atom'>
<title>PROJ/docs/source/operations/projections, 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>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>
<entry>
<title>Doc: mentions EPSG methods that corresponds to topocentric and ortho (fixes #2832)</title>
<updated>2021-09-01T09:18:31+00:00</updated>
<author>
<name>Even Rouault</name>
<email>even.rouault@spatialys.com</email>
</author>
<published>2021-09-01T09:18:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=1ddad0b6014c14286d792715de9c1354404a0349'/>
<id>1ddad0b6014c14286d792715de9c1354404a0349</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add S2 projection (#2749)</title>
<updated>2021-07-13T15:49:28+00:00</updated>
<author>
<name>marcus-elia</name>
<email>54640981+marcus-elia@users.noreply.github.com</email>
</author>
<published>2021-07-13T15:49:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=d902272785a55e48f6b46a907a34a71a5220fccc'/>
<id>d902272785a55e48f6b46a907a34a71a5220fccc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix typo: "Mod. Stererographics" -&gt; "Modified Stereographic"</title>
<updated>2021-05-03T21:06:11+00:00</updated>
<author>
<name>Mike Taves</name>
<email>mwtoews@gmail.com</email>
</author>
<published>2021-05-03T21:06:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=71a496c4bbf0381e35d3c6e2a18c332aee3604ec'/>
<id>71a496c4bbf0381e35d3c6e2a18c332aee3604ec</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
