Web Content Display

Web Content Display (CoastWatch User Forum)

The NOAA CoastWatch Forum provides information in several categories.  The information is relevant to CoastWatch products and software (https://coastwatch.noaa.gov)  and vary in technical details.  For questions and issues not addressed here,  start a thread in the appropriate category or contact the CoastWatch HelpDesk (coastwatch.info@noaa.gov).  Please note our Privacy Policy (https://www.noaa.gov/privacy.html) and that this is a public forum.  All information is voluntarily and anonymous submissions are accepted pending review prior to posting. 

Forums

Back

rextractogon - where does data go?

TE
Tomo Eguchi, modified 3 Years ago.

rextractogon - where does data go?

Youngling Posts: 13 Join Date: 6/12/17 Recent Posts

I used rextractogon to get Chl-a data. An error occurred and downloading stopped with the following message: 
[1] "stopping execution  - will return what has been downloaded so far"
[1] "There was an error in the url call, perhaps a time out. See message on screen and URL called"

Question: where did the downloaded data go? There is nothing in the workspace, the working directory, or in the download folder. 

Thanks!

Here is my code:

study.area <- data.frame(longitude = c(-123, -115, -115, -123, -123),
                        latitude = c(28, 28, 36, 36, 28))

xcoord <- study.area$longitude
ycoord <- study.area$latitude

data.Info.MB8day <- rerddap::info("erdMBchla8day_LonPM180")

parameter <- "chlorophyll"   
tcoord.MB <- c("2005-12-29", "2021-04-30")  # there must be an easier way to extract this
chla.MB <- rxtractogon (dataInfo = data.Info.MB8day, 
                        parameter = parameter, 
                        xcoord=xcoord, 
                        ycoord=ycoord, 
                        tcoord=tcoord.MB, 
                        zcoord=0)

chla.MB was not found in the workspace.