first .osm format import

- import osm convert it to Drawing and use it as resolved path.
- Not ready , first test over lab/valbonne_oct_2020.osm
This commit is contained in:
philippe lhardy
2020-10-31 15:44:23 +01:00
parent 99716e57d3
commit 8af19bdb59
12 changed files with 17220 additions and 503 deletions

View File

@@ -0,0 +1,22 @@
package org.artisanlogiciel.osm;
import java.util.List;
public class Way {
long id;
public Way(long id) {
this.id = id;
}
public Way(long id, List<NodeRef> ndlist) {
this.id = id;
this.ndlist = ndlist;
}
public List<NodeRef> getNdlist() {
return ndlist;
}
List<NodeRef> ndlist;
}