Skip to content

disastermappers-heidelberg/useful_overpass_queries

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

Useful Overpass Queries

Overpass-turbo is a great to quickly get data and stats from OpenStreetMap.

Newer than

  • get the objects which have been added to OpenStreetMap since a specific timestamp
  • copy these lines to overpass-turbo
    [out:json][timeout:600];
    // gather results
    (
      node(newer:"2019-04-05T16:00:00Z")({{bbox}});
      way(newer:"2019-04-05T16:00:00Z")({{bbox}});
      relation(newer:"2019-04-05T16:00:00Z")({{bbox}});
    );
    // print results
    out meta;
    >;
    out skel qt;
    
  • adjust the timestamp
  • draw a bounding box for the area you are interested in

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published