Re: [OSM-dev] Automatic Spell check service

2008-01-02 Thread Stefan de Konink
Tom Hughes schreef: On 02/01/2008, Stefan de Konink [EMAIL PROTECTED] wrote: Tom Hughes schreef: On 02/01/2008, Stefan de Konink [EMAIL PROTECTED] wrote: I wonder if it could be accepted that every day an automatic spell check script would operate on the database and checks for less common

Re: [OSM-dev] OSM Database Infrastructure

2008-01-14 Thread Stefan de Konink
they take? Yours Sincerely, Stefan de Konink -BEGIN PGP SIGNATURE- Version: GnuPG v2.0.7 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFHi4+aYH1+F2Rqwn0RCrm8AJ9lXran7YBnBApLxSjvHXDfFxvH5QCaAjyn GgYHQR8HZGWXk6z5++0lbXM= =uKAO -END PGP SIGNATURE

Re: [OSM-dev] Background

2008-03-17 Thread Stefan de Konink
On Mon, 17 Mar 2008, Williams Farias wrote: I´m a new user in OpenStreet, and i´m tracing my city in Brazil, but there are places where the YahooMap does not zoom well so i can trace the map. My question is: can Google Maps be placed in the background as an option? and Microsoft Maps too?

Re: [OSM-dev] 0.6 - typo-cleaning

2008-05-07 Thread Stefan de Konink
On Wed, 7 May 2008, Raphael Studer wrote: Cool, would you like to share your tool with us? http://lists.openstreetmap.org/pipermail/dev/2008-January/008393.html See this reply. :) read the thread :) I guess the problem is the automatic. If it's a human who's giving the definitiv

Re: [OSM-dev] Thanks

2008-05-12 Thread Stefan de Konink
On Mon, 12 May 2008, Frederik Ramm wrote: If you're really adventurous then re-implement the whole server API in C++ - it's not a big deal, you can leave the UI stuff in Rails, just get the stuff from Is this an *open* thing? I'm serious. I mean... if a random user would write something like

Re: [OSM-dev] Thanks

2008-05-13 Thread Stefan de Konink
On Tue, 13 May 2008, Tom Hughes wrote: There is quite a bit of scope for improving the ruby code I suspect if only by using libxml2 to parse the trace instead of rexml. That said, given the stability of the ruby libxml2 bindings a rewrite in C might be better ;-) There are some faster

Re: [OSM-dev] C++ implementation of the API

2008-05-21 Thread Stefan de Konink
On Wed, 21 May 2008, Joachim Zobel wrote: Writing Apache modules in C is hard, and I don't think using mod_cpp will make it much easier. Doing Apache modules in Perl (mod_perl has API access including filters) is a lot easier. For modules using the C API read Nick Kews book (ISBN

Re: [OSM-dev] C++ implementation of the API

2008-05-23 Thread Stefan de Konink
Frederik Ramm schreef: Hi, Do we need an Apache server? Why not writing (in c/c++) a small daemon listening on another port (e.g. 8080) and having a pool of threads translating from GET requests to mysql querries and from mysql results to xml? Famous last words: Let's just write a small

Re: [OSM-dev] C++ implementation of the API

2008-05-26 Thread Stefan de Konink
On Mon, 26 May 2008, Tom Hughes wrote: 2008/5/26 Stefan de Konink [EMAIL PROTECTED]: How should one benchmark his solution? Just put the data in and fetch? Well that is certainly a good start - compare the time taken to fetch an area with the time taken by the current code on the same

Re: [OSM-dev] High performance server [JOSM issues]

