Skip to content

Commit

Permalink
Changed how we refer to AS
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasbueckle committed Sep 1, 2023
1 parent b17c28e commit 3b2137c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions data/validation+testing/number_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ def main():
dataset_cell_summaries = load_json("../dataset-cell-summaries.jsonld")
enriched_rui_locations = load_json("../enriched_rui_locations.jsonld")
rui_locations = load_json("../rui_locations.jsonld")
enriched_rui_locations = load_json("../enriched_rui_locations.jsonld")
corridors = load_json("../corridors.jsonld")

# unqiue rui locations, datasets, and cell types
Expand All @@ -33,7 +32,7 @@ def main():
if "corridor" in sample['rui_location']:
for collision_item in sample['rui_location']['all_collisions']:
for collision in collision_item['collisions']:
unique_as_in_corridors.add(collision['as_3d_id'])
unique_as_in_corridors.add(collision['as_id'])

# get numbers of AS per corridor
for donor in enriched_rui_locations['@graph']:
Expand Down

0 comments on commit 3b2137c

Please sign in to comment.