-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a utility function to GeometryOpsCore, to get geometries from any data structure #240
base: as/usecore
Are you sure you want to change the base?
Conversation
a generic utility inspired by similar functions in Rasters.jl and elsewhere - returns a vector of the geometries in a given object, be it a feature collection, table, iterable of geometries, or whatever. Potential next steps: - `get_geometries(x) do geom` that rebuilds the given structure as far as possible - this is the same as `apply(::AbstractGeometryTrait)` though.... - treatment of dataframes with multiple columns
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice. We can delete the function from Rasters then and use this
elseif Tables.istable(x) && Tables.hascolumn(x, first(GI.geometrycolumns(x))) | ||
return Tables.getcolumn(x, first(GI.geometrycolumns(x))) | ||
else | ||
c = collect(x) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably want to skip this if x is already an AbstractArray, you can have a do nothing condition
if GI.isgeometry(x) | ||
return x | ||
# elseif GI.isgeometrycollection(x) | ||
# return GI.getgeom(x) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This would need collect
, and needs to be checked first
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Checked as in?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can't remember 😅
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Guess we could just run it through get_geometries
again...if it's an abstractvector or tuple then it will be a no-op anyway
Is there a reason we didn't merge this? |
Don't think so...just waiting for me to make that one change you mentioned. I was thinking of checking Ah and dataframes / tables with multiple geometry columns. Probably also allowing passing a |
a generic utility inspired by similar functions in Rasters.jl and elsewhere - returns a vector of the geometries in a given object, be it a feature collection, table, iterable of geometries, or whatever.
Potential next steps:
get_geometries(x) do geom
that rebuilds the given structure as far as possible - this is the same asapply(::AbstractGeometryTrait)
though....Also: do we want this here? in GeoInterface?