You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Ratesrs.jl you can define a Raster as Raster(path2file).. I'm wondering if it would be cleaner to have a similar API for GeoDataFrames where df = GeoDataFrame(path2file) which would be equivalent to df = GeoDataFrames.read(path2file).
I recognize that GeoDataFrame is not a Type so maybe this goes against the broader Julia standard.
The text was updated successfully, but these errors were encountered:
Well it's not a type... yet. I'm seriously considering making it a type so we can operate on the dataframe, instead of needing to pick columns and such.
In Ratesrs.jl you can define a Raster as
Raster(path2file)
.. I'm wondering if it would be cleaner to have a similar API for GeoDataFrames wheredf = GeoDataFrame(path2file)
which would be equivalent todf = GeoDataFrames.read(path2file)
.I recognize that GeoDataFrame is not a Type so maybe this goes against the broader Julia standard.
The text was updated successfully, but these errors were encountered: