aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMike Toews <mwtoews@gmail.com>2018-03-06 12:18:18 +1300
committerMike Toews <mwtoews@gmail.com>2018-03-06 12:18:18 +1300
commit5769d0bceef0b72494b87f63b040dafaed5da983 (patch)
treed4cf02584fcfaa477639a973dab2029e1d4a5147 /src
parent7d9a545d5052c3845a43c0bd96c124e93ed6d630 (diff)
downloadPROJ-5769d0bceef0b72494b87f63b040dafaed5da983.tar.gz
PROJ-5769d0bceef0b72494b87f63b040dafaed5da983.zip
fix a few typos (again)
Diffstat (limited to 'src')
-rw-r--r--src/PJ_qsc.c2
-rw-r--r--src/pj_inv.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/PJ_qsc.c b/src/PJ_qsc.c
index 36dabeb9..0f5d2299 100644
--- a/src/PJ_qsc.c
+++ b/src/PJ_qsc.c
@@ -14,7 +14,7 @@
* is described in
* [LK12]
* M. Lambers and A. Kolb, "Ellipsoidal Cube Maps for Accurate Rendering of
- * Planetary-Scale Terrain Data", Proc. Pacfic Graphics (Short Papers), Sep.
+ * Planetary-Scale Terrain Data", Proc. Pacific Graphics (Short Papers), Sep.
* 2012
*
* You have to choose one of the following projection centers,
diff --git a/src/pj_inv.c b/src/pj_inv.c
index 4ea88b69..9918c59d 100644
--- a/src/pj_inv.c
+++ b/src/pj_inv.c
@@ -115,9 +115,9 @@ static PJ_COORD pj_inv_prepare (PJ *P, PJ_COORD coo) {
return coo;
/* Classic proj.4 functions expect plane coordinates in units of the semimajor axis */
- /* Multiplying by ra, rather than dividing by a because the CALCOFI projection */
+ /* Multiplying by ra, rather than dividing by a because the CalCOFI projection */
/* stomps on a and hence (apparently) depends on this to roundtrip correctly */
- /* (CALCOFI avoids further scaling by stomping - but a better solution is possible) */
+ /* (CalCOFI avoids further scaling by stomping - but a better solution is possible) */
coo.xyz.x *= P->ra;
coo.xyz.y *= P->ra;
return coo;