Net1 {epanetReader} | R Documentation |
A dataset created by reading the Net1.inp file distributed with Epanet using this package's read.inp() function.
Net1
An object of class epanet.inp
created by read.inp.
http://www.epa.gov/sites/production/files/2014-06/en2setup_0.exe
#confirm built-in dataset matches output of read.inp
inp <- file.path( find.package("epanetReader"), "extdata","Net1.inp")
n1 <- suppressWarnings( read.inp(inp) )
ok <- isTRUE( all.equal(Net1, n1))
if( ok==FALSE) stop("built-in Net1 doesn't match read.inp")