File: action.yml

package info (click to toggle)
tilemaker 3.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 78,284 kB
  • sloc: cpp: 28,715; ansic: 4,052; makefile: 180; ruby: 77; sh: 6
file content (30 lines) | stat: -rw-r--r-- 1,046 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: 'tilemaker'
description: 'Make OpenStreetMap vector tiles without the stack'
inputs:
  input:
    description: 'An .osm.pbf file from planet extract, as typically downloaded from providers like Geofabrik'
    required: true
  config:
    description: 'A JSON file listing each layer, and the zoom levels at which to apply it'
    required: false
    default: '/resources/config-openmaptiles.json'
  process:
    description: "A Lua program that looks at each node/way's tags, and places it into layers accordingly"
    required: false
    default: '/resources/process-openmaptiles.lua'
  output:
    description: 'Could be directory of tiles, or a .mbtiles files'
    required: true
  extra:
    description: 'Other options for tilemaker'
    required: false
    default: '--verbose'
runs:
  using: 'docker'
  image: 'docker://ghcr.io/systemed/tilemaker:master'
  args:
    - --input=${{ inputs.input }}
    - --config=${{ inputs.config }}
    - --process=${{ inputs.process }}
    - --output=${{ inputs.output }}
    - ${{ inputs.extra }}