@cogeotiff/core 7.2.0 → 7.2.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.
- package/CHANGELOG.md +7 -0
- package/README.md +6 -0
- package/package.json +3 -3
- package/tsconfig.json +1 -3
package/CHANGELOG.md
CHANGED
|
@@ -54,6 +54,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
54
54
|
|
|
55
55
|
|
|
56
56
|
|
|
57
|
+
## [7.2.1](https://github.com/blacha/cogeotiff/compare/core-v7.2.0...core-v7.2.1) (2022-11-16)
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
### Bug Fixes
|
|
61
|
+
|
|
62
|
+
* **core:** better examples ([bb9fda1](https://github.com/blacha/cogeotiff/commit/bb9fda10a614dfd37e272b48d4f5291d1b2c9542))
|
|
63
|
+
|
|
57
64
|
## [6.1.1](https://github.com/blacha/cogeotiff/compare/v6.1.0...v6.1.1) (2022-01-26)
|
|
58
65
|
|
|
59
66
|
|
package/README.md
CHANGED
|
@@ -26,3 +26,9 @@ if (img.isTiled()) {
|
|
|
26
26
|
const origin = img.origin;
|
|
27
27
|
const bbox = img.bbox;
|
|
28
28
|
```
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
More examples can bee seen
|
|
32
|
+
|
|
33
|
+
- [@cogeotiff/example](https://github.com/blacha/cogeotiff/tree/master/packages/examples)
|
|
34
|
+
- [CogViewer](https://github.com/blacha/cogeotiff-web)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cogeotiff/core",
|
|
3
|
-
"version": "7.2.
|
|
3
|
+
"version": "7.2.1",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/blacha/cogeotiff.git",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"test": "ospec --globs 'build/**/*.test.js'"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@chunkd/core": "^
|
|
21
|
+
"@chunkd/core": "^10.0.0",
|
|
22
22
|
"ieee754": "^1.1.13"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
@@ -28,5 +28,5 @@
|
|
|
28
28
|
"publishConfig": {
|
|
29
29
|
"access": "public"
|
|
30
30
|
},
|
|
31
|
-
"gitHead": "
|
|
31
|
+
"gitHead": "5a152b87c01d71617caab3a584d8396b646ef9a3"
|
|
32
32
|
}
|