We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af4cb4a commit b9fb6b2Copy full SHA for b9fb6b2
src/GeometryOps.jl
@@ -54,6 +54,14 @@ include("transformations/transform.jl")
54
include("transformations/correction/geometry_correction.jl")
55
include("transformations/correction/closed_ring.jl")
56
57
+# Import all names from GeoInterface and Extents, so users can do `GO.extent` or `GO.trait`.
58
+for name in names(GeoInterface)
59
+ @eval using GeoInterface: $name
60
+end
61
+for name in names(Extents)
62
+ @eval using GeoInterface.Extents: $name
63
64
+
65
function __init__()
66
# Handle all available errors!
67
Base.Experimental.register_error_hint(_reproject_error_hinter, MethodError)
0 commit comments