mattijn / topojson

Encode spatial data as topology in Python! 🌍 https://mattijn.github.io/topojson
BSD 3-Clause "New" or "Revised" License
178 stars 27 forks source link

change default shared_coords from True to False #190

Closed mattijn closed 2 years ago

mattijn commented 2 years ago

This PR changes the default from shared_coords from True to False. The impact is that computed topologies will use by default the strategy of path-connected (shared_coords=False), where before the default was coords-connected (shared_coords=True). See for more info on the differences in the docs: https://mattijn.github.io/topojson/example/settings-tuning.html#shared_coords.

mattijn commented 2 years ago

The previous default was mainly there because of performance reasons. With https://github.com/mattijn/topojson/pull/179 by @theroggy the performance differences are nearly identical, giving more preference to a new default.

theroggy commented 2 years ago

fixed #187