Re: [OSM-talk] Overpass API version 0.7.56

2020-04-14 Thread mmd
Thank you for the update! On 2020-04-14 07:09, Roland Olbricht wrote: > I intend to bundle them with the necessary changes to use > ways and relations directly as areas, > but that is not implemented yet. Although this sounds like a minor topic, it has quite some impact for a number of users.

Re: [OSM-talk] Overpass API version 0.7.56

2020-04-14 Thread Dave F via talk
Thanks for the expansion of Type Shortcuts. It's going to save a lot of typing, especially with 'count'. DaveF On 14/04/2020 06:09, Roland Olbricht wrote: Dear all, I'm back with providing updates. After more than a year I'm proud to present a new release. This release provides some smaller

[OSM-talk] Overpass API version 0.7.56

2020-04-13 Thread Roland Olbricht
Dear all, I'm back with providing updates. After more than a year I'm proud to present a new release. This release provides some smaller new features. It is possible to use _angle()_ to filter ways by the angles of their inner vertices. This way, you can find e.g. non-rectangular buildings or

Re: [OSM-talk] Overpass API - Fetching countries, their capitals, and their borders

2019-08-14 Thread Warin
Rather than do a planet wide dump I would encourage you to do a smaller area dump so you get a smaller sample to test first? On 14/08/19 07:41, Léo El Amri via talk wrote: Hello, I'm trying to fetch countries, their borders, and their capitals through Overpass API, but the server never

Re: [OSM-talk] Overpass API - Fetching countries, their capitals, and their borders

2019-08-14 Thread Léo El Amri via talk
I was doing a query for all city and towns before doing a query of all "capital=yes" in this set. This was only the result of the interserction that was sent to the output. I didn't really knew how to "OR" the filters. Now I see, and your solution looks better :) On 14/08/2019 14:51, Dave F via

Re: [OSM-talk] Overpass API - Fetching countries, their capitals, and their borders

2019-08-14 Thread Yuri Astrakhan
You can use Sophox to pull this type of information, possibly just not all at once. Here's a query that will give you all first level country sub-divisions (Canada in this case), as well as each province's Captial, Flag image, and ISO codes. https://tinyurl.com/y6jowy8v (this query was modified

Re: [OSM-talk] Overpass API - Fetching countries, their capitals, and their borders

