KAMI911 / osm_poi_matchmaker

OSM POI Matchmaker
GNU General Public License v3.0
9 stars 4 forks source link

Foxpost duplication #124

Open vasony opened 7 months ago

vasony commented 7 months ago

2 source object mapped to 1 existing point

1) Correct

  <!-- OSM link: https://osm.org/node/5727159679 -->
  <!-- Original coordinates: POINT (47.508876 19.02584) -->
  <!-- OSM <-> POI distance: 111.35659955 m-->
  <!--ˇ'original': '1024 Budapest, II, 02 Lövőház utca 12.', 'postcode': '1024', 'city': 'Budapest', 'street': 'Lövőház utca', 
'housenumber': '12', 'conscriptionnumber': 'None'°-->

addr:city                         EQU       'Budapest'          'Budapest'
addr:housenumber                  EQU       '12'            '12'
addr:postcode                     EQU       '1024'          '1024'
addr:street                       EQU       'Lövőház utca'          'Lövőház utca'

2) Duplication / not correct

  <!-- OSM link: https://osm.org/node/5727159679 -->
  <!-- Original coordinates: POINT (47.508876 19.02584) -->
  <!-- OSM <-> POI distance: 111.35659955 m-->
  <!--ˇ'original': '1024 Budapest, II, 02 Lövőház utca 2\-6.', 'postcode': '1024', 'city': 'Budapest', 'street': 'Lövőház utca', 'housenumber': 
'2\-6', 'conscriptionnumber': 'None'°-->

addr:housenumber                  MOD       '2\-6'          '12'
addr:postcode                     EQU       '1024'          '1024'
addr:street                       EQU       'Lövőház utca'          'Lövőház utca'