This is an automated email from the ASF dual-hosted git repository.
bchapuis pushed a change to branch overturemaps-lucene
in repository https://gitbox.apache.org/repos/asf/incubator-baremaps.git
omit e2ef3ce46 Fix issues detected by sonar
omit 188843d81 Fix issues detected by sonar
omit 9d5ea5bf9 Remove unused code
omit 7088d3cf6 Add abstractions to create index from data tables
omit 7058cad6f Add consumer, mapper and query for datatable abstration
omit 88a64437b Refactor the geocoder package
add f2fb634fb Implement a geoparquet writer (#899)
add e31789a4b Refactor the geocoder package
add 49781097d Add consumer, mapper and query for datatable abstration
add 5b6d3a5e3 Add abstractions to create index from data tables
add 3de244a6f Remove unused code
add 30e4e3326 Fix issues detected by sonar
add 293b7e44c Fix issues detected by sonar
add e0ea804aa Fix integration test
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 (e2ef3ce46)
\
N -- N -- N refs/heads/overturemaps-lucene (e0ea804aa)
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.
No new revisions were added by this update.
Summary of changes:
.../geoparquet/OvertureMapsBenchmark.java | 6 +-
.../geoparquet/SmallFileBenchmark.java | 7 +-
.../storage/geoparquet/GeoParquetDataTable.java | 3 +-
.../geoparquet/GeoParquetToPostgresTest.java | 6 +-
.../baremaps/geoparquet/GeoParquetGroup.java | 2 +-
.../baremaps/geoparquet/GeoParquetReader.java | 26 ++--
.../geoparquet/GeoParquetWriteSupport.java | 138 ++++++++++++++++++
.../baremaps/geoparquet/GeoParquetWriter.java | 98 +++++++++++++
.../baremaps/geoparquet/GeoParquetReaderTest.java | 12 +-
.../baremaps/geoparquet/GeoParquetWriterTest.java | 154 +++++++++++++++++++++
.../baremaps/geoparquet/OvertureMapsTest.java | 32 ++---
11 files changed, 430 insertions(+), 54 deletions(-)
create mode 100644
baremaps-geoparquet/src/main/java/org/apache/baremaps/geoparquet/GeoParquetWriteSupport.java
create mode 100644
baremaps-geoparquet/src/main/java/org/apache/baremaps/geoparquet/GeoParquetWriter.java
create mode 100644
baremaps-geoparquet/src/test/java/org/apache/baremaps/geoparquet/GeoParquetWriterTest.java