Skip to content

World serializer

World serializer for exporting to HDF5 format.

Exports world state (geography, population, venues) to HDF5 file for loading in C++ simulation engine.

WorldSerializer

Serializes World object to HDF5 format for C++ consumption.

Uses SerializationConfig to determine which properties to include. Exports data in Structure-of-Arrays (SoA) format for efficient C++ loading.

Source code in may/serialization/world_serializer.py
  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
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
class WorldSerializer:
    """
    Serializes World object to HDF5 format for C++ consumption.

    Uses SerializationConfig to determine which properties to include.
    Exports data in Structure-of-Arrays (SoA) format for efficient C++ loading.
    """

    def __init__(self, config_file):
        """
        Initialize WorldSerializer.

        Args:
            config_file: Path to serialization YAML configuration
        """
        self.config = SerializationConfig(config_file)
        self.compression_settings = self.config.get_compression_settings()
        self.registries = {}  # Registry of string-to-int mappings

    def export(self, world, output_file):
        """
        Export world to HDF5 file.
        """
        # Internal state for export coordination
        self._venue_to_global_id = {}
        self._venue_type_id_map = {}
        self._people_sorted = None
        logger.info("=" * 60)
        logger.info("Exporting World to HDF5")
        logger.info("=" * 60)
        logger.info(f"Output file: {output_file}")

        stats = {
            'num_people': 0,
            'num_venues': 0,
            'num_geo_units': 0,
            'num_subsets': 0,
        }

        with h5py.File(output_file, 'w') as f:
            # Write metadata
            self._write_metadata(f, world, stats)

            # Write geography
            logger.info("Serializing geography...")
            self._write_geography(f, world)
            stats['num_geo_units'] = len(world.geography.get_all_units())

            # Write population
            logger.info("Serializing population...")
            self._write_population(f, world)
            stats['num_people'] = len(world.population.people)

            # Write venues
            logger.info("Serializing venues...")
            stats['num_subsets'] = self._write_venues(f, world)
            stats['num_venues'] = len(world.venues.get_all_venues())

            # Write activity mappings
            logger.info("Serializing activity mappings...")
            self._write_activity_mappings(f, world)

            # Write registries (Enum mappings for C++)
            logger.info("Writing string registries...")
            self._write_registries(f)

        logger.info("")
        logger.info("Export complete!")
        logger.info(f"  Geography units: {stats['num_geo_units']:,}")
        logger.info(f"  People: {stats['num_people']:,}")
        logger.info(f"  Venues: {stats['num_venues']:,}")
        logger.info(f"  Subsets: {stats['num_subsets']:,}")
        logger.info("=" * 60)

        return stats

    def _write_metadata(self, f, world, stats):
        """Write metadata attributes to root of HDF5 file."""
        metadata_settings = self.config.get_metadata_settings()

        if not metadata_settings['include']:
            return

        logger.info("Writing metadata...")

        # Always include counts
        f.attrs['num_people'] = len(world.population.people)
        f.attrs['num_venues'] = len(world.venues.get_all_venues())
        f.attrs['num_geo_units'] = len(world.geography.get_all_units())

        # Optional metadata fields
        metadata_fields = metadata_settings['fields']

        if 'creation_timestamp' in metadata_fields:
            f.attrs['creation_timestamp'] = datetime.now().isoformat()

        if 'random_seed' in metadata_fields:
            # Try to get seed from world if available
            f.attrs['random_seed'] = 0  # Default

        # Version info
        f.attrs['serialization_version'] = '1.0'
        f.attrs['MAY_version'] = '0.1.0'

    def _write_geography(self, f, world):
        """Write geography hierarchy to HDF5."""
        geo_group = f.create_group('geography')
        geo_settings = self.config.get_geography_settings()

        # Get all units. Use units_by_id (keyed by unique ID) rather than
        # get_all_units() (keyed by name): a single name can occur at multiple
        # levels (e.g. SGU "DURHAM" parish under MGU "DURHAM" county) and the
        # name-keyed dict silently drops the second one, which loses entire
        # hierarchy levels from the export.
        units_list = sorted(world.geography.units_by_id.values(), key=lambda u: u.id)

        if not units_list:
            logger.warning("No geographical units to serialize")
            return

        num_units = len(units_list)

        # Create ID → index mapping for efficient lookup
        id_to_index = {unit.id: idx for idx, unit in enumerate(units_list)}

        # Core attributes (always included)
        ids = np.array([unit.id for unit in units_list], dtype=np.int32)

        # Move geography names to metadata
        names = np.array([unit.name for unit in units_list], dtype=h5py.string_dtype())
        metadata_group = f.require_group('metadata/names')
        self._create_dataset(metadata_group, 'geography', names)

        # Intern geography levels — order by tree depth (root=0, leaves=highest)
        # Find depth of each level by walking parent chains
        level_depths = {}
        for unit in units_list:
            depth = 0
            ancestor = unit
            while ancestor.parent is not None:
                depth += 1
                ancestor = ancestor.parent
            level_depths[unit.level] = depth
        unique_levels = sorted(level_depths.keys(), key=lambda l: level_depths[l])
        level_to_id = {l: i for i, l in enumerate(unique_levels)}
        levels = np.array([level_to_id[unit.level] for unit in units_list], dtype=np.uint8)
        self.registries['geo_levels'] = level_to_id

        # Parent IDs (-1 for root units)
        parent_ids = np.array(
            [unit.parent.id if unit.parent else -1 for unit in units_list],
            dtype=np.int32
        )

        # Write core datasets
        self._create_dataset(geo_group, 'ids', ids)
        self._create_dataset(geo_group, 'levels', levels)
        self._create_dataset(geo_group, 'parent_ids', parent_ids)

        # Coordinates (optional)
        if geo_settings['include_coordinates']:
            latitudes = np.array(
                [unit.coordinates[0] if unit.coordinates else np.nan for unit in units_list],
                dtype=np.float32
            )
            longitudes = np.array(
                [unit.coordinates[1] if unit.coordinates else np.nan for unit in units_list],
                dtype=np.float32
            )

            self._create_dataset(geo_group, 'latitudes', latitudes)
            self._create_dataset(geo_group, 'longitudes', longitudes)

        # Additional properties (if configured)
        properties_to_include = geo_settings['properties']
        if properties_to_include:
            props_group = geo_group.create_group('properties')
            for prop_name in properties_to_include:
                self._write_property_array(props_group, prop_name, units_list)

        logger.info(f"  Wrote {num_units} geographical units")

    def _write_population(self, f, world):
        """Write population data to HDF5."""
        pop_group = f.create_group('population')

        people = world.population.people
        if not people:
            logger.warning("No people to serialize")
            return

        num_people = len(people)

        logger.info(f"  Serializing {num_people:,} people...")

        # ============================================================
        # SORT BY GEO_UNIT_ID FOR EFFICIENT PARTITIONED LOADING
        # ============================================================
        # Sort people by their geographical unit ID using numpy argsort for speed
        geo_unit_ids_raw = np.array([p.geographical_unit.id if p.geographical_unit else -1 for p in people], dtype=np.int32)
        sort_idx = np.argsort(geo_unit_ids_raw, kind='stable')
        people_sorted = [people[i] for i in sort_idx]

        # Use the sorted geo_unit_ids directly
        geo_unit_ids_sorted = geo_unit_ids_raw[sort_idx]

        # Store sorted people for activity mapping serialization
        self._people_sorted = people_sorted

        logger.info(f"    ✓ Sorted {num_people:,} people by geo_unit_id")

        # ============================================================
        # CREATE PARTITION INDEX
        # ============================================================
        logger.info(f"    Building partition index...")
        self._write_partition_index(pop_group, geo_unit_ids_sorted)
        logger.info(f"    ✓ Wrote partition index")

        # ============================================================
        # WRITE CORE ATTRIBUTES IN CHUNKS
        # ============================================================
        logger.info(f"    Writing core attributes in chunks...")

        chunk_size = 100000
        sex_map = {"male": 0, "female": 1, "": 2, "unknown": 2}

        # Initialize datasets
        ids_ds = self._create_empty_dataset(pop_group, 'ids', np.int32, (num_people,))
        ages_ds = self._create_empty_dataset(pop_group, 'ages', np.float32, (num_people,))
        sexes_ds = self._create_empty_dataset(pop_group, 'sexes', np.uint8, (num_people,))
        geo_ds = self._create_empty_dataset(pop_group, 'geo_unit_ids', np.int32, (num_people,))

        for i in range(0, num_people, chunk_size):
            end = min(i + chunk_size, num_people)
            chunk = people_sorted[i:end]

            ids_chunk = np.array([p.id for p in chunk], dtype=np.int32)
            ages_chunk = np.array([p.age for p in chunk], dtype=np.float32)
            sexes_chunk = np.array([sex_map.get(p.sex.lower(), 2) for p in chunk], dtype=np.uint8)
            geo_chunk = geo_unit_ids_sorted[i:end]

            ids_ds[i:end] = ids_chunk
            ages_ds[i:end] = ages_chunk
            sexes_ds[i:end] = sexes_chunk
            geo_ds[i:end] = geo_chunk

            if (i // chunk_size) % 5 == 0:
                logger.info(f"      Processed {end:,}/{num_people:,} people...")

        logger.info(f"    ✓ Wrote core datasets to HDF5")

        # Properties (configured in YAML)
        properties_to_include = self.config.get_person_properties()
        if properties_to_include:
            props_group = pop_group.create_group('properties')

            for prop_idx, prop_name in enumerate(properties_to_include, 1):
                logger.info(f"    Writing property {prop_idx}/{len(properties_to_include)}: {prop_name}...")
                self._write_property_array(props_group, prop_name, people_sorted)

        logger.info(f"  Wrote {num_people:,} people")
        if properties_to_include:
            logger.info(f"    Including properties: {properties_to_include}")

    def _write_partition_index(self, pop_group, geo_unit_ids):
        """
        Write partition index for efficient geo_unit-based loading.

        Creates index structure that maps geo_unit_id -> (start_index, count)
        allowing efficient range-based reads for partitioned loading.

        Args:
            pop_group: HDF5 population group
            geo_unit_ids: Sorted array of geo_unit_ids for all people

        Structure created:
            /population/partition_index/
                geo_unit_ids: [1, 2, 3, ...] - unique geo_unit IDs
                start_indices: [0, 100000, 250000, ...] - start row for each geo_unit
                counts: [100000, 150000, 50000, ...] - number of people per geo_unit
        """
        index_group = pop_group.create_group('partition_index')

        # Find unique geo_unit_ids and their boundaries
        unique_geo_units = []
        start_indices = []
        counts = []

        if len(geo_unit_ids) == 0:
            # Empty population
            logger.warning("Empty population - no partition index to create")
            return

        current_geo_unit = geo_unit_ids[0]
        current_start = 0
        current_count = 0

        for i, geo_unit_id in enumerate(geo_unit_ids):
            if geo_unit_id != current_geo_unit:
                # Save previous geo_unit
                unique_geo_units.append(current_geo_unit)
                start_indices.append(current_start)
                counts.append(current_count)

                # Start new geo_unit
                current_geo_unit = geo_unit_id
                current_start = i
                current_count = 1
            else:
                current_count += 1

        # Save last geo_unit
        unique_geo_units.append(current_geo_unit)
        start_indices.append(current_start)
        counts.append(current_count)

        # Convert to numpy arrays
        unique_geo_units = np.array(unique_geo_units, dtype=np.int32)
        start_indices = np.array(start_indices, dtype=np.int32)
        counts = np.array(counts, dtype=np.int32)

        # Write datasets
        self._create_dataset(index_group, 'geo_unit_ids', unique_geo_units)
        self._create_dataset(index_group, 'start_indices', start_indices)
        self._create_dataset(index_group, 'counts', counts)

        logger.info(f"      Created partition index for {len(unique_geo_units)} geo_units")
        logger.info(f"      Min people per geo_unit: {counts.min()}")
        logger.info(f"      Max people per geo_unit: {counts.max()}")
        logger.info(f"      Avg people per geo_unit: {counts.mean():.1f}")

    def _write_activity_mapping_partition_index(self, activity_map_group, people_sorted, activity_offsets, total_activity_mappings):
        """
        Write partition index for efficient geo_unit-based activity mapping loading.

        Creates index structure that maps geo_unit_id -> (start_row, count)
        for the activity_data array, allowing efficient range-based reads.

        Args:
            activity_map_group: HDF5 activity_map group
            people_sorted: People list sorted by geo_unit_id
            activity_offsets: Array of start indices for each person's activity mappings
            total_activity_mappings: Total number of rows in activity_data

        Structure created:
            /activity_mappings/activity_map/partition_index/
                geo_unit_ids: [1, 2, 3, ...] - unique geo_unit IDs
                start_indices: [0, 500000, 1250000, ...] - start row in activity_data
                counts: [500000, 750000, 300000, ...] - number of mapping rows per geo_unit
        """
        index_group = activity_map_group.create_group('partition_index')

        if len(people_sorted) == 0:
            logger.warning("Empty population - no activity mapping partition index to create")
            return

        # Group people by geo_unit and track activity mapping row ranges
        unique_geo_units = []
        start_indices = []
        counts = []

        current_geo_unit = people_sorted[0].geographical_unit.id if people_sorted[0].geographical_unit else -1
        current_start_row = 0  # Start row in activity_data for this geo_unit

        for person_idx, person in enumerate(people_sorted):
            geo_unit_id = person.geographical_unit.id if person.geographical_unit else -1

            if geo_unit_id != current_geo_unit:
                # Save previous geo_unit's activity mapping range
                # End row is the start of current person's activity mappings
                end_row = activity_offsets[person_idx] if person_idx < len(activity_offsets) else total_activity_mappings
                activity_mappings_count = end_row - current_start_row

                unique_geo_units.append(current_geo_unit)
                start_indices.append(current_start_row)
                counts.append(activity_mappings_count)

                # Start new geo_unit
                current_geo_unit = geo_unit_id
                current_start_row = end_row

        # Save last geo_unit (activity mappings extend to end of activity_data)
        activity_mappings_count = total_activity_mappings - current_start_row
        unique_geo_units.append(current_geo_unit)
        start_indices.append(current_start_row)
        counts.append(activity_mappings_count)

        # Convert to numpy arrays
        unique_geo_units = np.array(unique_geo_units, dtype=np.int32)
        start_indices = np.array(start_indices, dtype=np.int32)
        counts = np.array(counts, dtype=np.int32)

        # Write datasets
        self._create_dataset(index_group, 'geo_unit_ids', unique_geo_units)
        self._create_dataset(index_group, 'start_indices', start_indices)
        self._create_dataset(index_group, 'counts', counts)

        logger.info(f"      Created activity mapping partition index for {len(unique_geo_units)} geo_units")
        if len(counts) > 0:
            logger.info(f"      Min mappings per geo_unit: {counts.min()}")
            logger.info(f"      Max mappings per geo_unit: {counts.max()}")
            logger.info(f"      Avg mappings per geo_unit: {counts.mean():.1f}")

    def _write_subset_metadata_partition_index(self, subsets_group, all_subsets_sorted):
        """
        Write partition index for efficient geo_unit-based subset metadata loading.

        Creates index structure that maps geo_unit_id -> (start_index, count)
        for the subset metadata arrays (venue_ids, subset_indices, etc.),
        allowing efficient range-based reads without scanning all 35M venue_ids.

        Args:
            subsets_group: HDF5 subsets group
            all_subsets_sorted: Subsets list sorted by venue's geo_unit_id

        Structure created:
            /venues/subsets/partition_index/
                geo_unit_ids: [1, 2, 3, ...] - unique geo_unit IDs
                start_indices: [0, 1000, 3500, ...] - start row in subset arrays
                counts: [1000, 2500, 750, ...] - number of subsets per geo_unit
        """
        index_group = subsets_group.create_group('partition_index')

        if len(all_subsets_sorted) == 0:
            logger.warning("Empty subsets - no metadata partition index to create")
            return

        # Find unique geo_unit_ids and their boundaries
        unique_geo_units = []
        start_indices = []
        counts = []

        current_geo_unit = all_subsets_sorted[0].venue.geographical_unit.id if all_subsets_sorted[0].venue.geographical_unit else -1
        current_start = 0
        current_count = 0

        for i, subset in enumerate(all_subsets_sorted):
            geo_unit_id = subset.venue.geographical_unit.id if subset.venue.geographical_unit else -1

            if geo_unit_id != current_geo_unit:
                # Save previous geo_unit
                unique_geo_units.append(current_geo_unit)
                start_indices.append(current_start)
                counts.append(current_count)

                # Start new geo_unit
                current_geo_unit = geo_unit_id
                current_start = i
                current_count = 1
            else:
                current_count += 1

        # Save last geo_unit
        unique_geo_units.append(current_geo_unit)
        start_indices.append(current_start)
        counts.append(current_count)

        # Convert to numpy arrays
        unique_geo_units = np.array(unique_geo_units, dtype=np.int32)
        start_indices = np.array(start_indices, dtype=np.int32)
        counts = np.array(counts, dtype=np.int32)

        # Write datasets
        self._create_dataset(index_group, 'geo_unit_ids', unique_geo_units)
        self._create_dataset(index_group, 'start_indices', start_indices)
        self._create_dataset(index_group, 'counts', counts)

        logger.info(f"      Created subset metadata partition index for {len(unique_geo_units)} geo_units")
        if len(counts) > 0:
            logger.info(f"      Min subsets per geo_unit: {counts.min()}")
            logger.info(f"      Max subsets per geo_unit: {counts.max()}")
            logger.info(f"      Avg subsets per geo_unit: {counts.mean():.1f}")

    def _write_subset_members_partition_index(self, subsets_group, all_subsets_sorted, members_offsets, total_members):
        """
        Write partition index for efficient geo_unit-based subset membership loading.

        Creates index structure that maps geo_unit_id -> (start_row, count)
        for the members_flat array, allowing efficient range-based reads.

        Args:
            subsets_group: HDF5 subsets group
            all_subsets_sorted: Subsets list sorted by venue's geo_unit_id
            members_offsets: Array of start indices for each subset's members in members_flat
            total_members: Total number of entries in members_flat

        Structure created:
            /venues/subsets/members_partition_index/
                geo_unit_ids: [1, 2, 3, ...] - unique geo_unit IDs
                start_indices: [0, 50000, 125000, ...] - start row in members_flat
                counts: [50000, 75000, 30000, ...] - number of members per geo_unit
        """
        index_group = subsets_group.create_group('members_partition_index')

        if len(all_subsets_sorted) == 0:
            logger.warning("Empty subsets - no partition index to create")
            return

        # Group subsets by geo_unit and track membership row ranges
        unique_geo_units = []
        start_indices = []
        counts = []

        current_geo_unit = all_subsets_sorted[0].venue.geographical_unit.id if all_subsets_sorted[0].venue.geographical_unit else -1
        current_start_row = 0  # Start row in members_flat for this geo_unit

        for subset_idx, subset in enumerate(all_subsets_sorted):
            geo_unit_id = subset.venue.geographical_unit.id if subset.venue.geographical_unit else -1

            if geo_unit_id != current_geo_unit:
                # Save previous geo_unit's membership range
                # End row is the start of current subset's members
                end_row = members_offsets[subset_idx] if subset_idx < len(members_offsets) else total_members
                member_count = end_row - current_start_row

                unique_geo_units.append(current_geo_unit)
                start_indices.append(current_start_row)
                counts.append(member_count)

                # Start new geo_unit
                current_geo_unit = geo_unit_id
                current_start_row = end_row

        # Save last geo_unit (members extend to end of members_flat)
        member_count = total_members - current_start_row
        unique_geo_units.append(current_geo_unit)
        start_indices.append(current_start_row)
        counts.append(member_count)

        # Convert to numpy arrays
        unique_geo_units = np.array(unique_geo_units, dtype=np.int32)
        start_indices = np.array(start_indices, dtype=np.int32)
        counts = np.array(counts, dtype=np.int32)

        # Write datasets
        self._create_dataset(index_group, 'geo_unit_ids', unique_geo_units)
        self._create_dataset(index_group, 'start_indices', start_indices)
        self._create_dataset(index_group, 'counts', counts)

        logger.info(f"      Created subset partition index for {len(unique_geo_units)} geo_units")
        if len(counts) > 0:
            logger.info(f"      Min members per geo_unit: {counts.min()}")
            logger.info(f"      Max members per geo_unit: {counts.max()}")
            logger.info(f"      Avg members per geo_unit: {counts.mean():.1f}")

    def _write_venue_partition_index(self, venues_group, all_venues_sorted):
        """
        Write partition index for efficient geo_unit-based venue loading.

        Creates index structure that maps geo_unit_id -> (start_index, count)
        for the venue arrays, allowing efficient range-based reads.

        Args:
            venues_group: HDF5 venues group
            all_venues_sorted: Venues list sorted by geo_unit_id

        Structure created:
            /venues/partition_index/
                geo_unit_ids: [1, 2, 3, ...] - unique geo_unit IDs
                start_indices: [0, 100, 350, ...] - start row in venue arrays
                counts: [100, 250, 75, ...] - number of venues per geo_unit
        """
        index_group = venues_group.create_group('partition_index')

        if len(all_venues_sorted) == 0:
            logger.warning("Empty venues - no partition index to create")
            return

        # Find unique geo_unit_ids and their boundaries
        unique_geo_units = []
        start_indices = []
        counts = []

        current_geo_unit = all_venues_sorted[0].geographical_unit.id if all_venues_sorted[0].geographical_unit else -1
        current_start = 0
        current_count = 0

        for i, venue in enumerate(all_venues_sorted):
            geo_unit_id = venue.geographical_unit.id if venue.geographical_unit else -1

            if geo_unit_id != current_geo_unit:
                # Save previous geo_unit
                unique_geo_units.append(current_geo_unit)
                start_indices.append(current_start)
                counts.append(current_count)

                # Start new geo_unit
                current_geo_unit = geo_unit_id
                current_start = i
                current_count = 1
            else:
                current_count += 1

        # Save last geo_unit
        unique_geo_units.append(current_geo_unit)
        start_indices.append(current_start)
        counts.append(current_count)

        # Convert to numpy arrays
        unique_geo_units = np.array(unique_geo_units, dtype=np.int32)
        start_indices = np.array(start_indices, dtype=np.int32)
        counts = np.array(counts, dtype=np.int32)

        # Write datasets
        self._create_dataset(index_group, 'geo_unit_ids', unique_geo_units)
        self._create_dataset(index_group, 'start_indices', start_indices)
        self._create_dataset(index_group, 'counts', counts)

        logger.info(f"      Created venue partition index for {len(unique_geo_units)} geo_units")
        logger.info(f"      Min venues per geo_unit: {counts.min()}")
        logger.info(f"      Max venues per geo_unit: {counts.max()}")
        logger.info(f"      Avg venues per geo_unit: {counts.mean():.1f}")

    def _write_venues(self, f, world):
        """Write venues and subsets to HDF5."""
        venues_group = f.create_group('venues')
        venue_global_settings = self.config.get_venue_global_settings()

        # Get all venues as a list
        all_venues = world.venues.get_all_venues_list()
        if not all_venues:
            logger.warning("No venues to serialize")
            # Initialize empty mapping for activity map serialization
            self._venue_to_global_id = {}
            return 0

        num_venues = len(all_venues)

        # ============================================================
        # SORT BY GEO_UNIT_ID FOR EFFICIENT PARTITIONED LOADING
        # ============================================================
        # Sort venues by their geographical unit ID using numpy argsort
        geo_unit_ids_raw = np.array([v.geographical_unit.id if v.geographical_unit else -1 for v in all_venues], dtype=np.int32)
        sort_idx = np.argsort(geo_unit_ids_raw, kind='stable')
        all_venues_sorted = [all_venues[i] for i in sort_idx]

        logger.info(f"    ✓ Sorted {num_venues:,} venues by geo_unit_id")

        # Assign sequential global IDs here.

        # Assign global IDs (0, 1, 2, ..., N-1) to SORTED venues
        global_ids = np.arange(num_venues, dtype=np.int32)

        # Create mapping for faster lookup during activity map export
        self._venue_to_global_id = {}
        for v, global_id in zip(all_venues_sorted, global_ids):
            self._venue_to_global_id[id(v)] = global_id

        # Compute ranks_in_type: sequential position within each type in sorted order.
        # Must match the indexing in _write_venue_properties.
        type_counters = {}
        ranks_in_type_list = []
        for v in all_venues_sorted:
            rank = type_counters.get(v.type, 0)
            ranks_in_type_list.append(rank)
            type_counters[v.type] = rank + 1
        type_scoped_ids = np.array(ranks_in_type_list, dtype=np.int32)

        # Core attributes (always included)
        ids = global_ids  # Use GLOBAL IDs for C++

        # Move names to metadata to save memory in core simulation loop
        names = np.array([v.name for v in all_venues_sorted], dtype=h5py.string_dtype())
        metadata_group = f.require_group('metadata/names')
        self._create_dataset(metadata_group, 'venues', names)

        # Convert venue types to uint8 Enum
        unique_types = sorted(list(set(v.type for v in all_venues_sorted)))
        type_to_id = {t: i for i, t in enumerate(unique_types)}
        types = np.array([type_to_id[v.type] for v in all_venues_sorted], dtype=np.uint8)

        # Store the type mapping for C++ consumption
        self._venue_type_id_map = type_to_id

        # Geographical unit IDs (where venue is located)
        geo_unit_ids = np.array(
            [v.geographical_unit.id if v.geographical_unit else -1 for v in all_venues_sorted],
            dtype=np.int32
        )

        # Parent venue IDs (-1 for root venues)
        # IMPORTANT: Use global IDs for parents too!
        parent_ids = np.array(
            [self._venue_to_global_id.get(id(v.parent), -1) if v.parent else -1 for v in all_venues_sorted],
            dtype=np.int32
        )

        # Write core datasets
        self._create_dataset(venues_group, 'ids', ids)
        self._create_dataset(venues_group, 'types', types)
        self._create_dataset(venues_group, 'ranks_in_type', type_scoped_ids) # Needed for lazy property loading
        self._create_dataset(venues_group, 'geo_unit_ids', geo_unit_ids)
        self._create_dataset(venues_group, 'parent_ids', parent_ids)

        # Coordinates (optional)
        if venue_global_settings.get('include_coordinates', True):
            latitudes = np.array(
                [v.coordinates[0] if v.coordinates else np.nan for v in all_venues_sorted],
                dtype=np.float32
            )
            longitudes = np.array(
                [v.coordinates[1] if v.coordinates else np.nan for v in all_venues_sorted],
                dtype=np.float32
            )

            self._create_dataset(venues_group, 'latitudes', latitudes)
            self._create_dataset(venues_group, 'longitudes', longitudes)

        # is_residence flag (optional)
        if venue_global_settings.get('include_is_residence', True):
            is_residence = np.array(
                [v.properties.get('is_residence', False) for v in all_venues_sorted],
                dtype=np.bool_
            )
            self._create_dataset(venues_group, 'is_residence', is_residence)

        # ============================================================
        # CREATE PARTITION INDEX FOR VENUES
        # ============================================================
        logger.info(f"    Building venue partition index...")
        self._write_venue_partition_index(venues_group, all_venues_sorted)
        logger.info(f"    ✓ Wrote venue partition index")

        # Properties (per-type configuration)
        self._write_venue_properties(venues_group, all_venues_sorted)

        # Write subsets
        num_subsets = self._write_subsets(venues_group, all_venues_sorted)

        logger.info(f"  Wrote {num_venues:,} venues")
        logger.info(f"  Wrote {num_subsets:,} subsets")

        return num_subsets

    def _write_venue_properties(self, venues_group, all_venues):
        """Write venue properties based on per-type configuration."""
        # Group venues by type
        venues_by_type = defaultdict(list)
        for v in all_venues:
            venues_by_type[v.type].append(v)

        # For each type, write configured properties
        props_group = venues_group.create_group('properties')

        for venue_type, venues in venues_by_type.items():
            properties_to_include = self.config.get_venue_properties(venue_type)

            if not properties_to_include:
                continue

            # Create type-specific subgroup
            type_group = props_group.create_group(venue_type)

            for prop_name in properties_to_include:
                # Create array for this property across all venues of this type
                self._write_property_array(type_group, prop_name, venues)

            logger.info(f"    {venue_type}: {len(properties_to_include)} properties ({len(venues)} venues)")

    def _write_subsets(self, venues_group, all_venues):
        """Write subset data to HDF5."""
        subsets_group = venues_group.create_group('subsets')

        # Flatten all subsets from all venues
        all_subsets = []
        for venue in all_venues:
            for subset in venue.subsets.values():
                all_subsets.append(subset)

        if not all_subsets:
            logger.warning("No subsets to serialize")
            return 0

        num_subsets = len(all_subsets)

        # ============================================================
        # SORT BY VENUE'S GEO_UNIT_ID FOR EFFICIENT PARTITIONED LOADING
        # ============================================================
        # Sort subsets by their venue's geographical unit ID using numpy argsort
        geo_unit_ids_raw = np.array([s.venue.geographical_unit.id if s.venue.geographical_unit else -1 for s in all_subsets], dtype=np.int32)
        sort_idx = np.argsort(geo_unit_ids_raw, kind='stable')
        all_subsets_sorted = [all_subsets[i] for i in sort_idx]

        logger.info(f"    ✓ Sorted {num_subsets:,} subsets by venue's geo_unit_id")

        # Core attributes
        # IMPORTANT: Use global venue IDs (not type-scoped IDs)
        venue_ids = np.array([self._venue_to_global_id[id(s.venue)] for s in all_subsets_sorted], dtype=np.int32)
        subset_indices = np.array([s.subset_index for s in all_subsets_sorted], dtype=np.int32)
        # Move subset names to metadata
        subset_names = np.array([s.subset_name for s in all_subsets_sorted], dtype=h5py.string_dtype())
        metadata_group = venues_group.file.require_group('metadata/names')
        self._create_dataset(metadata_group, 'subsets', subset_names)

        # Populate subset_names registry for parallel consistency
        unique_subset_names = sorted(list(set(s.subset_name for s in all_subsets_sorted)))
        self.registries['subset_names'] = {name: i for i, name in enumerate(unique_subset_names)}

        # Member counts (useful for C++)
        member_counts = np.array([len(s.members) for s in all_subsets_sorted], dtype=np.int32)

        # ============================================================
        # CREATE PARTITION INDEX FOR SUBSET METADATA
        # ============================================================
        logger.info(f"    Building subset metadata partition index...")
        self._write_subset_metadata_partition_index(subsets_group, all_subsets_sorted)
        logger.info(f"    ✓ Wrote subset metadata partition index")

        # Write datasets
        self._create_dataset(subsets_group, 'venue_ids', venue_ids)
        self._create_dataset(subsets_group, 'subset_indices', subset_indices)
        self._create_dataset(subsets_group, 'member_counts', member_counts)

        # Write member lists (ragged array - need special handling)
        self._write_subset_members(subsets_group, all_subsets_sorted)

        return num_subsets

    def _write_subset_members(self, subsets_group, all_subsets):
        """
        Write subset member lists as ragged arrays with chunked processing.
        """
        num_subsets = len(all_subsets)
        chunk_size = 200000

        # Pass 1: Count total members
        logger.info(f"    Counting total subset members...")
        total_members = sum(len(s.members) for s in all_subsets)
        logger.info(f"    Total subset memberships to write: {total_members:,}")

        # Initialize datasets
        members_ds = self._create_empty_dataset(subsets_group, 'members_flat', np.int32, (total_members,))
        offsets_ds = self._create_empty_dataset(subsets_group, 'members_offsets', np.int32, (num_subsets,))

        current_member_idx = 0
        all_offsets = []

        logger.info(f"    Writing subset memberships in chunks...")
        for i in range(0, num_subsets, chunk_size):
            end = min(i + chunk_size, num_subsets)
            chunk = all_subsets[i:end]

            chunk_members = []
            chunk_offsets = []

            for subset in chunk:
                chunk_offsets.append(current_member_idx)
                ids = [p.id for p in subset.members]
                chunk_members.extend(ids)
                current_member_idx += len(ids)

            # Write chunk to HDF5
            if chunk_members:
                members_ds[chunk_offsets[0]:current_member_idx] = np.array(chunk_members, dtype=np.int32)

            offsets_ds[i:end] = np.array(chunk_offsets, dtype=np.int32)

            if (i // chunk_size) % 5 == 0:
                logger.info(f"      Processed {end:,}/{num_subsets:,} subsets...")

        # ============================================================
        # CREATE PARTITION INDEX FOR SUBSET MEMBERSHIPS
        # ============================================================
        logger.info(f"    Building subset members partition index...")
        # Get offsets back for partition index
        offsets_full = offsets_ds[:]
        self._write_subset_members_partition_index(subsets_group, all_subsets, offsets_full, total_members)
        logger.info(f"    ✓ Wrote subset members partition index")

        logger.info(f"    Total subset memberships: {total_members:,}")

    def _write_activity_mappings(self, f, world):
        """Write activity mapping data (activity_map, hierarchies)."""
        rel_group = f.create_group('activity_mappings')

        # Activity map (person → venues via activities)
        if self.config.should_include_activity_map():
            # Use sorted people order (same as population)
            people_sorted = getattr(self, '_people_sorted', world.population.people)
            self._write_activity_map(rel_group, world, people_sorted)

        # Generic per-membership numeric metadata side-table (Design B). Rows
        # only for subsets whose Subset.member_metadata dict is populated (e.g.
        # transport-line legs carrying (t_board_min, t_alight_min)). Leaving
        # the 4-col activity_data untouched lets old JUNE builds load new
        # files, and new JUNE builds load old files where this dataset is
        # absent.
        self._write_membership_metadata(rel_group, world)

    def _write_activity_map(self, rel_group, world, people_sorted):
        """
        Write activity_map data with chunked processing for memory efficiency.
        """
        if not people_sorted:
            logger.warning("No people to serialize activity map for")
            return

        activity_map_group = rel_group.create_group('activity_map')


        # Collect activity names
        activity_names_set = set()
        for person in people_sorted:
            activity_names_set.update(person.activities)

        activity_names = sorted(list(activity_names_set))
        activity_to_idx = {name: idx for idx, name in enumerate(activity_names)}

        # Write activity names
        activity_names_array = np.array(activity_names, dtype=h5py.string_dtype())
        self._create_dataset(activity_map_group, 'activity_names', activity_names_array)

        # Prepare for chunked processing
        num_people = len(people_sorted)
        chunk_size = 200000
        venue_to_id = self._venue_to_global_id

        # Two passes: 1. Count total 2. Write.

        logger.info(f"    Counting activity mappings...")
        mapping_counts = []
        total_mappings = 0
        for person in people_sorted:
            count = 0
            for name, types in person.activity_map.items():
                if name in activity_to_idx:
                    for subsets_list in types.values():
                        count += len(subsets_list)
            mapping_counts.append(count)
            total_mappings += count

        logger.info(f"    Total activity mappings to write: {total_mappings:,}")

        # Initialize datasets
        activity_ds = self._create_empty_dataset(activity_map_group, 'activity_data', np.int32, (total_mappings, 4))
        offsets_ds = self._create_empty_dataset(activity_map_group, 'activity_offsets', np.int32, (num_people,))

        current_mapping_idx = 0
        activity_offsets = []

        logger.info(f"    Writing activity mappings in chunks...")
        for i in range(0, num_people, chunk_size):
            end = min(i + chunk_size, num_people)
            chunk = people_sorted[i:end]

            chunk_p_ids = []
            chunk_a_idxs = []
            chunk_v_ids = []
            chunk_s_idxs = []
            chunk_offsets = []

            for person in chunk:
                chunk_offsets.append(current_mapping_idx)
                person_id = person.id
                for name, types in person.activity_map.items():
                    if name in activity_to_idx:
                        act_idx = activity_to_idx[name]
                        for subsets_list in types.values():
                            for subset in subsets_list:
                                v_id = id(subset.venue)
                                if v_id in venue_to_id:
                                    chunk_p_ids.append(person_id)
                                    chunk_a_idxs.append(act_idx)
                                    chunk_v_ids.append(venue_to_id[v_id])
                                    chunk_s_idxs.append(subset.subset_index)
                                    current_mapping_idx += 1

            # Write chunk to HDF5
            if chunk_p_ids:
                chunk_data = np.empty((len(chunk_p_ids), 4), dtype=np.int32)
                chunk_data[:, 0] = chunk_p_ids
                chunk_data[:, 1] = chunk_a_idxs
                chunk_data[:, 2] = chunk_v_ids
                chunk_data[:, 3] = chunk_s_idxs

                start_row = chunk_offsets[0]
                activity_ds[start_row:current_mapping_idx] = chunk_data

            offsets_ds[i:end] = np.array(chunk_offsets, dtype=np.int32)

            if (i // chunk_size) % 5 == 0:
                logger.info(f"      Processed {end:,}/{num_people:,} people...")

        # ============================================================
        # CREATE PARTITION INDEX FOR ACTIVITY MAPS
        # ============================================================
        logger.info(f"  Building activity mapping partition index...")

        offsets_full = offsets_ds[:] 
        self._write_activity_mapping_partition_index(activity_map_group, people_sorted, offsets_full, total_mappings)
        logger.info(f"    ✓ Wrote activity mapping partition index")

        logger.info(f"  Activity map: {len(activity_names)} unique activities:")
        for name in activity_names:
            logger.info(f"                                           - {name}")
        logger.info(f"    Total activity mappings: {total_mappings:,}")

    def _write_membership_metadata(self, rel_group, world):
        """Write Subset.member_metadata as a generic side-table.

        Produces /activity_mappings/membership_metadata with one row per
        (person, venue) membership that carries metadata:
            person_id    : int32
            venue_id     : int32 (global venue id, matches activity_data col 2)
            <field_name> : float32 — one column per metadata field name found

        Field names are discovered by scanning all subsets' member_metadata
        dicts. Datasets are float32 to accept both ints and floats; -1.0 is
        the sentinel for "field absent for this row" (rare; should not occur
        unless different memberships in the same export carry disjoint
        metadata schemas).

        Two passes over the venues, filling preallocated numpy arrays — no
        Python per-row lists, so memory stays flat at 60M-scale ridership
        (the arrays are 4 bytes per row per column). Any value above 2**24
        is logged loudly: float32 cannot represent larger integers exactly,
        so e.g. venue ids in big worlds would silently corrupt.
        """
        venue_to_global_id = self._venue_to_global_id

        # Pass 1: count rows and discover the union of field names (in
        # discovery order, so output column order is deterministic).
        n_rows = 0
        field_names = []
        field_set = set()
        for venue in world.venues.get_all_venues_list():
            if id(venue) not in venue_to_global_id:
                continue
            for subset in venue.subsets.values():
                meta = getattr(subset, 'member_metadata', None)
                if not meta:
                    continue
                n_rows += len(meta)
                for fields in meta.values():
                    for fname in fields.keys():
                        if fname not in field_set:
                            field_set.add(fname)
                            field_names.append(fname)

        if n_rows == 0:
            logger.info("  No membership_metadata to serialise (no subsets populated)")
            return

        # Pass 2: fill. Same venue/subset/dict iteration order as pass 1
        # (nothing mutates between passes), so row k lands in slot k.
        person_arr = np.empty(n_rows, dtype=np.int32)
        venue_arr = np.empty(n_rows, dtype=np.int32)
        per_field = {f: np.full(n_rows, -1.0, dtype=np.float32) for f in field_names}
        k = 0
        for venue in world.venues.get_all_venues_list():
            global_id = venue_to_global_id.get(id(venue))
            if global_id is None:
                continue
            for subset in venue.subsets.values():
                meta = getattr(subset, 'member_metadata', None)
                if not meta:
                    continue
                for pid, fields in meta.items():
                    person_arr[k] = pid
                    venue_arr[k] = global_id
                    for fname, val in fields.items():
                        per_field[fname][k] = float(val)
                    k += 1

        # float32 keeps integers exact only up to 2**24; beyond that ids
        # round silently. Geo unit ids are safely small; this trips if a
        # config ever routes venue-scale ids through the side-table.
        for fname, arr in per_field.items():
            if np.abs(arr).max() > 2 ** 24:
                logger.warning(
                    f"  membership_metadata field '{fname}' holds values above "
                    f"2^24 — float32 storage rounds such integers; ids stored "
                    f"in this field may be corrupt"
                )

        meta_group = rel_group.create_group('membership_metadata')
        self._create_dataset(meta_group, 'person_ids', person_arr)
        self._create_dataset(meta_group, 'venue_ids', venue_arr)
        # Field-name registry (string array, ordered) so consumers can iterate.
        self._create_dataset(
            meta_group, 'field_names',
            np.array(field_names, dtype=h5py.string_dtype()),
        )
        for fname in field_names:
            self._create_dataset(meta_group, fname, per_field[fname])
        logger.info(
            f"  Wrote membership_metadata side-table: {n_rows:,} rows × "
            f"{len(field_names)} fields {field_names}"
        )

    def _write_property_array(self, group, prop_name, objects):
        """
        Write a property array for a list of objects in chunks.
        Supports different property types (int, float, str, bool, list, dict).
        """
        num_objects = len(objects)
        chunk_size = 100000

        # Step 1: Infer type from first non-None value
        sample_val = None
        for i in range(0, num_objects, chunk_size):
            chunk_slice = objects[i:min(i + chunk_size, num_objects)]
            for obj in chunk_slice:
                val = obj.properties.get(prop_name)
                if val is not None:
                    sample_val = val
                    break
            if sample_val is not None:
                break

        if sample_val is None:
            logger.debug(f"Skipping property '{prop_name}' (all None)")
            return

        # Step 2: Determine dtype and create dataset
        dtype = None
        fill_value = None

        if isinstance(sample_val, bool):
            dtype = np.bool_
            fill_value = False
        elif isinstance(sample_val, int):
            dtype = np.int32
            fill_value = -1
        elif isinstance(sample_val, float):
            dtype = np.float32
            fill_value = np.nan
        else:
            # Strings and complex types (JSON)
            dtype = h5py.string_dtype()
            fill_value = ""

        ds = self._create_empty_dataset(group, prop_name, dtype, (num_objects,))

        # Step 3: Write in chunks
        import json
        for i in range(0, num_objects, chunk_size):
            end = min(i + chunk_size, num_objects)
            chunk = objects[i:end]

            # get values once per object
            chunk_vals = []
            for obj in chunk:
                val = obj.properties.get(prop_name)
                if val is None:
                    chunk_vals.append(fill_value)
                elif isinstance(val, set):
                    chunk_vals.append(json.dumps([p.id for p in val]))
                elif isinstance(val, (list, dict)):
                    chunk_vals.append(json.dumps(val))
                else:
                    chunk_vals.append(val)

            ds[i:end] = np.array(chunk_vals, dtype=dtype)

    def _create_empty_dataset(self, group, name, dtype, shape):
        """Create an empty HDF5 dataset with compression."""
        compression = self.compression_settings['compression']
        compression_level = self.compression_settings['compression_level']

        # Determine chunks for HDF5 (not our processing chunks)
        # Choosing a chunk size that is a multiple of typical access patterns
        if shape and len(shape) > 0 and shape[0] > 0:
            h5_chunks = (min(shape[0], 100000),) + shape[1:]
        else:
            h5_chunks = None

        return group.create_dataset(
            name,
            shape=shape,
            dtype=dtype,
            compression=compression,
            compression_opts=compression_level,
            shuffle=True,
            chunks=h5_chunks
        )

    def _create_dataset(self, group, name, data):
        """
        Create HDF5 dataset with compression.

        Args:
            group: HDF5 group
            name: Dataset name
            data: NumPy array
        """
        compression = self.compression_settings['compression']
        compression_level = self.compression_settings['compression_level']

        # Only compress if data is large enough
        if len(data) > 100:
            # Enable shuffle=True for much better compression ratio on numeric data
            group.create_dataset(
                name,
                data=data,
                compression=compression,
                compression_opts=compression_level,
                shuffle=True
            )
        else:
            group.create_dataset(name, data=data)

    def _write_registries(self, f):
        """Write string-to-int registries for categorical data."""
        registry_group = f.create_group('metadata/registries')

        # Add sex mapping (predefined)
        sex_reg = registry_group.create_group('sex')
        sex_reg.attrs['mapping'] = "male:0,female:1,unknown:2"

        # Add venue types mapping
        if hasattr(self, '_venue_type_id_map'):
            vtype_reg = registry_group.create_dataset('venue_types', 
                                                     data=np.array(list(self._venue_type_id_map.keys()), dtype=h5py.string_dtype()))

        # Add geo levels mapping
        if 'geo_levels' in self.registries:
            mapping = self.registries['geo_levels']
            sorted_strings = [k for k, v in sorted(mapping.items(), key=lambda item: item[1])]
            registry_group.create_dataset('geo_levels', data=np.array(sorted_strings, dtype=h5py.string_dtype()))

        # Add subset names mapping
        if 'subset_names' in self.registries:
            mapping = self.registries['subset_names']
            sorted_strings = [k for k, v in sorted(mapping.items(), key=lambda item: item[1])]
            registry_group.create_dataset('subset_names', data=np.array(sorted_strings, dtype=h5py.string_dtype()))

        # Add property mappings
        props_reg_group = registry_group.create_group('properties')
        for reg_name, mapping in self.registries.items():
            if reg_name in ['geo_levels', 'subset_names']:
                continue
            prop_name = reg_name.replace("prop_", "")
            # Write unique strings in index order
            sorted_strings = [k for k, v in sorted(mapping.items(), key=lambda item: item[1])]
            props_reg_group.create_dataset(prop_name, data=np.array(sorted_strings, dtype=h5py.string_dtype()))

__init__(config_file)

Initialize WorldSerializer.

Parameters:

Name Type Description Default
config_file

Path to serialization YAML configuration

required
Source code in may/serialization/world_serializer.py
26
27
28
29
30
31
32
33
34
35
def __init__(self, config_file):
    """
    Initialize WorldSerializer.

    Args:
        config_file: Path to serialization YAML configuration
    """
    self.config = SerializationConfig(config_file)
    self.compression_settings = self.config.get_compression_settings()
    self.registries = {}  # Registry of string-to-int mappings

export(world, output_file)

Export world to HDF5 file.

Source code in may/serialization/world_serializer.py
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
def export(self, world, output_file):
    """
    Export world to HDF5 file.
    """
    # Internal state for export coordination
    self._venue_to_global_id = {}
    self._venue_type_id_map = {}
    self._people_sorted = None
    logger.info("=" * 60)
    logger.info("Exporting World to HDF5")
    logger.info("=" * 60)
    logger.info(f"Output file: {output_file}")

    stats = {
        'num_people': 0,
        'num_venues': 0,
        'num_geo_units': 0,
        'num_subsets': 0,
    }

    with h5py.File(output_file, 'w') as f:
        # Write metadata
        self._write_metadata(f, world, stats)

        # Write geography
        logger.info("Serializing geography...")
        self._write_geography(f, world)
        stats['num_geo_units'] = len(world.geography.get_all_units())

        # Write population
        logger.info("Serializing population...")
        self._write_population(f, world)
        stats['num_people'] = len(world.population.people)

        # Write venues
        logger.info("Serializing venues...")
        stats['num_subsets'] = self._write_venues(f, world)
        stats['num_venues'] = len(world.venues.get_all_venues())

        # Write activity mappings
        logger.info("Serializing activity mappings...")
        self._write_activity_mappings(f, world)

        # Write registries (Enum mappings for C++)
        logger.info("Writing string registries...")
        self._write_registries(f)

    logger.info("")
    logger.info("Export complete!")
    logger.info(f"  Geography units: {stats['num_geo_units']:,}")
    logger.info(f"  People: {stats['num_people']:,}")
    logger.info(f"  Venues: {stats['num_venues']:,}")
    logger.info(f"  Subsets: {stats['num_subsets']:,}")
    logger.info("=" * 60)

    return stats