Skip to content

Commit

Permalink
v0.0.32
Browse files Browse the repository at this point in the history
  • Loading branch information
mbloch committed May 13, 2021
1 parent 4bbd938 commit aa2f507
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
v0.0.32
* Bug fix

v0.0.31
* Apply default 11.023 degree central meridian to cupola.

Expand All @@ -8,7 +11,7 @@ v0.0.29
* Added forward spherical formula for the Cupola projection.

v0.0.27
* Fixed bug related to reading UTM South .prj files
* Fixed bug related to reading UTM South .prj files.

v0.0.26
* Remove source code and other unneeded files from npm distribution.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mproj",
"version": "0.0.31",
"version": "0.0.32",
"description": "A JavaScript port of the Proj.4 cartographic projections library",
"keywords": [
"projections",
Expand Down
2 changes: 1 addition & 1 deletion src/projections/bertin1953.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ function pj_bertin1953(P) {
xy.x *= 1 + d;
}
if (xy.y > 0) {
xy.x *= 1 + d / 1.5 * xy.x * xy.x;
xy.y *= 1 + d / 1.5 * xy.x * xy.x;
}

return xy;
Expand Down

0 comments on commit aa2f507

Please sign in to comment.