Venue
Venue management for MAY. Venues are places where people live, work, learn, or receive services.
Venue
Represents a place where people live, work, learn, or receive services. Generic design that works for any geography, past or present.
Attributes:
| Name | Type | Description |
|---|---|---|
id |
int
|
Globally unique integer ID, assigned once at construction via a class-level counter. Immutable after creation. |
name |
str
|
A string giving the name of the venue, e.g. "St Mary's Hospital". |
type |
A label for the type of venue. Usually a string e.g. "hospital", "school", "household". |
|
geographical_unit |
Reference to the GeographicalUnit in which the Venue is located. |
|
coordinates |
tuple[float, float]
|
Latitude, longitude tuple. Default is None. |
properties |
dict
|
Extensible dict for venue-specific data. Default is {'subgroups':['default']}, which gives a list of the subgroup names for that specific venue. By default, the Venue object has a single subgroup called 'everyone' |
Source code in may/geography/venue.py
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 | |
__eq__(other)
Tests the equality of two Venue objects.
Source code in may/geography/venue.py
158 159 160 161 162 163 164 165 166 167 168 | |
add_child_venue(child)
Add a child venue and set this venue as its parent. Child venue inherits geographical_unit from parent if not already set.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
child
|
Child Venue object to add |
required |
Example
school = venue_manager.create_venue("school", geo_unit) classroom = venue_manager.create_venue("classroom", geo_unit) school.add_child_venue(classroom)
Source code in may/geography/venue.py
370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 | |
add_to_subset(person, subset_key=None, activity_name=None, activity_type=None)
Add a person to a subset of this venue and register the activity.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
person
|
Person object to add |
required | |
subset_key
|
Key for the subset (if None, uses first subset or creates default) |
None
|
|
activity_name
|
Activity name to register (if None, uses 'residence' for residence types, venue type otherwise) |
None
|
|
activity_type
|
Type for nesting in activity_map dict (if None, uses self.type) This allows multiple venue types under the same activity_name Example: activity_name='primary_activity', activity_type='own_land' |
None
|
Source code in may/geography/venue.py
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 | |
get_all_children()
Get all direct child venues.
Returns:
| Type | Description |
|---|---|
|
List of child Venue objects |
Source code in may/geography/venue.py
391 392 393 394 395 396 397 398 | |
get_all_descendants()
Get all descendant venues (children, grandchildren, etc.).
Returns:
| Type | Description |
|---|---|
|
List of all descendant Venue objects |
Source code in may/geography/venue.py
400 401 402 403 404 405 406 407 408 409 410 411 | |
get_all_members(exclude_subset_keys=None, include_subset_keys=None)
Get all members from all subsets.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
exclude_subset_keys
|
Optional iterable of subset_key values to skip. |
None
|
|
include_subset_keys
|
Optional iterable of subset_key values to restrict to. Mutually exclusive with exclude_subset_keys. |
None
|
Returns:
| Type | Description |
|---|---|
|
List of Person objects |
Source code in may/geography/venue.py
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 | |
get_capacity_for_attributes(capacity_config, **attributes)
Get capacity for specific attributes (e.g., age and sex).
This method looks up the appropriate capacity column based on the provided attributes and the capacity_config from venues_config.yaml.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
capacity_config
|
Capacity configuration dict from VenueManager |
required | |
**attributes
|
Attribute filters (e.g., age=85, sex="male") |
{}
|
Returns:
| Name | Type | Description |
|---|---|---|
int |
Capacity for this attribute combination, or 0 if not found |
Example
venue.get_capacity_for_attributes(config, age=85, sex="male")
Returns value from 'age_85_94_male' column
Source code in may/geography/venue.py
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 | |
get_composition(categories=None)
Get composition by category (useful for household-type venues).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
categories
|
List of Category objects |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
dict |
Composition counts by category name |
Source code in may/geography/venue.py
345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 | |
get_depth()
Get the depth of this venue in the hierarchy (0 for root).
Returns:
| Name | Type | Description |
|---|---|---|
int |
Depth level (0 = root, 1 = child of root, etc.) |
Source code in may/geography/venue.py
443 444 445 446 447 448 449 450 451 452 453 454 455 | |
get_root_venue()
Get the top-level parent venue in the hierarchy.
Returns:
| Type | Description |
|---|---|
|
Root Venue object (or self if this is the root) |
Source code in may/geography/venue.py
413 414 415 416 417 418 419 420 421 422 423 | |
get_total_members_recursive()
Get total number of members including all child venues.
Returns:
| Name | Type | Description |
|---|---|---|
int |
Total members across this venue and all descendants |
Source code in may/geography/venue.py
457 458 459 460 461 462 463 464 465 466 467 | |
has_category(category_name)
Check if this venue has a subset with the given category name.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
category_name
|
str
|
Name of the category to check for (e.g., "Adults", "Kids") |
required |
Returns:
| Name | Type | Description |
|---|---|---|
bool |
bool
|
True if a subset with this name exists and has members |
Source code in may/geography/venue.py
330 331 332 333 334 335 336 337 338 339 340 341 342 343 | |
is_leaf()
Check if this venue is a leaf (has no children).
Returns:
| Name | Type | Description |
|---|---|---|
bool |
True if this venue has no children |
Source code in may/geography/venue.py
434 435 436 437 438 439 440 441 | |
is_root()
Check if this venue is a root (has no parent).
Returns:
| Name | Type | Description |
|---|---|---|
bool |
True if this is a root venue |
Source code in may/geography/venue.py
425 426 427 428 429 430 431 432 | |
migrate_subsets_to(new_venue)
Move every Subset from this venue to new_venue, keeping members' activity_map entries consistent with the new venue's type.
Reassigns each migrated Subset's subset_index to a fresh value scoped to new_venue (the old index may already be taken there, and (venue_id, subset_index) must stay unique for serialisation).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
new_venue
|
Venue to move this venue's subsets into. |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
if new_venue already has a subset under one of this venue's subset_keys. |
Source code in may/geography/venue.py
249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 | |
size()
Get total number of members across all subsets.
Returns:
| Name | Type | Description |
|---|---|---|
int |
int
|
Number of members |
Source code in may/geography/venue.py
321 322 323 324 325 326 327 328 | |