2008-05-28 Thread Stefan de Konink
On Wed, 28 May 2008, Stefan de Konink wrote: On Wed, 28 May 2008, Jon Burgess wrote: How does the content-type for the HTTP download compare to the real API? (try wget -S http://... and compare all the headers) [EMAIL PROTECTED] ~ $ wget -S http://openstreetmap.org/api/0.5/map?bbox

Re: [OSM-dev] High performance server [JOSM issues]

2008-05-28 Thread Stefan de Konink
On Wed, 28 May 2008, Mario Ferraro wrote: Hi Stefan, look for any trailing space before the XML declaration, or (better) try the generated XML file against an XML validation tool. It passes validator.w3.org :( With the only warning that the file has no doctype. Stefan

Re: [OSM-dev] High performance server [JOSM issues]

2008-05-28 Thread Stefan de Konink
On Wed, 28 May 2008, Mario Ferraro wrote: Hi Stefan, don't know if you've already fixed it, but I'm now trying to download the file from that URL in JOSM (after changing Base Server URL to http://thuis.kinkrsoftware.nl:8000/about) and it seems to work smoothly. I'm using JOSM version 639

Re: [OSM-dev] High performance server [JOSM issues]

2008-05-28 Thread Stefan de Konink
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Stefan Agner schreef: Quoting Stefan de Konink [EMAIL PROTECTED]: On Wed, 28 May 2008, Mario Ferraro wrote: I looked in wireshark to notice any differences, but if someone wants to take a peek... be my guest. Can it be that Linebreak

Re: [OSM-dev] High performance server [JOSM issues]

2008-05-28 Thread Stefan de Konink
Francisco R. Santos schreef: On Wed, May 28, 2008 at 1:50 PM, Stefan de Konink [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: On Wed, 28 May 2008, Mario Ferraro wrote: Hi Stefan, don't know if you've already fixed it, but I'm now trying to download the file

Re: [OSM-dev] High performance server [JOSM issues]

2008-05-28 Thread Stefan de Konink
Mario Ferraro schreef: Have you tried to output the raw osm file (taken from openstreetmap) from your server? This could avoid you from suspecting at least headers and try to hack the file only (or otherwise, stop to hack the file and look for headers). It is total voodoo. [EMAIL

Re: [OSM-dev] High performance server [JOSM issues]

2008-05-28 Thread Stefan de Konink
Mario Ferraro schreef: That's great, let us know when you'll find it, just curious :) If it helps, here the HTTP headers I was trying to read to find out something. They're equal, but I think they were already. There *must* be a bug somewhere. --- osm-goed2008-05-28 17:58:43.828003816

Re: [OSM-dev] High performance server [JOSM issues]

2008-05-28 Thread Stefan de Konink
I have created a packetcapture in wireshark and it is clear that the connection is dropped. Who is responsible, I have no clue yet. http://xen.bot.nu/josm-request.pcap Stefan ___ dev mailing list dev@openstreetmap.org

Re: [OSM-dev] High performance server [JOSM issues]

2008-05-28 Thread Stefan de Konink
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Jon Burgess schreef: On Wed, 2008-05-28 at 18:53 +0200, Stefan de Konink wrote: I have created a packetcapture in wireshark and it is clear that the connection is dropped. Who is responsible, I have no clue yet. http://xen.bot.nu/josm

Re: [OSM-dev] High performance server [JOSM issues]

2008-05-28 Thread Stefan de Konink
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Jon Burgess schreef: On Wed, 2008-05-28 at 19:11 +0100, Jon Burgess wrote: On Wed, 2008-05-28 at 19:09 +0100, Jon Burgess wrote: On Wed, 2008-05-28 at 18:53 +0200, Stefan de Konink wrote: I have created a packetcapture in wireshark

Re: [OSM-dev] High performance server [JOSM issues]

2008-05-28 Thread Stefan de Konink
Dirk-Lüder Kreie schreef: Three times seems to point to one full map return copy each for nodes/ways/relations. The author of Cherokee pointed me to the _step code in the module. I'm hacking on that, now. Stefan ___ dev mailing list

[OSM-dev] Way as Relation

2008-05-29 Thread Stefan de Konink
Maybe this is discussed before, but I want to know what the general opinion is about it. I wonder if we can skip a table of ways, and instead make it a relation. And it would look as: relation id=77 visible=true timestamp=2006-03-14T10:07:23+00:00 user=fred member type=relation ref=343

Re: [OSM-dev] Way as Relation

2008-05-29 Thread Stefan de Konink
On Thu, 29 May 2008, Richard Fairhurst wrote: Stefan de Konink wrote: That sounds optimistic :) That's about right. :) I'd very very roughly summarise the argument as I see it: - pro: neater data model; some opportunities for simplifying code - con: no real need to do so; makes things

[OSM-dev] Datamodel relation/member constraints

2008-05-30 Thread Stefan de Konink
Second question: Are there currently any constraints on relations members based on: 1) Sequence and/or 2) 'Reuse' So would it be allowed to do: type=node ref=1 role=from type=node ref=2 role=at type=node ref=1 role=at type=node ref=3 role=to Or is the second 1 not allowed? Next to this;

Re: [OSM-dev] Datamodel relation/member constraints

2008-05-30 Thread Stefan de Konink
Thomas Wood schreef: type=node ref=1 role=from type=node ref=2 role=at type=node ref=1 role=at type=node ref=3 role=to If by ref you mean node id, then yes, the second 1 is not allowed. The API used to throw an unhandled exception back at you (500) if you did it because of an index

