Releases: benchmark-urbanism/cityseer-api
Releases · benchmark-urbanism/cityseer-api
Version Bumps
v0.11.1 version bumps
v0.11.0
v0.10.2
v0.10.1
Breaking release - v0.10.0
This is a major update with several breaking changes.
- Graph preparation methods have been revised and
length
,angle_sum
and other such edge parameters will be generated automatically as part of conversion to aNetwork_Layer
; - Centrality methods have been reworked to consider segmentised versions applying continuous forms of centrality based on street lengths. These methods show promise for smaller scaled analysis and reduce distortions and distribution spikes present in node based versions;
- Angular methods can now be derived on primal networks;
- Network_Layers are no longer designated as 'angular': The angular flag is now passed to the
compute_centrality
method in concert with selected measures; - Removes the previous edge iteration workflow in favour of
numba
's newDict
andList
structures. This means a newnode_edge_map
data structure leading to much simplified processes for iterating edges; - The new
List
structure enables removal of the previous distance filtered approach. This leads to a substantial reduction in complexity where it is no longer necessary to map between trim and full data structure indices.