Checking for non-preferred file/folder path names (may take a long time depending on the number of files/folders) ...

The PISCO-ARNOVIC Daily Streamflow Product for Peru (v1.1)


Authors:
Owners: This resource does not have an owner who is an active HydroShare user. Contact CUAHSI (help@cuahsi.org) for information on this resource.
Type: Resource
Storage: The size of this resource is 862.8 MB
Created: Feb 06, 2023 at 3:46 p.m. (UTC)
Last updated: Apr 10, 2026 at 11:48 p.m. (UTC)
Citation: See how to cite this resource
Content types: Multidimensional Content 
Sharing Status: Public
Views: 9677
Downloads: 1435
+1 Votes: 2 others +1 this
Comments: No comments (yet)

Abstract

This product provides a national-scale dataset of simulated daily streamflow across Peru, developed using the PISCO gridded precipitation and evapotranspiration dataset at 0.1° × 0.1° spatial resolution, coupled with the ARNO/VIC rainfall–runoff model and the RAPID river routing scheme. The dataset covers the entire Peruvian territory, including transboundary river basins shared with neighboring countries.

The modeling framework generates mean daily discharge for 11,913 river reaches, enabling a fine-scale representation of hydrological conditions at the national level. Model calibration and validation were performed using observed daily streamflow records from 43 gauging stations over the period 1981–2020, ensuring consistency with observed hydrological dynamics.

This dataset is designed to support hydrological analysis, monitoring, and decision-making, and will be regularly updated to incorporate new simulations and improvements.

Subject Keywords

Coverage

Spatial

Coordinate System/Geographic Projection:
WGS 84 EPSG:4326
Coordinate Units:
Decimal degrees
North Latitude
1.1858°
East Longitude
-67.3807°
South Latitude
-19.5189°
West Longitude
-82.8494°

Temporal

Start Date:
End Date:

Content

readme.txt

PISCO_ARNOVIC v1.1 - README

============================================================
DESCRIPTION
============================================================
PISCO_ARNOVIC v1.1 is a national-scale hydrological dataset
providing simulated daily streamflow across Peru.

The dataset was developed using:
- PISCO gridded precipitation and temperature datasets
- ARNO/VIC rainfall-runoff model
- RAPID river routing model

It provides continuous daily discharge estimates for 11,913
river reaches (COMIDs), covering Peru and transboundary basins.

============================================================
DATA COMPONENTS
============================================================

1) NetCDF file
   - PISCO_ARNOVIC_v1.1.nc

2) River network (vector)
   - riv_pisco_arnovic_v1.1.gpkg

3) Catchments (vector)
   - cat_pisco_arnovic_v1.1.gpkg

============================================================
NETCDF DATA STRUCTURE
============================================================

Format: NetCDF (.nc)
Temporal resolution: Daily
Units: m3/s

Variables:

- comid
  Unique identifier of river reaches (COMID)

- time
  Time dimension (days since 1970-01-01, UTC)

- flow
  Simulated daily streamflow (m3/s)
  Dimensions: [time x comid]

Notes:
- Flow values correspond to routed discharge using RAPID
- Time is stored as UNIX time (seconds since 1970-01-01)

============================================================
SPATIAL DATA STRUCTURE
============================================================

All spatial data are provided in GeoPackage (.gpkg) format.

------------------------------------------------------------
1) River Network (riv_pisco_arnovic_v1.1.gpkg)
------------------------------------------------------------

Geometry: Line (river reaches)

Main attributes typically include:

- COMID
  Unique river reach identifier (links with NetCDF)

- Length / Length_km
  River reach length

- Upstream / Downstream IDs
  Connectivity within the river network

- Other hydraulic/topologic attributes may be included

Purpose:
- Defines the routing network used by RAPID
- Enables visualization and mapping of streamflow

------------------------------------------------------------
2) Catchments (cat_pisco_arnovic_v1.1.gpkg)
------------------------------------------------------------

Geometry: Polygon (subbasins)

Main attributes typically include:

- COMID
  Unique identifier matching the river reach outlet

- Area / Area_km2
  Catchment area

- Other physiographic attributes (if included)

Purpose:
- Defines contributing areas for each river reach
- Used for spatial aggregation and analysis

============================================================
LINK BETWEEN DATASETS
============================================================

The key linkage across all datasets is:

COMID

- NetCDF: identifies time series of streamflow
- River network: spatial location of flow
- Catchments: contributing drainage area

============================================================
ABBREVIATIONS
============================================================

PISCO    : Peruvian Interpolated data of SENAMHI observations
ARNOVIC  : ARNO/VIC hydrological model implementation
RAPID    : Routing Application for Parallel Computation of Discharge
COMID    : Unique identifier for river reaches

============================================================
NOTES AND LIMITATIONS
============================================================

- Streamflow values are simulated, not direct observations
- Model calibrated using 43 gauging stations (1981–2020)
- Suitable for regional and national-scale applications
- Local-scale use requires validation with observed data
- Uncertainty may increase in small catchments or ungauged regions

============================================================
EXAMPLE: READING DATA IN R
============================================================

# Load library
library(ncdf4)

# Inputs
nc_file <- "PISCO_ARNOVIC_v1.1.nc"
myCOMID <- 9072683

# Read NetCDF
nc    <- nc_open(nc_file)
comid <- ncvar_get(nc, "comid")
time  <- as.Date(as.POSIXct(ncvar_get(nc, "time"),
                            origin = "1970-01-01", tz = "UTC"))
flow  <- round(t(ncvar_get(nc, "flow")), 1)
nc_close(nc)

# Extract COMID
ind <- which(comid == myCOMID)
if (length(ind) == 0) stop("COMID not found")

df <- data.frame(Time = time, FLOW = flow[, ind])

# Plot
plot(df$Time, df$FLOW, type = "l", col = "blue",
     main = paste("COMID:", myCOMID),
     xlab = "Date",
     ylab = "Discharge (m3/s)")
grid()

# Export
write.csv(df, paste0("flow_", myCOMID, ".csv"),
          row.names = FALSE)

============================================================
ADDITIONAL RESOURCES
============================================================

COMID finder:
https://hllauca.github.io/PISCO_HyD_ARNOVIC_map/Identificar_COMID.html

HydroShare resource:
https://www.hydroshare.org/resource/f723d6c762ca45b6936dd9489bc44842/

============================================================
AUTHOR
============================================================

Harold Llauca
SENAMHI - Peru
hllauca@senamhi.gob.pe

============================================================

Data Services

The following web services are available for data contained in this resource. Geospatial Feature and Raster data are made available via Open Geospatial Consortium Web Services. The provided links can be copied and pasted into GIS software to access these data. Multidimensional NetCDF data are made available via a THREDDS Data Server using remote data access protocols such as OPeNDAP. Other data services may be made available in the future to support additional data types.

Related Resources

This resource is described by Llauca, H., Leon, K, Lavado, W. Construction of a daily streamflow dataset for Peru using a similarity-based regionalization approach and a hybrid modeling framework. Journal of Hydrology: Regional Studies. 2023; 47, 101381. https://doi.org/10.1016/j.ejrh.2023.101381.

How to Cite

Llauca, H. (2026). The PISCO-ARNOVIC Daily Streamflow Product for Peru (v1.1), HydroShare, http://www.hydroshare.org/resource/f723d6c762ca45b6936dd9489bc44842

This resource is shared under the Creative Commons Attribution CC BY.

http://creativecommons.org/licenses/by/4.0/
CC-BY

Comments

There are currently no comments

New Comment

required