Skip to content

Commit

Permalink
Added PyPi metrics
Browse files Browse the repository at this point in the history
  • Loading branch information
jusethCS committed Feb 19, 2024
1 parent 94f4208 commit 13fc61c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# MeteoSatPy
[![PyPI Latest Release](https://img.shields.io/pypi/v/meteosatpy.svg)](https://pypi.org/project/meteosatpy/)
[![PyPI Downloads](https://img.shields.io/pypi/dm/meteosatpy.svg?label=PyPI%20downloads)](https://pypi.org/project/meteosatpy/)

## What is it?
**MeteoSatPy** is a Python library designed for downloading and managing hydro-meteorological data sourced from satellites and global models. It offers users efficient access to near-real-time and historical weather conditions globally. With features for data acquisition, processing, and analysis. **MeteoSatPy** is a versatile tool for meteorological research, forecasting, and decision-making across various sectors.
Expand All @@ -23,7 +25,6 @@ pip install meteosatpy
- [netcdf4](https://unidata.github.io/netcdf4-python/): Reads and writes netCDF files compatible with older versions of the library.
- [h5netcdf](https://h5netcdf.org/): A Python interface for the netCDF4 file-format that reads and writes local or remote HDF5 files.


Prior to installing **MeteoSatPy** using PyPi, we recommend creating a new conda environment with dependencies:

```sh
Expand Down Expand Up @@ -61,7 +62,7 @@ ch.download(
# Download CMORPH data
cm = CMORPH()
cm.download(
date=dates[i],
date=date,
timestep="daily",
outpath=date.strftime("cmorph_%Y-%m-%d.tif")
)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
URL = 'https://github.com/jusethCS/meteosatpy'

LICENSE = 'MIT'
DESCRIPTION = 'Library designed for downloading and managing meteorological data sourced from satellites and global models'
DESCRIPTION = 'Library designed for downloading and managing meteorological data sourced from satellites and global models.'
LONG_DESCRIPTION = (HERE / "README.md").read_text(encoding='utf-8')
LONG_DESC_TYPE = "text/markdown"

Expand Down

0 comments on commit 13fc61c

Please sign in to comment.