|
Please tell me how to convert the result of the LCSSMatcher example to geojson? |
Answered by
nreinicke
Nov 12, 2024
Replies: 1 comment
|
With the latest 0.5.0 version, you can do the following: result = matcher.match_trace(trace)
gdf = result.matches_to_geodataframe()
geo_json = gdf.to_json() |
0 replies
Answer selected by
kapamob
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
With the latest 0.5.0 version, you can do the following: