This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #36 from PDOK/config
Config
- Loading branch information
Showing
21 changed files
with
250 additions
and
620 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,3 @@ | ||
datasource: | ||
gpkg: | ||
file: example/addresses.gpkg |
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,8 @@ | ||
endpoint: http://localhost:8080 | ||
openapi: spec/oaf.json | ||
defaultfeaturelimit: 100 | ||
maxfeaturelimit: 500 | ||
datasource: | ||
gpkg: | ||
file: example/addresses.gpkg | ||
fid: fid |
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,27 @@ | ||
endpoint: http://localhost:8080 | ||
openapi: spec/oaf.json | ||
defaultfeaturelimit: 100 | ||
maxfeaturelimit: 500 | ||
datasource: | ||
postgis: | ||
connection: postgres://docker:docker@localhost:5432/oaf?sslmode=disable | ||
collections: | ||
- schemaname: addresses #database schema name | ||
tablename: addresses #database table/view name | ||
identifier: addresses #collection name in api response | ||
# filter: (l."properties"->'eindRegistratie') is null # extra filtering option is added to where clause | ||
description: INSPIRE Alternative Encoding Addresses #Description of the collection | ||
columns: | ||
geometry: geom #column containing the SFS geometry | ||
# geometryType: POINT # has currently no use | ||
fid: fid #the unique indexed identifier for a given feature | ||
offset: offsetid # extra column to determine next keyset paging, should be numeric, indexed and unique, could be equal to feature id | ||
bbox: bbox #extra column with bounding box selection index for intersects query, simplification and speedup | ||
bbox: [4.709923493810017,53.00079137013467,4.897723983538761,53.18212166845569] # Bounding box of all features can be used to display subset of features | ||
srid: 4326 #the projection of the geometry currently stored in database | ||
# Properties are column names which should be exposed in properties part of the response | ||
jsonb: true | ||
properties: | ||
- properties | ||
bbox: [4.709923493810017,53.00079137013467,4.897723983538761,53.18212166845569] | ||
srid: 4326 |
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,25 @@ | ||
endpoint: http://localhost:8080 | ||
openapi: spec/oaf.json | ||
defaultfeaturelimit: 100 | ||
maxfeaturelimit: 500 | ||
datasource: | ||
postgis: | ||
connection: postgres://docker:docker@postgis:5432/oaf?sslmode=disable | ||
collections: | ||
- schemaname: addresses #database schema name | ||
tablename: addresses #database table/view name | ||
identifier: addresses #collection name in api response | ||
# filter: (l."properties"->'eindRegistratie') is null # extra filtering option is added to where clause | ||
description: INSPIRE Alternative Encoding Addresses #Description of the collection | ||
columns: | ||
geometry: geom #column containing the SFS geometry | ||
# geometryType: POINT # has currently no use | ||
fid: fid #the unique indexed identifier for a given feature | ||
offset: offsetid # extra column to determine next keyset paging, should be numeric, indexed and unique, could be equal to feature id | ||
bbox: bbox #extra column with bounding box selection index for intersects query, simplification and speedup | ||
bbox: [4.709923493810017,53.00079137013467,4.897723983538761,53.18212166845569] # Bounding box of all features can be used to display subset of features | ||
srid: 4326 #the projection of the geometry currently stored in database | ||
# Properties are column names which should be exposed in properties part of the response | ||
jsonb: true | ||
properties: | ||
- properties |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.