matkoniecz / lunar_assembler

SVG maps from OpenStreetMap data. Available at https://mapsaregreat.com/osm_to_svg_in_browser/
GNU Affero General Public License v3.0
40 stars 5 forks source link

recreate public vs private map style #90

Closed matkoniecz closed 2 years ago

matkoniecz commented 3 years ago

https://matkoniecz.github.io/lunar_assembler/examples/public-vs-closed-areas.html (base on neighbourhood)

Maybe even recreate it from scratch from neighbourhood code that significantly eveolved?

matkoniecz commented 3 years ago

restore in readme

[Map style classifying areas into public and private](https://matkoniecz.github.io/lunar_assembler/examples/public-vs-closed-areas.html). Done using as data fences, walls, footways and roads mapped in OpenStreetMap.
      if (feature.properties["generated_traversable_chunk"] === "yes") {
        return "#cfffaf";
      }
      if (feature.properties["generated_blocked_chunk"] === "yes" || feature.properties["native_blocked_chunk"] === "yes") {
        return "#ffcc00";
      }

are parts useful for restoring it

matkoniecz commented 2 years ago

actually no, low priority and therefore will be forever sitting here