search for: nwis

Displaying 5 results from an estimated 5 matches for "nwis".

Did you mean: nmis
2009 Oct 05
2
Parsing Files in R (USGS StreamFlow data)
http://waterdata.usgs.gov/nwis/uv?format=rdb&period=7&site_no=021973269 I would like to be able to parse this file up: I can do this x <- read.table("http://waterdata.usgs.gov/nwis/uv?format=rdb&period=7&site_no=021973269", skip=26) but If I add another gauge to this x <- read.table("http...
2009 Jul 21
0
help for SSOAP
Hi, I am trying to learn how to from within R access web services. I am also interested in having R be a client and from within R access data on other web services. Specifically the web services I would like to access from within R are “http://water.sdsc.edu/waterOneFlow/NWIS/DailyValues.asmx?WSDL” Therefor, I wrote the following code into R program: > library(SSOAP) > processWSDL("http://water.sdsc.edu/wateroneflow/NWIS/DailyValues.asmx?WSDL", verbose=TRUE) However, this program gave me error messages, like: processing (sub) schema http://www.cuahsi.or...
2010 May 18
2
Function that is giving me a headache- any help appreciated (automatic read )
...) #02133500 is the Drowning Creek (ftbrbmcm) #02341800 is the Upatoi Creek Near Columbus (ftbn) #02342500 is the Uchee Creek Near Fort Mitchell (ftbn) #02203000 is the Canoochee River Near Claxton (ftst) #02196690 is the Horse Creek Gauge at Clearwater, S.C. a <- "http://waterdata.usgs.gov/nwis/uv?format=rdb&period=" b <- "&site_no=021973269,02102908,02133500,02341800,02342500,02203000,02196690" z <- paste(a, days, b, sep="") L <- readLines(z) #look for the data with USGS in front of it (this take advantage of #the agency column) L.USGS <- gre...
2009 Oct 06
1
ggplot2 applying a function based on facet
...roper (SRS) #02102908 is the Flat Creek Gauge (ftbrfcms) #02133500 is the Drowning Creek (ftbrbmcm) #02341800 is the Upatoi Creek Near Columbus (ftbn) #02342500 is the Uchee Creek Near Fort Mitchell (ftbn) #02203000 is the Canoochee River Near Claxton (ftst) a <- "http://waterdata.usgs.gov/nwis/uv?format=rdb&period=" b <- "&site_no=021973269,02102908,02133500,02341800,02342500,02203000" z <- paste(a, days, b, sep="") L <- readLines(z) #look for the data with USGS in front of it (this take advantage of the agency column) L.USGS <- grep("^U...
2009 Nov 03
1
help with SSOAP (can't find working examples)
...;hello world" example, and they all have the same error as well. While KEGG.wsdl, and others gave the above error, the eutils.wsdl gave me the below error: Error: Cannot resolve SOAP type in empty context Interop.wsdl got me the below error: Error: Cannot resolve string in SchemaCollection nwis.wsdl failes in processWSDL() itself, with the below error: Error in parse(text = paste(txt, collapse = "\n")) : unexpected input in "function(x, ..., obj = new( ?" I am most interested in solving the first error that I reported (as the rest might be real issues with the wsdl...