pub enum Grib2AtmosGFSProduct {
Pgrb20p25,
Pgrb20p50,
Pgrb21p00,
Pgrb2b0p25,
Pgrb2b0p50,
Pgrb2b1p00,
Pgrb2full0p50,
Sfluxgrb,
Goesimpgrb20p25,
Other(String),
}Expand description
GFS ATMOS products available for download
pgrb2.0p25- common fields, 0.25 degree resolution Study Variables herepgrb2.0p50- common fields, 0.50 degree resolution Study Variables herepgrb2.1p00- common fields, 1.00 degree resolution Study Variables herepgrb2b.0p25- uncommon fields, 0.25 degree resolution Study Variables herepgrb2b.0p50- uncommon fields, 0.50 degree resolution Study Variables herepgrb2b.1p00- uncommon fields, 1.00 degree resolution Study Variables herepgrb2full.0p50- combined grids of 0.50 resolution Study Variables heresfluxgrb- surface flux fields, T1534 Semi-Lagrangian grid Study Variables heregoesimpgrb2.0p25- 0.50 degree resolution for GOES-IMP Study Variables here
Variants§
Pgrb20p25
pgrb2.0p25 - common fields, 0.25 degree resolution Study Variables here
Pgrb20p50
pgrb2.0p50- common fields, 0.50 degree resolution Study Variables here
Pgrb21p00
pgrb2.1p00- common fields, 1.00 degree resolution Study Variables here
Pgrb2b0p25
pgrb2b.0p25- uncommon fields, 0.25 degree resolution Study Variables here
Pgrb2b0p50
pgrb2b.0p50- uncommon fields, 0.50 degree resolution Study Variables here
Pgrb2b1p00
pgrb2b.1p00- uncommon fields, 1.00 degree resolution Study Variables here
Pgrb2full0p50
pgrb2full.0p50- combined grids of 0.50 resolution Study Variables here
Sfluxgrb
sfluxgrb- surface flux fields, T1534 Semi-Lagrangian grid Study Variables here
Goesimpgrb20p25
goesimpgrb2.0p25- 0.50 degree resolution for GOES-IMP Study Variables here
Other(String)
- User defined product
Trait Implementations§
Source§impl Clone for Grib2AtmosGFSProduct
impl Clone for Grib2AtmosGFSProduct
Source§fn clone(&self) -> Grib2AtmosGFSProduct
fn clone(&self) -> Grib2AtmosGFSProduct
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Grib2AtmosGFSProduct
impl Debug for Grib2AtmosGFSProduct
Source§impl From<&str> for Grib2AtmosGFSProduct
impl From<&str> for Grib2AtmosGFSProduct
Source§impl From<Grib2AtmosGFSProduct> for String
impl From<Grib2AtmosGFSProduct> for String
Source§fn from(value: Grib2AtmosGFSProduct) -> Self
fn from(value: Grib2AtmosGFSProduct) -> Self
Converts to this type from the input type.
Source§impl PartialEq for Grib2AtmosGFSProduct
impl PartialEq for Grib2AtmosGFSProduct
impl Eq for Grib2AtmosGFSProduct
impl StructuralPartialEq for Grib2AtmosGFSProduct
Auto Trait Implementations§
impl Freeze for Grib2AtmosGFSProduct
impl RefUnwindSafe for Grib2AtmosGFSProduct
impl Send for Grib2AtmosGFSProduct
impl Sync for Grib2AtmosGFSProduct
impl Unpin for Grib2AtmosGFSProduct
impl UnwindSafe for Grib2AtmosGFSProduct
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more