esda.completeness¶
- esda.completeness(a, b, local=False, base=2.718281828459045)[source]¶
The completeness of the partitions of polygons in a to those in a. Closer to 1 when all polygons in a are fully contained within polygons in b. From []
- Parameters:
- a
geometryarrayofpolygons array of polygons
- b
geometryarrayofpolygons array of polygons
- local: bool (default: False)
whether or not to provide local scores for each polygon. If True, the completeness for polygons in a are returned.
- scale: bool (default: None)
whether to scale the completeness score(s). By default, completeness is is scaled for local scores so that the average of the local scores is the overall map completeness. If not local, then completeness is returned unscaled. You can also set local=True and scale=False to get raw components of the completeness, whose sum is the completeness for the entire map. Global re-scaled scores (local=False & scale=True) are not supported.
- base: bool (default=None)
what base to use for the entropy calculations. The default is base e, which means entropy is measured in “nats.”
- a