Skip to content
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
28 changes: 20 additions & 8 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,31 @@
ci-cd:
- .github/**/*
- changed-files:
- any-glob-to-any-file:
- .github/**

dependencies:
- cmake/**/*
- changed-files:
- any-glob-to-any-file:
- cmake/**

documentation:
- docs/**/*
- changed-files:
- any-glob-to-any-file:
- docs/**

enhancement:
- src/**/*
- changed-files:
- any-glob-to-any-file:
- src/**

quality:
- tests/**/*
- changed-files:
- any-glob-to-any-file:
- tests/**

tooling:
- CMakeLists.txt
- config.h.in
- '**/CMakeLists.txt'
- changed-files:
- any-glob-to-any-file:
- CMakeLists.txt
- config.h.in
- '**/CMakeLists.txt'
13 changes: 5 additions & 8 deletions .github/workflows/pr-auto-labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,11 @@ name: "🏷 PR Labeler"
on:
- pull_request

permissions:
contents: read
pull-requests: write

jobs:
triage:
labeler:
permissions:
contents: read
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v5
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
- uses: actions/labeler@v5
24 changes: 12 additions & 12 deletions config/layer.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -191,12 +191,6 @@
"properties": {
"enabled": {
"type": "boolean"
},
"crs": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
Expand All @@ -205,12 +199,6 @@
"properties": {
"enabled": {
"type": "boolean"
},
"tms": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
Expand All @@ -229,6 +217,18 @@
"type": "boolean"
}
}
},
"extra_crs": {
"type": "array",
"items": {
"type": "string"
}
},
"extra_tilematrixsets": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
Expand Down
3 changes: 2 additions & 1 deletion config/services.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@
"abstract": "Ce service permet la visulation de couches de données raster IGN au travers d'un flux OGC API Tiles",
"keywords": [
"OGC API Tiles"
]
],
"reprojection": true
}
}
7 changes: 6 additions & 1 deletion config/services.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"type": "string",
"description": "Access conditions"
},
"crs_equivalency": {
"crs_equivalences": {
"type": "string",
"description": "Path to JSON file with identical CRS (to avoid useless tranformation)"
},
Expand Down Expand Up @@ -411,6 +411,11 @@
"metadata": {
"$ref": "#/$defs/metadata",
"description": "OGC API Tiles service's metadata"
},
"reprojection": {
"type": "boolean",
"default": false,
"description": "OGC API Tiles reprojection activation"
}
}
}
Expand Down
Loading