aboutsummaryrefslogtreecommitdiff
path: root/resources/op2geojson.js
blob: 5a979b1e6673899f41fb2874812b4d637ab818d1 (plain)
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
( function ( $ ) {

op2geojson = function() {

	var instance = {},
		geojson;

	instance.fetch = function(url, data, callback) {
    	$.post(url, data,
			function(data) {
				// Add nodes and ways to the layer
				var features = [];

				// Process the data
				var nodes = {};
				var ways = {};
                var relations = {};
				$.each(data.elements, function(i, item) {
					if (item.type === 'node') {
						nodes[item.id] = item;

                        // As the nodes do not relate to other bits,
                        // they can be added here
					    if (item.type === 'node'
                            && item.tags != undefined
							&& item.tags['amenity'] != undefined) {

						    features.push( instance.point(item) );
                        }
					} else if (item.type === 'way') {
					    ways[item.id] = item;
					} else if (item.type === 'relation') {
					    relations[item.id] = item;
					}
				});

				$.each(ways, function(i, way) {
					features.push( instance.lineString(way, nodes) );
				});

				$.each(relations, function(i, relation) {
                    if (relation.tags != undefined &&
                        relation.tags['type'] == 'boundary' &&
                        relation.tags['boundary'] == 'catchment_area') {

					    features.push( instance.polygon(relation, ways, nodes) );
                    }
				});

				geojson = instance.featureCollection(features);
				callback(geojson);
			}
		, "json");;
	};

	instance.point = function(node) {
		var point = {
			"type" : "Feature",
			"geometry" : {
				"type" : "Point",
				"coordinates" : [node.lon,node.lat]
			},
			"properties" : {}
		};
		_.extend(point.properties, node.tags);
		return point;
	}

	instance.lineString = function(way, nodeArray) {
		// Get the node coordinates from nodeArray
		var coordinates = [];
		for (id in way.nodes) {
			var node = nodeArray[way.nodes[id]];
			coordinates.push([node.lon,node.lat]);
		}

		// Create the LineString
		var lineString = {
			"type" : "Feature",
			"geometry" : {
				"type" : "LineString",
				"coordinates" : coordinates
			},
			"properties" : {}
		};

		// Add the tags
		_.extend(lineString.properties, way.tags);
		return lineString;
	}

	instance.featureCollection = function(features) {
		collection = {
			"type" : "FeatureCollection",
			"features" : features
		};
		return collection;
	}

	instance.polygon = function(relation, ways, nodes) {
        polyCoordinates = [];
        var firstCheck = true;

		$.each(relation.members, function(i, member) {
            if (member.role == "outer") {
                var way = ways[member.ref];
                var wayCoordinates = instance.lineString(way, nodes).geometry.coordinates;

                // Need to ensure that the first way is in the correct direction, but this can
                // only be checked when looking at the second way
                if (firstCheck && polyCoordinates.length != 0) {
                    firstCheck = false;
                    if ((polyCoordinates[0][0] == wayCoordinates[0][0] &&
                        polyCoordinates[0][1] == wayCoordinates[0][1]) ||
                        (polyCoordinates[0][0] == wayCoordinates[wayCoordinates.length - 1][0] &&
                        polyCoordinates[0][1] == wayCoordinates[wayCoordinates.length - 1][1])) {
                        polyCoordinates.reverse();
                    }
                }

                if (polyCoordinates.length != 0) {
                    // If this way is backward
                    if (polyCoordinates[polyCoordinates.length - 1][0] != wayCoordinates[0][0] ||
                        polyCoordinates[polyCoordinates.length - 1][1] != wayCoordinates[0][1]) {
                        wayCoordinates.reverse();
                    }
                    polyCoordinates.pop();
                }
			    polyCoordinates = polyCoordinates.concat( wayCoordinates );
            }
		});

        var poly = {
			"type" : "Feature",
			"geometry" : {
				"type" : "Polygon",
				"coordinates" : [polyCoordinates]
			},
			"properties" : {}
		};

		// Add the tags
		_.extend(poly.properties, relation.tags);

		return poly;
	}

	return instance;

};

})( jQuery );