[DOCS] Add blog post: spatial statistics with sedona.stats - #3219
Merged
Conversation
Works through sedona.stats as one investigation on the bundled OSM POI shapefile: Moran's I global autocorrelation, Getis-Ord Gi* hotspot significance, DBSCAN density clustering, and Local Outlier Factor anomalies, with real-data figures rendered from the verified runs. Notes the Spark checkpoint requirement for DBSCAN and the double-cast workaround for integer value columns (apacheGH-3218).
jiayuasu
marked this pull request as ready for review
July 31, 2026 08:13
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Did you read the Contributor Guide?
Is this PR related to a ticket?
[DOCS] my subjectWhat changes were proposed in this PR?
A new blog post on the spatial statistics module (
sedona.stats), which currently has no blog coverage. It works through the classic exploratory-spatial-analysis workflow as one investigation on the OSM POI shapefile bundled atdocs/usecases/data(12,873 points):ST_KNN-based neighbor search)Includes a cover image and three figures rendered from the actual analysis results (hotspot z-score map, cluster map, outlier map). The post also notes the Spark checkpoint-directory requirement for DBSCAN and uses a
CAST(... AS DOUBLE)on the count column for Moran's I — the integer-column failure behind that workaround is filed as #3218.How was this patch tested?
Weighting,DBSCAN,LocalOutlierFactor).mkdocs serveand the rendered post verified (all four images load, code highlighting, blog index entry).Did this PR include necessary documentation updates?