Open
Description
I tried reproject today and got confused, that the result is a plain tuple when I input a NamedTuple.
I would have expected that the return type of reproject would be a NamedTuple in that case.
julia> using GeometryOps, GeoFormatTypes, Proj
julia> point = (X=11, Y=52)
(X = 11, Y = 52)
julia> reproject(point, source_crs=EPSG(4326), target_crs=EPSG(27704))
(4.949256544825357e6, 2.090589366405613e6)