.. _nsi_integration_exammple: NSI Integration =============== This is an example to demonstrate how |app| integrates with the `National Structures Inventory `_. There are two ways to integrate: #. Create an inventory that does not include footprint information directly from NSI. #. Integrate an existing **AssetInventory** with NSI. For each **Asset** in the asset inventory, the features from NSI are obtained and merged with the asset's existing features. This is done by finding an asset in the NSI located in the footprint. .. literalinclude:: brails_nsi.py :language: python :linenos: The script is executed by entering the following command in a terminal window: .. code-block:: python3 brails_nsi.py OSM_FootprintScraper "Berkeley, CA" As shown in the `print_output()` of the smaller NSI inventory, the coordinates for such an inventory only contain points instead of the building footprints. .. literalinclude:: outputNSI.txt :linenos: The output also shows that the number of buildings in the two inventories, nsi_inventory and scraper_inventory, are different: .. code-block:: Total number of assets detected using NSI is 27705 Total number of assets detected using OSM_FootprintScraper is 35547 As there are different numbers of buildings in the two inventories, when integrating NSI dataset into the footprint inventory, there will be assets for which no NSI data exists. In the merge performed with the example run, 2 out of the 5 assets in the subset inventories do not have data available in NSI. This is shown in the output lines: .. code-block:: The original and integrated inventories are as shown: .. literalinclude:: outputINTEGRATION.txt :linenos: NSI Integration Notebook ------------------------ Here is a link to a Jupyter Notebook that runs the basic code, accompanied by graphics to better illustrate the output. .. raw:: html .. note:: #. Information on the fields output for NSI can be found `here `_ #. When the number of buildings in the NSI differs from the inventory it is being merged with, **imputation** may be required during the integration process. #. The NSI is new and under development and as a consequence is not perfect.