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

Extracting CCMP nc files

BC
Brett Cooper, modified 4 Years ago.

Extracting CCMP nc files

Youngling Posts: 9 Join Date: 4/13/20 Recent Posts

I'm trying to pull a nc file for CCMP data for 1 day, and having an error pop up using the R code below:

 

# wind data

ccmp_nm   <- "ccmp-daily-v2-0"
ccmp_info <-  rerddap::info(ccmp_nm, url = "https://oceanwatch.pifsc.noaa.gov/erddap/")
res <- griddap(ccmp_info,  time = c('2012-01-01', '2012-01-01'))

 

 

I get a blank error message: 

 

> # wind data
> ccmp_nm   <- "ccmp-daily-v2-0"
> ccmp_info <-  rerddap::info(ccmp_nm, url = "https://oceanwatch.pifsc.noaa.gov/erddap/")
> res <- griddap(ccmp_info,
+                time = c('2012-01-01', '2012-01-01'))
Error: 

 

Any ideas?