Skip to content
Ben Tupper edited this page May 23, 2016 · 7 revisions

Welcome to the ndfd wiki!

Handy Links

RESTful API

DWML Elements

DWML Design

Retrieving information

Listing resources with list_this(...)

Listing involves retrieving the locations where data may be available. The table below shows an (incomplete and) brief tally of what you can list and the location and resolution info you must provide.

list-resources

# list the data locations within a bounding box
library(ndfd)
my_list <- list_this('points_in_subgrid', listLon1 = -72, listLon2 = -63, listLat1 = 39, listLat2 = 46, resolutionList =20)
my_list
# [1] "listLon1=-72.00000&listLon2=-63.00000&listLat1=39.00000&listLat2=46.00000&resolutionList=20.00000"

X <- NDFD(my_list)

Retrieving data with query_this(...)

retrieve-data

What comes back?

NDFDRefClass has three elements...

  • head

  • data

  • latLonList

Clone this wiki locally