@basemaps/server 6.39.0 → 6.41.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,34 @@
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.41.0](https://github.com/linz/basemaps/compare/v6.40.0...v6.41.0) (2023-07-26)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **config:** allow initializing config from URLs ([#2830](https://github.com/linz/basemaps/issues/2830)) ([0ea552e](https://github.com/linz/basemaps/commit/0ea552ec32ad723f98c96d533f18a8afc51d9657))
12
+
13
+
14
+
15
+
16
+
17
+ # [6.40.0](https://github.com/linz/basemaps/compare/v6.39.0...v6.40.0) (2023-03-16)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **server:** Fix the server cli to load config from config path. ([#2690](https://github.com/linz/basemaps/issues/2690)) ([64d1f14](https://github.com/linz/basemaps/commit/64d1f14910324b04cf4355200141454fb1a3b0ad))
23
+ * **server:** make --no-config actually load the configuration from tiffs ([#2682](https://github.com/linz/basemaps/issues/2682)) ([019ee50](https://github.com/linz/basemaps/commit/019ee50ee22cda2ce143f9a012d4aaa9ffc0edc9))
24
+
25
+
26
+ ### Features
27
+
28
+ * **server:** change CLI interface to support multiple tiff folders ([#2688](https://github.com/linz/basemaps/issues/2688)) ([7fcd310](https://github.com/linz/basemaps/commit/7fcd310425aaf02bbadab2bb3b89cce5b7462c8f))
29
+
30
+
31
+
32
+
33
+
6
34
  # [6.39.0](https://github.com/linz/basemaps/compare/v6.38.0...v6.39.0) (2023-01-25)
7
35
 
8
36
 
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  WMTS/XYZ Tile server command line interface.
4
4
 
5
- This wraps the [@basemaps/lambda-tiler](https://github.com/linz/basemaps/blob/master/packages/lambda-tiler/README.md) into a standalone http server.
5
+ This wraps the [@basemaps/lambda-tiler](https://github.com/linz/basemaps/blob/master/packages/lambda-tiler/README.md) into a standalone http server using [fastify](https://www.fastify.io/).
6
6
 
7
7
  ## Usage
8
8
  Basemaps server expects a folder tree full of configuration, with multiple tilesets and styles configuration files.
@@ -20,7 +20,7 @@ docker run -it \
20
20
  --volume $PWD/config:/config \
21
21
  --volume $PWD/tiffs:$PWD/tiffs \
22
22
  -p 5000:5000 \
23
- ghcr.io/linz/basemaps-server:v6.28.0 --config /config
23
+ ghcr.io/linz/basemaps-server:v6 --config /config
24
24
  ```
25
25
 
26
26
  Where `${PWD}/config` contains all the configuration and `${PWD}/tiffs` is all the relevant tiff files
@@ -58,11 +58,11 @@ If you have a folder of tiffs the `@basemaps/server` can index the folder and cr
58
58
  For example given a structure where there are two folders full of tiffs
59
59
 
60
60
  ```
61
- /images/00_gebco_2021_305-75m/01G0DBCAEQAAPD0D2F2VZS40XM/*.tiff
62
- /images/10_geographx_nz_texture_shade_2012_8-0m_01FHRPYJ5FV1XAARZAC4T4K6MC/*.tiff
61
+ /images/00_gebco_2021_305-75m/*.tiff
62
+ /images/10_geographx_nz_texture_shade_2012_8-0m/*.tiff
63
63
  ```
64
64
 
65
- running `basemaps-server --config /images --no-config` will create two tile sets one for each folder `gebco_2021...` and `geographx_nz_t...` and then also create a combined layer in the order the tiffs are found.
65
+ running `basemaps-server /images/00_gebco_2021_305-75m/ /images/10_geographx_nz_texture_shade_2012_8-0m/` will create two tile sets one for each folder `gebco_2021...` and `geographx_nz_t...` and then also create a combined layer in the order the tiffs are found.
66
66
 
67
67
 
68
68
  ## Developing