-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
120 additions
and
6 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 |
---|---|---|
@@ -0,0 +1,74 @@ | ||
id: noaa-weather-data–jfk-airport | ||
name: NOAA Weather Data – JFK Airport | ||
description: Local climatological data originally collected at JFK airport. | ||
version: 1.1.4 | ||
# TBD use timestamp for better accuracy and timezone support | ||
created: 2019-07-19 | ||
updated: 2020-07-19 | ||
# TBD how to handle compound types (a data set comprises of multiple files using different format) | ||
format: | ||
type: CSV | ||
mime_type: text/csv | ||
domain: Time Series | ||
|
||
# Information about the entity that makes the data set avaialable | ||
provider: | ||
name: Data Asset eXchange | ||
url: https://developer.ibm.com/exchanges/data/all/jfk-weather-data/ | ||
|
||
# identifies where the data set is stored and how it is stored (REQUIRED) | ||
repository: | ||
type: HTTP | ||
url: https://dax-cdn.cdn.appdomain.cloud/dax-noaa-weather-data-jfk-airport/1.1.4/noaa-weather-data-jfk-airport.tar.gz | ||
mime_type: application/x-tar | ||
sha_512: e3f27a8fcc0db5289df356e3f48aef6df56236798d5b3ae3889d358489ec6609d2d797e4c4932b86016d2ce4a379ac0a0749b6fb2c293ebae4e585ea1c8422ac | ||
size: 3.5M | ||
|
||
# REQUIRED; data set license information | ||
license: | ||
commercial: false | ||
name: CDLA-Sharing | ||
url: https://cdla.io/sharing-1-0/ | ||
|
||
# REQUIRED; describes relevant files in the data set archive | ||
content: | ||
- file_name: noaa-weather-data-jfk-airport/jfk_weather.csv | ||
description: Raw data file | ||
records: 114546 | ||
size: 30M | ||
type: CSV | ||
mime_type: text/csv | ||
- file_name: noaa-weather-data-jfk-airport/jfk_weather_cleaned.csv | ||
description: jfk_weather.csv cleaned-up using noaa-weather-data-jfk-airport/clean_data.py | ||
records: 75125 | ||
size: 6M | ||
type: CSV | ||
mime_type: text/csv | ||
|
||
# OPTIONAL; Identifies where the data set was obtained from | ||
source: | ||
name: National Oceanic and Atmospheric Administration | ||
url: https://www.ncdc.noaa.gov/ | ||
|
||
# OPTIONAL; but recommended | ||
seo_tags: | ||
- weather | ||
- time series | ||
|
||
# OPTIONAL; assets that complement this data set, e.g. notebooks | ||
related_assets: | ||
- name: Explore the data | ||
description: Data preview and glossary | ||
url: https://dax-cdn.cdn.appdomain.cloud/dax-noaa-weather-data-jfk-airport/1.1.4/data-preview/index.html | ||
- name: DAX Weather project | ||
description: Watson Studio Gallery project for the NOAA data set | ||
mime_type: text/html | ||
url: https://dataplatform.cloud.ibm.com/exchange/public/entry/view/a7432f0c29c5bda2fb42749f363bd9ff | ||
- name: Effective Farming - Monitor Crop Growth | ||
description: Accelerator for Cloud Pak for Data | ||
mime_type: text/html | ||
url: https://community.ibm.com/community/user/cloudpakfordata/viewdocument/effective-farming-monitor-crop-gr | ||
- name: Elyra pipeline | ||
description: Elyra example pipeline | ||
mime_type: text/html | ||
url: https://github.com/elyra-ai/examples/tree/master/pipelines/dax_noaa_weather_data |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Copyright 2019 IBM Corporation | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
apiVersion: com.ibm/v1alpha1 | ||
kind: Dataset | ||
metadata: | ||
name: {{name}} | ||
spec: | ||
type: "ARCHIVE" | ||
url: {{repository.url}} | ||
format: {{repository.mime_type}} |