Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
62 views

I want to create an interactive map with a heatmap layer on it. The color should reflect a score which is calculated from the distance to coordinates. The coordinates are amenities (like public ...
pas-calc's user avatar
  • 170
1 vote
1 answer
52 views

I would like to intercept a specific log coming from overpass api and perform a retry of the function. When using import osmnx as ox ox.settings.log_console = True I see the messages i.e. : 2025-05-...
beatrice's user avatar
1 vote
1 answer
241 views

I'm trying to get all the addresses and house numbers of a city on OSM through overpass-turbo, without success. I'm using this query, but results are not complete at all. [out:json][timeout:300]; area(...
Luca's user avatar
  • 994
0 votes
0 answers
247 views

I want to download some data data from die OSM Overpass API and convert this data to geojson with Python. I have prepared an example with an multipolygon. My UseCase has much bigger files. The ...
ziazo's user avatar
  • 35
1 vote
1 answer
108 views

With this query, I obtain the contours of the Gironde department as well as the municipalities where notaries are located, represented either by a node or a way. However, I would like to reverse the ...
Bruno GARRONET's user avatar
0 votes
1 answer
142 views

I've written a script in Python that, given a lat/long, generates a geojson with the roads edges, pedestrian crosses and lanes. It looks like this: def fetch_intersection_data(lat, lon, radius: int = ...
Paulo Henrique PH's user avatar
0 votes
0 answers
152 views

I would like to know which FSA the coordinate belongs to, is there a way to easily convert the Latitude and Longitude to Forward Sorta Area in Canada? Ideally I would like to do the conversion in ...
Aspiring TM's user avatar
0 votes
1 answer
158 views

I'm trying to combine 2 features of the OSM overpass flavor : if statement + regular expression. Example : [out:json][timeout:50]; area["name"="Paris"][admin_level=8]->....
Arcélone's user avatar
-1 votes
1 answer
613 views

I'm new to Overpass and OpenstreetMap. I'm working on a project and I need to fetch the places of interest for New York City (for now, in the future it should be generic to handle any kind of city). I'...
Ibrahim's user avatar
0 votes
0 answers
120 views

I am facing a challenge in crafting an overpass query to identify points of interest (POIs) such as hospitals and schools within a specific zipcode. Despite my attempts with the following query: [out:...
Ajay Dev M's user avatar
0 votes
1 answer
244 views

I have the code below that shows the surface area of a building in OpenStreetMap when hovered. Here's the code: import { useState, useEffect, useRef, useCallback } from 'react'; import axios from '...
David Guri's user avatar
1 vote
1 answer
405 views

I'm trying to calculate the surface area of a building using the Overpass API, OpenStreetMap API, ReactJS. Here's the code: import { useState, useEffect } from 'react'; import axios from 'axios'; ...
David Guri's user avatar
0 votes
1 answer
113 views

I need to obtain the name and maxspeed given the node id. I can obtain that using the latitude and longitude, but I don’t know how do this using a node id. Example: https://overpass-api.de/api/...
dlopezgonzalez's user avatar
0 votes
1 answer
661 views

I'm using OverpassQL to find a "way" that passes through two consecutive nodes. Here's my query: [out:json]; ( way(around:1,x1, y1); - ( way(around:1, x1, y1); -...
Federico di Geronimo's user avatar
2 votes
1 answer
530 views

I'm having trouble with my overpass query/queries. Goal is to create a map with (a) all traffic signals and (b) designated bike routes in Wiesbaden. I already got the queries seperatley running but I'...
Mathias Ellpunkt's user avatar
1 vote
1 answer
835 views

I'm trying to use the Overpass API through overpass turbo to find stores that are around other stores e.g. Walmart within 100m of Taco Bell within the map area. I'm very new to overpass so I'm mostly ...
darkwing's user avatar
  • 170
0 votes
1 answer
40 views

I need download OSM-data. More precisely, I need to download data on the subject of the Russian Federation. For example i can make key "building in Kemerovo". And it works. But how make ...
Altonlyn's user avatar
1 vote
1 answer
825 views

I would like to find the amount of registered addresses within a certain radius (lets say radius=30 (meters) to a coordinate I input (lat,lon). The code I'm looking for can be in either Python or ...
ArieAI's user avatar
  • 512
1 vote
1 answer
638 views

I'm trying to construct an Overpass query to return all 3-storey houses of a particular house number that are near to major roads. I understand that this involves an 'around' filter, probably, but I ...
Alan B's user avatar
  • 4,318
0 votes
1 answer
483 views

this is my code to access overpy and the Overpass API. I need every street in a city. The replace functions are not nice, but the should work because I need the double curly brackets and I can't use ...
RiesenTukan's user avatar
3 votes
1 answer
516 views

I want to fetch up to around 10 OSM objects and assign them to a set of hand-picked areas (up to around 20 different areas) in a single Overpass query. Is this possible? So the desired output is: ...
Alex's user avatar
  • 35.7k
-1 votes
1 answer
1k views

I have list of geometry https://pastebin.ubuntu.com/p/zhgPJ4BkpK/ that I got from over pass turbo, Now I want to make polygon by .NET Core, in order to, after converting lat and long to coordinate ...
Cyrus the Great's user avatar
0 votes
1 answer
313 views

I need to download the building center coordinates and number of floors of all US buildings for which the tag "building:levels" is available. I've been trying for the last 3 hours to do this....
wizmer's user avatar
  • 939
1 vote
1 answer
156 views

I perform a OSM query for retrieving highways. That I later convert in SUMO with netconvert and polyconvert. This stage works fine. Now, I have a set of Antennas I want to show on the map. I've tried ...
Matteo Ferri's user avatar
1 vote
0 answers
137 views

I'm able to correctly query data from the OSM api. I can also show highways and trunks correctly on the map. However, the query gives me back always results for a fixed zoom even if my current zoom is ...
Matteo Ferri's user avatar

1
2 3 4 5
8