Questions tagged [noaa]

National Oceanic and Atmospheric Administration - A US government agency which monitors and researches the oceans and atmosphere.

The National Oceanic and Atmospheric Administration (NOAA) is a US government agency that monitors and researches the oceans and atmosphere.

NOAA has a public API that you can use to fetch climate data for your project.


Useful links


Related tags

146 questions
0
votes
2 answers

How to query NOAA for historical daily temperature averages using rnoaa?

I'm trying to find the historical average temperature between a range of dates using NOAA data and comparing to the long term average temperatures. I'm using the rnoaa package and have hit a bit of a snag. For long term averages, I have been…
Sooji
  • 169
  • 3
  • 18
0
votes
0 answers

How to fix 'SAAJ0537: Invalid Content-Type' in Java

I'm working on a project that needs to pull current and historical weather data, and so far, I've been attempting to use the library https://github.com/sudohippie/weather-noaa, modifying it to work with Java 8 (as the last commit was in 2013), but I…
Z. Urq.
  • 33
  • 1
  • 6
0
votes
1 answer

Using NOAA charts with Google Maps

On this page http://tileservice.charts.noaa.gov/tileset.html#13003_1-gmaps-code it has some sample code to use. It uses this URL as a script source: maps.google.com/maps/api/js?client=gme-noaa&channel=NOS.OCS.MCD.ChartTileService Google…
Alex
  • 132
  • 9
0
votes
1 answer

NOAA GFS Grib Files do not cover a whole day

NOAA offers from this link grib files about GFS Forecasts, containing values of forecasted weather attributes. Each file a 3-hour output timestep. Every day is composed of 4 grib files, each one having one of the following time reference; 00:00,…
Nicholas Kou
  • 173
  • 2
  • 13
0
votes
1 answer

Nested JSON in R, can't unpack weather data

I am trying to unpack weather alerts from NOAA. https://api.weather.gov/alerts library(jsonlite) #API string = "https://api.weather.gov/alerts" #import json and flatten json_data <- fromJSON(string,flatten=TRUE) #get names names(json_data) [1]…
macworthy
  • 95
  • 8
0
votes
2 answers

Converting Native NetCDF to Gridded NetCDF3

Attempting to access raw NEXRAD data in native NetCDF format from the NOAA servers (i.e. thredds-aws, Amazon, etc.) and convert them to a gridded NetCDF file for post-processing automatically. NOAA's Weather and Climate Toolkit is able to export a…
0
votes
1 answer

Major issue overlaying GeoTIF in Mapbox GL JS

I have some general questions to understand what has become a very serious issue in my project. I hope that I might come to some sort of understanding on what is happening here, as I am perplexed well over 2 months into this issue. Let me just dive…
David
  • 605
  • 2
  • 14
  • 44
0
votes
1 answer

historical weather data from python noaa_sdk api and generator?

I am trying to get historical weather data using the python noaa_sdk for the noaa api. I am using the following code from an example: from noaa_sdk import noaa n = noaa.NOAA() observations = n.get_observations('08205','US', start='2017-07-04',…
0
votes
1 answer

How can I convert an audio (.wav) to satellite image

I need to create a software can capture sound (from NOAA Satellite with RTL-SDR). The problem is not capture the sound, the problem is how I converted the audio or waves into an image. I read many things, Fourier Fast Transformed, Hilbert…
0
votes
1 answer

to get hourly and six hours based weather from NOAA

I am trying to get the weather data from NOAA and parse it to get the current temperature, humidity, and other values. I am trying to get the JSON data from its website, which uses the latitude, and longitude values to get the weather data of…
Gkush
  • 45
  • 8
0
votes
0 answers

Nearest weather station to each zip code in large dataset?

I'm looking for an efficient way to link each record in a large dataset to its nearest NOAA weather station. The dataset contains 9-digit zip codes, and NOAA weather stations have lat long info. Anyone have tips on the best way to do this?…
Swatso
  • 1
  • 2
0
votes
1 answer

python and pandas for annual hourly averages over many years for NOAA rainfall data

I am new to stack overflow and pandas, but I appreciate this platform and have an interesting question: I have a pandas data frame that takes the NOAA rainfall data (in csv format for the hours that have rainfall, various years yet sequential, some…
Matt D
  • 1
  • 2
0
votes
1 answer

max Air temp for a given date NOAA

What is the dataset id to get the maxair temp? this is my url https://www.ncdc.noaa.gov/cdo-web/api/v2/data?datasetid=GHCND&datatypeid=temp&locationid=ZIP:90078&startdate=2017-05-01&enddate=2017-05-01" my response is an empty dataset {} I…
liquidacid
  • 108
  • 1
  • 9
0
votes
0 answers

How to set headers in HTTPS get request?

I'm using npm package https by hardus to make get requests to NOAA. Documentation on NOAA is poor and on the https package is non-existent, and I am having trouble setting a header. Here is my code for my requests, https.get(url, function(res)…
notphilphil
  • 385
  • 5
  • 16
0
votes
1 answer

R-script reading fixed width file of large data from NOAA FTP only grabbing partial table

Hello new to R so I apologize in advance if this is a simple fix. I am attempting to grab precipitation data from NOAA's database once a day, this function was working perfectly for a few months but NOAA increased the size of the tables and now I am…
nick
  • 51
  • 5