@map-colonies/mc-utils 1.7.1 → 1.8.0

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.
@@ -0,0 +1,17 @@
1
+ export declare enum DataType {
2
+ BYTE = "Byte",
3
+ INT8 = "Int8",
4
+ UINT16 = "UInt16",
5
+ INT16 = "Int16",
6
+ UINT32 = "UInt32",
7
+ INT32 = "Int32",
8
+ UINT64 = "UInt64",
9
+ INT64 = "Int64",
10
+ FLOAT32 = "Float32",
11
+ FLOAT64 = "Float64",
12
+ CINT16 = "CInt16",
13
+ CINT32 = "CInt32",
14
+ CFLOAT32 = "CFloat32",
15
+ CFLOAT64 = "CFloat64"
16
+ }
17
+ //# sourceMappingURL=dataType.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"dataType.d.ts","sourceRoot":"","sources":["../../../../src/models/enums/gdal/dataType.ts"],"names":[],"mappings":"AAAA,oBAAY,QAAQ;IAClB,IAAI,SAAS;IACb,IAAI,SAAS;IACb,MAAM,WAAW;IACjB,KAAK,UAAU;IACf,MAAM,WAAW;IACjB,KAAK,UAAU;IACf,MAAM,WAAW;IACjB,KAAK,UAAU;IACf,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,MAAM,WAAW;IACjB,MAAM,WAAW;IACjB,QAAQ,aAAa;IACrB,QAAQ,aAAa;CACtB"}
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DataType = void 0;
4
+ var DataType;
5
+ (function (DataType) {
6
+ DataType["BYTE"] = "Byte";
7
+ DataType["INT8"] = "Int8";
8
+ DataType["UINT16"] = "UInt16";
9
+ DataType["INT16"] = "Int16";
10
+ DataType["UINT32"] = "UInt32";
11
+ DataType["INT32"] = "Int32";
12
+ DataType["UINT64"] = "UInt64";
13
+ DataType["INT64"] = "Int64";
14
+ DataType["FLOAT32"] = "Float32";
15
+ DataType["FLOAT64"] = "Float64";
16
+ DataType["CINT16"] = "CInt16";
17
+ DataType["CINT32"] = "CInt32";
18
+ DataType["CFLOAT32"] = "CFloat32";
19
+ DataType["CFLOAT64"] = "CFloat64";
20
+ })(DataType = exports.DataType || (exports.DataType = {}));
21
+ //# sourceMappingURL=dataType.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"dataType.js","sourceRoot":"","sources":["../../../../src/models/enums/gdal/dataType.ts"],"names":[],"mappings":";;;AAAA,IAAY,QAeX;AAfD,WAAY,QAAQ;IAClB,yBAAa,CAAA;IACb,yBAAa,CAAA;IACb,6BAAiB,CAAA;IACjB,2BAAe,CAAA;IACf,6BAAiB,CAAA;IACjB,2BAAe,CAAA;IACf,6BAAiB,CAAA;IACjB,2BAAe,CAAA;IACf,+BAAmB,CAAA;IACnB,+BAAmB,CAAA;IACnB,6BAAiB,CAAA;IACjB,6BAAiB,CAAA;IACjB,iCAAqB,CAAA;IACrB,iCAAqB,CAAA;AACvB,CAAC,EAfW,QAAQ,GAAR,gBAAQ,KAAR,gBAAQ,QAenB"}
@@ -0,0 +1,3 @@
1
+ export * from './resamplingMethod';
2
+ export * from './dataType';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/models/enums/gdal/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAC;AACnC,cAAc,YAAY,CAAC"}
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
5
+ }) : (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ o[k2] = m[k];
8
+ }));
9
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
11
+ };
12
+ Object.defineProperty(exports, "__esModule", { value: true });
13
+ __exportStar(require("./resamplingMethod"), exports);
14
+ __exportStar(require("./dataType"), exports);
15
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/models/enums/gdal/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAmC;AACnC,6CAA2B"}
@@ -0,0 +1,17 @@
1
+ export declare enum ResamplingMethod {
2
+ NEAR = "near",
3
+ BILINEAR = "bilinear",
4
+ CUBIC = "cubic",
5
+ CUBICSPLINE = "cubicspline",
6
+ LANCZOS = "lanczos",
7
+ AVERAGE = "average",
8
+ RMS = "rms",
9
+ MODE = "mode",
10
+ MAX = "max",
11
+ MIN = "min",
12
+ MED = "med",
13
+ Q1 = "q1",
14
+ Q3 = "q3",
15
+ SUM = "sum"
16
+ }
17
+ //# sourceMappingURL=resamplingMethod.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"resamplingMethod.d.ts","sourceRoot":"","sources":["../../../../src/models/enums/gdal/resamplingMethod.ts"],"names":[],"mappings":"AAAA,oBAAY,gBAAgB;IAC1B,IAAI,SAAS;IACb,QAAQ,aAAa;IACrB,KAAK,UAAU;IACf,WAAW,gBAAgB;IAC3B,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,GAAG,QAAQ;IACX,IAAI,SAAS;IACb,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,EAAE,OAAO;IACT,EAAE,OAAO;IACT,GAAG,QAAQ;CACZ"}
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ResamplingMethod = void 0;
4
+ var ResamplingMethod;
5
+ (function (ResamplingMethod) {
6
+ ResamplingMethod["NEAR"] = "near";
7
+ ResamplingMethod["BILINEAR"] = "bilinear";
8
+ ResamplingMethod["CUBIC"] = "cubic";
9
+ ResamplingMethod["CUBICSPLINE"] = "cubicspline";
10
+ ResamplingMethod["LANCZOS"] = "lanczos";
11
+ ResamplingMethod["AVERAGE"] = "average";
12
+ ResamplingMethod["RMS"] = "rms";
13
+ ResamplingMethod["MODE"] = "mode";
14
+ ResamplingMethod["MAX"] = "max";
15
+ ResamplingMethod["MIN"] = "min";
16
+ ResamplingMethod["MED"] = "med";
17
+ ResamplingMethod["Q1"] = "q1";
18
+ ResamplingMethod["Q3"] = "q3";
19
+ ResamplingMethod["SUM"] = "sum";
20
+ })(ResamplingMethod = exports.ResamplingMethod || (exports.ResamplingMethod = {}));
21
+ //# sourceMappingURL=resamplingMethod.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"resamplingMethod.js","sourceRoot":"","sources":["../../../../src/models/enums/gdal/resamplingMethod.ts"],"names":[],"mappings":";;;AAAA,IAAY,gBAeX;AAfD,WAAY,gBAAgB;IAC1B,iCAAa,CAAA;IACb,yCAAqB,CAAA;IACrB,mCAAe,CAAA;IACf,+CAA2B,CAAA;IAC3B,uCAAmB,CAAA;IACnB,uCAAmB,CAAA;IACnB,+BAAW,CAAA;IACX,iCAAa,CAAA;IACb,+BAAW,CAAA;IACX,+BAAW,CAAA;IACX,+BAAW,CAAA;IACX,6BAAS,CAAA;IACT,6BAAS,CAAA;IACT,+BAAW,CAAA;AACb,CAAC,EAfW,gBAAgB,GAAhB,wBAAgB,KAAhB,wBAAgB,QAe3B"}
@@ -1,2 +1,3 @@
1
1
  export * from './geo';
2
+ export * from './gdal';
2
3
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/models/enums/index.ts"],"names":[],"mappings":"AAAA,cAAc,OAAO,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/models/enums/index.ts"],"names":[],"mappings":"AAAA,cAAc,OAAO,CAAC;AACtB,cAAc,QAAQ,CAAC"}
@@ -11,4 +11,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
11
11
  };
12
12
  Object.defineProperty(exports, "__esModule", { value: true });
13
13
  __exportStar(require("./geo"), exports);
14
+ __exportStar(require("./gdal"), exports);
14
15
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/models/enums/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,wCAAsB"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/models/enums/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,wCAAsB;AACtB,yCAAuB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@map-colonies/mc-utils",
3
- "version": "1.7.1",
3
+ "version": "1.8.0",
4
4
  "description": "This is template for map colonies typescript packages",
5
5
  "main": "./dist/index.js",
6
6
  "scripts": {