-
-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Data requests #397
Comments
I did some analytics on 2022. This is a more complete view: General Event StatisticsEvents in Rooms we have coordinates for: Code for this analytic
SELECT COUNT(*)
from calendar c
WHERE extract(year from DATE(c.dtstart)) = 2022 AND
extract(year from DATE(c.dtend)) = 2022 AND
NOT EXISTS(
SELECT * FROM unacurate_coordinates u
WHERE u.key = c.key
) All RoomsThis is the List of rooms with events in 2022, for which we dont have exact coordinates Code for this analytic
SELECT c.key,Count(*) --,DATE(MIN(c.dtstart)),DATE(MAX(c.dtend))
from calendar c, unacurate_coordinates u
WHERE extract(year from DATE(c.dtstart)) = 2022 AND
extract(year from DATE(c.dtend)) = 2022 AND
u.key= c.key
group by c.key
order by Count(*) desc High-Traffic RoomsI assume that not all rooms are equally important. HT Rooms with coordinates: Code for this analytic
SELECT c.key,Count(*)
from calendar c
WHERE extract(year from DATE(c.dtstart)) = 2022 AND
extract(year from DATE(c.dtend)) = 2022 AND
EXISTS(
SELECT * FROM unacurate_coordinates u
WHERE u.key = c.key
)
GROUP BY c.key
HAVING COUNT(*) > 249 |
I was curious why |
Closing as I don't think without #670 this issue makes a how lot of sense. (plus I don't think it has had any effect ^^) |
This is a proposed tracking issue for specific data requests. Please comment if you have ideas of how to improve.
Coordinates
Based on calendar events in a reference week from the 16-20 Jan 2023, the following (subset of) rooms have events happening in them but no coordinate known:
Stammgelände
RiWa 1 (HfP, Governance)
(Has neither maps nor coordinates at the moment)
Weihenstephan
(<4 truncated)
Garching (Chemie)
Garching (MW)
Garching (Rest)
The text was updated successfully, but these errors were encountered: