| Note | # | ⏱️ Last updated | Event | Contributor | Comment |
|---|---|---|---|---|---|
| 4728002 Category: unknown | 1 | ~ 11 months ago | opened | Ernst Jendritzki | https://nominatim.openstreetmap.org/search?format=json&q=${encodeURIComponent(street + ", Rissen, Hamburg, Germany")}&addressdetails=1` findet leider den Hummelstieg nicht. Details: const response = await fetch(url); if (!response.ok) throw new Error("API nicht erreichbar"); const data = await response.json(); const validLocation = data.find(location => { const addr = location.address; return addr && (addr.suburb === "Rissen" || addr.city_district === "Rissen") && addr.road && addr.road.toLowerCase() === street.toLowerCase(); // Exakte Übereinstimmung }); |
| 2 | ~ 11 months ago | closed | tumtrahS ♦396 | Bei mir wird er gefunden! | |
| 3 | ~ 11 months ago | reopened | Ernst Jendritzki | Auch in Hamburg Rissen oder nur in SH Wedel? 0: Object { place_id: 131171746, licence: "Data © OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright", osm_type: "way", … } address: Object { road: "Hummelstieg", suburb: "Moorwegsiedlung", city_district: "Altona", … } "ISO3166-2-lvl4": "DE-SH" city_district: "Altona" country: "Deutschland" country_code: "de" county: "Kreis Pinneberg" postcode: "22880" road: "Hummelstieg" state: "Schleswig-Holstein" suburb: "Moorwegsiedlung" town: "Wedel" <prototype>: Object { … } addresstype: "road" boundingbox: Array(4) [ "53.5942598", "53.5945313", "9.7422905", … ] class: "highway" display_name: "Hummelstieg, Moorwegsiedlung, Altona, Wedel, Kreis Pinneberg, Schleswig-Holstein, 22880, Deutschland" importance: 0.05341588693064771 lat: "53.5943997" licence: "Data © OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright" lon: "9.7443245" name: "Hummelstieg" osm_i | |
| 4 | ~ 11 months ago | closed | Ernst Jendritzki | PLZ 22559 = Hamburg Rissen PLZ 22880 = Wedel | |
| 5 | ~ 11 months ago | reopened | Ernst Jendritzki | ||
| 6 | ~ 11 months ago | commented | tumtrahS ♦396 | Ich verstehe Dein Problem nicht. Nominatim findet: "Wedel, Hummelstieg", "Rissen, Hummelstieg", "Hamburg-Rissen, Hummelstieg" und nur Hummelstieg. | |
| 7 | ~ 11 months ago | commented | Ernst Jendritzki | Hier ist die Rückgabe von Nominatim, sie ordnet den Hummelstieg nicht rissen zu. 0 place_id 131667927 licence "Data © OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright" osm_type "way" osm_id 27378995 lat "53.5943997" lon "9.7443245" class "highway" type "residential" place_rank 26 importance 0.05341588693064771 addresstype "road" name "Hummelstieg" display_name "Hummelstieg, Moorwegsiedlung, Altona, Wedel, Kreis Pinneberg, Schleswig-Holstein, 22880, Deutschland" address road "Hummelstieg" suburb "Moorwegsiedlung" city_district "Altona" town "Wedel" county "Kreis Pinneberg" state "Schleswig-Holstein" ISO3166-2-lvl4 "DE-SH" postcode "22880" country "Deutschland" country_code "de" boundingbox 0 "53.5942598" 1 "53.5945313" 2 "9.7422905" 3 "9.7463579" | |
| 8 | ~ 11 months ago | commented | tumtrahS ♦396 | nominatim zeigt mir für den Hummelstieg auch Hamburg und Rissen, allerdings ausgegraut, was immer das bedeuten mag. | |
| 9 | ~ 11 months ago | closed | tumtrahS ♦396 | Da osm mir für alle möglichen Kombinationen aus Stadt und Straßen die richtige Ausgabe zeigt, nehme ich an, dass bei Deinem Debugging was nicht richtig ist. |