Remove oneway from shipway/rail (#1591)

This PR removes the `oneway` attribute from ferry lines and rail lines.  These attributes don't really make sense for these feature classes and they are not typically rendered in general-purpose maps.
This commit is contained in:
Brian Sperlongano 2023-11-09 10:56:28 -05:00 committed by GitHub
parent dfd20c647c
commit 6c31841f46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 18 deletions

View File

@ -321,7 +321,6 @@ tables:
- *bridge - *bridge
- *ramp - *ramp
- *ford - *ford
- *oneway
- *area - *area
- *service - *service
- *usage - *usage
@ -399,7 +398,6 @@ tables:
- *bridge - *bridge
- *ramp - *ramp
- *ford - *ford
- *oneway
- *area - *area
- *service - *service
- *usage - *usage

View File

@ -483,7 +483,7 @@ FROM (
is_ford, is_ford,
NULL::boolean AS expressway, NULL::boolean AS expressway,
is_ramp, is_ramp,
is_oneway, NULL::int AS is_oneway,
NULL AS man_made, NULL AS man_made,
layer, layer,
NULL::int AS level, NULL::int AS level,
@ -518,7 +518,7 @@ FROM (
is_ford, is_ford,
NULL::boolean AS expressway, NULL::boolean AS expressway,
is_ramp, is_ramp,
is_oneway, NULL::int AS is_oneway,
NULL AS man_made, NULL AS man_made,
layer, layer,
NULL::int AS level, NULL::int AS level,
@ -553,7 +553,7 @@ FROM (
is_ford, is_ford,
NULL::boolean AS expressway, NULL::boolean AS expressway,
is_ramp, is_ramp,
is_oneway, NULL::int AS is_oneway,
NULL AS man_made, NULL AS man_made,
layer, layer,
NULL::int AS level, NULL::int AS level,
@ -589,7 +589,7 @@ FROM (
is_ford, is_ford,
NULL::boolean AS expressway, NULL::boolean AS expressway,
is_ramp, is_ramp,
is_oneway, NULL::int AS is_oneway,
NULL AS man_made, NULL AS man_made,
layer, layer,
NULL::int AS level, NULL::int AS level,
@ -625,7 +625,7 @@ FROM (
is_ford, is_ford,
NULL::boolean AS expressway, NULL::boolean AS expressway,
is_ramp, is_ramp,
is_oneway, NULL::int AS is_oneway,
NULL AS man_made, NULL AS man_made,
layer, layer,
NULL::int AS level, NULL::int AS level,
@ -659,7 +659,7 @@ FROM (
is_ford, is_ford,
NULL::boolean AS expressway, NULL::boolean AS expressway,
is_ramp, is_ramp,
is_oneway, NULL::int AS is_oneway,
NULL AS man_made, NULL AS man_made,
layer, layer,
NULL::int AS level, NULL::int AS level,
@ -692,7 +692,7 @@ FROM (
is_ford, is_ford,
NULL::boolean AS expressway, NULL::boolean AS expressway,
is_ramp, is_ramp,
is_oneway, NULL::int AS is_oneway,
NULL AS man_made, NULL AS man_made,
layer, layer,
NULL::int AS level, NULL::int AS level,
@ -725,7 +725,7 @@ FROM (
is_ford, is_ford,
NULL::boolean AS expressway, NULL::boolean AS expressway,
is_ramp, is_ramp,
is_oneway, NULL::int AS is_oneway,
NULL AS man_made, NULL AS man_made,
layer, layer,
NULL::int AS level, NULL::int AS level,
@ -758,7 +758,7 @@ FROM (
is_ford, is_ford,
NULL::boolean AS expressway, NULL::boolean AS expressway,
is_ramp, is_ramp,
is_oneway, NULL::int AS is_oneway,
NULL AS man_made, NULL AS man_made,
layer, layer,
NULL::int AS level, NULL::int AS level,
@ -791,7 +791,7 @@ FROM (
is_ford, is_ford,
NULL::boolean AS expressway, NULL::boolean AS expressway,
is_ramp, is_ramp,
is_oneway, NULL::int AS is_oneway,
NULL AS man_made, NULL AS man_made,
layer, layer,
NULL::int AS level, NULL::int AS level,
@ -824,7 +824,7 @@ FROM (
is_ford, is_ford,
NULL::boolean AS expressway, NULL::boolean AS expressway,
is_ramp, is_ramp,
is_oneway, NULL::int AS is_oneway,
NULL AS man_made, NULL AS man_made,
layer, layer,
NULL::int AS level, NULL::int AS level,
@ -857,7 +857,7 @@ FROM (
is_ford, is_ford,
NULL::boolean AS expressway, NULL::boolean AS expressway,
is_ramp, is_ramp,
is_oneway, NULL::int AS is_oneway,
NULL AS man_made, NULL AS man_made,
layer, layer,
NULL::int AS level, NULL::int AS level,
@ -890,7 +890,7 @@ FROM (
is_ford, is_ford,
NULL::boolean AS expressway, NULL::boolean AS expressway,
is_ramp, is_ramp,
is_oneway, NULL::int AS is_oneway,
NULL AS man_made, NULL AS man_made,
layer, layer,
NULL::int AS level, NULL::int AS level,
@ -923,7 +923,7 @@ FROM (
is_ford, is_ford,
NULL::boolean AS expressway, NULL::boolean AS expressway,
is_ramp, is_ramp,
is_oneway, NULL::int AS is_oneway,
NULL AS man_made, NULL AS man_made,
layer, layer,
NULL::int AS level, NULL::int AS level,
@ -956,7 +956,7 @@ FROM (
is_ford, is_ford,
NULL::boolean AS expressway, NULL::boolean AS expressway,
is_ramp, is_ramp,
is_oneway, NULL::int AS is_oneway,
NULL AS man_made, NULL AS man_made,
layer, layer,
NULL::int AS level, NULL::int AS level,
@ -990,7 +990,7 @@ FROM (
is_ford, is_ford,
NULL::boolean AS expressway, NULL::boolean AS expressway,
is_ramp, is_ramp,
is_oneway, NULL::int AS is_oneway,
NULL AS man_made, NULL AS man_made,
layer, layer,
NULL::int AS level, NULL::int AS level,