70341211fbd8659ac63636346098254251939e9e
[quandoparte] / application / resources / stations / generateunclassifiedlist.xq
1 <stations>
2 {
3 for $doc in ('nordovest.osm', 
4              'nordest.osm',
5              'liguria.osm',
6              'centronord.osm', 
7              'centrosud.osm', 
8              'sud.osm', 
9              'sicilia.osm', 
10              'puglia.osm', 
11              'sardegna.osm')
12 for $node in doc($doc)//node
13 where $node/tag[@k='name'] and empty($node/tag[@k='operator']) 
14 return 
15 <station>
16 <pos>{
17 data($node/@lon)
18 },{
19 data($node/@lat)
20 }
21 </pos>
22 <name>
23 {
24 data($node//tag[@k='name']/@v)
25 }
26 </name>
27 <id>
28 {
29 data($node/@id)
30 }
31 </id>
32 </station>
33 }
34 </stations>