Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/saintedlama/streets-austria
JSON data containing valid streets in Austria
https://github.com/saintedlama/streets-austria
Last synced: about 15 hours ago
JSON representation
JSON data containing valid streets in Austria
- Host: GitHub
- URL: https://github.com/saintedlama/streets-austria
- Owner: saintedlama
- Created: 2016-01-19T14:56:01.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-19T15:02:37.000Z (almost 9 years ago)
- Last Synced: 2024-10-12T12:25:41.091Z (about 1 month ago)
- Language: JavaScript
- Size: 2.85 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Streets Austria
Streets Austria contains multiple JSON files containing valid street names in Austria and an API to lookup streets and cities.
Generated from "Straßenverzeichnis Statistik Austria" http://www.statistik.at/strasse/suchmaske.jsp.## Usage
```
npm install streets-austria --save
``````js
var streetsAustria = require('streets-austria');
```## Structure
streets-austria exposes a JSON array containing all cities in Austria. Every city has a code (Gemeindekennziffer), a name and an array of
streets. Every street has a code, name and a zip code.```
[
{
"code": "10101",
"name": "Eisenstadt",
"streets": [
{
"code": "000001",
"name": "Josef Stanislaus Albach-Gasse",
"zipCode": "7000"
},
{
"code": "000003",
"name": "Am Bahndamm",
"zipCode": "7000"
},
{
"code": "000008",
"name": "Römerweg",
"zipCode": "7000"
},
{
"code": "000010",
"name": "Sankt-Antoni-Straße",
"zipCode": "7000"
}
]
}
]
```