Talk:JOSM/Plugins/TagEditor

From OpenStreetMap Wiki
Jump to navigation Jump to search

This plugin looks very promising, but I have problem get it running:

 org.openstreetmap.josm.plugins.PluginException: An error occurred in plugin tageditor
       at org.openstreetmap.josm.plugins.PluginInformation.loadClass(PluginInformation.java:147)
       at org.openstreetmap.josm.plugins.PluginHandler.loadPlugins(PluginHandler.java:145)
       at org.openstreetmap.josm.gui.MainApplication.main(MainApplication.java:172)
 Caused by: java.lang.ClassNotFoundException: org.openstreetmap.josm.plugins.slippymap.TagEditorPlugin
       at java.net.URLClassLoader$1.run(URLClassLoader.java:217)
       at java.security.AccessController.doPrivileged(Native Method)
       at java.net.URLClassLoader.findClass(URLClassLoader.java:205)
       at java.lang.ClassLoader.loadClass(ClassLoader.java:323)
       at java.lang.ClassLoader.loadClass(ClassLoader.java:268)
       at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:336)
       at java.lang.Class.forName0(Native Method)
       at java.lang.Class.forName(Class.java:264)
       at org.openstreetmap.josm.plugins.PluginInformation.loadClass(PluginInformation.java:144)
       ... 2 more

--Vrabcak 18:59, 1 April 2009 (UTC)

Unfortunately, the current release is broken. There was an error in the build script. I fixed it today. Should be OK after the next build. Gubaer 08:12, 2 April 2009 (UTC)
When should the next build be available? I tried it today with version 14339 and it is still broken. --Vrabcak 10:35, 7 April 2009 (UTC)
I today learned more about the build process. I finally managed to run a build myself and to publish the latest release 14419. It works here. Can you give it a try? Gubaer 19:49, 7 April 2009 (UTC)

Editing of several objects

If I select several objects and add a new tag, all objects will have all tags, also the tags, which were bfore the editing only at one of the object

An example:

Way 1:

highway=path
surface=ground


way 2:

highway=primary
maxspeed=100

Then I select both ways and add with the Plugin TagEditor the tag bicycle=yes. After that the result is:

way 1:

highway=path
surface=ground
maxspeed=100
bicycle=yes

way 2:

highway=primary
surface=ground
maxspeed=100
bicycle=yes

But thats not true. It should be without maxspeed=100 at way 1 and without surface=ground at way 2. Can somebody change this. --Chrisss Gü (talk) 16:07, 20 March 2015 (UTC)