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 3aad0673 Port additional methods and tests
discard 4f4f4448 Format code
discard 5fd64d1d Implement header serialization and deserialization
discard 01678199 Add pmtiles functions
add be499e3d Expose the tileset and the SQL queries in dev mode (#772)
new 97ac1b61 Add pmtiles functions
new ad8bd43e Implement header serialization and deserialization
new 1856fd16 Format code
new 8b24b808 Port additional methods and tests
new 18972410 Fix unit tests
new 60ce43ef Refactor package and introduce a PMTilesReader class
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 (3aad0673)
\
N -- N -- N refs/heads/pmtiles (60ce43ef)
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 6 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:
.../main/java/org/apache/baremaps/cli/map/Dev.java | 7 +-
.../java/org/apache/baremaps/cli/map/Serve.java | 2 +-
.../baremaps/tilestore/pmtiles/Compression.java | 70 ++++++
.../apache/baremaps/tilestore/pmtiles/Entry.java | 51 ++++
.../apache/baremaps/tilestore/pmtiles/Header.java | 258 +++++++++++++++++++++
.../apache/baremaps/tilestore/pmtiles/PMTiles.java | 160 +++----------
.../baremaps/tilestore/pmtiles/TileType.java | 10 +
.../baremaps/tilestore/pmtiles/PMTilesReader.java | 77 ++++++
.../baremaps/tilestore/pmtiles/PMTilesTest.java | 91 +++++---
.../baremaps/vectortile/VectorTileViewer.java | 2 +-
...{TilesetResource.java => TileJSONResource.java} | 6 +-
.../apache/baremaps/server/TilesetResource.java | 18 +-
scripts/build-project.sh | 3 +
13 files changed, 578 insertions(+), 177 deletions(-)
create mode 100644
baremaps-core/src/main/java/org/apache/baremaps/tilestore/pmtiles/Compression.java
create mode 100644
baremaps-core/src/main/java/org/apache/baremaps/tilestore/pmtiles/Entry.java
create mode 100644
baremaps-core/src/main/java/org/apache/baremaps/tilestore/pmtiles/Header.java
create mode 100644
baremaps-core/src/main/java/org/apache/baremaps/tilestore/pmtiles/TileType.java
create mode 100644
baremaps-core/src/test/java/org/apache/baremaps/tilestore/pmtiles/PMTilesReader.java
copy
baremaps-server/src/main/java/org/apache/baremaps/server/{TilesetResource.java
=> TileJSONResource.java} (88%)