-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d893fb3
commit b96ce71
Showing
8 changed files
with
49 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,17 @@ | ||
## Added by Brian Blaylock | ||
## July 28, 2021 | ||
|
||
|
||
class navgem: | ||
def template(self): | ||
self.DESCRIPTION = 'Navy Global Environment Model' | ||
self.DESCRIPTION = "Navy Global Environment Model" | ||
self.DETAILS = { | ||
'NRL description': 'https://www.nrlmry.navy.mil/metoc/nogaps/navgem.html', | ||
"NRL description": "https://www.nrlmry.navy.mil/metoc/nogaps/navgem.html", | ||
} | ||
self.PRODUCTS = { | ||
'none': '', | ||
"none": "", | ||
} | ||
self.SOURCES = { | ||
'nomads': f'https://nomads.ncep.noaa.gov/pub/data/nccf/com/fnmoc/prod/navgem.{self.date:%Y%m%d}/navgem_{self.date:%Y%m%d%H}f{self.fxx:03d}.grib2', | ||
"nomads": f"https://nomads.ncep.noaa.gov/pub/data/nccf/com/fnmoc/prod/navgem.{self.date:%Y%m%d}/navgem_{self.date:%Y%m%d%H}f{self.fxx:03d}.grib2", | ||
} | ||
self.LOCALFILE = f"{self.get_remoteFileName}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,25 @@ | ||
## Added by Brian Blaylock | ||
## July 27, 2021 | ||
|
||
|
||
class nbm: | ||
def template(self): | ||
self.DESCRIPTION = 'National Blend of Models' | ||
self.DESCRIPTION = "National Blend of Models" | ||
self.DETAILS = { | ||
'NOMADS product description': 'https://www.nco.ncep.noaa.gov/pmb/products/blend/', | ||
'AWS Registry' : 'https://registry.opendata.aws/noaa-nbm/', | ||
'NWS National Blend of Models Home' : 'https://www.weather.gov/mdl/nbm_home', | ||
'MDL NBM Page': 'https://vlab.noaa.gov/web/mdl/nbm', | ||
"NOMADS product description": "https://www.nco.ncep.noaa.gov/pmb/products/blend/", | ||
"AWS Registry": "https://registry.opendata.aws/noaa-nbm/", | ||
"NWS National Blend of Models Home": "https://www.weather.gov/mdl/nbm_home", | ||
"MDL NBM Page": "https://vlab.noaa.gov/web/mdl/nbm", | ||
} | ||
self.PRODUCTS = { | ||
'ak': 'Alaska; 13-km resolution', | ||
'co': 'CONUS 13-km resolution', | ||
'gu': 'Guam 13-km resolution', | ||
'hi': 'Hawaii 13-km resolution', | ||
'pr': 'Puerto Rico 13-km resolution', | ||
"ak": "Alaska; 13-km resolution", | ||
"co": "CONUS 13-km resolution", | ||
"gu": "Guam 13-km resolution", | ||
"hi": "Hawaii 13-km resolution", | ||
"pr": "Puerto Rico 13-km resolution", | ||
} | ||
self.SOURCES = { | ||
'nomads': f'https://nomads.ncep.noaa.gov/pub/data/nccf/com/blend/prod/blend.{self.date:%Y%m%d/%H}/core/blend.t{self.date:%H}z.core.f{self.fxx:03d}.{self.product}.grib2', | ||
'aws': f'https://noaa-nbm-grib2-pds.s3.amazonaws.com/blend.{self.date:%Y%m%d/%H}/core/blend.t{self.date:%H}z.core.f{self.fxx:03d}.{self.product}.grib2', | ||
"nomads": f"https://nomads.ncep.noaa.gov/pub/data/nccf/com/blend/prod/blend.{self.date:%Y%m%d/%H}/core/blend.t{self.date:%H}z.core.f{self.fxx:03d}.{self.product}.grib2", | ||
"aws": f"https://noaa-nbm-grib2-pds.s3.amazonaws.com/blend.{self.date:%Y%m%d/%H}/core/blend.t{self.date:%H}z.core.f{self.fxx:03d}.{self.product}.grib2", | ||
} | ||
self.LOCALFILE = f"{self.get_remoteFileName}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters