GeoDataFrames.jl icon indicating copy to clipboard operation
GeoDataFrames.jl copied to clipboard

GeoDataFrames.read(path2file) => GeoDataFrame(path2file)

Open alex-s-gardner opened this issue 6 months ago • 15 comments

Rasters has a nice single point of entry, which is the Raster() function:

these all work to define a raster:

ras = Raster(path2file)
ras = Raster(rand(X(1:10), Y(1:11)))
ras = Raster(path2file; lazy=true)

I'm wondering if it makes sense to have a GeoDataFrame() function:

df = GeoDataFrame(path2file)

it would add some uniformity across the ecosystem

alex-s-gardner avatar May 08 '25 23:05 alex-s-gardner