[OSM-dev] Boundingboxing a relation/relation

2008-05-31 Thread Stefan de Konink
Ok, Questions in the series: how to build your own api server. - What does 'visible' actually mean? - How is a recursive relationship boundingboxed for a map request? The DTD allows: relation member type=relation ... /relation How is a relation within a relation (even deeper levels)

Re: [OSM-dev] Way as Relation

2008-05-31 Thread Stefan de Konink
Richard Fairhurst schreef: I'd very very roughly summarise the argument as I see it: - pro: neater data model; some opportunities for simplifying code The way I have implemented it now, it will save the way/way_tags table. And it will allow relations to branch two member tables instead of

Re: [OSM-dev] Datamodel relation/member constraints

2008-06-01 Thread Stefan de Konink
Stefan Keller schreef: Correct. I would be happy though if writers of editors etc. could act as if the relation members were ordered, and thus upload them in the same sequence they were downloaded. This gives us the option of switching to In APISs/interfaces there's often a dilemma to

[OSM-dev] Implied XML values

2008-06-08 Thread Stefan de Konink
Hi, Currently I have implemented the parsing of the PUT request. Now there are some implied properties. Now I wonder should these values be 'defaulted' by the database or by the instance that adds them? So for example: a timestamp is not available as attribute, what should happen? Stefan

[OSM-dev] PUT /api/0.6/{node|way|relation}/{id|create}

2008-06-08 Thread Stefan de Konink
Hi, I wonder why we cannot switch to: PUT /api/0.6 {{ Payload }} This payload contains: osm object withid object withoutid /osm This would mean that object that has an node/way/relation nodetag and an id to be updated. And an object without an id be created. In upload sequence an

Re: [OSM-dev] PUT /api/0.6/{node|way|relation}/{id|create}

2008-06-09 Thread Stefan de Konink
SteveC schreef: On 9 Jun 2008, at 16:49, Andreas Barth wrote: * Tom Hughes ([EMAIL PROTECTED]) [080609 14:06]: In message [EMAIL PROTECTED] PUT /api/0.6 {{ Payload }} - The API more simple (and easier to extend) That's debatable - the complexity is simply moved from the client having to

Re: [OSM-dev] PUT /api/0.6/{node|way|relation}/{id|create}

2008-06-09 Thread Stefan de Konink
Tom Hughes schreef: The proposed change makes: - The QUERY_STRING to be irrelevant It already is. No current API request uses QUERY_STRING. Then make the query string irrelevant. - The API more simple (and easier to extend) That's debatable - the complexity is simply moved from the

Re: [OSM-dev] PUT /api/0.6/{node|way|relation}/{id|create}

2008-06-09 Thread Stefan de Konink
Tom Hughes schreef: In message [EMAIL PROTECTED] Stefan de Konink [EMAIL PROTECTED] wrote: Tom Hughes schreef: The proposed change makes: - The QUERY_STRING to be irrelevant It already is. No current API request uses QUERY_STRING. Then make the query string irrelevant. I

Re: [OSM-dev] PUT /api/0.6/{node|way|relation}/{id|create}

2008-06-09 Thread Stefan de Konink
Dave Stubbs schreef: On Mon, Jun 9, 2008 at 5:10 PM, Stefan de Konink [EMAIL PROTECTED] wrote: Tom Hughes schreef: In message [EMAIL PROTECTED] Stefan de Konink [EMAIL PROTECTED] wrote: Tom Hughes schreef: The proposed change makes: - The QUERY_STRING to be irrelevant It already

Re: [OSM-dev] PUT /api/0.6/{node|way|relation}/{id|create}

2008-06-09 Thread Stefan de Konink
Dave Stubbs schreef: I think it has been solved: just implement the API the way it is. That is the actual question. Why does the api require a {node|way|relation} if the actual XML, first child, already gives this information? Stefan ___ dev

Re: [OSM-dev] PUT /api/0.6/{node|way|relation}/{id|create}

2008-06-09 Thread Stefan de Konink
Dave Stubbs schreef: On Mon, Jun 9, 2008 at 6:47 PM, Stefan de Konink [EMAIL PROTECTED] wrote: Dave Stubbs schreef: I think it has been solved: just implement the API the way it is. That is the actual question. Why does the api require a {node|way|relation} if the actual XML, first child

Re: [OSM-dev] Fwd: I have GPS data - Would it be of any use?

2008-06-14 Thread Stefan de Konink
Gervase Markham schreef: SteveC wrote: Anyone able to help? Wouldn't it make most sense just to say yes please and get a tarball. Then we can just put up a wiki page about it and wait for someone to have the time to process it. If you just throw out a does anyone have time? question and

