File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 1+ " An AbstractTrait type for all geometries, features and feature collections."
2+ abstract type AbstractTrait end
13" An AbstractGeometryTrait type for all geometries."
2- abstract type AbstractGeometryTrait end
4+ abstract type AbstractGeometryTrait <: AbstractTrait end
35
46" An AbstractGeometryCollectionTrait type for all geometrycollections."
57abstract type AbstractGeometryCollectionTrait <: AbstractGeometryTrait end
@@ -82,11 +84,11 @@ struct MultiPolygonTrait <: AbstractMultiPolygonTrait end
8284
8385
8486" An AbstractFeatureTrait for all features"
85- abstract type AbstractFeatureTrait end
87+ abstract type AbstractFeatureTrait <: AbstractTrait end
8688" A FeatureTrait holds `geometries`, `properties` and an `extent`"
8789struct FeatureTrait <: AbstractFeatureTrait end
8890
8991" An AbstractFeatureCollectionTrait for all feature collections"
90- abstract type AbstractFeatureCollectionTrait end
92+ abstract type AbstractFeatureCollectionTrait <: AbstractTrait end
9193" A FeatureCollectionTrait holds objects of `FeatureTrait` and an `extent`"
9294struct FeatureCollectionTrait <: AbstractFeatureCollectionTrait end
You can’t perform that action at this time.
0 commit comments