This is an automated email from the ASF dual-hosted git repository.

bchapuis pushed a change to branch workflow
in repository https://gitbox.apache.org/repos/asf/incubator-baremaps.git


    omit 48ebe4c2 Add javadoc
    omit b71a3db3 Move the type name in the sub classes
    omit cb332fc1 Improve workflow and replace records by classes
     add c3cdfced Add support for openstreetmap changes (#801)
     new 8b814828 Improve workflow and replace records by classes
     new 7b061068 Move the type name in the sub classes
     new a8d8939e Add javadoc
     new 8cd22e2f Remove unused method

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   (48ebe4c2)
            \
             N -- N -- N   refs/heads/workflow (8cd22e2f)

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 4 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:
 LICENSE                                            |   1 +
 NOTICE                                             |   7 +
 .../database/collection/DataCollectionAdapter.java |   2 +-
 .../function/ChangeEntitiesHandler.java            |   2 +-
 .../postgres/PostgresCoordinateMap.java            | 122 ++++++++------
 .../postgres/PostgresHeaderRepository.java         |  28 ++--
 .../postgres/PostgresNodeRepository.java           |  44 +++--
 .../postgres/PostgresReferenceMap.java             | 117 +++++++------
 .../postgres/PostgresRelationRepository.java       |  32 ++--
 .../postgres/PostgresWayRepository.java            |  43 +++--
 ...ChangeImporter.java => CopyChangeImporter.java} |   7 +-
 ...{ChangeImporter.java => PutChangeImporter.java} |  15 +-
 .../baremaps/openstreetmap/state/StateReader.java  | 186 ++++++++++++++++++++-
 .../storage/postgres/PostgresDataSchema.java       |   9 +-
 .../shapefile/internal/ShapefileByteReader.java    |   8 +-
 .../baremaps/workflow/tasks/ImportOsmOsc.java      |   4 +-
 .../baremaps/workflow/tasks/UpdateOsmDatabase.java |  72 ++++----
 .../baremaps/openstreetmap/OpenStreetMapTest.java  |   2 +-
 .../state/StateReaderTest.java}                    |  19 +--
 .../baremaps/workflow/tasks/ImportMonacoTest.java  |   2 +-
 .../workflow/tasks/ImportUpdateDataTest.java       |   4 +-
 .../tasks/ImportUpdateLiechtensteinTest.java       |   6 +-
 .../simple/000/000/{001.osc.gz => 002.osc.gz}      | Bin
 .../000/000/{001.state.txt => 002.state.txt}       |   0
 .../simple/{000/000/001.state.txt => state.txt}    |   0
 basemap/{workflow.js => import.js}                 |  53 +++---
 basemap/layers/boundary/globaladm0_clean.sql       |  36 ----
 basemap/layers/boundary/globaladm0_index.sql       |  28 ----
 basemap/layers/boundary/globaladm0_simplify.sql    |  76 ---------
 basemap/layers/boundary/globaladm1_clean.sql       |  36 ----
 basemap/layers/boundary/globaladm1_index.sql       |  28 ----
 basemap/layers/boundary/globaladm1_simplify.sql    |  76 ---------
 basemap/layers/highway/clean.sql                   |  25 ++-
 basemap/layers/highway/prepare.sql                 |   2 -
 .../{route/prepare.sql => highway/refresh.sql}     |  27 ++-
 basemap/layers/landuse/clean.sql                   |   1 +
 basemap/layers/landuse/refresh.sql                 |  62 +++++++
 basemap/layers/leisure/clean.sql                   |   1 +
 basemap/layers/leisure/index.sql                   |   1 +
 basemap/layers/leisure/prepare.sql                 |   1 +
 basemap/layers/leisure/refresh.sql                 |  62 +++++++
 basemap/layers/linestring/clean.sql                |   1 +
 basemap/layers/linestring/index.sql                |   1 +
 basemap/layers/linestring/prepare.sql              |   1 +
 .../linestring/refresh.sql}                        |   3 +-
 .../initialize.sql => layers/member/refresh.sql}   |   3 +-
 basemap/layers/natural/refresh.sql                 |  57 +++++++
 basemap/layers/point/index.sql                     |   1 +
 .../layers/point/refresh.sql                       |  18 +-
 .../initialize.sql => layers/polygon/refresh.sql}  |   3 +-
 basemap/layers/railway/clean.sql                   |  23 +++
 basemap/layers/railway/index.sql                   |   1 +
 basemap/layers/railway/prepare.sql                 |   2 +-
 .../{route/prepare.sql => railway/refresh.sql}     |  27 ++-
 basemap/layers/route/clean.sql                     |  23 +++
 basemap/layers/route/index.sql                     |   1 +
 basemap/layers/route/prepare.sql                   |   1 +
 .../schema.sql => basemap/layers/route/refresh.sql |  22 ++-
 basemap/layers/route/simplify.sql                  |   1 +
 basemap/layers/waterway/clean.sql                  |  23 +++
 basemap/layers/waterway/index.sql                  |   1 +
 basemap/layers/waterway/prepare.sql                |   1 +
 .../{route/prepare.sql => waterway/refresh.sql}    |  27 ++-
 basemap/queries/initialize.sql                     |   1 +
 basemap/queries/ne_index.sql                       |   1 +
 basemap/queries/osm_relations.sql                  |   1 +
 basemap/queries/osm_ways.sql                       |   1 +
 basemap/queries/statistics.sql                     |   1 +
 basemap/refresh.js                                 | 143 ++++++++++++++++
 basemap/{layers/ocean/tileset.js => update.js}     |  23 +--
 70 files changed, 1056 insertions(+), 603 deletions(-)
 copy 
