SIMoN Granularity Graph Tool
Build the granularity graphs used for data translation in the SIMoN software application.
Copyright 2020 The Johns Hopkins University Applied Physics Laboratory Licensed under the MIT License
Description
A key difficulty in combining models is resolving their data dependencies and discrepancies. By using the SIMoN software, a modeler is able to join models with disparate geographic definitions together in various combinations, allowing models to run together and exchange data that have heterogeneous definitions of geography.
Granularities
SIMoN currently integrates models of population, power systems, water systems, and climate change. These domains each have their own hierarchies of geography, which include political, topographical, regulatory, and latitude-longitude grid boundaries.
In order to translate data from its models across granularities, SIMoN uses shapefiles to define rigorous geographies in a partially ordered set of geographic partitions (e.g., counties, watersheds, power regions, and latitude-longitude squares). SIMoN creates a corresponding directed acyclic network graph representing all the granularities, their corresponding entities, and their relationships to each other. The individual models feed each other updated data inputs at synchronized time intervals, and traverse the network graph to translate their data from one granularity to another. A sample granularity graph is provided, but modelers can extend it or create a graph of their own, by modifying and using the graphs/build.py script.
Aggregators and Disaggregators
The modeler can choose transformation functions, called aggregators and disaggregators, to translate data between compatible geographic definitions in various ways. These aggregators and disaggregators must conform to a set of mathematical axioms, including a partial inverse property, which are designed to create a provable notion of data consistency and reduce the possibility of self-propagating errors.
Basic Usage
This tool uses shapefiles to generate two JSON graphs: an abstract graph and an instance graph.
Run make graph from the top-level simon directory.
This will start the simon-graph Docker container, and create an abstract graph / instance graph pair in the graphs/out directory. The container will exit once the graph pair has been built. To use the generated graphs for the next SIMoN run, rename the abstract graph to abstract-graph.geojson, and the instance graph to instance-graph.geojson.
Advanced Usage
Adjust parameters in the graphs/config.json file.
projectionis the EPSG coordinate reference system code that all of the shapefile polygons will be translated to, in order to ensure consistency. For the most precise results, use the original EPSG of the shapefiles.scale_factordivides the area of each shapefile's polygons by a scalar, in order to use better units. For example, the provided shapefiles have length units of meters and area units of square meters. The default scale_factor is 1 million, in order to translate the area unit of the provided shapefiles from square meters to square kilometers. Change the scale factor to 1 to preserve the original units.minimum_intersection_areasets the minimum area of an instance wedge node (a node that results from intersecting nodes from two different branches of the granularity graph). Because of precision errors, a minimum intersection area of 0 could result in the creation of many tiny, spurious nodes that clutter the instance graph. The default minimum intersection area is set to 1 length unit, where length unit is the length unit of the shapefiles after any scaling from thescale_factor.abstract_edgesis the list of edges in the abstract graph, where each edge is represented by a tuple in the form [source, target]. Adjust the items in this list to create a new abstract graph. Thebuild.pyscript will generate the corresponding instace graph by finding the corresponding shapefiles in thegraphs/shapefilesdirectory.save_shapesspecifies whether to create a third file that saves the large polygon shapes of the instance graph nodes.tagis the suffix attached to the abstract graph and instance graph filenames.
Both JSON graphs have 3 key attributes:
nodesmaps to a list of the graph's verticeslinksmaps to a list of the graph's edgesgraphmaps to a dictionary of the graph's metadataidis a UUID for the abstract-instance graph pair, that both the abstract graph and the corresponding instance graph shareprojectionis the coordinate reference system that the shapefile geometries are defined ongranularitiesare the granularities that the graphs connectmin_intersect_areais the minimum area of a wedge node in the instance graph (a node made by intersecting disparate geographic granularities)nodesis the number of vertices in the graphlinksis the number of edges in the graphcountsis the number of vertices in the graph, categorized by granularityareasis the total area of each granularity's scope, that is, the sum of all the node areas of each granularity. Ideally, these areas should be equal so that the graph will have a consistent scope.