-
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
18 changed files
with
491 additions
and
92 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ | |
/coverage/ | ||
Gemfile.lock | ||
/.byebug_history | ||
/spec/w3c-csvw/ |
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 +1 @@ | ||
0.4.0 | ||
1.0.0 |
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,5 @@ | ||
platform: | ||
Rubygems: | ||
rdf-isomorphic: | ||
tests: | ||
unmaintained: skip |
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 @@ | ||
Identifier,Name,Description,Latitude,Longitude,ZONE,URL |
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,53 @@ | ||
{ | ||
"@context": ["http://www.w3.org/ns/csvw", {"@language": "en"}], | ||
"url": "bpotw.csv", | ||
"dc:title": "CSV distribution of bus-stops-2015-05-05 dataset", | ||
"dcat:keyword": ["bus", "stop", "mobility"], | ||
"dc:publisher": { | ||
"schema:name": "Transport Agency of MyCity", | ||
"schema:url": {"@id": "http://example.org"} | ||
}, | ||
"dc:license": {"@id": "http://opendefinition.org/licenses/cc-by/"}, | ||
"dc:modified": {"@value": "2015-05-05", "@type": "xsd:date"}, | ||
"tableSchema": { | ||
"columns": [{ | ||
"name": "stop_id", | ||
"titles": ["Identifier"], | ||
"dc:description": "An identifier for the bus stop.", | ||
"datatype": "string", | ||
"required": true | ||
}, { | ||
"name": "stop_name", | ||
"titles": ["Name"], | ||
"dc:description": "The name of the bus stop.", | ||
"datatype": "string" | ||
}, { | ||
"name": "stop_desc", | ||
"titles": ["Description"], | ||
"dc:description": "A description for the bus stop.", | ||
"datatype": "string" | ||
}, { | ||
"name": "stop_lat", | ||
"titles": ["Latitude"], | ||
"dc:description": "The latitude of the bus stop.", | ||
"datatype": "number" | ||
}, { | ||
"name": "stop_long", | ||
"titles": ["Longitude"], | ||
"dc:description": "The longitude of the bus stop.", | ||
"datatype": "number" | ||
}, { | ||
"name": "zone_id", | ||
"titles": ["ZONE"], | ||
"dc:description": "An identifier for the zone where the bus stop is located.", | ||
"datatype": "string" | ||
}, | ||
{ | ||
"name": "stop_url", | ||
"titles": ["URL"], | ||
"dc:description": "URL that identifies the bus stop.", | ||
"datatype": "string" | ||
}], | ||
"primaryKey": "stop_id" | ||
} | ||
} |
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,2 @@ | ||
role | ||
"aut,li" |
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,11 @@ | ||
{ | ||
"@context": "http://www.w3.org/ns/csvw", | ||
"url": "niklas.csv", | ||
"tableSchema": { | ||
"columns": [{ | ||
"name": "role", | ||
"separator": ",", | ||
"valueUrl": "http://id.loc.gov/vocabulary/relators/{/role*}" | ||
}] | ||
} | ||
} |
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
Oops, something went wrong.