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
 
/*
This query returns ways that have not been manually edited in any way since they were imported from TIGER 2005.
*/
[out:json][timeout:250];
 
// Ways whose tags or member lists are untouched since the import or a subsequent automated cleanup
(
  // Initial TIGER 2005 import
  way(user:"DaveHansenTiger")({{bbox}})(if: timestamp() > "2007-08-03" && timestamp() < "2008-05-04");
  // Initial TIGER 2005 import in some Pennsylvania counties
  way(user:"Milenko")({{bbox}})(if: timestamp() > "2007-10-29" && timestamp() < "2007-12-12");
  // Abbreviation expansion and UUID removal
  way(user:"balrog-kun")({{bbox}})(if: timestamp() > "2010-03-21" && timestamp() < "2010-04-08" && version() < 3);
  // Abbreviation expansion
  way(user:"bot-mode")({{bbox}})(if: timestamp() > "2012-12-06" && timestamp() < "2013-04-25" && version() < 3);
)->.ways;
 
foreach .ways->.way {
  // Nodes modified since the import or a subsequent automated cleanup
  node(w.way)
    (if:
     // Initial TIGER 2005 import
     user() != "DaveHansenTiger" &&
     // Initial TIGER 2005 import in some Pennsylvania counties
     !(user() == "Milenko" && timestamp() > "2007-10-29" && timestamp() < "2007-12-12") &&
     // https://wiki.openstreetmap.org/wiki/TIGER_fixup/node_tags
     !(user() == "woodpeck_fixbot" && timestamp() > "2009-09-01" && timestamp() < "2010-01-31" && version() < 3));
  // Filter out ways with modified nodes
  if (count(nodes) == 0) {
    (
      .way;
      .result;
    )->.result;
  }
}
 
.result out geom;
 
 
{{data:overpass,server=//dev.overpass-api.de/api_mmd/7a3bfed3-ca04-4211-9aac-00c651882fdd/}}
 
 
 
 
  
  
20 km
Leaflet © OpenStreetMap contributors
1
 
no data loaded yet