aboutsummaryrefslogtreecommitdiff
path: root/resources/op2geojson.js
blob: cff2deab1cf3c003aa22fcc5616499dd36bbf61a (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
( 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 = [];

		$.each(relation.members, function(i, member) {
            if (member.role == "outer") {
                var way = ways[member.ref];
                var wayCoordinates = instance.lineString(way, nodes).geometry.coordinates;
                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.shift();
			    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 );