@basemaps/bathymetry 6.22.0 → 6.24.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,30 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [6.24.0](https://github.com/linz/basemaps/compare/v6.23.0...v6.24.0) (2022-04-05)
7
+
8
+ **Note:** Version bump only for package @basemaps/bathymetry
9
+
10
+
11
+
12
+
13
+
14
+ # [6.23.0](https://github.com/linz/basemaps/compare/v6.22.1...v6.23.0) (2022-04-04)
15
+
16
+ **Note:** Version bump only for package @basemaps/bathymetry
17
+
18
+
19
+
20
+
21
+
22
+ ## [6.22.1](https://github.com/linz/basemaps/compare/v6.22.0...v6.22.1) (2022-03-23)
23
+
24
+ **Note:** Version bump only for package @basemaps/bathymetry
25
+
26
+
27
+
28
+
29
+
6
30
  # [6.22.0](https://github.com/linz/basemaps/compare/v6.21.1...v6.22.0) (2022-03-20)
7
31
 
8
32
  **Note:** Version bump only for package @basemaps/bathymetry
package/README.md CHANGED
@@ -21,8 +21,11 @@ yarn add @basemaps/bathymetry
21
21
  # To prevent very long CI/Dev build times, mapnik will need to be manually installed
22
22
  yarn add mapnik
23
23
 
24
+ # Ensure the javascript has been built
25
+ yarn build
26
+
24
27
  # Create a the data file
25
- basemaps-bathymetry gebco_2020.nc -v --docker
28
+ node build/index.js -v create --input gebco_2020.nc --docker --output gebco/
26
29
  ```
27
30
 
28
31
 
@@ -210,4 +210,3 @@ export class BathyMaker {
210
210
  await fsa.writeJson(stacOutputPath, output);
211
211
  }
212
212
  }
213
- module.exports = { BathyMaker };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@basemaps/bathymetry",
3
- "version": "6.22.0",
3
+ "version": "6.24.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/linz/basemaps.git",
@@ -28,9 +28,9 @@
28
28
  "build/"
29
29
  ],
30
30
  "dependencies": {
31
- "@basemaps/cli": "^6.22.0",
31
+ "@basemaps/cli": "^6.24.0",
32
32
  "@basemaps/geo": "^6.21.1",
33
- "@basemaps/shared": "^6.22.0",
33
+ "@basemaps/shared": "^6.23.0",
34
34
  "@rushstack/ts-command-line": "^4.3.13",
35
35
  "multihashes": "^4.0.2",
36
36
  "ulid": "^2.3.0"
@@ -41,5 +41,5 @@
41
41
  "devDependencies": {
42
42
  "@types/mapnik": "^3.0.1"
43
43
  },
44
- "gitHead": "b85a4a628bcdfea657a37de97faa23dde5c34798"
44
+ "gitHead": "8cfdb4b9821ae3e35e1fd56a551ed489817422a9"
45
45
  }