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
2
votes
2 answers

perl Data::Dumper to extract key values

I have some perl code which I've written to get weather data/alerts from NOAA. My code is pretty simple: use Weather::NOAA::Alert; use Data::Dumper; $alert = Weather::NOAA::Alert->new(['TXC301']); $events =…
Joseph
  • 23
  • 3
2
votes
1 answer

Using NOAA API to find current ocean surface temperature(SST)

I'm working on a project where I need to find the current ocean surface temperature(SST). I've come across a few APIs that seem to do this. The API provided by NOAA seems to be the correct direction, THIS SITE successfully accesses the data I need.…
2
votes
1 answer

Problem using NSXMLParser with NOAA data on iPhone

Can anyone help me see why NSXMLParser is not causing these methods parser:didStartElement:namespaceURI:qualifiedName:attributes: parser:didEndElement:namespaceURI:qualifiedName:attributes: to fire for the part of the following data:
Amagrammer
  • 6,385
  • 3
  • 28
  • 30
2
votes
0 answers

Plotting NOAA data with Basemap

I'm very new to Python but have been learning lots over the last few months. I'm trying to plot NOAA swell height data from a grib2 file located here: ftp://ftpprd.ncep.noaa.gov/pub/data/nccf/com/wave/prod/wave.20140122/nww3.t06z.grib.grib2 I use…
Al Short
  • 21
  • 4
2
votes
1 answer

NOAA Weather API on Android

I have used the system services to retrieve the latitude and longitude of the user. With this data I would like to send it to the NOAA National Weather Service API and retrieve specific weather details. I understand API's are interfaces for…
user3047494
  • 429
  • 1
  • 6
  • 14
2
votes
1 answer

NOAA hourly data with python

Are there any python programs which will grab detailed data from NOAA, particularly the hourly data and the 7-day day/night forecasts? I found python-weather-api, python-weather, and python-noaa. However they are either no longer supported or lack…
tabx
  • 49
  • 1
  • 6
2
votes
4 answers

How to get the 'current observation data' from the NDFD (NOAA, NWS) REST service?

I'm trying to use the NDFD (National Digital Forecast Database) to get current temperature and relative humidity given a Lat and Long using their REST based service. The issue at hand: I can't match the 'current observation data' WITH the 'results'…
killingmichael
  • 186
  • 2
  • 6
1
vote
1 answer

How do I display a NOAA generated XML file on a 'blogger' website

I want to display the following xml file on my 'blogger' website. I can query the data I want from the NOAA but I am stuck on how to write a script to transform it to html. Here is the xml file generated form the…
Darren
  • 11
  • 2
1
vote
1 answer

NOAA API: can there be offshore sites with sea level depth greater than 0?

I have a feeling there's a quick and easy answer to this but, not being an expert on this sort of thing, I thought it worth asking. I am trying to retrieve sea level depth data using the marmap package in R, which is a wrapper for the NOAA API. I…
Abed
  • 183
  • 7
1
vote
1 answer

Loading A Current NOAA GOES-18 Satellite Image on a Page in Squarespace

I need to embed the current NOAA GOES-18 Weather Satellite Image onto a web page on the Squarespace platform. Here is the web page at NOAA where they serve the images for Alaska: https://www.star.nesdis.noaa.gov/goes/sector.php?sat=G18§or=cak On…
GKTRK
  • 13
  • 4
1
vote
0 answers

Having trouble downloading county-level NOAA data in R

I'm trying to download NOAA data (GHCND dataset: https://www.ncei.noaa.gov/cdo-web/datasets) in R by county FIPS code using the rnoaa package. I feel like it should be possible to download county-level climate data…
1
vote
1 answer

Creating bathymetric lines from getNOAA.bathy and add them to ggplot: how do I homogenize the bathymetric lines?

I have created maps using the ggplot function on R. I then wanted to add bathymetric lines. I so downloaded them from the NOAA portal using the code lines: library(marmap) bat <- getNOAA.bathy(-11.99792 ,-5.002083 ,35.00208,43.99792,res=4,…
1
vote
0 answers

Replacement for NOAA Seamless Raster Navigational Chart Services?

NOAA stopped their Seamless Raster Navigational Chart Services URL this year. I was using it in a simple leaflet.js project, and need a replacement or update. Going through the various documents on using their new vector data gets me lost very…
user949300
  • 15,364
  • 7
  • 35
  • 66
1
vote
1 answer

Help figuring out nested arrays from SOAP response?

I am writing a little web app for ocean tides using PHP. I am having problems figuring out how to access the array returned (which PHP converted to a stdObject). The WSDL file is located at:…
Jeremy Harris
  • 24,318
  • 13
  • 79
  • 133
1
vote
1 answer

How to create an time series in R for the .data format?

I´m having some difficulties to read and create an time series objects in R for this datasets: SOI: https://psl.noaa.gov/data/correlation/soi.data ONI: https://psl.noaa.gov/data/correlation/oni.data By seen the data we have in the first column the…
1 2
3
9 10