Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ryosukedtomita/satelite-dl
Using python3 beautifulsoup, download satelite-images.
https://github.com/ryosukedtomita/satelite-dl
python3 satelite-images scraping
Last synced: about 2 months ago
JSON representation
Using python3 beautifulsoup, download satelite-images.
- Host: GitHub
- URL: https://github.com/ryosukedtomita/satelite-dl
- Owner: RyosukeDTomita
- License: mit
- Created: 2021-11-02T05:14:06.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-03-14T13:22:44.000Z (10 months ago)
- Last Synced: 2024-05-12T05:52:26.055Z (8 months ago)
- Topics: python3, satelite-images, scraping
- Language: Python
- Homepage:
- Size: 205 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# INDEX
- [ABOUT](#ABOUT)
- [ENVIRONMENT](#ABOUT)
- [INSTALATION](#INSTALATION)
- [HOWTOUSE](#HOWTOUSE)# ABOUT
- Download satelite data picture from [高知大学気象情報wiki](http://weather.is.kochi-u.ac.jp/sat/ALL/)
- SSSSYYMMDDHHCCC.pgm.gz: SSSS ... satelitename, YY ... 年(下2桁), MM ... month, DD ... day, HH ... hour(GMT), CCC ... [channel](https://www.data.jma.go.jp/mscweb/ja/info/spsg_ahi.html)![sample](sample/test.png)
# ENVIRONMENT
I used the following environment.
- Python3.8
- Ubuntu 20.04 LTS or MacOS CatalinaI think these program can run in windows.But, I didn't test it.
# INSTALATION
## build from source cord.
```shell
git clone https://github.com/RyosukeDTomita/satelite-dl
cd satelite-dl
python3 setup.py install
```## build from tar.gz
```shell
wget https://github.com/RyosukeDTomita/satelite-dl/blob/master/dist/satelite-dl-0.0.1.tar.gz
pip install satelite-dl-0.0.1.tar.gz
```## check instlation is sucess
```
pip list | grep satelite-dl
satelite-dl 0.0.1
```# HOWTOUSE
## run from source cord
- default output dir is dirname(__file__)```shell
python3 -m satelitedl --date 19990101 -o # daily data
python3 -m satelitedl --date 199901 -o # monthly data
python3 -m satelitedl --date 1999 -o # yearly data
```## run from builded cord (see [INSTALATION](#INSTALATION))
- Need to install.
- default output dir is dirname(__file__)```shell
satelite-dl --date 19990101 -o
```## expand file
```shell
gunzip 2020/12/*/
```