Last active
July 16, 2019 06:25
-
-
Save giobel/09519582b8f5e3280c2be43ca622a6c8 to your computer and use it in GitHub Desktop.
This file contains 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
# Collection of SQL queries to use with Metamorphosis addin |
This file contains 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 _objects_id.id, _objects_id.external_id, _objects_id.category,_objects_id.isType, _objects_geom.BoundingBoxMax, _objects_geom.BoundingBoxMin | |
from _objects_geom | |
join _objects_id | |
on _objects_geom.id = _objects_id.id |
This file contains 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 category, count(category) | |
from _objects_id | |
where isType = 0 | |
group by category |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment