Changeset 33 in josm for src/org/openstreetmap
- Timestamp:
- 2005-12-22T01:32:33+01:00 (19 years ago)
- Location:
- src/org/openstreetmap/josm
- Files:
-
- 4 added
- 10 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
src/org/openstreetmap/josm/Main.java
r31 r33 17 17 import org.openstreetmap.josm.actions.ExitAction; 18 18 import org.openstreetmap.josm.actions.OpenAction; 19 import org.openstreetmap.josm.actions. OpenOsmServerAction;19 import org.openstreetmap.josm.actions.DownloadAction; 20 20 import org.openstreetmap.josm.actions.PreferencesAction; 21 21 import org.openstreetmap.josm.actions.RedoAction; 22 22 import org.openstreetmap.josm.actions.SaveAction; 23 23 import org.openstreetmap.josm.actions.UndoAction; 24 import org.openstreetmap.josm.actions.UploadAction; 24 25 import org.openstreetmap.josm.data.Preferences; 25 26 import org.openstreetmap.josm.data.Preferences.PreferencesException; … … 79 80 80 81 // creating actions 81 OpenOsmServerAction openServerAction = new OpenOsmServerAction(); 82 DownloadAction downloadAction = new DownloadAction(); 83 UploadAction uploadAction = new UploadAction(); 82 84 OpenAction openAction = new OpenAction(); 83 85 SaveAction saveAction = new SaveAction(); … … 103 105 JMenu connectionMenu = new JMenu("Connection"); 104 106 connectionMenu.setMnemonic('C'); 105 connectionMenu.add(openServerAction); 107 connectionMenu.add(downloadAction); 108 connectionMenu.add(uploadAction); 106 109 mainMenu.add(connectionMenu); 107 110 … … 123 126 JToolBar toolBar = new JToolBar(); 124 127 toolBar.setFloatable(false); 125 toolBar.add(openServerAction); 128 toolBar.add(downloadAction); 129 toolBar.add(uploadAction); 126 130 toolBar.add(openAction); 127 131 toolBar.add(saveAction); -
src/org/openstreetmap/josm/actions/DownloadAction.java
r32 r33 36 36 37 37 /** 38 * Action that opens a connection to the osm server. 38 * Action that opens a connection to the osm server and download map data. 39 39 * 40 40 * An dialog is displayed asking the user to specify a rectangle to grab. … … 43 43 * @author imi 44 44 */ 45 public class OpenOsmServerAction extends JosmAction {45 public class DownloadAction extends JosmAction { 46 46 47 47 JTextField[] latlon = new JTextField[]{ … … 52 52 JCheckBox rawGps = new JCheckBox("Open as raw gps data", false); 53 53 54 public OpenOsmServerAction() {55 super(" Connect toOSM", "connectosm", "Open a connection tothe OSM server.", KeyEvent.VK_C,56 KeyStroke.getAWTKeyStroke(KeyEvent.VK_ C, InputEvent.CTRL_DOWN_MASK | InputEvent.SHIFT_DOWN_MASK));54 public DownloadAction() { 55 super("Download from OSM", "download", "Download map data from the OSM server.", KeyEvent.VK_D, 56 KeyStroke.getAWTKeyStroke(KeyEvent.VK_D, InputEvent.CTRL_DOWN_MASK | InputEvent.SHIFT_DOWN_MASK)); 57 57 } 58 58 -
src/org/openstreetmap/josm/actions/ExtensionFileFilter.java
r32 r33 21 21 //new ExtensionFileFilter(".josm", "JOSM Savefiles (.josm)") 22 22 }; 23 23 24 24 /** 25 25 * Construct an extension file filter by giving the extension to check after. -
src/org/openstreetmap/josm/command/ChangeKeyValueCommand.java
r32 r33 56 56 oldProperties.add(osm.keys == null ? null : new HashMap<Key, String>(osm.keys)); 57 57 oldModified.add(osm.modified); 58 osm.modified = true; 58 59 } 59 60 60 61 if (value == null) { 61 62 for (OsmPrimitive osm : objects) { -
src/org/openstreetmap/josm/data/Preferences.java
r30 r33 50 50 */ 51 51 private boolean forceRawGpsLines = false; 52 /**53 * Whether nodes on the same place should be considered identical.54 */55 public boolean mergeNodes = true;56 52 57 53 /** … … 132 128 osmDataPassword = osmServer.getChildText("password"); 133 129 } 134 mergeNodes = root.getChild("mergeNodes") != null;135 130 drawRawGpsLines = root.getChild("drawRawGpsLines") != null; 136 131 forceRawGpsLines = root.getChild("forceRawGpsLines") != null; … … 153 148 children.add(new Element("laf").setText(laf.getClassName())); 154 149 children.add(new Element("projection").setText(getProjection().getClass().getName())); 155 if (mergeNodes)156 children.add(new Element("mergeNodes"));157 150 if (drawRawGpsLines) 158 151 children.add(new Element("drawRawGpsLines")); -
src/org/openstreetmap/josm/data/osm/OsmPrimitive.java
r32 r33 15 15 abstract public class OsmPrimitive { 16 16 17 private static int idcount = 0;18 public OsmPrimitive() {19 id = ++idcount;20 }21 22 17 /** 23 18 * The key/value list for this primitive. … … 43 38 * If set to true, this object is currently selected. 44 39 */ 45 transientprivate boolean selected = false;40 private boolean selected = false; 46 41 47 42 /** … … 60 55 * @return True, if the keysets are mergable 61 56 */ 62 public boolean keyPropertiesMergable(OsmPrimitive other) { 57 final public boolean keyPropertiesMergable(OsmPrimitive other) { 63 58 if ((keys == null) != (other.keys == null)) 64 59 return false; … … 80 75 * @param selected Whether the primitive should be selected or not. 81 76 */ 82 public void setSelected(boolean selected) { 77 final public void setSelected(boolean selected) { 83 78 if (selected != this.selected) 84 79 Main.main.ds.fireSelectionChanged(); … … 89 84 * @return Return whether the primitive is selected on screen. 90 85 */ 91 public boolean isSelected() { 86 final public boolean isSelected() { 92 87 return selected; 93 88 } -
src/org/openstreetmap/josm/gui/PreferenceDialog.java
r31 r33 54 54 projection.commitConfigurationPanel(); 55 55 Main.pref.setProjection(projection); 56 Main.pref.mergeNodes = mergeNodes.isSelected();57 56 Main.pref.osmDataServer = osmDataServer.getText(); 58 57 Main.pref.osmDataUsername = osmDataUsername.getText(); … … 125 124 */ 126 125 JCheckBox forceRawGpsLines = new JCheckBox("Force lines if no line segments imported."); 127 /**128 * The checkbox stating whether nodes should be merged together.129 */130 JCheckBox mergeNodes = new JCheckBox("Merge nodes with equal latitude/longitude.");131 126 132 127 /** … … 198 193 forceRawGpsLines.setSelected(Main.pref.isForceRawGpsLines()); 199 194 forceRawGpsLines.setEnabled(drawRawGpsLines.isSelected()); 200 mergeNodes.setToolTipText("When importing GPX data, all nodes with exact the same lat/lon are merged.");201 mergeNodes.setSelected(Main.pref.mergeNodes);202 195 203 196 osmDataServer.setText(Main.pref.osmDataServer); … … 238 231 map.add(GBC.glue(5,0), GBC.std().fill(GBC.HORIZONTAL)); 239 232 map.add(projectionDetail, GBC.eop()); 240 241 map.add(new JLabel("GPX import / export"), GBC.eol());242 map.add(mergeNodes, GBC.eol().insets(20,0,0,0));243 233 map.add(Box.createVerticalGlue(), GBC.eol().fill(GBC.VERTICAL)); 244 234 -
src/org/openstreetmap/josm/gui/dialogs/SelectionListDialog.java
r30 r33 2 2 3 3 import java.awt.BorderLayout; 4 import java.awt.Component;5 4 import java.awt.Dimension; 6 5 import java.awt.event.ActionEvent; … … 9 8 import java.util.Collection; 10 9 11 import javax.swing.DefaultListCellRenderer;12 10 import javax.swing.DefaultListModel; 13 11 import javax.swing.JButton; 14 import javax.swing.JLabel;15 12 import javax.swing.JList; 16 13 import javax.swing.JScrollPane; … … 20 17 import org.openstreetmap.josm.data.SelectionChangedListener; 21 18 import org.openstreetmap.josm.data.osm.OsmPrimitive; 22 import org.openstreetmap.josm.data.osm.visitor.SelectionComponentVisitor;23 19 import org.openstreetmap.josm.gui.ImageProvider; 24 20 import org.openstreetmap.josm.gui.MapFrame; 21 import org.openstreetmap.josm.gui.OsmPrimitivRenderer; 25 22 26 23 /** … … 49 46 super("Current Selection", "Selection List", "selectionlist", KeyEvent.VK_E, "Open a selection list window."); 50 47 setPreferredSize(new Dimension(320,150)); 51 displaylist.setCellRenderer(new DefaultListCellRenderer(){ 52 private SelectionComponentVisitor visitor = new SelectionComponentVisitor(); 53 @Override 54 public Component getListCellRendererComponent(JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) { 55 Component c = super.getListCellRendererComponent(list, value, index, isSelected, cellHasFocus); 56 if (c instanceof JLabel && value != null) { 57 ((OsmPrimitive)value).visit(visitor); 58 ((JLabel)c).setText(visitor.name); 59 ((JLabel)c).setIcon(visitor.icon); 60 } 61 return c; 62 } 63 }); 48 displaylist.setCellRenderer(new OsmPrimitivRenderer()); 64 49 displaylist.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION); 65 50 -
src/org/openstreetmap/josm/io/GpxReader.java
r32 r33 1 1 package org.openstreetmap.josm.io; 2 3 import static org.openstreetmap.josm.io.GpxWriter.GPX; 4 import static org.openstreetmap.josm.io.GpxWriter.OSM; 5 import static org.openstreetmap.josm.io.GpxWriter.JOSM; 2 6 3 7 import java.io.IOException; … … 7 11 import org.jdom.Element; 8 12 import org.jdom.JDOMException; 9 import org.jdom.Namespace;10 13 import org.jdom.input.SAXBuilder; 11 import org.openstreetmap.josm.Main;12 14 import org.openstreetmap.josm.data.GeoPoint; 13 15 import org.openstreetmap.josm.data.osm.DataSet; … … 26 28 */ 27 29 public class GpxReader { 28 29 /**30 * The GPX namespace used.31 */32 public static final Namespace GPX = Namespace.getNamespace("http://www.topografix.com/GPX/1/0");33 /**34 * The OSM namespace used (for extensions).35 */36 private static final Namespace OSM = Namespace.getNamespace("osm", "http://www.openstreetmap.org");37 30 38 31 /** … … 136 129 } else if (child.getName().equals("extensions")) { 137 130 parseKeyValueExtensions(track, child); 138 if (child.getChild("segment", OSM) != null) 131 if (child.getChild("segment", JOSM) != null) 139 132 realLineSegment = true; 140 133 } else if (child.getName().equals("link")) … … 162 155 */ 163 156 private Node addNode(DataSet data, Node node) { 164 if (Main.pref.mergeNodes) 165 for (Node n : data.nodes) 166 if (node.coor.equalsLatLon(n.coor)) 167 return n; 157 for (Node n : data.nodes) 158 if (node.coor.equalsLatLon(n.coor)) 159 return n; 168 160 data.nodes.add(node); 169 161 return node; … … 194 186 } 195 187 } 188 Element idElement = e.getChild("uid", JOSM); 189 if (idElement != null) 190 osm.id = Long.parseLong(idElement.getText()); 191 osm.modified = e.getChild("modified", JOSM) != null; 196 192 } 197 193 } -
src/org/openstreetmap/josm/io/GpxWriter.java
r32 r33 18 18 import org.openstreetmap.josm.data.osm.LineSegment; 19 19 import org.openstreetmap.josm.data.osm.Node; 20 import org.openstreetmap.josm.data.osm.OsmPrimitive; 20 21 import org.openstreetmap.josm.data.osm.Track; 21 22 … … 34 35 /** 35 36 * The GPX namespace used. 36 * TODO unify with GpxReader 37 */ 38 private static final Namespace GPX = Namespace.getNamespace("http://www.topografix.com/GPX/1/0"); 37 */ 38 public static final Namespace GPX = Namespace.getNamespace("http://www.topografix.com/GPX/1/0"); 39 39 /** 40 40 * The OSM namespace used (for extensions). 41 * TODO unify with GpxReader 42 */ 43 private static final Namespace OSM = Namespace.getNamespace("osm", "http://www.openstreetmap.org"); 41 */ 42 public static final Namespace OSM = Namespace.getNamespace("osm", "http://www.openstreetmap.org"); 43 /** 44 * The JOSM namespace (for JOSM-extensions). 45 */ 46 public static final Namespace JOSM = Namespace.getNamespace("josm", "http://wiki.eigenheimstrasse.de/wiki/JOSM"); 44 47 45 48 /** … … 66 69 Element root = parseDataSet(); 67 70 root.addNamespaceDeclaration(OSM); 71 root.addNamespaceDeclaration(JOSM); 68 72 Document d = new Document(root); 69 73 XMLOutputter xmlOut = new XMLOutputter(Format.getPrettyFormat()); … … 89 93 for (Track t : Main.main.ds.tracks) { 90 94 Element tElem = new Element("trk", GPX); 95 HashMap<Key, String> keys = null; 91 96 if (t.keys != null) { 92 HashMap<Key, String>keys = new HashMap<Key, String>(t.keys);97 keys = new HashMap<Key, String>(t.keys); 93 98 addAndRemovePropertyTag("name", tElem, keys); 94 99 addAndRemovePropertyTag("cmt", tElem, keys); … … 98 103 addAndRemovePropertyTag("number", tElem, keys); 99 104 addAndRemovePropertyTag("type", tElem, keys); 100 addPropertyExtensions(tElem, keys);101 105 } 106 addPropertyExtensions(tElem, keys, t); 107 102 108 // line segments 103 109 for (LineSegment ls : t.segments) { … … 118 124 unrefNodes.remove(ls.end); 119 125 Element ext = new Element("extensions", GPX); 120 ext.getChildren().add(new Element("segment", OSM)); 126 ext.getChildren().add(new Element("segment", JOSM)); 121 127 t.getChildren().add(ext); 122 128 e.getChildren().add(t); … … 137 143 private Element parseLineSegment(LineSegment ls) { 138 144 Element lsElem = new Element("trkseg", GPX); 139 if (ls.keys != null) 140 addPropertyExtensions(lsElem, ls.keys); 145 addPropertyExtensions(lsElem, ls.keys, ls); 141 146 lsElem.getChildren().add(parseWaypoint(ls.start, "trkpt")); 142 147 lsElem.getChildren().add(parseWaypoint(ls.end, "trkpt")); … … 156 161 e.setAttribute("lat", Double.toString(n.coor.lat)); 157 162 e.setAttribute("lon", Double.toString(n.coor.lon)); 163 HashMap<Key, String> keys = null; 158 164 if (n.keys != null) { 159 HashMap<Key, String>keys = new HashMap<Key, String>(n.keys);165 keys = new HashMap<Key, String>(n.keys); 160 166 addAndRemovePropertyTag("ele", e, keys); 161 167 addAndRemovePropertyTag("time", e, keys); … … 176 182 addAndRemovePropertyTag("ageofdgpsdata", e, keys); 177 183 addAndRemovePropertyTag("dgpsid", e, keys); 178 addPropertyExtensions(e, keys);179 }184 } 185 addPropertyExtensions(e, keys, n); 180 186 return e; 181 187 } … … 235 241 */ 236 242 @SuppressWarnings("unchecked") 237 private void addPropertyExtensions(Element e, Map<Key, String> keys) { 238 if (keys.isEmpty()) 243 private void addPropertyExtensions(Element e, Map<Key, String> keys, OsmPrimitive osm) { 244 if ((keys == null || keys.isEmpty()) && osm.id == 0 && !osm.modified) 239 245 return; 240 246 Element extensions = e.getChild("extensions", GPX); 241 247 if (extensions == null) 242 248 e.getChildren().add(extensions = new Element("extensions", GPX)); 243 for (Entry<Key, String> prop : keys.entrySet()) { 244 Element propElement = new Element("property", OSM); 245 propElement.setAttribute("key", prop.getKey().name); 246 propElement.setAttribute("value", prop.getValue()); 249 if (keys != null && !keys.isEmpty()) { 250 for (Entry<Key, String> prop : keys.entrySet()) { 251 Element propElement = new Element("property", OSM); 252 propElement.setAttribute("key", prop.getKey().name); 253 propElement.setAttribute("value", prop.getValue()); 254 extensions.getChildren().add(propElement); 255 } 256 } 257 // id 258 if (osm.id != 0) { 259 Element propElement = new Element("uid", JOSM); 260 propElement.setText(""+osm.id); 247 261 extensions.getChildren().add(propElement); 248 262 } 263 // modified 264 if (osm.modified) { 265 Element modElement = new Element("modified", JOSM); 266 extensions.getChildren().add(modElement); 267 } 249 268 } 250 269 } -
src/org/openstreetmap/josm/io/OsmReader.java
r32 r33 10 10 import org.jdom.JDOMException; 11 11 import org.jdom.input.SAXBuilder; 12 import org.openstreetmap.josm.Main;13 12 import org.openstreetmap.josm.data.GeoPoint; 14 13 import org.openstreetmap.josm.data.osm.DataSet; … … 18 17 import org.openstreetmap.josm.data.osm.OsmPrimitive; 19 18 import org.openstreetmap.josm.data.osm.Track; 19 import org.openstreetmap.josm.data.osm.visitor.AddVisitor; 20 20 21 21 /** … … 77 77 78 78 /** 79 * Parse any (yet unknown) object and return it. 80 */ 81 private OsmPrimitive parseObject(Element e, DataSet data) throws JDOMException { 82 if (e.getName().equals("node")) 83 return parseNode(e); 84 else if (e.getName().equals("segment")) 85 return parseLineSegment(e, data); 86 else if (e.getName().equals("track")) 87 return parseTrack(e, data); 88 else if (e.getName().equals("property")) { 89 parseProperty(e, data); 90 return null; 91 } 92 throw new JDOMException("unknown tag: "+e.getName()); 93 } 94 95 /** 96 * Read a data set from the element. 97 * @param e The element to parse 98 * @return The DataSet read from the element 99 * @throws JDOMException In case of a parsing error. 100 */ 101 private DataSet parseDataSet(Element e) throws JDOMException { 102 DataSet data = new DataSet(); 103 AddVisitor visitor = new AddVisitor(data); 104 for (Object o : e.getChildren()) { 105 Element child = (Element)o; 106 if (child.getName().equals("deleted")) 107 for (Object delObj : child.getChildren()) 108 data.deleted.add(parseObject((Element)delObj, data)); 109 else { 110 OsmPrimitive osm = parseObject(child, data); 111 if (osm != null) 112 osm.visit(visitor); 113 } 114 } 115 116 return data; 117 } 118 119 /** 120 * Parse and return an line segment. The node information of the "from" and 121 * "to" attributes must already be in the dataset. 122 * @param e The line segment element to parse. 123 * @param data The dataset to obtain the node information from. 124 * @return The parsed line segment. 125 * @throws JDOMException In case of parsing errors. 126 */ 127 private LineSegment parseLineSegment(Element e, DataSet data) throws JDOMException { 128 long startId = Long.parseLong(e.getAttributeValue("from")); 129 long endId = Long.parseLong(e.getAttributeValue("to")); 130 131 Node start = null, end = null; 132 for (Node n : data.nodes) { 133 if (n.id == startId) 134 start = n; 135 if (n.id == endId) 136 end = n; 137 } 138 if (start == null || end == null) 139 throw new JDOMException("The 'from' or 'to' object has not been transfered before."); 140 LineSegment ls = new LineSegment(start, end); 141 parseCommon(ls, e); 142 return ls; 143 } 144 145 /** 146 * Parse and read a track from the element. 147 * 148 * @param e The element that contain the track. 149 * @param data The DataSet to get segment information from. 150 * @return The parsed track. 151 * @throws JDOMException In case of a parsing error. 152 */ 153 private Track parseTrack(Element e, DataSet data) throws JDOMException { 154 Track track = new Track(); 155 parseCommon(track, e); 156 for (Object o : e.getChildren("segment")) { 157 Element child = (Element)o; 158 long id = Long.parseLong(child.getAttributeValue("uid")); 159 LineSegment ls = findLineSegment(data.lineSegments, id); 160 track.segments.add(ls); 161 } 162 return track; 163 } 164 165 /** 79 166 * Parse the common part (properties and uid) of the element. 80 167 * @param data To store the data in. … … 82 169 * @throws JDOMException In case of a parsing error 83 170 */ 84 private void parseCommon(OsmPrimitive data, Element e) throws JDOMException { 85 data.id = Long.parseLong(e.getAttributeValue("uid")); 86 if (data.id == 0) 87 throw new JDOMException("Object has illegal or no id."); 171 private void parseCommon(OsmPrimitive data, Element e) { 172 String suid = e.getAttributeValue("uid"); 173 if (suid != null) 174 data.id = Long.parseLong(suid); 175 if (data.id < 0) 176 data.id = 0; 88 177 89 178 String propStr = e.getAttributeValue("tags"); … … 105 194 106 195 /** 107 * Read a data set from the element. 108 * @param e The element to parse 109 * @return The DataSet read from the element 110 * @throws JDOMException In case of a parsing error. 111 */ 112 private DataSet parseDataSet(Element e) throws JDOMException { 113 DataSet data = new DataSet(); 114 for (Object o : e.getChildren()) { 115 Element child = (Element)o; 116 if (child.getName().equals("node")) 117 addNode(data, parseNode(child)); 118 else if (child.getName().equals("segment")) { 119 LineSegment ls = parseLineSegment(child, data); 120 if (data.lineSegments.contains(ls)) 121 throw new JDOMException("Double segment definition "+ls.id); 122 data.lineSegments.add(ls); 123 } else if (child.getName().equals("track")) { 124 Track track = parseTrack(child, data); 125 if (data.tracks.contains(track)) 126 throw new JDOMException("Double track definition "+track.id); 127 data.tracks.add(track); 128 } 129 } 130 131 return data; 132 } 133 134 /** 135 * Parse and return an line segment. The node information of the "from" and 136 * "to" attributes must already be in the dataset. 137 * @param e The line segment element to parse. 138 * @param data The dataset to obtain the node information from. 139 * @return The parsed line segment. 140 * @throws JDOMException In case of parsing errors. 141 */ 142 private LineSegment parseLineSegment(Element e, DataSet data) throws JDOMException { 143 long startId = Long.parseLong(e.getAttributeValue("from")); 144 long endId = Long.parseLong(e.getAttributeValue("to")); 145 146 Node start = null, end = null; 147 for (Node n : data.nodes) { 148 if (n.id == startId) 149 start = n; 150 if (n.id == endId) 151 end = n; 152 } 153 if (start == null || end == null) 154 throw new JDOMException("The 'from' or 'to' object has not been transfered before."); 155 LineSegment ls = new LineSegment(start, end); 156 parseCommon(ls, e); 157 return ls; 158 } 159 160 /** 161 * Parse and read a track from the element. 162 * 163 * @param e The element that contain the track. 164 * @param data The DataSet to get segment information from. 165 * @return The parsed track. 166 * @throws JDOMException In case of a parsing error. 167 */ 168 private Track parseTrack(Element e, DataSet data) throws JDOMException { 169 Track track = new Track(); 170 parseCommon(track, e); 171 for (Object o : e.getChildren("segment")) { 172 Element child = (Element)o; 173 long id = Long.parseLong(child.getAttributeValue("uid")); 174 LineSegment ls = findLineSegment(data.lineSegments, id); 175 track.segments.add(ls); 176 } 177 return track; 178 } 179 196 * Parse a property tag and assign the property to a previous found object. 197 */ 198 private void parseProperty(Element e, DataSet data) throws JDOMException { 199 long id = Long.parseLong(e.getAttributeValue("uid")); 200 OsmPrimitive osm = findObject(data, id); 201 Key key = Key.get(e.getAttributeValue("key")); 202 String value =e.getAttributeValue("value"); 203 if (value != null) { 204 if (osm.keys == null) 205 osm.keys = new HashMap<Key, String>(); 206 osm.keys.put(key, value); 207 } 208 } 209 210 /** 211 * Search for an object in the dataset by comparing the id. 212 */ 213 private OsmPrimitive findObject(DataSet data, long id) throws JDOMException { 214 for (OsmPrimitive osm : data.nodes) 215 if (osm.id == id) 216 return osm; 217 for (OsmPrimitive osm : data.lineSegments) 218 if (osm.id == id) 219 return osm; 220 for (OsmPrimitive osm : data.tracks) 221 if (osm.id == id) 222 return osm; 223 for (OsmPrimitive osm : data.deleted) 224 if (osm.id == id) 225 return osm; 226 throw new JDOMException("Unknown object reference: "+id); 227 } 228 180 229 /** 181 230 * Search for a segment in a collection by comparing the id. … … 187 236 throw new JDOMException("Unknown line segment reference: "+id); 188 237 } 189 190 /**191 * Adds the node to allNodes if it is not already listed. Does respect the192 * preference setting "mergeNodes". Return the node in the list that correspond193 * to the node in the list (either the new added or the old found).194 *195 * If reading raw gps data, mergeNodes are always on (To save memory. You196 * can't edit raw gps nodes anyway.)197 *198 * @param data The DataSet to add the node to.199 * @param node The node that should be added.200 * @return Either the parameter node or the old node found in the dataset.201 */202 private Node addNode(DataSet data, Node node) {203 if (Main.pref.mergeNodes)204 for (Node n : data.nodes)205 if (node.coor.equalsLatLon(n.coor))206 return n;207 data.nodes.add(node);208 return node;209 }210 238 }
Note:
See TracChangeset
for help on using the changeset viewer.