baremaps-core/src/main/java/org/apache/baremaps/openstreetmap/repository/{ChangeImporter.java
 => CopyChangeImporter.java} (97%)
 rename 
baremaps-core/src/main/java/org/apache/baremaps/openstreetmap/repository/{ChangeImporter.java
 => PutChangeImporter.java} (89%)
 copy 
baremaps-core/src/test/java/org/apache/baremaps/{database/type/LonLatDataTypeTest.java
 => openstreetmap/state/StateReaderTest.java} (68%)
 rename baremaps-core/src/test/resources/simple/000/000/{001.osc.gz => 
002.osc.gz} (100%)
 copy baremaps-core/src/test/resources/simple/000/000/{001.state.txt => 
002.state.txt} (100%)
 rename baremaps-core/src/test/resources/simple/{000/000/001.state.txt => 
state.txt} (100%)
 rename basemap/{workflow.js => import.js} (99%)
 delete mode 100644 basemap/layers/boundary/globaladm0_clean.sql
 delete mode 100644 basemap/layers/boundary/globaladm0_index.sql
 delete mode 100644 basemap/layers/boundary/globaladm0_simplify.sql
 delete mode 100644 basemap/layers/boundary/globaladm1_clean.sql
 delete mode 100644 basemap/layers/boundary/globaladm1_index.sql
 delete mode 100644 basemap/layers/boundary/globaladm1_simplify.sql
 copy basemap/layers/{route/prepare.sql => highway/refresh.sql} (59%)
 create mode 100644 basemap/layers/landuse/refresh.sql
 create mode 100644 basemap/layers/leisure/refresh.sql
 copy basemap/{queries/initialize.sql => layers/linestring/refresh.sql} (94%)
 copy basemap/{queries/initialize.sql => layers/member/refresh.sql} (95%)
 create mode 100644 basemap/layers/natural/refresh.sql
 copy baremaps-core/src/test/resources/queries/queries.sql => 
basemap/layers/point/refresh.sql (60%)
 copy basemap/{queries/initialize.sql => layers/polygon/refresh.sql} (95%)
 copy basemap/layers/{route/prepare.sql => railway/refresh.sql} (59%)
 copy baremaps-core/src/test/resources/queries/schema.sql => 
basemap/layers/route/refresh.sql (60%)
 copy basemap/layers/{route/prepare.sql => waterway/refresh.sql} (58%)
 create mode 100644 basemap/refresh.js
 copy basemap/{layers/ocean/tileset.js => update.js} (66%)

Reply via email to