This is an automated email from the ASF dual-hosted git repository.
bchapuis pushed a change to branch pmtiles
in repository https://gitbox.apache.org/repos/asf/incubator-baremaps.git
discard 60ce43ef Refactor package and introduce a PMTilesReader class
discard 18972410 Fix unit tests
discard 8b24b808 Port additional methods and tests
discard 1856fd16 Format code
discard ad8bd43e Implement header serialization and deserialization
discard 97ac1b61 Add pmtiles functions
add 49a84c96 Expose environment variables to javascript (#776)
add dfa1e949 Add a datasource object to the tileset (#777)
add 78397fc6 List the derived files in the NOTICE (#771)
add 894e959a Concat THIRD-PARTY to LICENSE in bin release (#778)
new a30241e2 Add pmtiles functions
new 4c91cc6f Implement header serialization and deserialization
new 61e28f36 Format code
new 5ef6a50f Port additional methods and tests
new dbae519e Fix unit tests
new 39f811d5 Refactor package and introduce a PMTilesReader class
new 4633de7b Add a minimalistic tile writer
new f65b5eeb Correctly set header and metadata
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (60ce43ef)
\
N -- N -- N refs/heads/pmtiles (f65b5eeb)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
The 8 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
DISCLAIMER-WIP | 4 +
LICENSE | 4 +-
NOTICE | 38 +-
baremaps-cli/licenseBundledDeps.ftl | 56 ---
baremaps-cli/pom.xml | 72 ++-
baremaps-cli/src/assembly/bin.xml | 8 +-
baremaps-cli/src/license/bundle.ftl | 37 ++
baremaps-cli/src/license/override.ftl | 36 ++
baremaps-cli/src/license/override.properties | 209 ++++++++
.../main/java/org/apache/baremaps/cli/map/Dev.java | 2 +-
.../java/org/apache/baremaps/cli/map/Serve.java | 4 +-
.../org/apache/baremaps/config/ConfigReader.java | 7 +
.../org/apache/baremaps/tilestore/TileCache.java | 6 +
.../org/apache/baremaps/tilestore/TileStore.java | 2 +-
.../baremaps/tilestore/file/FileTileStore.java | 5 +
.../baremaps/tilestore/mbtiles/MBTilesStore.java | 5 +
.../baremaps/tilestore/pmtiles/Compression.java | 109 ++--
.../apache/baremaps/tilestore/pmtiles/Entry.java | 104 ++--
.../apache/baremaps/tilestore/pmtiles/Header.java | 556 ++++++++++++---------
.../apache/baremaps/tilestore/pmtiles/PMTiles.java | 263 ++++++----
.../baremaps/tilestore/pmtiles/PMTilesReader.java | 91 ++++
.../PMTilesStore.java} | 48 +-
.../baremaps/tilestore/pmtiles/PMTilesWriter.java | 124 +++++
.../baremaps/tilestore/pmtiles/TileType.java | 24 +-
.../tilestore/postgres/PostgresTileStore.java | 4 +
.../org/apache/baremaps/utils/PostgresUtils.java | 104 +++-
.../baremaps/vectortile/tileset/Database.java | 194 +++++++
.../baremaps/vectortile/tileset/Tileset.java | 6 +-
.../apache/baremaps/workflow/WorkflowContext.java | 6 +-
.../apache/baremaps/workflow/tasks/ExecuteSql.java | 2 +-
.../baremaps/workflow/tasks/ExecuteSqlScript.java | 2 +-
.../baremaps/workflow/tasks/ExportVectorTiles.java | 35 +-
.../baremaps/workflow/tasks/ImportGeoPackage.java | 2 +-
.../workflow/tasks/ImportOpenStreetMap.java | 2 +-
.../baremaps/workflow/tasks/ImportShapefile.java | 2 +-
.../workflow/tasks/UpdateOpenStreetMap.java | 2 +-
.../baremaps/tilestore/pmtiles/PMTilesReader.java | 77 ---
.../baremaps/tilestore/pmtiles/PMTilesTest.java | 125 ++---
38 files changed, 1629 insertions(+), 748 deletions(-)
delete mode 100644 baremaps-cli/licenseBundledDeps.ftl
create mode 100644 baremaps-cli/src/license/bundle.ftl
create mode 100644 baremaps-cli/src/license/override.ftl
create mode 100644 baremaps-cli/src/license/override.properties
create mode 100644
baremaps-core/src/main/java/org/apache/baremaps/tilestore/pmtiles/PMTilesReader.java
copy
baremaps-core/src/main/java/org/apache/baremaps/tilestore/{file/FileTileStore.java
=> pmtiles/PMTilesStore.java} (59%)
create mode 100644
baremaps-core/src/main/java/org/apache/baremaps/tilestore/pmtiles/PMTilesWriter.java
create mode 100644
baremaps-core/src/main/java/org/apache/baremaps/vectortile/tileset/Database.java
delete mode 100644
baremaps-core/src/test/java/org/apache/baremaps/tilestore/pmtiles/PMTilesReader.java