@thi.ng/pixel-io-geotiff 0.1.133 → 0.1.136

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/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2025-07-30T22:32:35Z
3
+ - **Last updated**: 2025-08-04T09:13:01Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
@@ -11,6 +11,12 @@ See [Conventional Commits](https://conventionalcommits.org/) for commit guidelin
11
11
  **Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
12
12
  and/or version bumps of transitive dependencies.
13
13
 
14
+ ### [0.1.135](https://github.com/thi-ng/umbrella/tree/@thi.ng/pixel-io-geotiff@0.1.135) (2025-08-04)
15
+
16
+ #### ♻️ Refactoring
17
+
18
+ - add required typedarray generics (TS5.9) ([f1aecd0](https://github.com/thi-ng/umbrella/commit/f1aecd0))
19
+
14
20
  ### [0.1.45](https://github.com/thi-ng/umbrella/tree/@thi.ng/pixel-io-geotiff@0.1.45) (2023-11-09)
15
21
 
16
22
  #### ♻️ Refactoring
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/pixel-io-geotiff",
3
- "version": "0.1.133",
3
+ "version": "0.1.136",
4
4
  "description": "GeoTIFF reader support for @thi.ng/pixel",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -39,14 +39,14 @@
39
39
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
40
40
  },
41
41
  "dependencies": {
42
- "@thi.ng/api": "^8.11.33",
43
- "@thi.ng/pixel": "^7.5.5",
42
+ "@thi.ng/api": "^8.12.1",
43
+ "@thi.ng/pixel": "^7.5.8",
44
44
  "geotiff": "2.1.4-beta.0"
45
45
  },
46
46
  "devDependencies": {
47
47
  "esbuild": "^0.25.8",
48
- "typedoc": "^0.28.7",
49
- "typescript": "^5.8.3"
48
+ "typedoc": "^0.28.9",
49
+ "typescript": "^5.9.2"
50
50
  },
51
51
  "keywords": [
52
52
  "conversion",
@@ -90,5 +90,5 @@
90
90
  "year": 2023,
91
91
  "screenshot": "pixel-io-geotiff/20230109-n45w121-crop-1280.jpg"
92
92
  },
93
- "gitHead": "1df8a3a9061257ea73ccf1ab9cdf63c81a9f519f\n"
93
+ "gitHead": "9a998c33c7a524c95b552b9cbdc2734d28a5dafc\n"
94
94
  }
package/read.d.ts CHANGED
@@ -24,7 +24,7 @@ export interface GeoTiffOpts {
24
24
  */
25
25
  pool: boolean | number | Pool;
26
26
  }
27
- export declare const readGeoTiff: (src: ArrayBufferView, opts?: Partial<GeoTiffOpts>) => Promise<{
27
+ export declare const readGeoTiff: (src: ArrayBufferView<ArrayBuffer>, opts?: Partial<GeoTiffOpts>) => Promise<{
28
28
  img: FloatBuffer;
29
29
  tiff: GeoTIFFImage;
30
30
  }>;