[OSM-dev] Dealing with segements referencing deleted nodesinthe planet dump
Nick Black
nickblack1 at gmail.com
Thu Jan 18 20:06:21 GMT 2007
So this should fix that:
public class DeleteMode extends EditMode {
..
..
public void mouseReleased() {
for (Iterator it = applet.nodes.values().iterator(); it.hasNext();) {
Node p = (Node)it.next();
if (applet.mouseOverPoint(p.coor) && p.id != 0) {
if (p.lines.isEmpty()){
int answer = MsgBox.show("Really delete
the node "+p.getName()+"?", new String[]{"OK", "Cancel"});
if (answer == 1)
return;
OsmApplet.println("deleting " + p);
applet.osm.deleteNode(p);
}
return;
}
}
..
I've forgotten my svn password again...
Nick
On 1/18/07, Robert Hart <Robert.Hart at burohappold.com> wrote:
>
>
>
>
> http://www.openstreetmap.org/index.html?lat=51.3802000091772&lon=-2.3608622040274265&zoom=15
>
>
> -----Original Message-----
> From: dev-bounces at openstreetmap.org on behalf of Dean Earley
> Sent: Thu 1/18/2007 5:46 PM
> To: Dev Openstreetmap
> Subject: Re: [OSM-dev] Dealing with segements referencing deleted
> nodesinthe planet dump
>
> > I have a similar problem with two ways in the centre of bath that
> > reference segments that don't exist. They've been like that for as long
> > as I can remember....
> >
> > I tried a similar trick to what you said, and I think they only
> > reference live segments now, but I still can't seem to delete them. They
> > come back next time I download in JOSM. Any pointers?
> >
> > They are ways 2538 and 2542
> >
> > (They have suspiciously low ID numbers compared to everywhere else in
> > Bath)
>
> Neither of them appear to be in planet.osm or on the server.
> Can you give a sample download area that gets them?
>
> --
> Dean Earley, Dee (dean at earlsoft.co.uk)
>
> irc: irc://irc.blitzed.org/
> web: http://personal.earlsoft.co.uk
> phone: +44 (0)780 8369596
>
> _______________________________________________
> dev mailing list
> dev at openstreetmap.org
> http://lists.openstreetmap.org/cgi-bin/mailman/listinfo/dev
>
>
>
>
>
>
>
> This message has been scanned for viruses by MailControl, a service from
> BlackSpider Technologies.
> _______________________________________________
> dev mailing list
> dev at openstreetmap.org
> http://lists.openstreetmap.org/cgi-bin/mailman/listinfo/dev
>
>
>
--
Nick Black
--------------------------------
http://www.blacksworld.net
More information about the dev
mailing list