GOES AWS

pansat.download.providers.goes_aws

This module contains a data provider for data from currently operational

GOES series satellites (GOES 16 and 17), which is available from Amazon AWS cloud storage.

Reference

class pansat.download.providers.goes_aws.GOESAWSProvider(product)

Dataprovider class for product available from NOAA GOES16 bucket on Amazon AWS.

__init__(product)

Create new NOAA GOES16 provider.

Parameters

product – The product to download.

download_file(filename, destination)

Download file from data provider.

Parameters
  • filename (str) – The name of the file to download.

  • destination (str or pathlib.Path) – path to directory where the downloaded files should be stored.

classmethod get_available_products()

Return the names of products available from this data provider.

Returns

A list of strings containing the names of the products that can be downloaded from this data provider.

get_files_by_day(year, day)

Return list of available files for a given day of a year.

Parameters
  • year (int) – The year for which to look up the files.

  • day (int) – The Julian day for which to look up the files.

Returns

A list of strings containing the filename that are available for the given day.