149 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
2
votes
0
answers
72
views
How to optimize NetCDF files and dask for processing long-term climataological indices with xclim (ex. SPI using 30-day rolling window)?
I am trying to analyze the 30 day standardized precipitation index for a multi-state range of the southeastern US for the year 2016. I'm using xclim to process a direct pull of gridded daily ...
0
votes
0
answers
239
views
Download NOAA's Local Climatological Data through an API
I want to download data from the Local Climatological Database using an API, ideally through R so I can select data from many stations. However, figuring out how to format the request would work as ...
-4
votes
1
answer
155
views
How to Decode the NOAA Weather JSON into a Swift Struct
When I request data from api.weather.gov I get the following JSON (extract, only up to the first period or hour:
{
"@context": [
"https://geojson.org/geojson-ld/geojson-context.jsonld&...
0
votes
1
answer
118
views
Trying to access dataset "ncdcOisst21Agg_LonPM180" using erddapy gives error "Not Found: Currently unknown datasetID=ncdcOisst21Agg_LonPM180"
I'm trying to use the erddapy package to retrieve data from the ERDDAP data servers, and this is the code that I'm trying to execute in jupyter notebook:
from erddapy import ERDDAP
import pandas as pd
...
1
vote
1
answer
642
views
How to access National Weather Service precipitation data for the past 7 days using an API in R?
I'm trying to develop a Shiny app that shows forecasted and accumulated precipitation data for the upcoming and past 7 days from the day you view the application. I was able to successfully use the ...
0
votes
0
answers
173
views
How can I connect to NWWS-OI in Python?
I am trying to build a program that interfaces with the NWWS Open Interface, or NWWS-OI for short. This is a service that provides NWS products over XMPP. I have an account (you have to request it), ...
0
votes
1
answer
214
views
Trouble reading LAZ lidar files in R download from NOAA DAV
I am attempting to download the raw point cloud of a lidar acquisition from NOAA's Office of Coastal Management's Lidar database using R. The data download without error, but when I read in the laz ...
1
vote
1
answer
196
views
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 ...
0
votes
2
answers
1k
views
How do I convert the projection of a netcdf file to a regular grid of lons and lats?
I need to make an interpolation object where I enter a given longitude and latitude and the object returns the nearest ocean surface current value. The dataset I am using is . You can download the ...
1
vote
1
answer
316
views
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....
0
votes
0
answers
1k
views
What does a .gbl file contain?
I have to work in R with .gbl files. So far I'm using NOAA .gbl files, but I'm looking to generate my own.
I have been working with R openair and purr libraries. I know that I can use purr::walk() ...
0
votes
1
answer
174
views
web scraping for sunrise and sunset data using National oceanic and atmospheric administration
I want to scrape data from NOAA (https://gml.noaa.gov/grad/solcalc/). The data I want to get is sunrise and sunset timings for various counties of the US in the last 3 years. I have the coordinates ...
0
votes
1
answer
260
views
How can I copy/move multiple objects from a S3 bucket within specified byte-ranges to another bucket?
Hey I am trying to copy multiple objects(200,000+) from a public weather forecast bucket (NOAA GFS) to my private S3 bucket.
Each forecast file has its own index file that contains byte-ranges for ...
1
vote
0
answers
173
views
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-...
0
votes
0
answers
245
views
Convert NOAA JSON value to data frame in python
From NOAA API, I can get Boston hourly weather forecast information via JSON file. Here is the link: https://api.weather.gov/gridpoints/BOX/70,76
(This JSON file is too long to present comprehensively ...