proj4 2.20.1 → 2.20.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bower.json +1 -1
- package/component.json +1 -1
- package/dist/lib/projections/ob_tran.d.ts +2 -0
- package/dist/proj4-src.js +158 -121
- package/dist/proj4.js +1 -1
- package/lib/parseCode.js +3 -0
- package/lib/projections/ob_tran.js +27 -3
- package/lib/projections/ortho.js +16 -13
- package/package.json +2 -2
package/bower.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "proj4",
|
|
3
|
-
"version": "2.20.
|
|
3
|
+
"version": "2.20.3",
|
|
4
4
|
"description": "Proj4js is a JavaScript library to transform point coordinates from one coordinate system to another, including datum transformations.",
|
|
5
5
|
"homepage": "https://github.com/proj4js/proj4js",
|
|
6
6
|
"main": "dist/proj4.js",
|
package/component.json
CHANGED
|
@@ -5,6 +5,7 @@ export class init {
|
|
|
5
5
|
y0: number;
|
|
6
6
|
long0: number;
|
|
7
7
|
title: string;
|
|
8
|
+
isIdentity: boolean;
|
|
8
9
|
obliqueProjection: import("../defs.js").ProjectionDefinition;
|
|
9
10
|
lamp: number;
|
|
10
11
|
cphip: number;
|
|
@@ -50,6 +51,7 @@ export type LocalThis = {
|
|
|
50
51
|
oLat1: number | undefined;
|
|
51
52
|
oLong2: number | undefined;
|
|
52
53
|
oLat2: number | undefined;
|
|
54
|
+
isIdentity: boolean;
|
|
53
55
|
obliqueProjection: import("..").Converter;
|
|
54
56
|
};
|
|
55
57
|
/**
|