@loaders.gl/shapefile 4.4.0-alpha.13 → 4.4.0-alpha.15

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/dist/index.cjs CHANGED
@@ -521,7 +521,7 @@ function parseState(state, result, binaryReader, options) {
521
521
  }
522
522
 
523
523
  // dist/shp-loader.js
524
- var VERSION = true ? "4.4.0-alpha.13" : "latest";
524
+ var VERSION = true ? "4.4.0-alpha.15" : "latest";
525
525
  var SHP_MAGIC_NUMBER2 = [0, 0, 39, 10];
526
526
  var SHPWorkerLoader = {
527
527
  dataType: null,
@@ -860,7 +860,7 @@ function makeField({ name, dataType, fieldLength, decimal }) {
860
860
  }
861
861
 
862
862
  // dist/dbf-loader.js
863
- var VERSION2 = true ? "4.4.0-alpha.13" : "latest";
863
+ var VERSION2 = true ? "4.4.0-alpha.15" : "latest";
864
864
  var DBFWorkerLoader = {
865
865
  name: "DBF",
866
866
  dataType: null,
@@ -1072,7 +1072,7 @@ function extname(url) {
1072
1072
  }
1073
1073
 
1074
1074
  // dist/shapefile-loader.js
1075
- var VERSION3 = true ? "4.4.0-alpha.13" : "latest";
1075
+ var VERSION3 = true ? "4.4.0-alpha.15" : "latest";
1076
1076
  var ShapefileLoader = {
1077
1077
  name: "Shapefile",
1078
1078
  id: "shapefile",
@@ -1340,7 +1340,7 @@ var DBFFormat = {
1340
1340
  };
1341
1341
 
1342
1342
  // dist/dbf-arrow-loader.js
1343
- var VERSION4 = true ? "4.4.0-alpha.13" : "latest";
1343
+ var VERSION4 = true ? "4.4.0-alpha.15" : "latest";
1344
1344
  var DBFArrowWorkerLoader = {
1345
1345
  ...DBFFormat,
1346
1346
  dataType: null,
@@ -25,7 +25,7 @@ export declare const ShapefileLoader: {
25
25
  readonly category: "geometry";
26
26
  readonly extensions: ["shp"];
27
27
  readonly mimeTypes: ["application/octet-stream"];
28
- readonly tests: [ArrayBufferLike];
28
+ readonly tests: [ArrayBuffer];
29
29
  readonly options: {
30
30
  readonly shapefile: {
31
31
  readonly shape: "v3";
@@ -5,7 +5,7 @@ import { SHP_MAGIC_NUMBER } from "./shp-loader.js";
5
5
  import { parseShapefile, parseShapefileInBatches } from "./lib/parsers/parse-shapefile.js";
6
6
  // __VERSION__ is injected by babel-plugin-version-inline
7
7
  // @ts-ignore TS2304: Cannot find name '__VERSION__'.
8
- const VERSION = typeof "4.4.0-alpha.13" !== 'undefined' ? "4.4.0-alpha.13" : 'latest';
8
+ const VERSION = typeof "4.4.0-alpha.15" !== 'undefined' ? "4.4.0-alpha.15" : 'latest';
9
9
  /**
10
10
  * Shapefile loader
11
11
  * @note Shapefile is multifile format and requires providing additional files
@@ -22,7 +22,7 @@ export declare const SHPWorkerLoader: {
22
22
  readonly category: "geometry";
23
23
  readonly extensions: ["shp"];
24
24
  readonly mimeTypes: ["application/octet-stream"];
25
- readonly tests: [ArrayBufferLike];
25
+ readonly tests: [ArrayBuffer];
26
26
  readonly options: {
27
27
  readonly shp: {
28
28
  readonly _maxDimensions: 4;
@@ -4,7 +4,7 @@
4
4
  import { parseSHP, parseSHPInBatches } from "./lib/parsers/parse-shp.js";
5
5
  // __VERSION__ is injected by babel-plugin-version-inline
6
6
  // @ts-ignore TS2304: Cannot find name '__VERSION__'.
7
- const VERSION = typeof "4.4.0-alpha.13" !== 'undefined' ? "4.4.0-alpha.13" : 'latest';
7
+ const VERSION = typeof "4.4.0-alpha.15" !== 'undefined' ? "4.4.0-alpha.15" : 'latest';
8
8
  export const SHP_MAGIC_NUMBER = [0x00, 0x00, 0x27, 0x0a];
9
9
  /**
10
10
  * SHP file loader
@@ -709,7 +709,7 @@
709
709
  }
710
710
 
711
711
  // src/shp-loader.ts
712
- var VERSION = true ? "4.4.0-alpha.13" : "latest";
712
+ var VERSION = true ? "4.4.0-alpha.15" : "latest";
713
713
  var SHP_MAGIC_NUMBER2 = [0, 0, 39, 10];
714
714
  var SHPWorkerLoader = {
715
715
  dataType: null,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@loaders.gl/shapefile",
3
3
  "description": "Loader for the Shapefile Format",
4
- "version": "4.4.0-alpha.13",
4
+ "version": "4.4.0-alpha.15",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
7
  "publishConfig": {
@@ -51,13 +51,13 @@
51
51
  "build-worker-dbf": "esbuild src/workers/dbf-worker.ts --bundle --outfile=dist/dbf-worker.js --define:__VERSION__=\\\"$npm_package_version\\\""
52
52
  },
53
53
  "dependencies": {
54
- "@loaders.gl/gis": "4.4.0-alpha.13",
55
- "@loaders.gl/loader-utils": "4.4.0-alpha.13",
56
- "@loaders.gl/schema": "4.4.0-alpha.13",
54
+ "@loaders.gl/gis": "4.4.0-alpha.15",
55
+ "@loaders.gl/loader-utils": "4.4.0-alpha.15",
56
+ "@loaders.gl/schema": "4.4.0-alpha.15",
57
57
  "@math.gl/proj4": "^4.1.0"
58
58
  },
59
59
  "peerDependencies": {
60
60
  "@loaders.gl/core": "4.4.0-alpha.1"
61
61
  },
62
- "gitHead": "5145c7b32353d00f414b85773caa9064af412434"
62
+ "gitHead": "d85491705e9943365790fb95da2e502cb2903ed7"
63
63
  }