GOES

Documentation for GOES.

GOES.GOESDatasetType
GOESDataset{ST<:AbstractString, DT<:TimeType}

Specifies an GOES (Geostationary Operational Environmental Satellite) dataset with the following fields:

  • stream - The GOES datastream name (e.g., "sgpmetE13.b1").
  • start - The start date for the data query.
  • stop - The end date for the data query.
  • path - The local directory path where data will be stored.
source
GOES.GOESDatasetMethod
GOESDataset(; stream :: ST,
    start  :: DT,
    stop   :: DT,
    path   :: ST = armpath(homedir())
) where {ST <: AbstractString, DT<:TimeType} -> GOESDataset{ST,DT}

Create an GOESDataset specification for querying and downloading GOES data.

Keyword Arguments

  • stream - The GOES datastream name (e.g., "sgpmetE13.b1").
  • start - The start date for the data query.
  • stop - The end date for the data query.
  • path - The root directory for storing data, default is homedir().
source