This is an automated email from the ASF dual-hosted git repository.
bchapuis pushed a change to branch 745-daylight
in repository https://gitbox.apache.org/repos/asf/incubator-baremaps.git
omit 74241cb0 Assume that osm change files are standalone
omit 910f47d2 Format code
omit b27480a6 Implement compression at the import stage
omit c50f6fc7 Fix configuration
omit 8f33c9a0 Remove try catch
omit 5b794b38 Fix tileset setter
omit a9158bf1 Print exception
omit b6009ec3 Fix conflicts
omit f3416ab0 Add demo config
omit 925c514a wFix queries
omit 2c14e39e Log queries
omit 479cce2d Improve the workflow
omit 842ab00d Adapt the workflow to daylight
omit d2c104b2 Handle null geometries in shapefile
omit 5103abac Import water polygons
omit d53dc176 Fix null pointer exception
omit ec44d78b Fix delete query
omit 5df3203f Use bigint instead of int8
omit c87456a3 Replace executeBatch by execute
omit a6424b45 Replace ANY by IN in delete query
omit dd260ece Delete before import to prevent pk violations
omit ee5373d0 Fix compilation error
omit 7d706783 Improve change importer with copy api
omit d2f4214e wqRename import osm task and add osc task
omit 3d2a42f0 Display durations of 0 ms
omit c506e076 Display durations of 0 ms
omit 32a12419 Fix incorect durations in workflow
omit 4ff876c9 Fix NoSuchElementException in workflow executor
omit 03f1dba6 Fix compression
omit 55c6acdf Fix coastline in workflow
omit b688a00d Fix workflow
omit 8e123bfc Fix workflow
omit 67902697 Fix workflow
omit 7a94ee00 Add decompress task
omit 1ba082ff Create inital workflow for daylight
add 1acf9335 Experimental GeocoderOSM (#782)
add f974e135 Fix database type issue
new 05c2ae01 Create inital workflow for daylight
new 973395d0 Add decompress task
new 3798e119 Fix workflow
new 65c6c3a0 Fix workflow
new b63896e6 Fix workflow
new 7ca54662 Fix coastline in workflow
new bb5c04d2 Fix compression
new 7d38ad35 Fix NoSuchElementException in workflow executor
new 2ff084c1 Fix incorect durations in workflow
new cc96abcf Display durations of 0 ms
new bbfbb1d0 Display durations of 0 ms
new e4bda42c wqRename import osm task and add osc task
new 6f4bedaf Improve change importer with copy api
new 24c16af3 Fix compilation error
new 50aac202 Delete before import to prevent pk violations
new 17578ec2 Replace ANY by IN in delete query
new f1952005 Replace executeBatch by execute
new e0eb31f7 Use bigint instead of int8
new 356f46c5 Fix delete query
new c3f40184 Fix null pointer exception
new 2e0cdb6e Import water polygons
new 5ce8e48d Handle null geometries in shapefile
new 96f68592 Adapt the workflow to daylight
new 37e3e5a3 Improve the workflow
new 30dc007b Log queries
new 16ff9804 wFix queries
new 5beaa822 Add demo config
new e3269396 Fix conflicts
new 3e2dd494 Print exception
new 9fde553f Fix tileset setter
new 11c808a9 Remove try catch
new e83f5b3d Fix configuration
new 51cc13bc Implement compression at the import stage
new d0c4d50e Format code
new 582469a1 Assume that osm change files are standalone
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 (74241cb0)
\
N -- N -- N refs/heads/745-daylight (582469a1)
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 35 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:
.../geocoderosm/GeocoderOsmConsumerEntity.java | 45 ++++++
.../geocoderosm/GeocoderOsmDocumentMapper.java | 100 +++++++++++++
.../baremaps/geocoderosm/GeocoderOsmQuery.java | 40 +++++
.../org/apache/baremaps/geocoderosm/OsmTags.java | 26 ++--
.../apache/baremaps/geocoderosm/package-info.java | 4 +
.../function/RelationGeometryBuilder.java | 6 +-
...smPbf.java => CreateGeocoderOpenStreetMap.java} | 89 +++++------
.../apache/baremaps/geocoderosm/OSMIndexTest.java | 162 +++++++++++++++++++++
baremaps-core/src/test/resources/log4j2-test.yaml | 13 ++
9 files changed, 431 insertions(+), 54 deletions(-)
create mode 100644
baremaps-core/src/main/java/org/apache/baremaps/geocoderosm/GeocoderOsmConsumerEntity.java
create mode 100644
baremaps-core/src/main/java/org/apache/baremaps/geocoderosm/GeocoderOsmDocumentMapper.java
create mode 100644
baremaps-core/src/main/java/org/apache/baremaps/geocoderosm/GeocoderOsmQuery.java
copy baremaps-cli/src/main/java/org/apache/baremaps/cli/iploc/IpLoc.java =>
baremaps-core/src/main/java/org/apache/baremaps/geocoderosm/OsmTags.java (62%)
create mode 100644
baremaps-core/src/main/java/org/apache/baremaps/geocoderosm/package-info.java
copy
baremaps-core/src/main/java/org/apache/baremaps/workflow/tasks/{ImportOsmPbf.java
=> CreateGeocoderOpenStreetMap.java} (63%)
create mode 100644
baremaps-core/src/test/java/org/apache/baremaps/geocoderosm/OSMIndexTest.java
create mode 100644 baremaps-core/src/test/resources/log4j2-test.yaml