Re: [OSM-dev] new OpenStreetMap renderer

2008-06-17 Thread Stefan de Konink
Frederik Ramm schreef: Hi, Can I integrate some files from http://download.geofabrik.de/osm/europe/germany/ into the download area? The renderer currently needs files, it can't download data from internet. I think the license CC BY SA allows this. Sure, you just need to make sure

Re: [OSM-dev] XML Schema (.xsd) for OSM-Protocol 0.5 and DTD question

2008-06-24 Thread Stefan de Konink
Dominik Spies schreef: is there a offical XML-Schema for the OSM-Protocol V0.5? It's not very difficult to translate this but if somebody has done it already.. Abd I have a question regarding this line in the DTD: !ELEMENT way (tag*,nd,tag*,nd,(tag|nd)*) why tag*,nd,tag*,nd,(tag|nd)*

Re: [OSM-dev] XML Schema (.xsd) for OSM-Protocol 0.5 and DTD question

2008-06-24 Thread Stefan de Konink
Dominik Spies schreef: @Stefan is there any output of your effort you may share? http://kinkrsoftware.nl/contrib/osm/osm-0.5.xsd I hope it can give you a starting point, it seems not to be passing by the validator yet... Stefan ___ dev mailing

Re: [OSM-dev] WMS

2008-06-24 Thread Stefan de Konink
Iván Sánchez Ortega schreef: However, the current implementation has the potential of pounding the API down to its knees (no caching of any kind). In fact, I think it has more bugs than features. So, I'd like to know if you think it would be a good idea to do load balancing between

Re: [OSM-dev] J2ME and PUT requests to the API

2008-06-25 Thread Stefan de Konink
Nick Whitelegg schreef: Hello everyone, Has anyone working on J2ME OSM client apps managed to communicate with the API using the PUT method? It seems J2ME doesn't support PUT with its HttpConnection. Would like to allow people to survey OSM POIs in the field with Freemap Mobile so any

Re: [OSM-dev] [Merkaartor] elevation in nodes

2008-07-01 Thread Stefan de Konink
Chris Browet schreef: Merkaartor will soon have a function to transform GPS tracks to OSM roads automatically. Does it have an update algorithm like Mapgenerator[1] so it is also possible get more precise if there is more nmea data available over time? Stefan [1]

Re: [OSM-dev] [Merkaartor] elevation in nodes