2019-08-14 Thread wambacher
Hi Léo, ok, if you need raw data you should ask for "raw data" and not "countries, their capitals, and their boundaries" :( > In the end, I'm sure I'll need at least all countries of the world up to > the admin level 2 (With their capitals, if they have one (And aren't one > themselves)) and all

Re: [OSM-talk] Overpass API - Fetching countries, their capitals, and their borders

2019-08-14 Thread Dave F via talk
This may help for future routines, if not this one: nwr[place~"city|town"][capital=yes][admin_level=2]->.Capitals; .Capitals out center; in your original you were initially searching *all* of the world's towns & cities instead of 194 capitals. (OSM appears to be missing one) It'll need

Re: [OSM-talk] Overpass API - Fetching countries, their capitals, and their borders

2019-08-14 Thread Léo El Amri via talk
On 14/08/2019 13:11, wambac...@posteo.de wrote: > did you read my mail? My website is made for that, believe me. > > What do you need? Which countries? Up to which admin level? Which format > (shp? json?) Hi Walter, Yes, I visited your website this morning. It is interesting on a

Re: [OSM-talk] Overpass API - Fetching countries, their capitals, and their borders

2019-08-14 Thread Michael Reichert
Hi, Am 13/08/2019 um 23.41 schrieb Léo El Amri via talk: > I'm trying to fetch countries, their borders, and their capitals through > Overpass API, but the server never replies to me (With a timeout:3600 > setting, the server reply with a 502 error after a while). > I'm only a beginner with this

Re: [OSM-talk] Overpass API - Fetching countries, their capitals, and their borders

2019-08-14 Thread Warin
You have set the "reply to" on your outgoing messages such that replies go to you and not this list. That means the list is not aware of the replies and cannot make comments on them. This hinders understanding and communication. It is better that replies go to the list where all can read

Re: [OSM-talk] Overpass API - Fetching countries, their capitals, and their borders

2019-08-14 Thread wambacher
Hi Léo, did you read my mail? My website is made for that, believe me. What do you need? Which countries? Up to which admin level? Which format (shp? json?) Regards walter -- My projects: Admin Boundaries of the World Missing Boundaries

Re: [OSM-talk] Overpass API - Fetching countries, their capitals, and their borders

2019-08-14 Thread Léo El Amri via talk
Hi again, Thanks for the replies I did several other tries this morning, but it looks like the borders are too much to handle. Taking your answers into account, rather than doing thousands of queries on the Overpass API, I think I'll get the whole Planet file, then use a local tool to get the

Re: [OSM-talk] Overpass API - Fetching countries, their capitals, and their borders

2019-08-14 Thread wambacher
Hi Léo Am 13.08.19 um 23:41 schrieb Léo El Amri via talk: > Hello, > > I'm trying to fetch countries, their borders, and their capitals through > Overpass API, but the server never replies to me ... https://wambachers-osm.website/boundaries will give you the country borders - including the *osm

Re: [OSM-talk] Overpass API - Fetching countries, their capitals, and their borders

2019-08-13 Thread Wayne Emerson, Jr. via talk
Yes I agree that every country's borders on earth adds up to a lot of data. And my last reply could have been clearer. If you look at his original query (which is mangled now by the email), He was looking for the NODES of each country's capital city, not the city borders.?? And although the

Re: [OSM-talk] Overpass API - Fetching countries, their capitals, and their borders

2019-08-13 Thread Warin
On 14/08/19 11:39, Wayne Emerson, Jr. via talk wrote: He wasn't asking for every town on earth. Just every country's border, and every country's capitol. I am a noob too so can't answer his question. But I did run the wizard with "admin_level=2 and type:node" and got 3,988 nodes. Which begs

Re: [OSM-talk] Overpass API - Fetching countries, their capitals, and their borders

2019-08-13 Thread Wayne Emerson, Jr. via talk
He wasn't asking for every town on earth. Just every country's border, and every country's capitol. I am a noob too so can't answer his question. But I did run the wizard with "admin_level=2 and type:node" and got 3,988 nodes. Which begs the question, why does Argentina have dozens of admin

Re: [OSM-talk] Overpass API - Fetching countries, their capitals, and their borders

2019-08-13 Thread Warin
On 14/08/19 07:41, Léo El Amri via talk wrote: Hello, I'm trying to fetch countries, their borders, and their capitals through Overpass API, but the server never replies to me (With a timeout:3600 setting, the server reply with a 502 error after a while). I'm only a beginner with this API, so

[OSM-talk] Overpass API - Fetching countries, their capitals, and their borders

2019-08-13 Thread Léo El Amri via talk
Hello, I'm trying to fetch countries, their borders, and their capitals through Overpass API, but the server never replies to me (With a timeout:3600 setting, the server reply with a 502 error after a while). I'm only a beginner with this API, so maybe my request is not efficient: (

Re: [OSM-talk] Overpass API turned off due to Upload Filter thread

2019-03-21 Thread Roland Olbricht
Hello everybody, Overpass API is now back to normal operations. Thank you for your understanding. To ensure that OpenStreetMap will have a place in the future, it still makes sense to phone (yes, phone) your member of the EP. Platforms that assist on that are: https://pledge2019.eu/en

Re: [OSM-talk] Overpass API turned off due to Upload Filter thread

2019-03-21 Thread Norbert Renner
Yes, achavi fails with an error because the result is not in the expected Augmented Diff format. Norbert ___ talk mailing list talk@openstreetmap.org https://lists.openstreetmap.org/listinfo/talk

Re: [OSM-talk] Overpass API turned off due to Upload Filter thread

2019-03-21 Thread François Lacombe
Hi Steve, Le jeu. 21 mars 2019 à 16:46, Steve Doerr a écrit : > On 21/03/2019 05:21, Roland Olbricht wrote: > > the Overpass API shows only an informative > > result today. This will last until about 20:00 UTC. > > Could this be affecting nrenner.github.io/achavi, does anybody know? > Yes it

Re: [OSM-talk] Overpass API turned off due to Upload Filter thread

2019-03-21 Thread Steve Doerr
On 21/03/2019 05:21, Roland Olbricht wrote: the Overpass API shows only an informative result today. This will last until about 20:00 UTC. Could this be affecting nrenner.github.io/achavi, does anybody know? -- Steve --- This email has been checked for viruses by Avast antivirus software.

[OSM-talk] Overpass API turned off due to Upload Filter thread

2019-03-20 Thread Roland Olbricht
Hello everybody, on 26th March the European parliament will vote on the Directive on Copyright in the Digital Single Market. This directive would as a side effect threaten the OpenStreetMap project with substantial legal and technical burdens, see https://www.openstreetmap.de/uf/en.html To

Re: [OSM-talk] Overpass query for tags of previous object version?

2019-03-18 Thread Markus
Hi Mateusz, Thanks for your reply! On Mon, 18 Mar 2019 at 20:52, Mateusz Konieczny wrote: > > I know that it should be fairly easy to find object with crossing=zebra > tag last edited by this user. This gives me over 800 results. I hoped that i don't have to look through all of them, but maybe

Re: [OSM-talk] Overpass query for tags of previous object version?

2019-03-18 Thread Mateusz Konieczny
Mar 18, 2019, 8:33 PM by selfishseaho...@gmail.com: > Hello > > Is there an overpass-turbo query that finds crossing=zebra that were > previously (i.e. version - 1) tagged crossing=traffic_signals? > > (Unfortunately a user unaware that pedestrian crossings with traffic > signals also have

[OSM-talk] Overpass query for tags of previous object version?

2019-03-18 Thread Markus
Hello Is there an overpass-turbo query that finds crossing=zebra that were previously (i.e. version - 1) tagged crossing=traffic_signals? (Unfortunately a user unaware that pedestrian crossings with traffic signals also have zebra markings in some countries wrongly changed many

Re: [OSM-talk] overpass turbo for beginners

2018-06-20 Thread Mateusz Konieczny
19. Jun 2018 21:46 by mmd@gmail.com : > Take a look at the following presentation by Boris Mericskay, which is > one of the best and most up to date presentations on Overpass API and > overpass turbo I'm aware of (yes, some 0.7.55 features are missing, but > that's

Re: [OSM-talk] overpass rurbo for beginners

2018-06-19 Thread Stefano
On Tue, 19 Jun 2018, 19:08 Mateusz Konieczny, wrote: > Is there some Overpass Turbo tutorial assuming no programming or OSM > knowledge? > > I am planning to write one, I failed to find any description like this. > > I am asking to avoid duplication of existing resources. > Hi, There was this

Re: [OSM-talk] overpass turbo for beginners

2018-06-19 Thread mmd
Am 19.06.2018 um 19:05 schrieb Mateusz Konieczny: > Is there some Overpass Turbo tutorial assuming no programming or OSM > knowledge? > > I am planning to write one, I failed to find any description like this. > > I am asking to avoid duplication of existing resources. > > Take a look at the

[OSM-talk] overpass rurbo for beginners

2018-06-19 Thread Mateusz Konieczny
Is there some Overpass Turbo tutorial assuming no programming or OSM knowledge? I am planning to write one, I failed to find any description like this. I am asking to avoid duplication of existing resources. ___ talk mailing list talk@openstreetmap.org

[OSM-talk] Overpass API 0.7.55

2018-05-15 Thread Roland Olbricht
Dear all, A new release of Overpass API is now available, version 0.7.55. The core feature of this version are geometries for derived objects: We tell and have told since a long time to people who want to mechanical edit the database that they should rewrite the data on the client side. The

Re: [OSM-talk] Overpass API from JOSM does not honor bounding box anymore?

2016-12-26 Thread Maarten Deen
ave my own), then downloading works. Regards, Maarten - DE : Maarten Deen <md...@xs4all.nl> À : talk@openstreetmap.org; j...@openstreetmap.org ENVOYÉ LE : lundi 26 décembre 2016 10h14 OBJET : [OSM-talk] Overpass API from JOSM does not honor bounding box anymore? I'm trying

Re: [OSM-talk] Overpass API from JOSM does not honor bounding box anymore?

2016-12-26 Thread Pierre Béland
talk@openstreetmap.org; j...@openstreetmap.org Envoyé le : lundi 26 décembre 2016 10h14 Objet : [OSM-talk] Overpass API from JOSM does not honor bounding box anymore? I'm trying the overpass API from JOSM and keep getting timeouts. According to the docs, the bounding box for the Overpass query would

[OSM-talk] Overpass API from JOSM does not honor bounding box anymore?

2016-12-26 Thread Maarten Deen
I'm trying the overpass API from JOSM and keep getting timeouts. According to the docs, the bounding box for the Overpass query would be set automatically when selecting an area in the map in the download screen, but I do not see that in the resulting query that gets logged. Trying the

Re: [OSM-talk] Overpass XAPI URL Status

2016-09-15 Thread Roland Olbricht
Hi Bryce, I help support a large company that uses OSM data, pulled via a specific query at ://www.overpass-api.de/api/xapi . This query runs about once a month. thank you for asking back. First about the status: when I last checked some days ago

Re: [OSM-talk] Overpass XAPI URL Status

2016-09-14 Thread Michał Brzozowski
On Wed, Sep 14, 2016 at 8:04 PM, mmd wrote: > xapi endpoint is the only service that is blocked right now. That's due > to one particular mobile app firing off excessive amounts of queries. > Details are also known to the OSMF board. Is it, shall I say, classified information?

Re: [OSM-talk] Overpass XAPI URL Status

2016-09-14 Thread Paul Norman
On 9/14/2016 11:04 AM, mmd wrote: Am 14.09.2016 um 09:30 schrieb Bryce Nesbitt: >I help support a large company that uses OSM data, pulled via a specific >query at ://www.overpass-api.de/api/xapi >. This query runs about once a month. xapi endpoint is

Re: [OSM-talk] Overpass XAPI URL Status

2016-09-14 Thread mmd
Hi! Am 14.09.2016 um 09:30 schrieb Bryce Nesbitt: > I help support a large company that uses OSM data, pulled via a specific > query at ://www.overpass-api.de/api/xapi > . This query runs about once a month. xapi endpoint is the only service that is

[OSM-talk] Overpass XAPI URL Status

2016-09-14 Thread Bryce Nesbitt
I help support a large company that uses OSM data, pulled via a specific query at ://www.overpass-api.de/api/xapi. This query runs about once a month. It recently stopped working apparently because of a hack and because of bogus querys: http://wiki.openstreetmap.org/wiki/Overpass_API/status

Re: [OSM-talk] Overpass outage?

2016-06-01 Thread Jérôme Seigneuret
Hi, Can you paste code part in response to this post. Thanks Jérôme 2016-06-01 23:23 GMT+02:00 Richard : > Hi, > > when trying to download data in JOSM through the Overpass API I am > getting an error > > "Failed to download data: its format is either unsupported,

Re: [OSM-talk] Overpass outage?

2016-06-01 Thread Richard
sorry for the noise, was a problem with my mobile provider. > when trying to download data in JOSM through the Overpass API I am > getting an error > > "Failed to download data: its format is either unsupported, ill-formed and/or > inconsistent > Details (untranslated): Line 2 column 3: The

[OSM-talk] Overpass outage?

2016-06-01 Thread Richard
Hi, when trying to download data in JOSM through the Overpass API I am getting an error "Failed to download data: its format is either unsupported, ill-formed and/or inconsistent Details (untranslated): Line 2 column 3: The markup declarations contained or pointed to by the document type

Re: [OSM-talk] Overpass query to get ways longer than nodecount?

2016-05-27 Thread mmd
Am 27.05.2016 um 19:18 schrieb Richard: > Hi, > > wondering if someone knows the equivalent of JOSMs "nodes:25-" > in Overpass QL syntax? > Hi, see https://github.com/drolbr/Overpass-API/issues/197 Unfortunately, it's not yet implemented at this time. If you find something missing in that

[OSM-talk] Overpass query to get ways longer than nodecount?

2016-05-27 Thread Richard
Hi, wondering if someone knows the equivalent of JOSMs "nodes:25-" in Overpass QL syntax? Richard ___ talk mailing list talk@openstreetmap.org https://lists.openstreetmap.org/listinfo/talk

Re: [OSM-talk] Overpass query from a date range

2015-05-21 Thread Pierre Béland
)({{bbox}}); ); out body;    Pierre De : maning sambale emmanuel.samb...@gmail.com À : osm-talk talk@openstreetmap.org Envoyé le : Jeudi 21 mai 2015 22h04 Objet : [OSM-talk] Overpass query from a date range Hi, At the end of a mapping party, I want to show the group the data added

[OSM-talk] Overpass query from a date range

2015-05-21 Thread maning sambale
Hi, At the end of a mapping party, I want to show the group the data added. How do I query in overpass the data that was added/modified given a date/time and bbox? Tnx! -- cheers, maning -- Freedom is still the most radical idea of all

Re: [OSM-talk] Overpass query from a date range

2015-05-21 Thread maning sambale
: [OSM-talk] Overpass query from a date range Hi, At the end of a mapping party, I want to show the group the data added. How do I query in overpass the data that was added/modified given a date/time and bbox? Tnx! -- cheers, maning

Re: [OSM-talk] Overpass Quotas

2015-05-05 Thread Bryce Nesbitt
You could decide to require a User-Agent that's customized, with reference to contact info (e.g. a URL or project name that can be looked up on the OSM Wiki). That's not an unreasonable restriction, for your free service. ___ talk mailing list

Re: [OSM-talk] Overpass Quotas

2015-05-05 Thread Roland Olbricht
Dear all, the last mail needs some more clarification. While I appreaciate that quite a lot of people care for not overusing the server, they are not the ones I have meant with clumsy clients. I fear it is quite a common problem and probably has a name: those who care about usage policies

[OSM-talk] Overpass Quotas

2015-04-27 Thread Roland Olbricht
Dear all, in the last weeks the server overpass-api.de has seen a flood of extra requests. Unfortunately, most of these requests have been from a few clumsy clients. The standard pattern has been apparently a server that fires as much requests as possible, often some or most of them

[OSM-talk] Overpass

2015-01-09 Thread Richard Welty
Roland Olbricht's osm wiki page suggests contacting him here on talk. i'm interested in finding out what the considerations might be in getting an instance of Overpass pointed at OpenHistoricalMap so queries can be done against the data there. thanks, richard -- rwe...@averillpark.net

[OSM-talk-be] Fwd: [OSM-talk] overpass-api.de: Emergency rollback

2014-11-04 Thread Marc Gemis
For those that do not read the talk mailing list and are involved in the AGIV/CRAB import software regards m -- Forwarded message -- From: Roland Olbricht roland.olbri...@gmx.de Date: Tue, Nov 4, 2014 at 10:37 AM Subject: Re: [OSM-talk] overpass-api.de: Emergency rollback

Re: [OSM-talk] overpass-api.de: Emergency rollback

2014-11-04 Thread Roland Olbricht
Dear all, the Overpass API instance on overpass-api.de will receive in a few hours a data rollback to 22nd Oct 2014. This means a shutdown for two to three hours. Then it will catch up from 22nd October to recent data. The server is back to normal operations. Thank you for your patience.

[OSM-talk-be] Fwd: [OSM-talk] overpass-api.de: Emergency rollback

2014-11-02 Thread Glenn Plas
FYI: This might influence the CRAB imports . Glenn Forwarded Message Subject: [OSM-talk] overpass-api.de: Emergency rollback Date: Sun, 02 Nov 2014 21:11:36 +0100 From: Roland Olbricht roland.olbri...@gmx.de To: osm-talk t...@openstreetmap.org Dear all, the Overpass API

[OSM-talk] overpass-api.de: Emergency rollback

2014-11-02 Thread Roland Olbricht
Dear all, the Overpass API instance on overpass-api.de will receive in a few hours a data rollback to 22nd Oct 2014. This means a shutdown for two to three hours. Then it will catch up from 22nd October to recent data. The other instances on - http://overpass.osm.rambler.ru/cgi/ -

Re: [OSM-talk] Overpass turbo Has it been amended?

2014-10-24 Thread Roland Olbricht
Ok, so you recommend to use QL instead of XML. Is there some feature that are in QL and not in XML ? The XML will be maintained for how long ? and quickosm should switch from XML to QL in the short term ? Currently, all features are available in both XML and QL variants, but the most

[OSM-talk] Overpass turbo Has it been amended?

2014-10-23 Thread Dave F.
Hi Has the wizard in Overpass Turbo been updated in the past couple of days, or have I somehow amend its way of working? Looked in the wiki but could see no mention. Wizard query of landuse=recreation_ground produces a much less verbose query (No 'query' or 'k=' etc) /* This has been

[OSM-talk] Overpass Adiff - Does it have the possibility to replace the OSM API changesets extract function?

2014-09-20 Thread Pierre Béland
The OSM API is not the best solution to extract changesets and compute OSM contributor statistics. And I would like to avoid to mount a server simply to deal with diffs if an other solution exist. Does the new Augmented Diff function of the Overpass has now the capacity to replace the OSM API

[OSM-talk] Overpass API / Overpass QL: center (and centroid) function?

2014-07-24 Thread Stefan Keller
Hi, I'm trying to get a list of point features only (as GeoJSON or XML). This could serve as input e.g. to uMap. The problem is that the query returns points but also areas. This is actually correct - but I want these areas converted to point geometries too (centered, like ST_Centroid). I then

Re: [OSM-talk] Overpass API / Overpass QL: center (and centroid) function?

2014-07-24 Thread Pierre Béland
roland.olbri...@gmx.de Envoyé le : Jeudi 24 juillet 2014 8h19 Objet : [OSM-talk] Overpass API / Overpass QL: center (and centroid) function? Hi, I'm trying to get a list of point features only (as GeoJSON or XML). This could serve as input e.g. to uMap. The problem is that the query returns points

Re: [OSM-talk] Overpass API / Overpass QL: center (and centroid) function?

2014-07-24 Thread Stefan Keller
] (45.70234306798271,5.8831787109375,47.864773955792245,10.59082031248); out meta center qt; Pierre De : Stefan Keller sfkel...@gmail.com À : Talk Openstreetmap talk@openstreetmap.org Cc : Roland Olbricht roland.olbri...@gmx.de Envoyé le : Jeudi 24 juillet 2014 8h19 Objet : [OSM-talk] Overpass API / Overpass QL: center

Re: [OSM-talk] Overpass API / Overpass QL: center (and centroid) function?

2014-07-24 Thread Pierre Béland
Béland pierz...@yahoo.fr Cc : Talk Openstreetmap talk@openstreetmap.org Envoyé le : Jeudi 24 juillet 2014 9h44 Objet : Re: [OSM-talk] Overpass API / Overpass QL: center (and centroid) function? Salut Pierre Thanks - But this doesn't parse (see below). I'm getting: Error: line 4: static error

Re: [OSM-talk] Overpass API / Overpass QL: center (and centroid) function?

2014-07-24 Thread Stefan Keller
talk@openstreetmap.org Envoyé le : Jeudi 24 juillet 2014 9h44 Objet : Re: [OSM-talk] Overpass API / Overpass QL: center (and centroid) function? Salut Pierre Thanks - But this doesn't parse (see below). I'm getting: Error: line 4: static error: Element print cannot be subelement of element

Re: [OSM-talk] Overpass API / Overpass QL: center (and centroid) function?

2014-07-24 Thread Christian Quest
9h44 Objet : Re: [OSM-talk] Overpass API / Overpass QL: center (and centroid) function? Salut Pierre Thanks - But this doesn't parse (see below). I'm getting: Error: line 4: static error: Element print cannot be subelement of element union. -- Stefan [out:json] [timeout:25

Re: [OSM-talk] Overpass API / Overpass QL: center (and centroid) function?

2014-07-24 Thread Pieren
On Thu, Jul 24, 2014 at 5:33 PM, Christian Quest cqu...@openstreetmap.fr wrote: In my last overpass test with the new out center feature, it looked like it was working only with XML output, not with the JSON (not GeoJSON) one. It's already reported:

Re: [OSM-talk] Overpass API / Overpass QL: center (and centroid) function?

2014-07-24 Thread Pierre Béland
Objet : Re: [OSM-talk] Overpass API / Overpass QL: center (and centroid) function? In my last overpass test with the new out center feature, it looked like it was working only with XML output, not with the JSON (not GeoJSON) one. 2014-07-24 16:30 GMT+02:00 Stefan Keller sfkel

Re: [OSM-talk] Overpass API / Overpass QL: center (and centroid) function?

2014-07-24 Thread mmd
Pieren wrote On Thu, Jul 24, 2014 at 5:33 PM, Christian Quest In my last overpass test with the new out center feature, it looked like it was working only with XML output, not with the JSON (not GeoJSON) one. It's already reported: https://github.com/drolbr/Overpass-API/issues/93 Pieren

Re: [OSM-talk] Overpass API / Overpass QL: center (and centroid) function?

2014-07-24 Thread Stefan Keller
Dear all Thanks for the help - especially from the french colleagues. I'm still struggling even with the XML output. My actual goal is to display the result set of the Dairy/Cheese Makers query in uMap. When I apply the query below to http://overpass-turbo.osm.ch/ the result is OK (displayed

Re: [OSM-talk] Overpass API / Overpass QL: center (and centroid) function?

2014-07-24 Thread mmd
Stefan Keller wrote I'm still struggling even with the XML output. My actual goal is to display the result set of the Dairy/Cheese Makers query in uMap. When I apply the query below to http://overpass-turbo.osm.ch/ the result is OK (displayed POIs: 386, Lines: 300, Polygons: 138). But

Re: [OSM-talk] Overpass API / Overpass QL: center (and centroid) function?

2014-07-24 Thread Christian Quest
2014-07-24 21:39 GMT+02:00 mmd mmd@gmail.om mmd@gmail.com: I created a new issue for umap now [1], as I believe the center tag is not yet handled during import. Please feel free to enhance the ticket as needed. I'm almost sure it is not handled... but will be very soon as this

Re: [OSM-talk] Overpass API v0.7.50 almost done

2014-06-23 Thread Martijn van Exel
Hi Roland, Thanks for these great additions. I really enjoyed your workshop at SOTM EU as well. I am excited about the attic features. I was playing around with it a bit and was wondering, is it possible to get the changeset ID in which an action was performed to an object? Also, do the attic

Re: [OSM-talk] Overpass API v0.7.50 almost done

2014-06-23 Thread Roland Olbricht
Hi Martijn, thank you for the feedback. Also, do the attic queries already work fully when I use Overpass Turbo? No, that's the reason for almost. With much more intensive testing than before I've found a couple of bugs in corner cases, and I'm still fixing them. When I run

[OSM-talk] overpass query to get last used editor

2014-06-11 Thread maning sambale
Hi, We are trying to find ways to query data showing the last editor used using overpass query. From the docs, meta information includes only the following: version, changeset id, timestamp and the user data of the user that last touched the object. Is it possible to also get the editor used by

Re: [OSM-talk] overpass query to get last used editor

2014-06-11 Thread Roland Olbricht
Hi, Is it possible to also get the editor used by the last user? No, it is not possible to get the last used piece of software to change a given object. This information is present, if at all, in the changesets comments. Changesets comments don't go into the ordinary diffs. Thus Overpass

Re: [OSM-talk] overpass query to get last used editor

2014-06-11 Thread Pierre Béland
Envoyé le : Mercredi 11 juin 2014 16h52 Objet : Re: [OSM-talk] overpass query to get last used editor Hi, Is it possible to also get the editor used by the last user? No, it is not possible to get the last used piece of software to change a given object. This information is present

Re: [OSM-talk] Overpass API v0.7.50 almost done

2014-06-08 Thread Simone Cortesi
On Sat, Jun 7, 2014 at 10:03 AM, Roland Olbricht roland.olbri...@gmx.de wrote: Dear all, first of all a big thank you to all who have contributed to the SSD funding or to the general FOSSGIS funding for Overpass API. I will publish before SotM-EU 2014 a new stable Overpass API release, the

[OSM-talk] Overpass API v0.7.50 almost done

2014-06-07 Thread Roland Olbricht
Dear all, first of all a big thank you to all who have contributed to the SSD funding or to the general FOSSGIS funding for Overpass API. I will publish before SotM-EU 2014 a new stable Overpass API release, the first since about a year. To avoid confusion, I would like to sketch what it

[OSM-talk] overpass api tips and tricks

2014-05-02 Thread maning sambale
Hi, Looking for hidden Overpass resources (other than the ones I saw below). IMO, overpass is one of the good ways to introduce OSM data to developers. Advance thanks for sharing your tips and tricks! http://wiki.openstreetmap.org/wiki/Overpass_API

Re: [OSM-talk] overpass api tips and tricks

2014-05-02 Thread Eugene Alvin Villar
Generally, the Overpass API and Overpass Turbo documentation is enough for developers to understand. What they really need to know also is the OSM data model (nodes, ways, relations, tagging) in order to make the most out of Overpass. On Fri, May 2, 2014 at 7:13 PM, maning sambale

Re: [OSM-talk] Overpass area query gives results outside area...

2013-11-08 Thread Fabian Schmidt
Am 06.11.13 schrieb Jean-Marc Liotier: I need to extract objects that fall within the bounds of Senegal - so I turned to the Overpass API... But it seems that my level of understanding does not yet match its power. I need your help ! As an exercise, let's find Dakar in Senegal -

Re: [OSM-talk] Overpass area query gives results outside area...

2013-11-08 Thread Jean-Marc Liotier
On 11/08/2013 04:16 PM, Fabian Schmidt wrote: area[name=Senegal]; node(area)[name=Dakar]; out; returns a place=city, place=state and a container harbour, but not Dakar in San Sebastián. Yes, my syntax was incorrect. To return multiple types of objects, this works:

Re: [OSM-talk] Overpass area query gives results outside area...

2013-11-08 Thread Fabian Schmidt
Am 08.11.13 schrieb Jean-Marc Liotier: To return multiple types of objects, this works: area[name=Senegal]; ( node(area)[name=Fatick];; way(area)[name=Fatick];; rel(area)[name=Fatick];; area(area)[name=Fatick];; ); out; I would expect the area() to be a subset of way() and rel(), so you

Re: [OSM-talk] Overpass area query gives results outside area...

2013-11-08 Thread Jean-Marc Liotier
On 11/08/2013 04:58 PM, Fabian Schmidt wrote: Am 08.11.13 schrieb Jean-Marc Liotier: To return multiple types of objects, this works: area[name=Senegal]; ( node(area)[name=Fatick];; way(area)[name=Fatick];; rel(area)[name=Fatick];; area(area)[name=Fatick];; ); out; I would

[OSM-talk] Overpass area query gives results outside area...

2013-11-06 Thread Jean-Marc Liotier
I need to extract objects that fall within the bounds of Senegal - so I turned to the Overpass API... But it seems that my level of understanding does not yet match its power. I need your help ! As an exercise, let's find Dakar in Senegal - http://overpass-turbo.eu/s/1qa :

Re: [OSM-talk] Overpass area query gives results outside area...

2013-11-06 Thread Martin Raifer
Hi! As an exercise, let's find Dakar in Senegal Searching areas by area is not yet supported in Overpass API. See this feature request: https://github.com/drolbr/Overpass-API/issues/45 Well... Maybe area selection is inoperative. Let's try with a good old bounding box This is also

Re: [OSM-talk] Overpass area query gives results outside area...

2013-11-06 Thread Pierre Béland
;   Pierre De : Martin Raifer tyr@gmail.com À : talk@openstreetmap.org Envoyé le : Mercredi 6 novembre 2013 8h28 Objet : Re: [OSM-talk] Overpass area query gives results outside area... Hi! As an exercise, let's find Dakar in Senegal Searching areas by area

Re: [OSM-talk] Overpass area query gives results outside area...

2013-11-06 Thread Jean-Marc Liotier
On 06/11/2013 14:28, Martin Raifer wrote: As an exercise, let's find Dakar in Senegal Searching areas by area is not yet supported in Overpass API. See this feature request: https://github.com/drolbr/Overpass-API/issues/45 Well... Maybe area selection is inoperative. Let's try with a

Re: [OSM-talk] Overpass area query gives results outside area...

2013-11-06 Thread Jean-Marc Liotier
On 06/11/2013 15:00, Pierre Béland wrote: There were few examples given over the last year. To use the relation no., you need to add 36 to it. 192775 Relation + 36 = 3600192775 These instructiions extract all nodes with the tag place inside the limits of Dakar. node

Re: [OSM-talk] Overpass area query gives results outside area...

2013-11-06 Thread Jean-Marc Liotier
On 06/11/2013 15:12, Jean-Marc Liotier wrote: But why is 36 the magic number ? I find in my notes that I had also tried using that magic numbered identifier. For example, http://overpass-turbo.eu/s/1qn : area[name=Dakar](area:3600192775); out; The area selection does not

Re: [OSM-talk] Overpass or XAPI API servers for 60, 000 node queries?

2013-10-10 Thread Peter Körner
Hi Am 07.10.2013 18:32, schrieb Roland Olbricht: Dear Bryce, I've cross-checked the Rambler instance. I'm sorry it indeed doesn't work on that instance. It looks like an element on the network, most likely Nginx, disconnects any connection if no data is sent for ten minutes. A similar

Re: [OSM-talk] Overpass or XAPI API servers for 60, 000 node queries?

2013-10-07 Thread Bryce Nesbitt
On Sun, Oct 6, 2013 at 11:15 AM, Roland Olbricht roland.olbri...@gmx.dewrote: Please do not use a cancel-restart strategy. This may double the load because not in all cases the Apache server cancels the abandoned query. Sadly, it's all that I can get to work. I suggest the following

Re: [OSM-talk] Overpass or XAPI API servers for 60, 000 node queries?

2013-10-07 Thread Roland Olbricht
Dear Bryce, I've cross-checked the Rambler instance. I'm sorry it indeed doesn't work on that instance. It looks like an element on the network, most likely Nginx, disconnects any connection if no data is sent for ten minutes. A similar thing happened on overpass-api.de after 20 to 30 minutes.

Re: [OSM-talk] Overpass or XAPI API servers for 60, 000 node queries?

2013-10-07 Thread Bryce Nesbitt
On Mon, Oct 7, 2013 at 9:32 AM, Roland Olbricht roland.olbri...@gmx.dewrote: Dear Bryce, I've cross-checked the Rambler instance. I'm sorry it indeed doesn't work on that instance. It looks like an element on the network, most likely Nginx, disconnects any connection if no data is sent for

Re: [OSM-talk] Overpass or XAPI API servers for 60, 000 node queries?

2013-10-07 Thread Ian Dees
brycenesbitt wrote On Sun, Oct 6, 2013 at 11:41 AM, Paul Norman lt; penorman@ gt; wrote: http://jxapi.openstreetmap.org/xapi/api/0.6/node[amenity=drinking_water]took about 3 minutes total. 14.5MB result. Thanks, however no luck here: # wget

[OSM-talk] Overpass or XAPI API servers for 60,000 node queries?

2013-10-06 Thread Bryce Nesbitt
I'm seeking some help in getting a 60,000 node overpass query to complete. In the past I could generally get the query to complete by running it once, cancelling it, then running it a second time (maybe the 2nd time more data was cached). Now I get either infinite timeout or a server rejection.

Re: [OSM-talk] Overpass or XAPI API servers for 60, 000 node queries?

2013-10-06 Thread Malcolm Herring
I ran your query on my server and it completed in 90 seconds, even though another big query was already running. True, I do use an SSD for the database, so it is very fast. However, it proved that there is nothing in your query that gives Overpass indigestion. The public servers do run a

Re: [OSM-talk] Overpass or XAPI API servers for 60, 000 node queries?

2013-10-06 Thread Bryce Nesbitt
Per the suggestion, I dropped the query time to 200 seconds, and same result from the public servers. The query is still running after several minutes, despite the timeout value of 200 seconds. ___ talk mailing list talk@openstreetmap.org

Re: [OSM-talk] Overpass or XAPI API servers for 60, 000 node queries?

2013-10-06 Thread Roland Olbricht
In the past I could generally get the query to complete by running it once, cancelling it, then running it a second time (maybe the 2nd time more data was cached). Now I get either infinite timeout or a server rejection. The query is: osm-script timeout=990 element-limit=1073741824

Re: [OSM-talk] Overpass or XAPI API servers for 60, 000 node queries?

2013-10-06 Thread Paul Norman
http://jxapi.openstreetmap.org/xapi/api/0.6/node[amenity=drinking_water] took about 3 minutes total. 14.5MB result. From: Bryce Nesbitt [mailto:bry...@obviously.com] Sent: Sunday, October 06, 2013 9:53 AM To: talk@openstreetmap.org Subject: [OSM-talk] Overpass or XAPI API servers for 60,000

  1   2   >