Skip to content

Commit

Permalink
Fix export of DELFI attribute 2092 wrong unit + trailing zeros
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbendebiene committed Jul 30, 2024
1 parent 0e9be10 commit a156598
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pipeline/stop_places/sql/stop_places.sql
Original file line number Diff line number Diff line change
Expand Up @@ -380,8 +380,8 @@ SELECT create_keyList(xmlconcat(
-- 2092: footprint area of the lift
create_KeyValue(
'2092',
-- if one value is null this will evaluate to null
parse_length(tags->>'length') * parse_length(tags->>'width') / 100
-- if one value is null this will evaluates to null
trim_scale(parse_length(tags->>'length') * parse_length(tags->>'width') / 10000)
),
-- 2093: footprint length of the lift
create_KeyValue('2093', parse_length(tags->>'length')),
Expand Down

0 comments on commit a156598

Please sign in to comment.