Skip to content
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

Open
tidoust opened this issue Aug 21, 2024 · 2 comments
Open

Compare room capacity with actual list of registrants #150

tidoust opened this issue Aug 21, 2024 · 2 comments

Comments

@tidoust
Copy link
Member

tidoust commented Aug 21, 2024

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.

tidoust added a commit that referenced this issue Aug 27, 2024
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.
tidoust added a commit that referenced this issue Aug 27, 2024
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.
@ianbjacobs
Copy link
Contributor

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).

@tidoust
Copy link
Member Author

tidoust commented Aug 28, 2024

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants