-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
wheelchair:description does not show up on wheelmap #606
Comments
Just tested the following:
|
It is okay now! https://wheelmap.org/en/nodes/1569218581 |
Just tested again and it works:
|
Another test, this time with a node with negative ID:
|
Just tested: |
Update, 2017-07-18For now we identified 3 behaviors: Behavior one: comment does not appear at all on wheelmap.org
Example nodes:
+-----------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------+---------------------+
| osm_id | tags | created_at | updated_at |
+-----------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------+---------------------+
| -23453689 | ---
amenity: place_of_worship
wheelchair: 'yes'
religion: christian
building: 'yes'
wikidata: Q619821
denomination: protestant
wikipedia: de:Apostel-Paulus-Kirche (Berlin-Sch�neberg)
name: Apostel-Paulus-Kirche
building:levels: '4'
| 2013-10-03 21:07:39 | 2017-07-18 08:25:26 |
+-----------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------+---------------------+
1 row in set (0.00 sec)
Behavior two: comment appears on wheelmap.org on 'edit' click
Example nodes +------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------+---------------------+
| osm_id | tags | created_at | updated_at |
+------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------+---------------------+
| 1569218581 | ---
addr:city: Berlin
addr:country: DE
addr:housenumber: '31'
addr:postcode: '12047'
addr:street: Friedelstra�e
addr:suburb: Neuk�lln
amenity: restaurant
contact:phone: "+49 30 53 05 12 05"
contact:website: http://chez-dang.com/
cuisine: asian
name: Chez Dang
toilets:wheelchair: 'no'
wheelchair: limited
wheelchair:description: 'Ask for ramp ---- TEST #3 17.7.2017'
| 2013-08-07 06:54:02 | 2017-07-17 13:48:08 |
+------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------+---------------------+
1 row in set (0.00 sec)
Behavior three: comment appears on wheelmap.org after a few times reload
Conclusion:The syncing from wheelmap.org to openstreetmap.org works fine (comment appears shortly on openstreetmap) while syncing from openstreetmap.org to wheelmap.org does not work all the time. Sometimes it needs a click on "edit wheelmap poi" before the comment appears, sometimes it does not appear at all even after many times of reloading. We need to take a deeper look into what triggers to fetch data from openstreetmap to wheelmap. It could be that we have 2 or more bugs in this ticket. |
Update, 2017-07-25Observations so far:
openstreetmap api call example curl -v https://api.openstreetmap.org/api/0.6/way/452678133 openstreetmap api response example * Trying 193.63.75.100...
* Connected to api.openstreetmap.org (193.63.75.100) port 443 (#0)
* TLS 1.2 connection using TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
* Server certificate: www.openstreetmap.org
* Server certificate: Let's Encrypt Authority X3
* Server certificate: DST Root CA X3
> GET /api/0.6/way/452678133 HTTP/1.1
> Host: api.openstreetmap.org
> User-Agent: curl/7.43.0
> Accept: */*
>
< HTTP/1.1 200 OK
< Date: Tue, 25 Jul 2017 11:35:53 GMT
< Server: Apache/2.4.18 (Ubuntu)
< Content-Encoding: identity
< Cache-Control: private, max-age=0, must-revalidate
< Vary: Accept-Encoding
< Content-Type: text/xml; charset=utf-8
< Transfer-Encoding: chunked
<
<?xml version="1.0" encoding="UTF-8"?>
<osm version="0.6" generator="CGImap 0.6.0 (24935 thorn-03.openstreetmap.org)" copyright="OpenStreetMap and contributors" attribution="http://www.openstreetmap.org/copyright" license="http://opendatacommons.org/licenses/odbl/1-0/">
<way id="452678133" visible="true" version="9" changeset="50350214" timestamp="2017-07-17T13:03:06Z" user="johnnnny" uid="3399518">
<nd ref="4494317089"/>
<nd ref="4494317093"/>
<nd ref="4494309561"/>
<nd ref="4494308223"/>
<nd ref="1752501953"/>
<nd ref="4494317089"/>
<tag k="amenity" v="cafe"/>
<tag k="building" v="shop"/>
<tag k="fhrs:id" v="738675"/>
<tag k="name" v="Mus Coffee House"/>
<tag k="toilets:wheelchair" v="no"/>
<tag k="wheelchair" v="limited"/>
<tag k="wheelchair:description" v="TEST 3 back => 2017-07-17 15:01:23 +0200"/>
</way>
</osm>
* Connection #0 to host api.openstreetmap.org left intact
This has some drawbacks to not immediately save the data in the wheelmap app but waiting for the delayed job 'UpdateTagsJob' to work, e.g. if the openstreetmap api is not available then we might lose these data in the wheelmap app. We now need to write tests to find out when and why the data gets lost during the |
@holgerd cc @anngreenberg @Hoverbear Update, 2017-08-04
Current state:
|
As reported by @ldodds on issue #600
From a quick check, this is also true for other nodes, as for example
OSM: http://www.openstreetmap.org/way/462307362
Wheelmap: https://wheelmap.org/nodes/-462307362
When adding a comment, this should also be displayed on wheelmap directly.
The text was updated successfully, but these errors were encountered: