We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9904df commit 082daefCopy full SHA for 082daef
1 file changed
images/tiler-server/config/providers/route_lines.toml
@@ -7,20 +7,20 @@ sql = """
7
SELECT
8
ST_AsMVTGeom(geometry, !BBOX!) AS geometry,
9
ABS(osm_id) AS osm_id,
10
- name,
11
- type,
12
- route,
13
- ref,
14
- network,
15
- direction,
16
- operator,
17
- state,
18
- symbol,
+ NULLIF(name, '') AS name,
+ NULLIF(type, '') AS type,
+ NULLIF(route, '') AS route,
+ NULLIF(ref, '') AS ref,
+ NULLIF(network, '') AS network,
+ NULLIF(direction, '') AS direction,
+ NULLIF(operator, '') AS operator,
+ NULLIF(state, '') AS state,
+ NULLIF(symbol, '') AS symbol,
19
distance,
20
- roundtrip,
21
- interval,
22
- duration,
23
- tourism,
+ NULLIF(roundtrip, '') AS roundtrip,
+ NULLIF(interval, '') AS interval,
+ NULLIF(duration, '') AS duration,
+ NULLIF(tourism, '') AS tourism,
24
NULLIF(start_date, '') AS start_date,
25
NULLIF(end_date, '') AS end_date,
26
isodatetodecimaldate(pad_date(start_date, 'start'), FALSE) AS start_decdate,
0 commit comments