This is an automated email from the ASF dual-hosted git repository.
bchapuis pushed a change to branch geoparquet-writer
in repository https://gitbox.apache.org/repos/asf/incubator-baremaps.git
discard c8ddfb15e Address the review comments
discard ab7e7a2e6 Fix problem when writing groups
discard 10c5388dd Use the builder instead of the constructor
discard 7888582e7 Fix deprecation notices
discard 65ec5a9e6 Implement the builder
discard 1b2890480 Implement a geoparquet writer
discard b4075253d Enhance the instructions related to issues
add 36584f4a4 Improve the documentation
add 39a8abf6b Add a csv data store (#901)
add 922124a24 Implement a geoparquet writer
add e733d9567 Implement the builder
add 5cb3cd20c Fix deprecation notices
add dcc468e6a Use the builder instead of the constructor
add 3987f2c30 Fix problem when writing groups
add 8fcc1a7dd Address the review comments
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 (c8ddfb15e)
\
N -- N -- N refs/heads/geoparquet-writer (8fcc1a7dd)
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:
README.md | 27 +--
.../CsvDataStore.java} | 59 +++---
.../apache/baremaps/storage/csv/CsvDataTable.java | 201 +++++++++++++++++++++
.../storage/csv/CsvDataTableGeonamesTest.java | 126 +++++++++++++
.../baremaps/storage/csv/CsvDataTableTest.java | 195 ++++++++++++++++++++
.../org/apache/baremaps/testing/TestFiles.java | 3 +
basemap/README.md | 22 ++-
7 files changed, 585 insertions(+), 48 deletions(-)
copy
baremaps-core/src/main/java/org/apache/baremaps/storage/{geopackage/GeoPackageDataStore.java
=> csv/CsvDataStore.java} (50%)
create mode 100644
baremaps-core/src/main/java/org/apache/baremaps/storage/csv/CsvDataTable.java
create mode 100644
baremaps-core/src/test/java/org/apache/baremaps/storage/csv/CsvDataTableGeonamesTest.java
create mode 100644
baremaps-core/src/test/java/org/apache/baremaps/storage/csv/CsvDataTableTest.java