2008-07-01 Thread Stefan de Konink
Chris Browet schreef: 2008/7/2 Stefan de Konink [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]: Chris Browet schreef: Merkaartor will soon have a function to transform GPS tracks to OSM roads automatically. Does it have an update algorithm like Mapgenerator[1

[OSM-dev] Editor ideas / default country outlining

2008-07-02 Thread Stefan de Konink
I wonder if it would be possible in JOSM/Merkaartor to support some sort of 'default' country/province outlining so it is more easy to spot a position? Stefan ___ dev mailing list dev@openstreetmap.org

Re: [OSM-dev] Editor ideas / default country outlining

2008-07-03 Thread Stefan de Konink
Iván Sánchez Ortega schreef: El Jueves, 3 de Julio de 2008, Stefan de Konink escribió: Chris Browet schreef: Could you elaborate a bit. I don't quite understand what you mean... Boundaries of countries, maybe province level that gives the user some idea what region he wants to zoom

Re: [OSM-dev] Editor ideas / default country outlining

2008-07-03 Thread Stefan de Konink
Chris Browet schreef: I'm afraid there is little chance to see that in Merkaartor (not worth the hassle vs. what we already have, IMHO). Maybe JOSM... Although now that I think of it, it could reasonably easily be done by generating static maps from OSM, thru Osmarender, only

Re: [OSM-dev] osm2pgsql can parse diffs now (for testing anyway)

2008-07-09 Thread Stefan de Konink
Martijn van Oosterhout schreef: As expected, it's nowhere near as fast as just filling the DB with data, but it should be able to keep up. It passes all the tests I could throw at it, but it would be really nice if someone could try it on a big block of data which a big diff. None of these

Re: [OSM-dev] 2nd OSM Hack Weekend

2008-07-13 Thread Stefan de Konink
Robert (Jamie) Munro schreef: I still don't see why the OpenStreetBugs site doesn't just put FIXME nodes into the main database, perhaps under an anonymous username. It it can put FIXME ways in the database as well, that's great. Yes or some fixme area maybe even the fixme suggestion. Again;

Re: [OSM-dev] curiosity killed the cat...

2008-08-06 Thread Stefan de Konink
On Wed, 6 Aug 2008, Erik Johansson wrote: There should be around 30GB[1] of raw gpx data on the server. You will probably never need all GPX tracks, so webscraping a couple of houndred tracks slowly is probably the way to go. I recently downloaded a thousand tracks, and a houndred would have

Re: [OSM-dev] curiosity killed the cat...

2008-08-06 Thread Stefan de Konink
On Wed, 6 Aug 2008, Tom Hughes wrote: In message [EMAIL PROTECTED] Stefan de Konink [EMAIL PROTECTED] wrote: Where can an OSM user request all tracks ever uploaded? If you mean the raw tracks, then the answer is you can't, as some of them are not marked public so we don't make

Re: [OSM-dev] curiosity killed the cat...

2008-08-06 Thread Stefan de Konink
On Wed, 6 Aug 2008, Tom Hughes wrote: Is it all database only, or were all seperate files stored? The files are all on disk, but the metadata that tells us what is public and what is private is in the database. Thus a script that moves them in to a private/public directory, and access them

Re: [OSM-dev] Please publish the current db schema

2008-08-07 Thread Stefan de Konink
On Thu, 7 Aug 2008, Joachim Zobel wrote: http://wiki.openstreetmap.org/index.php/Database_schema#MySQL does not have relations. Does MySQL these days support it :+ Stefan ___ dev mailing list dev@openstreetmap.org

Re: [OSM-dev] Call to mobile developers: OSM binary file format

2008-08-08 Thread Stefan de Konink
On Fri, 8 Aug 2008, Jan Peter Stotz wrote: May be WAP WAP Binary XML (WBXML) encoding [1] would be a possible solution? It significantly reduces the size of data to be transfered while keeping the compatibility to the current data format. The transportation could be still HTTP or a different

Re: [OSM-dev] Call to mobile developers: OSM binary file format

2008-08-08 Thread Stefan de Konink
On Fri, 8 Aug 2008, Chris Browet wrote: As for myself, I prefer to keep all information because I'm not focused on routing as others. But I suppose compromise will have to be made. Invent the following format. mmap your program structures to a file, sync and save it. Distribute. It will be

Re: [OSM-dev] Mosques and other features of the Muslim world

2008-08-17 Thread Stefan de Konink
Erik Johansson schreef: On Sun, Aug 17, 2008 at 12:38 PM, Tom Hughes [EMAIL PROTECTED] wrote: the symbols for hospitals here are a crescent and a cross, not just a cross. Guess it will require an additional tag to specify a muslim hospital. If anyone has time to help work on new symbols for

Re: [OSM-dev] real-time traffic map

2008-08-20 Thread Stefan de Konink
Marcus Wolschon schreef: On Wed, 20 Aug 2008 13:00:05 +0300, Bogdan Bivolaru [EMAIL PROTECTED] wrote: Dear all, Do you know any way to maintain an instantaneous map of a road? By that I mean: can all the drivers using OpenStreetMap + GPS upload their current location and direction they

[OSM-dev] AMF api what is it?

2008-08-29 Thread Stefan de Konink
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Sounds good - because Potlatch can't access your local filesystem I've never been able to add photo mapping features, but this might provide an answer. Would be interested in seeing how it progresses (especially if I can give you an AMF API too ;) ).

Re: [OSM-dev] AMF api what is it?

2008-08-29 Thread Stefan de Konink
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Jon Burgess schreef: 2008/8/29 Stefan de Konink [EMAIL PROTECTED]: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Sounds good - because Potlatch can't access your local filesystem I've never been able to add photo mapping features, but this might

Re: [OSM-dev] Laser Sfera Street View Technology for Mapping Party Varese 2008 20/9/08

2008-09-12 Thread Stefan de Konink
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Gregory schreef: Cool. So is your plan to get us volunteers to use and map where you've been, then you get the OSM data to display with it for the rest of the public? Or do you plan to do all the mapping yourself? I would definitely like to have

Re: [OSM-dev] gpx elevation data for given bounding box?

2008-09-13 Thread Stefan de Konink
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Timo Juhani Lindfors schreef: I can see elevation data. Is there anything I could do to get such elevation data for only specific bounding box? I am not sure how much www.openstreetmap.org likes if I download all GPX files (44 gigabytes if my

Re: [OSM-dev] [Patch] Experimental extra symbols for mapnik layer

2008-09-17 Thread Stefan de Konink
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Brian Quinion schreef: Please do let me know what you think! Just another reason to have 'layers'. :) Next to that it looks cool :) Stefan -BEGIN PGP SIGNATURE- Version: GnuPG v2.0.9 (GNU/Linux) Comment: Using GnuPG with Mozilla -

