Mixed Uses

Accessible via Processing > Cityseer > Mixed Uses. Computes land-use diversity metrics within distance thresholds along the street network, from a point or polygon data layer with a land-use category column.

Input Parameters

ParameterDescriptionDefault
Street network line layerA line layer in a projected metre-based CRS(required)
Data layerA point or polygon layer containing land-use features(required)
Land-use category fieldText column containing the land-use category for each feature(required)
Distance thresholdsComma-separated distances in metres400,800
Max assignment distanceMaximum distance (metres) to snap data points to the nearest street segment400
Use simplest path (angular)Use angular (simplest) paths instead of shortest (metric) pathsFalse
Hill diversityCompute Hill diversity at q = 0, 1, 2. q0 counts distinct reachable land uses.True
Shannon entropyAdvanced. Prefer Hill q = 1 unless you specifically need entropy.False
Gini-SimpsonAdvanced. Prefer Hill q = 2 unless you specifically need it.False
Boundary polygonOptional polygon layer. Nodes inside the boundary are used as sources.(none)
Decay expressionAdvanced. Distance-decay weighting for Hill diversity. Default 1 weights all reachable features equally.1
Time thresholdsAdvanced. Comma-separated minutes; overrides distances when set. Converted using the walking speed.(none)
Walking speedAdvanced. Metres per second, used to convert minutes to distances.1.33

Output

The output is a line layer with the original street segments and diversity values as attributes:

cc_hill_q0_<distance>[_ang]   -> count of distinct reachable land uses
cc_hill_q1_<distance>[_ang]   -> Hill diversity of order 1 (exponential of Shannon)
cc_hill_q2_<distance>[_ang]   -> Hill diversity of order 2 (inverse Simpson)
cc_shannon_<distance>[_ang]   -> Shannon entropy (if enabled)
cc_gini_<distance>[_ang]      -> Gini-Simpson diversity (if enabled)

Hill diversity is the recommended measure: q = 0 is generally the best choice for granular land-use data, and higher orders progressively discount rare categories. Shannon and Gini-Simpson are provided under the advanced parameters for comparability with older studies; the Hill equivalents (q = 1 and q = 2) are preferable in most cases. See the land-use guide for interpretation.