Skip to main content

Enrich your dataset with GERS and create a Tile server

ยท 3 min read
Jennings Anderson
Software Engineer @ Meta
Plinio Guzman
Founding Engineer @ Fused

Overture is an open data project that publishes interoperable map datasets. It aims to foster an ecosystem of developers creating downstream map services around its data products. Fused emerged as a solution to enrich Overture datasets on the fly and serve them with XYZ Tile endpoints.

This clip shows how coverage expands in (top right) Astoria when I add building heights from the NSI dataset (as num_story * 3) to Overture buildings.

Why this mattersโ€‹

Datasets often lack the structure required to support the creation of reliable map services and products. A dataset may reference real-world entities using its own conventions, making it challenging to integrate with other datasets. Overture promotes interoperability with GERS (Global Entity Reference System) IDs, which link dataset entities to the same real-world features. This simplifies the process of conflating multiple datasets, ensuring consistency.

The Overture Buildings theme provides a comprehensive collection of global building footprints, but different use cases might call for additional building information. This could include attributes related to risk assessment, census information, zoning regulations, property management details, and more. By enriching datasets with GERS IDs, users can easily link external data sources to power analytical applications.

However, enriching a dataset can be computationally and memory-intensive due to the size of the data. Fused addresses this by enabling live queries and rendering data directly from the source GeoParquet files, eliminating the need to create new tiles each time the underlying data is updated.

Step-by-step guideโ€‹

In this post, we show how to enrich your dataset by matching it with the Overture Buildings theme using GERS IDs. This makes your dataset easier to visually inspect and more accessible for others to integrate with their data.

For this example, we created a Fused User Defined Function (UDF) to load the NSI Structures dataset and overlay it on the Overture Buildings dataset. This will let us visualize buildings based on attributes from NSI such as structure value or height. We'll then turn the UDF into an XYZ Tile server to create an app.

1. Load Buildings dataโ€‹

Fused UDFs let us load, process, and export Overture datasets using spatial filters. This means we can load only a subset of columns for the areas we care about, without needing first to download the entire dataset.

This UDF, running on the Fused Workbench, uses the get_overture helper function to read from the Overture dataset hosted in Source Coop.

@fused.udf
def udf(bbox: fused.types.TileGDF=None):
return fused.utils.Overture_Maps_Example.get_overture(bbox=bbox, theme='buildings')

2. Enrich with NSIโ€‹

The NSI API provides access to NSI structures as a feature collection of points, which can be queried using GeoJSON. We'll use the same bounding box (`bbox`) that we used to load Overture data to query NSI, ensuring that each call to the UDF fetches data from both datasets for the spatially overlapping area.

We'll write a UDF to load data from both datasets and perform a spatial join using GeoPandas with gdf_overture.sjoin(gdf). This operation returns a unified table with Overture building footprints enriched with NSI attributes. Any duplicates, where multiple NSI points fall within the same building footprint, can be dropped. The resulting dataset will has NSI attributes enriched with GERS IDs and the building polygons.

While developing the UDF, the Fused UDF Editor allows us to visualize the output on the map dynamically.

@fused.udf
def udf(bbox: fused.types.TileGDF=None):
import geopandas as gpd
import requests

# 1. Load Overture Buildings
gdf_overture = fused.utils.Overture_Maps_Example.get_overture(bbox=bbox)

# 2. Load NSI from API
response = requests.post(
url = "https://nsi.sec.usace.army.mil/nsiapi/structures?fmt=fc",
json=bbox.__geo_interface__
)

# 3. Create NSI gdf
gdf = gpd.GeoDataFrame.from_features(response.json()['features'])

# 4. Join Overture and NSI
cols = ['id', 'geometry', 'num_story', 'height']
return gdf_overture.sjoin(gdf)[cols]

3. Create an XYZ Tile endpointโ€‹

Fused UDFs can be invoked via HTTP endpoints. The UDF we created returns a GeoDataFrame of the spatially joined tables, and Fused automatically provides an XYZ Tile endpoint. This allows seamless integration with mapping clients, enabling us to generate an enriched dataset in real-time and simultaneously serve it - without the need for additional processing layers.

https://www.fused.io/server/v1/realtime-shared/fsh_3q5XyVfgw4z7X4XzdugudF/run/tiles/{z}/{x}/{y}?dtype_out_vector=geojson

Conclusionโ€‹

This walkthrough provided a practical overview of how to create a UDF to enrich a dataset with GERS IDs from Overture Buildings. We also saw how to use the UDF as a tile server to dynamically enrich and serve the dataset on the fly - directly on the browser.