-
Notifications
You must be signed in to change notification settings - Fork 9
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
78eb725
commit 8465c27
Showing
5 changed files
with
42 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,6 +43,6 @@ | |
__author__ = "Paulo Alexandre S. Mello" | ||
__email__ = "[email protected]" | ||
__date__ = "2018-03-22" | ||
__version__ = '0.1' | ||
__version__ = '0.2' | ||
|
||
utils.bannerDisplay(__version__) |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
from goespy.Downloader import ABI_Downloader | ||
from goespy.checkData import createPathGoesData | ||
import datetime as dt | ||
utcDateTime = dt.datetime.utcnow() | ||
|
||
year = utcDateTime.strftime("%Y") | ||
|
||
month = utcDateTime.strftime("%m") | ||
|
||
day = utcDateTime.strftime("%d") | ||
|
||
hour = utcDateTime.strftime("%H") | ||
|
||
channel = ["C13"] | ||
hour = '00' | ||
product = 'ABI-L2-CMIPF' | ||
|
||
Bucket = 'noaa-goes16' | ||
Abi = ABI_Downloader('noaa-goes16',year,month,day,hour,product,channel) |
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