forked from dbpedia/databus-python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make dataid of an artifact downlable
- Loading branch information
1 parent
786240f
commit da890cc
Showing
4 changed files
with
85 additions
and
5 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,4 +1,5 @@ | ||
# All kind of download functionalities for Databus ### | ||
|
||
class Downloder: | ||
|
||
class Downloader: | ||
pass |
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 |
---|---|---|
@@ -0,0 +1,67 @@ | ||
{ | ||
"name": "iai_photovoltaic_active_power_data_202303", | ||
"title": "Active power generation through a photovoltaic installation in March 2023", | ||
"id": "https://openenergy-platform.org/dataedit/view/model_draft/iai_active_power_pv_202303", | ||
"description": "Measured active power produced", | ||
"publicationDate": "2023-03-13", | ||
"context": { | ||
"contact": "[email protected]", | ||
"fundingAgency": "Helmholtz Metadata Collaboration" | ||
}, | ||
"temporal": { | ||
"referenceDate": "2023-02-13", | ||
"timeseries": [ | ||
{ | ||
"start": "2023-02-13", | ||
"end": "2023-03-13", | ||
"resolution": "1h", | ||
"alignment": "right", | ||
"aggregationType": "mean" | ||
} | ||
] | ||
}, | ||
"resources": [ | ||
{ | ||
"name": "iai_active_power_pv_202303", | ||
"schema": { | ||
"foreignKeys": [], | ||
"fields": [ | ||
{ | ||
"name": "id", | ||
"description": "unique identifier like generated for the panda data frame", | ||
"type": "bigint" | ||
}, | ||
{ | ||
"name": "datetime", | ||
"description": "Date and time in yyyy-MM-dd hh:mm:ss", | ||
"type": "timestamp" | ||
}, | ||
{ | ||
"name": "active_power", | ||
"description": "Active power generated by the photovoltaic installation", | ||
"type": "float", | ||
"unit": "KW" | ||
} | ||
] | ||
} | ||
} | ||
], | ||
"metaMetadata": { | ||
"metadataVersion": "OEP-1.5.2", | ||
"metadataLicense": { | ||
"name": "CC0-1.0", | ||
"title": "Creative Commons Zero v1.0 Universal", | ||
"path": "https://creativecommons.org/publicdomain/zero/1.0/" | ||
} | ||
}, | ||
"_comment": { | ||
"metadata": "Metadata documentation and explanation (https://github.com/OpenEnergyPlatform/oemetadata)", | ||
"dates": "Dates and time must follow the ISO8601 including time zone (YYYY-MM-DD or YYYY-MM-DDThh:mm:ss±hh)", | ||
"units": "Use a space between numbers and units (100 m)", | ||
"languages": "Languages must follow the IETF (BCP47) format (en-GB, en-US, de-DE)", | ||
"licenses": "License name must follow the SPDX License List (https://spdx.org/licenses/)", | ||
"review": "Following the OEP Data Review (https://github.com/OpenEnergyPlatform/data-preprocessing/blob/master/data-review/manual/review_manual.md)", | ||
"null": "If not applicable use: null", | ||
"todo": "If a value is not yet available, use: todo" | ||
} | ||
} |
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