From e66bab2faeb54f54dc0b74b76a3760adfdbf2bb6 Mon Sep 17 00:00:00 2001 From: Maarten Pronk Date: Wed, 20 Sep 2023 09:54:10 +0200 Subject: [PATCH] And compatible with 1.0. --- src/meta.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/src/meta.jl b/src/meta.jl index f1e22f2..468b352 100644 --- a/src/meta.jl +++ b/src/meta.jl @@ -46,6 +46,7 @@ end # Backwards compatible with 0.4, which had `geometry_type` MetaColumn(encoding, geometry_types::Nothing, geometry_type::String, crs, orientation, edges, bbox, epoch) = MetaColumn(encoding, [geometry_type], geometry_type, crs, orientation, edges, bbox, epoch) MetaColumn(encoding, geometry_types::Nothing, geometry_type::Vector{String}, crs, orientation, edges, bbox, epoch) = MetaColumn(encoding, geometry_type, geometry_type, crs, orientation, edges, bbox, epoch) +MetaColumn(encoding, geometry_types::Vector{String}, geometry_type::Nothing, crs, orientation, edges, bbox, epoch) = MetaColumn(encoding, geometry_types, geometry_types, crs, orientation, edges, bbox, epoch) Base.@kwdef struct MetaRoot version::String = "1.0.0"