Re: [OSM-dev] Garmin GPX madness

2008-09-20 Thread Stefan de Konink
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Igor Brejc schreef: Or use these: http://www.gpsbabel.org/htmldoc-1.3.2/Data_Filters.html I sincerely wonder why anyone in the community would buy a Garmin as tracking device after (s)he is aware that the device doesn't report h-/v-/p-dop. This is

Re: [OSM-dev] Garmin GPX madness

2008-09-21 Thread Stefan de Konink
On Sun, 21 Sep 2008, David Earl wrote: OK, I understand now. But I still don't know what I'd do with the information if I had it. If you are thinking maybe 'out of the box' and [insert your favorite editor here] would indicate the error margin of your track it could be a very good reference if

Re: [OSM-dev] Garmin GPX madness

2008-09-22 Thread Stefan de Konink
On Mon, 22 Sep 2008, Nick Black wrote: If you had 30 traces down a road and no dop information and you derived a centre line, using only the lat lons of the 30 different traces, how much less precise would the result be than taking 30 traces with dop info and figuring out a centre line? The

Re: [OSM-dev] Garmin GPX madness

2008-09-22 Thread Stefan de Konink
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Richard Fairhurst schreef: I'm trying to inject a little levity (you might even have noticed my this needs to be rvted comment on the wiki edit history) into a bunch of idiot points made by po-faced fundamentalists You could also have added

Re: [OSM-dev] Garmin GPX madness

2008-09-22 Thread Stefan de Konink
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Richard Fairhurst schreef: Stefan de Konink wrote: You could also have added a column supports DOP? Don't feed the trolls. Excellent idea - and you actually know what DOP is, which is more than I do, so I'll leave it to you. :) I'm

Re: [OSM-dev] Garmin GPX madness

2008-09-22 Thread Stefan de Konink
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Richard Fairhurst schreef: Stefan de Konink wrote: I'm not very into wiki tables :) Can they be reordered? Heh, you're now making me wonder what actually _do_ I know about? (and I'm sure I'm not the first to wonder that). I'm no wikitable

Re: [OSM-dev] Code of conduct for automated (mass-) edits

2008-09-29 Thread Stefan de Konink
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Frederik Ramm schreef: Stefan de Konink wrote: In NL we would call this ultimate anarchy and unless one of our dictators steps in to stop anyone nothing happens. So if someone doesn't like automatic edits it should be able to be reverted easily

Re: [OSM-dev] OSM and sqlite

2008-09-30 Thread Stefan de Konink
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Igor Brejc schreef: Has anybody done any work on storing OSM data into a sqlite database? I'm personally pro another database, but what about publishing the planet.xml inside insert your favorite binary format here? Just as intermediate format?

Re: [OSM-dev] OSM and sqlite

