aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
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;