Skip to content

Commit 2ba552b

Browse files
committed
v0.3.0
1 parent 96e4e1a commit 2ba552b

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

README.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ Run `pip install fiboa-cli` to install the validator.
1010
To install additional dependencies for specific [converters](#converter-for-existing-datasets),
1111
you can for example run: `pip install fiboa-cli[xyz]` with xyz being the converter name.
1212

13+
## fiboa versions
14+
15+
- fiboa CLI >= 0.3.0 works with fiboa version > 0.2.0
16+
- fiboa CLI < 0.3.0 works with fiboa version = 0.1.0
17+
1318
## Validation
1419

1520
To validate a fiboa GeoParquet or GeoJSON file, you can for example run:
@@ -79,7 +84,11 @@ To convert an existing dataset to fiboa using the pre-defined converters:
7984
- `fiboa convert de_nrw`
8085

8186
Available converters:
82-
- `de_nrw` (Germany, NRW from Shapefile)
87+
- `at` (Austria)
88+
- `de_bb` (Berlin/Brandenburh, Germany)
89+
- `de_nds` (Lowe Saxony, Germany)
90+
- `de_nrw` (North Rhine-Westphalia, Germany)
91+
- `de_sh` (Schleswig-Holstein, Germany)
8392

8493
### Implement a converter
8594

fiboa_cli/datasets/at.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
'FART_ID': 'fart_id',
3333
'GEO_DATERF': 'determination_datetime'
3434
}
35-
EXTENSIONS = ["https://fiboa.github.io/inspire-extension/v0.1.0/schema.yaml"]
35+
EXTENSIONS = ["https://fiboa.github.io/inspire-extension/v0.2.0/schema.yaml"]
3636
MISSING_SCHEMAS = {
3737
'ref_art': {
3838
'type': 'string'

fiboa_cli/datasets/de_nrw.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
PROVIDER_URL = "https://www.opengeodata.nrw.de/produkte/umwelt_klima/bodennutzung/landwirtschaft/"
99
# From http://osmtipps.lefty1963.de/2008/10/bundeslnder.html
1010
BBOX = [5.8659988131,50.3226989435,9.4476584861,52.5310351488]
11-
EXTENSIONS = ["https://fiboa.github.io/inspire-extension/v0.1.0/schema.yaml"]
11+
EXTENSIONS = ["https://fiboa.github.io/inspire-extension/v0.2.0/schema.yaml"]
1212
COLUMNS = {
1313
'geometry': 'geometry',
1414
'ID': 'id',

fiboa_cli/version.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "0.2.1"
2-
fiboa_version = "0.1.0"
1+
__version__ = "0.3.0"
2+
fiboa_version = "0.2.0"

0 commit comments

Comments
 (0)