Fix non-printable characters

This commit is contained in:
Shahram Najm 2022-04-05 16:37:01 +01:00
parent d6075d3040
commit 362cbe2184
2 changed files with 4 additions and 4 deletions

View File

@ -110,8 +110,8 @@ static double adjust_lon_radians(double lon)
/* Function to compute the latitude angle, phi2, for the inverse
* From the book "Map Projections-A Working Manual-John P. Snyder (1987)"
* Equation (79) involves rapidly converging iteration: Calculate t from (15-11)
* Then, assuming an initial trial phi equal to (pi/2 - 2*arctan t) in the right side of equation (79),
* Equation (7-9) involves rapidly converging iteration: Calculate t from (15-11)
* Then, assuming an initial trial phi equal to (pi/2 - 2*arctan t) in the right side of equation (7-9),
* calculate phi on the left side. Substitute the calculated phi) into the right side,
* calculate a new phi, etc., until phi does not change significantly from the preceding trial value of phi
*/

View File

@ -110,8 +110,8 @@ static double adjust_lon_radians(double lon)
/* Function to compute the latitude angle, phi2, for the inverse
* From the book "Map Projections-A Working Manual-John P. Snyder (1987)"
* Equation (79) involves rapidly converging iteration: Calculate t from (15-11)
* Then, assuming an initial trial phi equal to (pi/2 - 2*arctan t) in the right side of equation (79),
* Equation (7-9) involves rapidly converging iteration: Calculate t from (15-11)
* Then, assuming an initial trial phi equal to (pi/2 - 2*arctan t) in the right side of equation (7-9),
* calculate phi on the left side. Substitute the calculated phi into the right side,
* calculate a new phi, etc., until phi does not change significantly from the preceding trial value of phi
*/