Getting Started
Install Python
If you don't have a Python environment, install Python from the official site. The API was generated and checked in Python 3.8.10 and above.
Install QGIS (optional)
If you would like to use the API in QGIS, install QGIS from the official site. The API was checked in QGIS 3.10.6.
How to use JAXA Earth API for Python
With install
Case 1: Install via PyPI (recommended)
Case 2: Download and install
Download the package and install:
Module packages and dependent packages the API depends on are also installed:
matplotlibrequests
Verify installation
Launch Python and check the API is installed correctly:
If no error occurs, you have installed the API module correctly.
Without install
Unzip the package and add the path to your Python scripts:
Minimal usage example
from jaxa.earth import je
# Get an image using all default parameters
data = je.ImageCollection(ssl_verify=True) \
.filter_date() \
.filter_resolution() \
.filter_bounds() \
.select() \
.get_images()
# Show the image
img = je.ImageProcess(data) \
.show_images()
Note
If you encounter an SSL error, set ssl_verify=False.