-
Notifications
You must be signed in to change notification settings - Fork 12
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
Compare room capacity with actual list of registrants #150
Comments
This adds an initial `assess-rooms` command to analyze rooms capacities against known list of registrants for TPAC events, as described in #150. To get a quick report in markdown, run: ``` npx tpac-breakouts assess-rooms all > res.md ``` The command only looks at the overall number of participants and observers for each meeting. It does not expect entries in the registrants page to contain duplicated entries (although the one for TPAC 2024 does for the APA WG for some reason). Report also remains simple for the time being.
This adds an initial `assess-rooms` command to analyze rooms capacities against known list of registrants for TPAC events, as described in #150. To get a quick report in markdown, run: ``` npx tpac-breakouts assess-rooms all > res.md ``` The command only looks at the overall number of participants and observers for each meeting. It does not expect entries in the registrants page to contain duplicated entries (although the one for TPAC 2024 does for the APA WG for some reason). Report also remains simple for the time being.
I am wondering whether it ever makes sense to display the group's estimated capacity (e.g., 20-29) in the generated table. I say this because we don't actually generate the schedule until we have registration data, and once we have registration data, we should use that (and warn when the real number of registrants exceeds the room capacity). |
I created #157 to track that. |
For TPAC meetings, the list of registrants (evolves over time but) is known at any given time. For example, see the list of registrants for TPAC 2024 (member-only link). That list gives the number of group participants and the group meetings that they plan to attend. It also gives the number of observers for each group meeting.
The numbers are likely inaccurate: people may go to different meetings in the end, they may register for two meetings that take place at the same time, various observers just pop up in meeting rooms, etc. Still, mapping these numbers to the capacity of selected meeting rooms and/or to the requested capacity could perhaps reveal things worth looking into prior to the meeting. Also, it shouldn't be too hard to do that mapping: the numbers can be slurped from the registration page somewhat easily, and the capacity of the rooms is already known. Initially, we probably don't need to create actual warnings in our system, this could perhaps just be a CLI that we run once in a while and that spits a short report in markdown.
The text was updated successfully, but these errors were encountered: