Landuse Construction

Description

This map adds a marker icon to any 'ways' tagged as landuse=construction with a check_date tag earlier than the date when the report was last generated. Since the results are ways we use the centre point of the way for the marker.

Frequency

This map is re-generated every 3 days. To check the last time it was generated check the Github pipeline.

Overpass Query

            area["name"="Ireland"]->.boundaryarea;
            (
            way(area.boundaryarea)[landuse=construction];
            );
            out center;
        

The code can be examined in full on Github