Skip to content

API for Dummy Datasets

Types of Dummy Datasets

NASAPrecipitation.IMERGDummy Type
julia
IMERGDummy{ST<:AbstractString} <: IMERGDataset

Object containing information on path information for IMERG datasets, with the following fields:

  • rootpath : path of folder containing all GPM IMERG datasets

  • maskpath : path of folder containing IMERG LandSea mask data

source
NASAPrecipitation.TRMMDummy Type
julia
TRMMDummy{ST<:AbstractString} <: TRMMDataset

Object containing information on path information for TRMM datasets, with the following fields:

  • rootpath : path of folder containing all GPM IMERG datasets

  • maskpath : path of folder containing IMERG LandSea mask data

source

Creating a Dummy Dataset

NASAPrecipitation.IMERGDummy Type
julia
IMERGDummy(
    ST = String;
    path  :: AbstractString = homedir(),
) -> npd :: IMERGDummy

Creates a IMERGDummy dataset npd that contains information on the data and mask paths

Keyword Arguments

  • path : The directory in which the folder imergmask will be created for the IMERG Land-Sea mask
source
NASAPrecipitation.TRMMDummy Type
julia
TRMMDummy(
    ST = String;
    path  :: AbstractString = homedir(),
) -> npd :: IMERGDummy

Creates a TRMMDummy dataset npd that contains information on the data and mask paths

Keyword Arguments

  • path : The directory in which the folder trmmmask will be created for the TRMM Land-Sea mask
source