Created
September 25, 2019 09:21
-
-
Save allenday/884d6ee371e0aba91470710e9a5fb82b to your computer and use it in GitHub Desktop.
How many objects are in each OSM layer?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT name, COUNT(name) AS c | |
FROM `bigquery-public-data.geo_openstreetmap.layers` | |
GROUP BY name ORDER BY c DESC |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment