tilezen / vector-datasource

Tilezen vector tile service - OpenStreetMap data in several formats
https://www.nextzen.org/
Other
507 stars 119 forks source link

yes/no/maybe bicycle & walking values #774

Closed nvkelso closed 8 years ago

nvkelso commented 8 years ago

We're always including yes, no & other values on the new walking, bicycling ways. But should we only include no or yes values contextually?

For instance, motor_vehicle: "no", is interesting here because tracks are assumed to be motor_vehicle: "yes",, but foot: "yes", I think is assumed to be yes, so why export that?

type: "LineString",
properties: {
kind: "path",
bicycle: "yes",
name: "Alta Tr.",
sort_key: 354,
landuse_kind: "national_park",
horse: "yes",
source: "openstreetmap.org",
motor_vehicle: "no",
foot: "yes",
tracktype: "grade2",
id: 239140918,
highway: "track"
},
nvkelso commented 8 years ago

Another example, no isn't useful here for cycleway, we only want to know when it's yes.

nvkelso commented 8 years ago

Related to #453.

rmarianski commented 8 years ago

Should we normalize it to yes if the value isn't no? It can be other values like "lane". Or do we want to pass it through as long as it isn't no?

nvkelso commented 8 years ago

Pass thru as long as it's not no and not none.

(I suspect some of those other values could probably be normalized (there look to be variants), but let's just pass them thru for now.)

nvkelso commented 8 years ago

Correctly updated. There's more work to be done to normalize all these, that's tracked in #792.