All Projects → ropensci → nasapower

ropensci / nasapower

Licence: other
API Client for NASA POWER Global Meteorology, Surface Solar Energy and Climatology in R

Programming Languages

r
7636 projects
TeX
3793 projects

Projects that are alternatives of or similar to nasapower

riem
✈️ ☀️ R package for accessing ASOS data via the Iowa Environment Mesonet ☁️ ✈️
Stars: ✭ 38 (-51.9%)
Mutual labels:  weather, rstats, r-package
Gsodr
Global Surface Summary of the Day ('GSOD') Weather Data Client for R
Stars: ✭ 72 (-8.86%)
Mutual labels:  weather, rstats, r-package
getCRUCLdata
CRU CL v. 2.0 Climatology Client for R
Stars: ✭ 17 (-78.48%)
Mutual labels:  rstats, r-package, data-access
cablecuttr
An R wrapper for CanIStream.It API
Stars: ✭ 17 (-78.48%)
Mutual labels:  rstats, r-package
WorldWeather
The largest three-dimensional web-based interactive browser of satellite, weather, climate, and other time-aware geospatial data on the web, built upon NASA's revolutionary WorldWind technology.
Stars: ✭ 49 (-37.97%)
Mutual labels:  weather, nasa
climateR
An R 📦 for getting point and gridded climate data by AOI
Stars: ✭ 93 (+17.72%)
Mutual labels:  weather, rstats
Iheatmapr
Complex, interactive heatmaps in R
Stars: ✭ 242 (+206.33%)
Mutual labels:  rstats, r-package
aprs-weather-submit
Manually submit weather station information to the APRS-IS network.
Stars: ✭ 17 (-78.48%)
Mutual labels:  weather, weather-data
hereR
R package that provides an interface to the HERE REST APIs: Geocoder API, Routing API, Traffic API, Public Transit API and Destination Weather API. Locations and routes are returned as 'sf' objects.
Stars: ✭ 72 (-8.86%)
Mutual labels:  weather, rstats
api
Community discussion and documentation for the NWS API
Stars: ✭ 168 (+112.66%)
Mutual labels:  weather, weather-data
travis
⛔ ARCHIVED ⛔ Set Up 'Travis' for Testing and Deployment
Stars: ✭ 61 (-22.78%)
Mutual labels:  rstats, r-package
Polite
Be nice on the web
Stars: ✭ 253 (+220.25%)
Mutual labels:  rstats, r-package
inmetr
DEPRECATED A R-package to Import Historical Data from Brazilian Meteorological Stations
Stars: ✭ 18 (-77.22%)
Mutual labels:  weather-data, data-access
oai
OAI-PMH R client
Stars: ✭ 13 (-83.54%)
Mutual labels:  r-package, data-access
homepage
Custom Start/home page (multi LIVE search) with live animated weather and news ticker - written in HTML/JS. Minimal, self-hosted, and dope.
Stars: ✭ 35 (-55.7%)
Mutual labels:  weather, weather-data
Shinycssloaders
⌛ Add loading animations to a Shiny output while it's recalculating
Stars: ✭ 248 (+213.92%)
Mutual labels:  rstats, r-package
owmr
An R Interface to OpenWeatherMap
Stars: ✭ 24 (-69.62%)
Mutual labels:  weather, weather-data
Fulltext
Search across and get full text for OA & closed journals
Stars: ✭ 221 (+179.75%)
Mutual labels:  rstats, r-package
Elastic
R client for the Elasticsearch HTTP API
Stars: ✭ 227 (+187.34%)
Mutual labels:  rstats, r-package
dwdweather2
Python client to access weather data from Deutscher Wetterdienst (DWD), the federal meteorological service in Germany.
Stars: ✭ 68 (-13.92%)
Mutual labels:  weather, weather-data

nasapower: NASA POWER API Client

tic codecov DOI Project Status: Active – The project has reached a stable, usable state and is being actively developed. peer-review DOI CRAN

nasapower aims to make it quick and easy to automate downloading NASA-POWER global meteorology, surface solar energy and climatology data in your R session as a tidy data frame tibble object for analysis and use in modelling or other purposes. POWER (Prediction Of Worldwide Energy Resource) data are freely available for download with varying spatial resolutions dependent on the original data and with several temporal resolutions depending on the POWER parameter and community.

Note that the data are not static and may be replaced with improved data. Please see https://power.larc.nasa.gov/docs/services/ for detailed information in this regard.

Quick start

nasapower can easily be installed using the following code.

From CRAN

The stable version is available through CRAN.

install.packages("nasapower")

From GitHub for the version in-development

A development version is available through GitHub.

if (!require("remotes")) {
  install.packages("remotes")
}

remotes::install_github("ropensci/nasapower")

Example

Fetch daily “ag” community temperature, relative humidity and precipitation for January 1, 1985 for Kingsthorpe, Queensland, Australia.

library("nasapower")
daily_ag <- get_power(community = "ag",
                      lonlat = c(151.81, -27.48),
                      pars = c("RH2M", "T2M", "PRECTOTCORR"),
                      dates = "1985-01-01",
                      temporal_api = "daily"
                      )
daily_ag
## NASA/POWER CERES/MERRA2 Native Resolution Daily Data  
##  Dates (month/day/year): 01/01/1985 through 01/01/1985  
##  Location: Latitude  -27.48   Longitude 151.81  
##  Elevation from MERRA-2: Average for 0.5 x 0.625 degree lat/lon region = 442.77 meters 
##  Value for missing model data cannot be computed or out of model availability range: NA  
##  Parameter(s):  
##  
##  Parameters: 
##  RH2M            MERRA-2 Relative Humidity at 2 Meters (%) ;
##  T2M             MERRA-2 Temperature at 2 Meters (C) ;
##  PRECTOTCORR     MERRA-2 Precipitation Corrected (mm/day)  
##  
## # A tibble: 1 × 10
##     LON   LAT  YEAR    MM    DD   DOY YYYYMMDD    RH2M   T2M PRECTOTCORR
##   <dbl> <dbl> <dbl> <int> <int> <int> <date>     <dbl> <dbl>       <dbl>
## 1  152. -27.5  1985     1     1     1 1985-01-01  54.7  24.9         0.9

Documentation

More documentation is available in the vignette in your R session, vignette("nasapower") or available online, https://docs.ropensci.org/nasapower/.

Use of POWER Data

While nasapower does not redistribute the data or provide it in any way, we encourage users to follow the requests of the POWER Project Team.

When POWER data products are used in a publication, we request the following acknowledgement be included: “These data were obtained from the NASA Langley Research Center POWER Project funded through the NASA Earth Science Directorate Applied Science Program.”

Meta

  • Please report any issues or bugs.

  • License: MIT

  • To cite nasapower, please use the output from citation(package = "nasapower").

  • Please note that the nasapower project is released with a Contributor Code of Conduct. By participating in the nasapower project you agree to abide by its terms.

  • The U.S. Earth System Research Laboratory, Physical Science Division of the National Atmospheric & Oceanic Administration (NOAA) maintains a list of gridded climate data sets that provide different data and different resolutions https://psl.noaa.gov/data/gridded/.

References

https://power.larc.nasa.gov

https://power.larc.nasa.gov/docs/methodology/

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].