This is an automated email from the ASF dual-hosted git repository.
bchapuis pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-baremaps.git
The following commit(s) were added to refs/heads/main by this push:
new e3792949 Fix leisure layer (#825)
e3792949 is described below
commit e37929494a9427c81442c918ae732da5437272a5
Author: Bertil Chapuis <[email protected]>
AuthorDate: Fri Jan 19 15:21:05 2024 +0100
Fix leisure layer (#825)
---
daylight/workflow.js | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/daylight/workflow.js b/daylight/workflow.js
index 9df4a0de..aef8e1a9 100644
--- a/daylight/workflow.js
+++ b/daylight/workflow.js
@@ -393,30 +393,30 @@ export default {
]
},
{
- "id": "openstreetmap-leisure",
+ "id": "daylight-leisure",
"needs": [
- "openstreetmap-polygon"
+ "daylight-polygon"
],
"tasks": [
{
"type": "ExecuteSql",
- "file": "layers/leisure/clean.sql",
+ "file": "../basemap/layers/leisure/clean.sql",
"database": config.database,
},
{
"type": "ExecuteSql",
- "file": "layers/leisure/prepare.sql",
+ "file": "../basemap/layers/leisure/prepare.sql",
"database": config.database,
},
{
"type": "ExecuteSql",
- "file": "layers/leisure/simplify.sql",
+ "file": "../basemap/layers/leisure/simplify.sql",
"database": config.database,
"parallel": true,
},
{
"type": "ExecuteSql",
- "file": "layers/leisure/index.sql",
+ "file": "../basemap/layers/leisure/index.sql",
"database": config.database,
"parallel": true
},