Serialization config
Configuration loader for world serialization.
Loads YAML configuration specifying which properties and attributes to include when exporting world state to HDF5.
SerializationConfig
Loads and validates serialization configuration from YAML.
The config file specifies which properties to include for: - Population (person.properties) - Geography (geographical_unit.properties) - Venues (venue.properties, per-type) - Subsets (subset properties) - Relationships (activity_map, hierarchies)
Source code in may/serialization/serialization_config.py
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 | |
__init__(config_file)
Initialize SerializationConfig.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config_file
|
Path to YAML configuration file |
required |
Source code in may/serialization/serialization_config.py
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | |
get_compression_settings()
Get HDF5 compression settings.
Returns:
| Type | Description |
|---|---|
|
Dict with 'compression' and 'compression_level' keys |
Source code in may/serialization/serialization_config.py
175 176 177 178 179 180 181 182 183 184 185 | |
get_geography_settings()
Get geography serialization settings.
Returns:
| Type | Description |
|---|---|
|
Dict with 'include_coordinates' and 'properties' keys |
Source code in may/serialization/serialization_config.py
130 131 132 133 134 135 136 137 138 139 140 | |
get_metadata_settings()
Get metadata settings.
Returns:
| Type | Description |
|---|---|
|
Dict with 'include' and 'fields' keys |
Source code in may/serialization/serialization_config.py
187 188 189 190 191 192 193 194 195 196 197 | |
get_person_properties()
Get list of person properties to serialize.
Returns:
| Type | Description |
|---|---|
|
List of property names from person.properties dict |
Source code in may/serialization/serialization_config.py
121 122 123 124 125 126 127 128 | |
get_venue_global_settings()
Get global venue serialization settings.
Returns:
| Type | Description |
|---|---|
|
Dict with global venue settings |
Source code in may/serialization/serialization_config.py
154 155 156 157 158 159 160 161 | |
get_venue_properties(venue_type)
Get list of properties to serialize for a specific venue type.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
venue_type
|
Type of venue (e.g., "school", "household") |
required |
Returns:
| Type | Description |
|---|---|
|
List of property names to include, or [] if not configured |
Source code in may/serialization/serialization_config.py
142 143 144 145 146 147 148 149 150 151 152 | |
should_include_activity_map()
Check if activity_map should be serialized.
Source code in may/serialization/serialization_config.py
163 164 165 | |
should_include_geography_hierarchy()
Check if geography parent-child hierarchy should be serialized.
Source code in may/serialization/serialization_config.py
171 172 173 | |
should_include_venue_hierarchy()
Check if venue parent-child hierarchy should be serialized.
Source code in may/serialization/serialization_config.py
167 168 169 | |