-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOSMContentHandler2.java
executable file
·168 lines (150 loc) · 4.59 KB
/
OSMContentHandler2.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
import java.text.ParseException;
import java.util.ArrayList;
import org.xml.sax.Attributes;
import org.xml.sax.ContentHandler;
import org.xml.sax.Locator;
import org.xml.sax.SAXException;
/**
* OSMContentHandler used to read OSM file and collect the points defined.
*
* @author Christoph Fuenfzig
* @version 1.0
*/
public class OSMContentHandler2 implements ContentHandler {
private ArrayList<MapPoint> p = new ArrayList<MapPoint>();
private ArrayList<Polygon> w = new ArrayList<Polygon>();
private byte cid = 0;
private String currentValue;
private Polygon way;
private boolean inWay;
/**
* Get point list.
*
* @return point list collected in this pass.
*/
public ArrayList<MapPoint> getPointList () {
return this.p;
}
/** */
public ArrayList<Polygon> filterLandusePolygons () {
ArrayList<Polygon> landusePolygons = new ArrayList<Polygon>();
for (Polygon polygon : getWayList()) {
if (polygon.getLanduse() != null && polygon.getLanduse().equals("construction")) {
polygon.getPointCoord(getPointList());
landusePolygons.add(polygon);
}
}
return landusePolygons;
}
/** */
public ArrayList<Polygon> filterBuildingPolygons () {
ArrayList<Polygon> buildingPolygons = new ArrayList<Polygon>();
for (Polygon polygon : getWayList()) {
if(polygon.getName() != null && polygon.getName().equals("Gebaeude")) {
polygon.getPointCoord(getPointList());
buildingPolygons.add(polygon);
}
}
return buildingPolygons;
}
/**
* Get way list.
*
* @return way list collected in this pass.
*/
public ArrayList<Polygon> getWayList () {
for (Polygon polygon : this.w) {
polygon.getPointCoord(this.getPointList());
}
return this.w;
}
/** */
public void characters(char[] ch, int start, int length)
throws SAXException {
currentValue = new String(ch, start, length);
}
/**
* Method called for start-tag.
*
*/
public void startElement(String uri, String localName, String qName, Attributes atts)
throws SAXException {
{
if (localName.equals("node")) {
// create new node
MapPoint wgs = new MapPoint();
// fill in node attribute values
String attr = atts.getValue("id");
if (attr != null)
wgs.setId (Integer.parseInt(attr));
attr = atts.getValue("lat");
if (attr != null)
wgs.setLat(Double .parseDouble(attr));
attr = atts.getValue("lon");
if (attr != null)
wgs.setLon(Double .parseDouble(attr));
int index = atts.getIndex("ele");
if (index >= 0) {
// "ele" exists
wgs.setEle(Double.parseDouble(atts.getValue(index)));
} else {
wgs.setEle(MapPoint.invalidEle);
}
this.p.add(wgs);
}
else if (localName.equals("way")) {
// create new node
way = new Polygon();
// fill in way id
String attr = atts.getValue("id");
if (attr != null)
way.setId (Integer.parseInt(attr), cid++);
inWay = true;
}
else if (localName.equals("nd") && inWay) {
String attr = atts.getValue("ref");
if (attr != null)
way.addPid(Integer.parseInt(attr));
}
else if (localName.equals("tag") && inWay) {
String attr = atts.getValue("k");
if (attr != null && attr.equals("name")) {
attr = atts.getValue("v");
way.setName(attr);
}
attr = atts.getValue("k");
if (attr != null && attr.equals("landuse")) {
attr = atts.getValue("v");
way.setLanduse(attr);
}
}
}
}
/**
* Method called for end-tag.
*
*/
public void endElement(String uri, String localName, String qName)
throws SAXException {
if (localName.equals("way")) {
inWay = false;
if (way.getPointId().get(way.getPointId().size()-1).intValue()
== way.getPointId().get(0).intValue()) {
way.getPointId().remove(way.getPointId().size()-1);
}
this.w.add(way);
way = null;
}
}
public void endDocument() throws SAXException {}
public void endPrefixMapping(String prefix) throws SAXException {}
public void ignorableWhitespace(char[] ch, int start, int length)
throws SAXException {}
public void processingInstruction(String target, String data)
throws SAXException {}
public void setDocumentLocator(Locator locator) { }
public void skippedEntity(String name) throws SAXException {}
public void startDocument() throws SAXException {}
public void startPrefixMapping(String prefix, String uri)
throws SAXException {}
}