Skip to content

Commit

Permalink
Add further notes on issues
Browse files Browse the repository at this point in the history
  • Loading branch information
gutzbenj committed Apr 27, 2021
1 parent 31ff385 commit 9e1deab
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 5 deletions.
25 changes: 21 additions & 4 deletions README.rst
Expand Up @@ -217,9 +217,11 @@ Acquisition of historical data for specific stations using ``wetterdienst`` as l
>>> import pandas as pd
>>> pd.set_option('max_columns', 8)
>>> from wetterdienst import Wetterdienst
>>> API = Wetterdienst("dwd", "observation")
>>> request = API(
>>> from wetterdienst.dwd.observation import DwdObservationRequest
# Alternatively, though without argument/type hinting
# >>> from wetterdienst import Wetterdienst
# >>> API = Wetterdienst("dwd", "observation")
>>> request = DwdObservationRequest(
... parameter=["climate_summary"],
... resolution="daily",
... start_date="1990-01-01", # if not given timezone defaulted to UTC
Expand Down Expand Up @@ -390,7 +392,10 @@ Development
Known Issues
************

Under Mac ARM64 you need to install **pandas, numpy and scipy** as follows before continuing with the regular setup:
MAC ARM64 (M1)
==============

You need to install **pandas, numpy and scipy** as follows before continuing with the regular setup:

.. code-block:: bash
Expand All @@ -410,6 +415,18 @@ Further additional libraries are affected and have to be installed in a similar
Furthermore as h5py is currently bound to versions of numpy that conflict with the ARM64 ready libraries, h5py itself as
well as wradlib are not available for users with that architecture!

LINUX ARM (Raspberry Pi)
========================

Running wetterdienst on Raspberry Pi, you need to install **numpy**
and **lxml** prior to installing wetterdienst running the following
lines:

.. code-block:: bash
sudo apt-get install libatlas-base-dev
sudo apt-get install python3-lxml
Important Links
***************

Expand Down
2 changes: 1 addition & 1 deletion wetterdienst/__init__.py
Expand Up @@ -9,7 +9,7 @@
from wetterdienst.metadata.period import Period
from wetterdienst.metadata.provider import Provider
from wetterdienst.metadata.resolution import Resolution
from wetterdienst.provider import dwd # remove at some point
from wetterdienst.provider import dwd, eccc, eumetnet

# Single-sourcing the package version
# https://cjolowicz.github.io/posts/hypermodern-python-06-ci-cd/
Expand Down

0 comments on commit 9e1deab

Please sign in to comment.