ftp-himawari8-hsd
Python package to ftp download of himawari8 real-time full disk satellite image files from JAXA server for the specified date range(Himawari standard data will be provided only for the latest 30 days).
Pre-requisites:
User Registration
- Apply for a user account by clicking the user registration button on top of the website https://www.eorc.jaxa.jp/ptree/index_j.html.
- Enter the user information according the procedure described. Application acceptance email will be sent from the P-Tree secretariat.
- Download the python package from pip.
- pip install ftp-himawari8-hsd
Software needed
- Install Anaconda framework(Opensource) from website https://www.anaconda.com/products/individual to your local machine.
- Install Python(version >= 3.7) from website https://www.python.org/downloads/
- After successfully installing Python, Create virtual or conda environment and install the package from pypi
Python Dependencies:
ftp_himawari8_hsd depends on the python packages as listed in requirements.txt file of this repository. They will automatically be installed with the pip install.
Usage
Downloading Satellite Imagery from JAXA server
Execute ftp_himawari8_hsd
Example:
> ftp_himawari8_hsd
import ftp_himawari8_hsd as ftp
hsd=ftp.downloader()
hsd.start_date="2021/07/25 00:00" By default it will retrive the last 10 minutes files
hsd.end_date="2021/07/25 00:00"
hsd.username="foo" Enter your username here
hsd.password="bar" Enter your password here
hsd.download_path="C:/ftp" Enter your download path here
hsd.MAX_WORKERS=8 Enter the number of workers to download here
hsd.run()
By default it will download files from the last 10 minutes.
Necessary inputs are username and password for the function to work
You can use ftp.downloader().help() to get this information printed.
This will download the full-disk Himawari8 Standard Data as zipped files (.bz2) and then automatically unzipped (.DAT).The general HSD file name format is: HS_aaa_yyyymmdd_hhnn_Bbb_FLDK_Rjj_Skkll.DAT. Letters indicate different information. "HS" means Himawari Standard Data. "aaa" means satellite name and can be H08 (Himawari-8) or H09(Himawati-9). "hhnn" indicates hour and minute (every 10 minute). "bb" indicates band number from 01 to 16. "FLDK" means full-disk. "jj" indicates the spatial resolution in which 05 means 0.5 km, 10 means 1 km and 20 means 2 km."kkll" indicates information on the segment division of HSD. "kk" means segment number from 01 to ll. "ll" means total number of segments ranges between 01 and 99.
Examples of download period
Date and Time should be in UTC
- download for given range of timestamps. Output file timestamps are every 10-minute timestamps from "2021/07/25 00:00" to "2021/07/25 23:50".
Enter start datetime yyyy/mm/dd hh:mm: 2021/07/25 00:00
Enter end datetime yyyy/mm/dd hh:mm : 2021/07/25 23:50
- download for given time range of current date. Output file timestamps are current day's "01:00", "01:10" and "01:20".
Enter start datetime yyyy/mm/dd hh:mm: 01:00
Enter end datetime yyyy/mm/dd hh:mm : 01:20
- download for given range of dates. Output file timestamps are every 10-minute timestamps from "2021/07/25 00:00" to "2021/07/25 23:50".
Enter start datetime yyyy/mm/dd hh:mm: 2021/7/25
Enter end datetime yyyy/mm/dd hh:mm : 2021/7/25
How to use downloaded Satellite Imagery
Refer to 'Processing_Satellite_Imagery.ipynb' file of this repository for how to open the downloaded files and make use of it. Detailed usage include but not limited to open, process, crop, save Satellite Imagery and generate Composites.
Download atleast 10 minutes (e.g. 2:00 to 2:10) data of a date to work on this processing.
Example 1: AHI Himawari8 Full Disk image for Band 1
Example 2: Generate composite "airmass". To generate Satpy Composites needs all bands B01-B16 for at least 10 minutes timeframe of a date.