@gisatcz/deckgl-geolib 1.3.1-dev.4 → 1.4.1

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.
@@ -1,5 +1,5 @@
1
1
  import { CogTiff, CogTiffImage } from '@cogeotiff/core';
2
- import LZWDecoder from './lzw.js';
2
+ import LZWDecoder from './lzw';
3
3
  import GeoImage, { GeoImageOptions } from '../geoimage/geoimage.ts';
4
4
  declare class CogTiles {
5
5
  cog: CogTiff;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gisatcz/deckgl-geolib",
3
- "version": "1.3.1-dev.4",
3
+ "version": "1.4.1",
4
4
  "private": false,
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -21,15 +21,6 @@
21
21
  "@types/chroma-js": "^2.4.0",
22
22
  "@types/pako": "^2.0.0",
23
23
  "eslint": "^8.43.0",
24
- "eslint-config-airbnb": "^19.0.4",
25
- "eslint-config-prettier": "^8.3.0",
26
- "eslint-plugin-import": "^2.27.5",
27
- "eslint-plugin-jsx-a11y": "^6.7.1",
28
- "eslint-plugin-node": "^11.1.0",
29
- "eslint-plugin-prettier": "^4.0.0",
30
- "eslint-plugin-promise": "^5.2.0",
31
- "eslint-plugin-react": "^7.32.2",
32
- "eslint-plugin-react-hooks": "^4.6.0",
33
24
  "rollup": "^3.25.1",
34
25
  "rollup-plugin-dts": "^5.3.0",
35
26
  "rollup-plugin-filesize": "^10.0.0",
@@ -7,7 +7,7 @@ import { SourceUrl } from '@chunkd/source-url';
7
7
  import { inflate } from 'pako';
8
8
  import jpeg from 'jpeg-js';
9
9
  import { worldToLngLat } from '@math.gl/web-mercator';
10
- import LZWDecoder from './lzw.js';
10
+ import LZWDecoder from './lzw';
11
11
 
12
12
  // Bitmap styling
13
13
  import GeoImage, { GeoImageOptions } from '../geoimage/geoimage.ts'; // TODO: remove absolute path
@@ -15,7 +15,6 @@ import GeoImage, { GeoImageOptions } from '../geoimage/geoimage.ts'; // TODO: re
15
15
  const EARTH_CIRCUMFERENCE = 40075000.0;
16
16
  const EARTH_HALF_CIRCUMFERENCE = 20037500.0;
17
17
 
18
-
19
18
  class CogTiles {
20
19
  cog: CogTiff;
21
20