2008-09-30 Thread Stefan de Konink
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Igor Brejc schreef: On Tue, Sep 30, 2008 at 10:56 AM, Stefan de Konink [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Igor Brejc schreef: Has anybody done any work on storing OSM data into a sqlite database? I'm

Re: [OSM-dev] Any interest for a c++ osmapi ?

2008-10-01 Thread Stefan de Konink
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Stefan de Konink schreef: Stefan Ziegler schreef: Hello, Subject: [OSM-dev] Any interest for a c++ osmapi ? To: dev@openstreetmap.org Message-ID: [EMAIL PROTECTED] Content-Type: text/plain; charset=iso-8859-1 I'm just coding a sort of c

Re: [OSM-dev] way 7062297, is this new?

2008-10-08 Thread Stefan de Konink
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Grant Slater schreef: Stefan de Konink wrote: .. tag k=AND_nosr_r v=15457132/ tag k=AND:importance_level v=5/ tag k=AND_nosr_r v=15457132/ .. tag k=AND:importance_level v=5/ ... Could anyone *please* elaborate since when this is possible

Re: [OSM-dev] way 7062297, is this new?

2008-10-09 Thread Stefan de Konink
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Matt Amos schreef: we're working on it and it'll be ready as soon as its ready. if you'd like to help then that would be fantastic. If you don't mind I'll implement a 0.6 api in my own server ;) imho, the most likely place to look for the error

Re: [OSM-dev] way 7062297, is this new?

2008-10-09 Thread Stefan de Konink
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Stefan de Konink schreef: you'll notice that JMEditor, whatever that is, is responsible for the node errors. and all the way errors are duplicates, so there is never a conflict in reducing them. if you'd like to fix these then that would

Re: [OSM-dev] way 7062297, is this new?

2008-10-09 Thread Stefan de Konink
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Matthias Julius schreef: Or make it a normal index instead of a primary key. Then you can have duplicates. The database I am using does this under the hood already. The constraint I have implemented was because: - - I have an update algorithm

Re: [OSM-dev] What country is something in?

2008-10-10 Thread Stefan de Konink
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Roland Olbricht schreef: is anybody working currently on the What country is something in? issue from the Things-to-do-page? I would like to work on it, but I want to avoid doing work twice. Isn't that a trivial thing using PostGIS? Stefan

Re: [OSM-dev] What country is something in?

2008-10-10 Thread Stefan de Konink
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Marcus Wolschon schreef: Stefan de Konink schrieb: Roland Olbricht schreef: is anybody working currently on the What country is something in? issue from the Things-to-do-page? I would like to work on it, but I want to avoid doing work twice

Re: [OSM-dev] What country is something in?

2008-10-10 Thread Stefan de Konink
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Marcus Wolschon schreef: I tried and fixed a great deal of the german border but it was too much work and there are regions where I do not know in details where the border actually should be. Then we might need to write the UN or some other

Re: [OSM-dev] way 7062297, is this new?

2008-10-13 Thread Stefan de Konink
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Matthias Julius schreef: Julison [EMAIL PROTECTED] writes: In what situation would it be necessary use duplicate keys? If there's a need, can we reach the same goal without using it? I think duplicated keys can lead to database problems (e.g.

Re: [OSM-dev] Complete OSM history for bounding rect

2008-10-14 Thread Stefan de Konink
On Tue, 14 Oct 2008, Tomas Kolda wrote: is it possible to get complete history for area? For example using osmxapi, or is there some planet dump with history? I do not want to use query for each object to get history... It is slow and there is so much overhead. Lets just ask for a complete

Re: [OSM-dev] 0.6 API hack-a-thon Date

2008-10-14 Thread Stefan de Konink
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Shaun McDonald schreef: http://svn.openstreetmap.org/applications/utils/planet.osm/perl/planetosm-to-db.pl will also need to be updated to 0.6, would anyone like to update the script? I have currently a native C implementation of an osm to db.

Re: [OSM-dev] VM image

2008-10-14 Thread Stefan de Konink
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Till Harbaum / Lists schreef: Am Dienstag 14 Oktober 2008 schrieb Andy Allan: I certainly use VMware for testing the rails_port, and in fact have been working on fixing up the installation instructions at

Re: [OSM-dev] VM image

2008-10-14 Thread Stefan de Konink
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Shaun McDonald schreef: On 14 Oct 2008, at 19:38, Till Harbaum / Lists wrote: Hi, Am Dienstag 14 Oktober 2008 schrieb Andy Allan: I certainly use VMware for testing the rails_port, and in fact have been working on fixing up the installation

Re: [OSM-dev] VM image

2008-10-15 Thread Stefan de Konink
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Hugh Barnes schreef: +1. There are quite enough tools running on binary-only/owned platforms and it's a turn-off for me, at least. I was thinking a little while ago of a Live CD. I think they both have their pros and cons. Is there an easy

Re: [OSM-dev] Faster loading with scabies

2008-10-15 Thread Stefan de Konink
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Joachim Zobel schreef: Hi. I have written a utility named scabies to load data from osm files into a mysql database. See http://www.heute-morgen.de/scabies/ Usage is rather straightforward, but you need lots of disk space.

Re: [OSM-dev] VM image [networking question]

2008-10-15 Thread Stefan de Konink
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 I have now a working image; what is the way to get a *working* bridge between the VM and Hostsystem. It is a bit stupid that I actually have a working api, but only can access it from inside the host. Stefan -BEGIN PGP SIGNATURE- Version:

Re: [OSM-dev] VM image [networking question]

2008-10-15 Thread Stefan de Konink
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Stefan de Konink schreef: I have now a working image; what is the way to get a *working* bridge between the VM and Hostsystem. It is a bit stupid that I actually have a working api, but only can access it from inside the host. nvm, it works

Re: [OSM-dev] 0.6 API hack-a-thon Date

2008-10-16 Thread Stefan de Konink
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Shaun McDonald schreef: Okay, so it sounds like the short answer is that there's no upgrading an already populated database so no easy way of building a db with 0.6 data. The migrations should work, though it is known that they break when

Re: [OSM-dev] 0.6 API hack-a-thon Date

2008-10-16 Thread Stefan de Konink
On Thu, 16 Oct 2008, Frederik Ramm wrote: On 16.10.2008, at 12:01, Stefan de Konink wrote: Stop talking about platform specific test! We need test that is an application server *without logic* that sends out requests for a pre definined dataset that should always result in the same output

Re: [OSM-dev] 0.6 API hack-a-thon Date

2008-10-16 Thread Stefan de Konink
On Thu, 16 Oct 2008, bvh wrote: On Thu, Oct 16, 2008 at 08:07:07AM +0100, Shaun McDonald wrote: JOSM is the only option at the moment as Potlatch and Merkator haven't been upgraded to 0.6 yet. Merkaartor has a 'use 0.6 API' switch since July (0.11). It is hidden inside our big preferences

Re: [OSM-dev] 0.6 API hack-a-thon Date

2008-10-16 Thread Stefan de Konink
On Thu, 16 Oct 2008, Shaun McDonald wrote: We're currently working on rails unit and functional tests for API 0.6. There will probably be some integration tests coming later. You can see the status of the tests at http://cruise.shaunmcdonald.me.uk/ Stop talking about platform specific test!

[OSM-dev] 157... what could be the cause?

2008-10-16 Thread Stefan de Konink
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Do you have a remote idea why this 'just' works under amd64? I did not yet test my code on my PowerPC, but if it works there too, I'm quite shocked. Stefan -BEGIN PGP SIGNATURE- Version: GnuPG v2.0.9 (GNU/Linux) Comment: Using GnuPG with

Re: [OSM-dev] VM image [networking question]

2008-10-17 Thread Stefan de Konink
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Stefan de Konink schreef: Simone Cortesi schreef: On Thu, Oct 16, 2008 at 12:10 AM, Stefan de Konink [EMAIL PROTECTED] wrote: I have now a working image; what is the way to get a *working* bridge between the VM and Hostsystem. It is a bit

Re: [OSM-dev] Binary OSM db

2008-10-17 Thread Stefan de Konink
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Sascha Silbe schreef: Node/way/relation name/ref/is_in: - text files sorted by id (intended for namefinder - could be changed into proper database entries similar to the way tags are handled) What do you actually implement here?

[OSM-dev] OpenStreetMap directly in Mapserver; it has been fulfilled

2008-10-18 Thread Stefan de Konink
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Hi, I have created a patch for OGR that allows direct usage of the OpenStreetMap data (with normalised tables) inside Mapserver. This effectively means that the database I have is able to display instant updates of the data without any database

Re: [OSM-dev] OpenStreetMap directly in Mapserver; it has been fulfilled

2008-10-20 Thread Stefan de Konink
Mikel Maron wrote: I have created a patch for OGR that allows direct usage of the OpenStreetMap data (with normalised tables) inside Mapserver. You wrote an OGR adaptor for OSM data format? Bravo! If you mean by dataformat XML - No. If you mean by dataformat

Re: [OSM-dev] Public Playground-/Testserver

2008-10-22 Thread Stefan de Konink
Matthias Brandt wrote: I'm developing an OSM editor for Android devices. When I'm testing my generated data, I don't want to pollute the live system or even destroy somebodys work. Is there a public Testserver with API? I have currently disabled update support on my own server

Re: [OSM-dev] Lean and mean Tile- and XML-API-Server

2008-10-29 Thread Stefan de Konink
Stefan Keller wrote: Any suggestions? http://repo.or.cz/w/handlerosm.git We are building a VM around it. Some OGR patches still need to be modified, but then we have a live Mapserver running on our database. Stefan ___ dev mailing list

Re: [OSM-dev] Ways with 40k nodes, was: osmosis pgsql schema

2008-10-31 Thread Stefan de Konink
On Fri, 31 Oct 2008, Frederik Ramm wrote: Any comments? You are now basically working around the actual problem. Allowing partial ways in the editors for the current bbox. I think hacking and breaking ways is bad, duplicate information, missing tags upon edit etc. I think storing ways with

Re: [OSM-dev] Ways with 40k nodes, was: osmosis pgsql schema

2008-10-31 Thread Stefan de Konink
Dave Stubbs wrote: On Fri, Oct 31, 2008 at 11:02 AM, Stefan de Konink [EMAIL PROTECTED] wrote: On Fri, 31 Oct 2008, Frederik Ramm wrote: Any comments? You are now basically working around the actual problem. Allowing partial ways in the editors for the current bbox. I think hacking

  1   2   3   4   5   6   >