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
 
/*
 
Real time refugee related query
 
 
“refugee=* or amenity=refugee_housing or social_facility=refugee_camp”
 
in the Europe + part of middle east 
and with osm metadata
( with latest modification time )
 
XML output
 
you can export the data 
- see "export" menu
 
 
 
*/
[out:xml][timeout:1001];
// gather results
(
  // query part for: “refugee=*”
  node["refugee"]({{bbox}});
  way["refugee"]({{bbox}});
  relation["refugee"]({{bbox}});
  // query part for: “amenity=refugee_housing”
  node["amenity"="refugee_housing"]({{bbox}});
  way["amenity"="refugee_housing"]({{bbox}});
  relation["amenity"="refugee_housing"]({{bbox}});
  // query part for: “social_facility=refugee_camp”
  node["social_facility"="refugee_camp"]({{bbox}});
  way["social_facility"="refugee_camp"]({{bbox}});
  relation["social_facility"="refugee_camp"]({{bbox}});
);
// print results
out body meta;
>;
out skel qt;
500 km
Leaflet © OpenStreetMap contributors
1