-
-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add coverage and licence information
Fix cli and service
- Loading branch information
Showing
14 changed files
with
88 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,16 @@ | ||
ECCC (Environment and Climate Change Canada) | ||
******************************************** | ||
|
||
- Historical Weather Observations | ||
- Historical (last ~180 years) | ||
- Hourly, daily, monthly, (annual) resolution | ||
- Time series of stations in Canada | ||
|
||
.. ipython:: python | ||
from wetterdienst.provider.eccc.observation import EcccObservationRequest | ||
observations_meta = EcccObservationRequest.discover(flatten=False) | ||
# Selection of daily historical data | ||
print(observations_meta) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,28 @@ | ||
ECCC (Environment and Climate Change Canada) | ||
******************************************** | ||
|
||
The licence for the use of ECCC data is given at | ||
|
||
https://climate.weather.gc.ca/prods_servs/attachment1_e.html | ||
|
||
Specifically we want to quote and therewith highlight two passages from ECCC: | ||
|
||
- REDISTRIBUTION RESTRICTIONS | ||
"You are authorized to further distribute the data or software, including any portion | ||
of it, contained in this product under the following conditions only. No fee will be | ||
charged explicitly for this Environment and Climate Change Canada product to any party | ||
to whom it is distributed. (Charges for value-added services are permitted.). In | ||
consideration of the licence you are herein granted, you have the obligation to | ||
acknowledge the source of the Environment and Climate Change Canada Data with the | ||
following layout or something similar: based on Environment and Climate Change Canada | ||
data. Redistribution must occur so that any other party must agree to the same | ||
redistribution restrictions before use of the redistributed product is allowed." | ||
|
||
- NO WARRANTIES | ||
"Environment and Climate Change Canada does not warrant the quality, | ||
accuracy, or completeness of any information or data. Such information and data is | ||
provided "AS IS" without warranty or condition of any nature. Environment and Climate | ||
Change Canada disclaims all other warranties, expressed or implied, including but not | ||
limited to implied warranties of merchantability and fitness for a particular purpose, | ||
with respect to the software, the data retrieved from this product, and any accompanying | ||
materials." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
# -*- coding: utf-8 -*- | ||
# Copyright (c) 2018-2021, earthobservations developers. | ||
# Distributed under the MIT License. See LICENSE for more info. | ||
from wetterdienst.provider.eccc.observation.api import EcccObservationRequest | ||
from wetterdienst.provider.eccc.observation.metadata.dataset import ( | ||
EccObservationDataset, | ||
) | ||
from wetterdienst.provider.eccc.observation.metadata.parameter import ( | ||
EccObservationParameter, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters