@basemaps/bathymetry 6.46.0 → 7.1.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/README.md CHANGED
@@ -1,11 +1,11 @@
1
- # Bathymetry creation
1
+ # @basemaps/bathymetry
2
2
 
3
+ ## Bathymetry creation
3
4
 
4
5
  This process takes batheymetric data from [GEBCO](https://www.gebco.net/) and converts it into a colorized hillshaded geotiff.
5
6
 
6
7
  ![](./images/bathyoutput.png)
7
8
 
8
-
9
9
  ## Usage
10
10
 
11
11
  You will need:
@@ -16,19 +16,18 @@ You will need:
16
16
 
17
17
  ```bash
18
18
  # Install dependencies
19
- yarn add @basemaps/bathymetry
19
+ npm install @basemaps/bathymetry
20
20
 
21
- # To prevent very long CI/Dev build times, mapnik will need to be manually installed
22
- yarn add mapnik
21
+ # To prevent very long CI/Dev build times, mapnik will need to be manually installed
22
+ npm install mapnik
23
23
 
24
24
  # Ensure the javascript has been built
25
- yarn build
25
+ npm run build
26
26
 
27
27
  # Create a the data file
28
28
  node build/index.js -v create --input gebco_2020.nc --docker --output gebco/
29
29
  ```
30
30
 
31
-
32
31
  ## Process
33
32
 
34
33
  ![](./images/bathyprocess.png)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@basemaps/bathymetry",
3
- "version": "6.46.0",
3
+ "version": "7.1.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/linz/basemaps.git",
@@ -13,13 +13,13 @@
13
13
  },
14
14
  "type": "module",
15
15
  "engines": {
16
- "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
16
+ "node": ">=16.0.0"
17
17
  },
18
18
  "license": "MIT",
19
19
  "main": "./build/index.js",
20
20
  "types": "./build/index.d.ts",
21
21
  "scripts": {
22
- "test": "ospec --globs 'build/**/*.test.js'"
22
+ "test": "node --test"
23
23
  },
24
24
  "publishConfig": {
25
25
  "access": "public"
@@ -28,18 +28,15 @@
28
28
  "build/"
29
29
  ],
30
30
  "dependencies": {
31
- "@basemaps/cli": "^6.46.0",
32
- "@basemaps/geo": "^6.44.0",
33
- "@basemaps/shared": "^6.46.0",
31
+ "@basemaps/cli": "^7.1.0",
32
+ "@basemaps/geo": "^7.1.0",
33
+ "@basemaps/shared": "^7.1.0",
34
34
  "@rushstack/ts-command-line": "^4.3.13",
35
35
  "multihashes": "^4.0.2",
36
36
  "ulid": "^2.3.0"
37
37
  },
38
- "peerDependencies": {
39
- "mapnik": "^4.4.0"
40
- },
41
38
  "devDependencies": {
42
39
  "@types/mapnik": "^3.0.1"
43
40
  },
44
- "gitHead": "7a5165db25aa5166c7626995f235d29b22cceb88"
41
+ "gitHead": "f6f5f37f090c41115a094cb5b9dc5326a0bd30c9"
45
42
  }