Skip to content

API for TRMM Datasets

Types of TRMM Datasets

NASAPrecipitation.TRMM3Hourly Type
julia
TRMM3Hourly{ST<:AbstractString, DT<:TimeType} <: TRMMDataset

Object containing information on 3-Hourly TRMM datasets to be downloaded

source
NASAPrecipitation.TRMMDaily Type
julia
TRMMDaily{ST<:AbstractString, DT<:TimeType} <: TRMMDataset

Object containing information on Daily TRMM datasets to be downloaded

source
NASAPrecipitation.TRMMMonthly Type
julia
TRMMMonthly{ST<:AbstractString, DT<:TimeType} <: TRMMDataset

Object containing information on Monthly TRMM datasets to be downloaded

source

Creating TRMM Sub-Daily Datasets

NASAPrecipitation.TRMM3HourlyNRT Function
julia
TRMM3HourlyNRT(
    ST = String,
    DT = Date;
    start :: TimeType,
    stop  :: TimeType,
    path  :: AbstractString = homedir(),
) -> npd :: TRMM3Hourly{ST,DT}

Creates a TRMM3Hourly dataset npd to retrieve datasets from the Near Real-Time runs for 3-Hourly output

Keyword Arguments

  • start : Date at which download / analysis of the dataset begins

  • stop : Date at which download / analysis of the dataset ends

  • path : The directory in which the folder trmm3hourlynrt will be created for data downloads, storage and analysis, default is the home directoy called by homedir()

The following fields in npd will be fixed as below:

source
NASAPrecipitation.TRMM3Hourly Type
julia
TRMM3Hourly(
    ST = String,
    DT = Date;
    start :: TimeType,
    stop  :: TimeType,
    path  :: AbstractString = homedir(),
) -> npd :: TRMM3Hourly{ST,DT}

Creates a TRMM3Hourly dataset npd to retrieve datasets from the Final post-processing runs for 3-Hourly output

Keyword Arguments

  • start : Date at which download / analysis of the dataset begins

  • stop : Date at which download / analysis of the dataset ends

  • path : The directory in which the folder trmm3hourly will be created for data downloads, storage and analysis, default is the home directoy called by homedir()

The following fields in npd will be fixed as below:

source

Creating TRMM Daily Datasets

NASAPrecipitation.TRMMDailyNRT Function
julia
TRMMDailyNRT(
    ST = String,
    DT = Date;
    start :: TimeType,
    stop  :: TimeType,
    path  :: AbstractString = homedir(),
) -> npd :: TRMMDaily{ST,DT}

Creates a TRMMDaily dataset npd to retrieve datasets from the Near Real-Time processing runs for Daily output

Keyword Arguments

  • start : Date at which download / analysis of the dataset begins

  • stop : Date at which download / analysis of the dataset ends

  • path : The directory in which the folder trmmdailynrt will be created for data downloads, storage and analysis, default is the home directoy called by homedir()

The following fields in npd will be fixed as below:

source
NASAPrecipitation.TRMMDaily Type
julia
TRMMDaily(
    ST = String,
    DT = Date;
    start :: TimeType,
    stop  :: TimeType,
    path  :: AbstractString = homedir(),
) -> npd :: TRMMDaily{ST,DT}

Creates a TRMMDaily dataset npd to retrieve datasets from the Final post-processing runs for Daily output

Keyword Arguments

  • start : Date at which download / analysis of the dataset begins

  • stop : Date at which download / analysis of the dataset ends

  • path : The directory in which the folder trmmdaily will be created for data downloads, storage and analysis, default is the home directoy called by homedir()

The following fields in npd will be fixed as below:

source

Creating TRMM Monthly Datasets

NASAPrecipitation.TRMMMonthly Type
julia
TRMMMonthly(
    ST = String,
    DT = Date;
    start :: TimeType,
    stop  :: TimeType,
    path  :: AbstractString = homedir(),
) -> npd :: TRMMMonthly{ST,DT}

Creates a TRMMMonthly dataset npd to retrieve datasets from the Final post-processing runs for Monthly output

Keyword Arguments

  • start : Date at which download / analysis of the dataset begins

  • stop : Date at which download / analysis of the dataset ends

  • path : The directory in which the folder trmmmonthly will be created for data downloads, storage and analysis, default is the home directoy called by homedir()

The following fields in npd will be fixed as below:

source