Real-time Visualization & Performance Metrics Powered by Lynker Spatial







































Programmatically access real time hydrologic time series data across all available model products. Integrate either the raw model outputs or their flow‑propagated counterparts to achieve hyper‑resolution, localized stream reach predictions directly within your applications, web maps, and custom workflows.
Explore API Documentation# Install from GitHub:
pip install git+https://github.com/lynker-spatial/flowfabric-py#egg=flowfabricpy
from flowfabricpy import *
# Query streamflow forecast
tbl = flowfabric_streamflow_query(
dataset_id = "nws_owp_nwm_analysis",
feature_ids = ["101", "1001"],
issue_time = "latest"
)
print(tbl)
# Install from GitHub:
devtools::install_github('lynker-spatial/flowfabric-r')
library(flowfabricr)
# Query streamflow forecast
tbl <- flowfabric_streamflow_query(
dataset_id = "nws_owp_nwm_analysis",
feature_ids = c("101", "1001"),
issue_time = "latest"
)
head(tbl)