diff --git a/src/GeoArtifacts.jl b/src/GeoArtifacts.jl index 37b166c..f67eea6 100644 --- a/src/GeoArtifacts.jl +++ b/src/GeoArtifacts.jl @@ -4,13 +4,10 @@ module GeoArtifacts -using GeoStatsImages - +include("image.jl") include("gadm.jl") include("inmet.jl") -image(name) = geostatsimage(name) - export GADM, INMET end diff --git a/src/image.jl b/src/image.jl new file mode 100644 index 0000000..d097754 --- /dev/null +++ b/src/image.jl @@ -0,0 +1,7 @@ +# ----------------------------------------------------------------- +# Licensed under the MIT License. See LICENSE in the project root. +# ----------------------------------------------------------------- + +using GeoStatsImages + +image(name) = geostatsimage(name)