1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
Description: Fix 'Internation' typo, replace with 'International' (to match PJ_imw_p.c).
Author: Bas Couwenberg <sebastic@debian.org>
Forwarded: https://github.com/jswhit/pyproj/pull/95
--- a/docs/pyproj-pysrc.html
+++ b/docs/pyproj-pysrc.html
@@ -159,7 +159,7 @@
<a name="L108"></a><tt class="py-lineno">108</tt> <tt class="py-line"><tt class="py-string">'healpix'</tt><tt class="py-op">:</tt> <tt class="py-string">"HEALPix"</tt><tt class="py-op">,</tt> </tt>
<a name="L109"></a><tt class="py-lineno">109</tt> <tt class="py-line"><tt class="py-string">'rhealpix'</tt><tt class="py-op">:</tt> <tt class="py-string">"rHEALPix"</tt><tt class="py-op">,</tt> </tt>
<a name="L110"></a><tt class="py-lineno">110</tt> <tt class="py-line"><tt class="py-string">'igh'</tt><tt class="py-op">:</tt> <tt class="py-string">"Interrupted Goode Homolosine"</tt><tt class="py-op">,</tt> </tt>
-<a name="L111"></a><tt class="py-lineno">111</tt> <tt class="py-line"><tt class="py-string">'imw_p'</tt><tt class="py-op">:</tt> <tt class="py-string">"Internation Map of the World Polyconic"</tt><tt class="py-op">,</tt> </tt>
+<a name="L111"></a><tt class="py-lineno">111</tt> <tt class="py-line"><tt class="py-string">'imw_p'</tt><tt class="py-op">:</tt> <tt class="py-string">"International Map of the World Polyconic"</tt><tt class="py-op">,</tt> </tt>
<a name="L112"></a><tt class="py-lineno">112</tt> <tt class="py-line"><tt class="py-string">'isea'</tt><tt class="py-op">:</tt> <tt class="py-string">"Icosahedral Snyder Equal Area"</tt><tt class="py-op">,</tt> </tt>
<a name="L113"></a><tt class="py-lineno">113</tt> <tt class="py-line"><tt class="py-string">'kav5'</tt><tt class="py-op">:</tt> <tt class="py-string">"Kavraisky V"</tt><tt class="py-op">,</tt> </tt>
<a name="L114"></a><tt class="py-lineno">114</tt> <tt class="py-line"><tt class="py-string">'kav7'</tt><tt class="py-op">:</tt> <tt class="py-string">"Kavraisky VII"</tt><tt class="py-op">,</tt> </tt>
--- a/lib/pyproj/__init__.py
+++ b/lib/pyproj/__init__.py
@@ -116,7 +116,7 @@ pj_list={
'healpix': "HEALPix",
'rhealpix': "rHEALPix",
'igh': "Interrupted Goode Homolosine",
-'imw_p': "Internation Map of the World Polyconic",
+'imw_p': "International Map of the World Polyconic",
'isea': "Icosahedral Snyder Equal Area",
'kav5': "Kavraisky V",
'kav7': "Kavraisky VII",
--- a/src/pj_list.h
+++ b/src/pj_list.h
@@ -52,7 +52,7 @@ PROJ_HEAD(hatano, "Hatano Asymmetrical E
PROJ_HEAD(healpix, "HEALPix")
PROJ_HEAD(rhealpix, "rHEALPix")
PROJ_HEAD(igh, "Interrupted Goode Homolosine")
-PROJ_HEAD(imw_p, "Internation Map of the World Polyconic")
+PROJ_HEAD(imw_p, "International Map of the World Polyconic")
PROJ_HEAD(isea, "Icosahedral Snyder Equal Area")
PROJ_HEAD(kav5, "Kavraisky V")
PROJ_HEAD(kav7, "Kavraisky VII")
|