Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added mountains list #3

Merged
merged 1 commit into from
Feb 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.

---

**v1.0.1** - 27-02-2023
Added:

- Mountains

---

**v1.0.0** - 23-02-2023
Initial version published, supporting the following lists:

Expand Down
41 changes: 27 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,16 @@ An attempt to gather greek static lists in one place.
| :---------------------------- |
| Communities |
| Decentralized Administrations |
| Mountains |
| Municipalities |
| Municipal Units |
| Prefectures |
| Regional Units |
| Regions |
| Settlements |

 
---
##  

 
 

Expand All @@ -28,6 +29,7 @@ An attempt to gather greek static lists in one place.
| :---------------------------- |
| Κοινότητες |
| Αποκεντρωμένες Διοικήσεις |
| Βουνά |
| Δήμοι |
| Δημοτικές Ενότητες |
| Νομαρχίες |
Expand Down Expand Up @@ -87,18 +89,29 @@ Output

## API

| List | Type |
| ------------------------------ | ---------- |
| `communities` | `string[]` |
| `decentralizedAdministrations` | `string[]` |
| `geographicalAreas` | `string[]` |
| `municipalities` | `string[]` |
| `municipalUnits` | `string[]` |
| `prefectures` | `string[]` |
| `regionalUnits` | `string[]` |
| `regions` | `string[]` |
| `settlements` | `string[]` |

| List | Type |
| ------------------------------ | ---------------------------------------- |
| `communities` | `string[]` |
| `decentralizedAdministrations` | `string[]` |
| `geographicalAreas` | `string[]` |
| `mountains` | `Mountain[]` check [Mountain](#mountain) |
| `municipalities` | `string[]` |
| `municipalUnits` | `string[]` |
| `prefectures` | `string[]` |
| `regionalUnits` | `string[]` |
| `regions` | `string[]` |
| `settlements` | `string[]` |

<h5 id="mountain">Mountain</h5>
````
{
name: string;
top: string;
height: number;
area: string;
prefecture: string;
}
````
## Contributing

Contributions are always welcome!
Expand Down
Loading