File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ class OsGridRef {
104
104
φ = ( N - N0 - M ) / ( a * F0 ) + φ ;
105
105
106
106
const Ma = ( 1 + n + ( 5 / 4 ) * n2 + ( 5 / 4 ) * n3 ) * ( φ - φ0 ) ;
107
- const Mb = ( 3 * n + 3 * n * n + ( 21 / 8 ) * n3 ) * Math . sin ( φ - φ0 ) * Math . cos ( φ + φ0 ) ;
107
+ const Mb = ( 3 * n + 3 * n2 + ( 21 / 8 ) * n3 ) * Math . sin ( φ - φ0 ) * Math . cos ( φ + φ0 ) ;
108
108
const Mc = ( ( 15 / 8 ) * n2 + ( 15 / 8 ) * n3 ) * Math . sin ( 2 * ( φ - φ0 ) ) * Math . cos ( 2 * ( φ + φ0 ) ) ;
109
109
const Md = ( 35 / 24 ) * n3 * Math . sin ( 3 * ( φ - φ0 ) ) * Math . cos ( 3 * ( φ + φ0 ) ) ;
110
110
M = b * F0 * ( Ma - Mb + Mc - Md ) ; // meridional arc
@@ -296,7 +296,7 @@ class LatLon_OsGridRef extends LatLonEllipsoidal {
296
296
const η2 = ν / ρ - 1 ; // eta = ?
297
297
298
298
const Ma = ( 1 + n + ( 5 / 4 ) * n2 + ( 5 / 4 ) * n3 ) * ( φ - φ0 ) ;
299
- const Mb = ( 3 * n + 3 * n * n + ( 21 / 8 ) * n3 ) * Math . sin ( φ - φ0 ) * Math . cos ( φ + φ0 ) ;
299
+ const Mb = ( 3 * n + 3 * n2 + ( 21 / 8 ) * n3 ) * Math . sin ( φ - φ0 ) * Math . cos ( φ + φ0 ) ;
300
300
const Mc = ( ( 15 / 8 ) * n2 + ( 15 / 8 ) * n3 ) * Math . sin ( 2 * ( φ - φ0 ) ) * Math . cos ( 2 * ( φ + φ0 ) ) ;
301
301
const Md = ( 35 / 24 ) * n3 * Math . sin ( 3 * ( φ - φ0 ) ) * Math . cos ( 3 * ( φ + φ0 ) ) ;
302
302
const M = b * F0 * ( Ma - Mb + Mc - Md ) ; // meridional arc
You can’t perform that action at this time.
0 commit comments