-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathChangeLog
53 lines (44 loc) · 1.24 KB
/
ChangeLog
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
2014-06-16 Markus Peröbner <[email protected]>
* change: structure for relations parsing has changed
The structure of the data passed to the relation callback has
changed. The new API implementation returns a relation object
like this:
{
"members": [
{
"type": "node",
"ref": "12345678",
"role": ""
},
{
"type": "way",
"ref": "87654321",
"role": ""
}
]
}
The change in the osm-read API has been made in order to
maintain the order of the relation members. See the following
github issue for more details:
https://github.com/marook/osm-read/issues/20
The v0.4.0 release used the following no longer used data
structure:
{
"members": {
"nodes": [
{
"ref": "12345678",
"role": ""
}
],
"ways": [
{
"ref": "87654321",
"role": ""
}
]
}
}
If you use relations you have to migrate your code accordingly.
2014-05-21 Markus Peröbner <[email protected]>
* release: released v0.4.0