Skip to content

Commit 8e1e72f

Browse files
authored
Merge pull request #2 from JuliaGeo/rs/juliarize
juliarize
2 parents aac4b02 + b3c9150 commit 8e1e72f

12 files changed

Lines changed: 1319 additions & 1750 deletions

File tree

Project.toml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,27 +5,33 @@ version = "0.1.0"
55

66
[deps]
77
GeoFormatTypes = "68eda718-8dee-11e9-39e7-89f7f65f511f"
8+
OrderedCollections = "bac558e1-5e72-5ebc-8fee-abe8a469f55d"
89
JSON3 = "0f8b85d8-7281-11e9-16c2-39a750bddbf1"
910

11+
[weakdeps]
12+
Proj = "c94c279d-25a6-4763-9509-64d165bea63e"
13+
14+
[extensions]
15+
CFCoordinateReferenceSystemsProjExt = "Proj"
16+
1017
[compat]
1118
Aqua = "0.8"
1219
ArchGDAL = "0.9, 0.10"
1320
GeoFormatTypes = "0.4"
1421
JET = "0.9"
1522
JSON3 = "1"
16-
NCDatasets = "0.12, 0.13, 0.14"
17-
Rasters = "0.14"
23+
OrderedCollections = "1.8"
24+
Proj = "1.8"
1825
SafeTestsets = "0.1"
26+
Test = "1"
1927
julia = "1.9"
2028

2129
[extras]
2230
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
2331
ArchGDAL = "c9ce4bd3-c3d5-55b8-8973-c0e20141b8c3"
2432
JET = "c3a54625-cd67-489e-a8e7-0a5a0ff4e31b"
25-
NCDatasets = "85f8d34a-cbdd-5861-8df4-14fed0d494ab"
26-
Rasters = "a3a2b9e3-a471-40c9-b274-f788e487c689"
2733
SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f"
2834
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
2935

3036
[targets]
31-
test = ["Aqua", "ArchGDAL", "JET","NCDatasets", "Rasters", "SafeTestsets", "Test"]
37+
test = ["Aqua", "ArchGDAL", "JET", "Proj", "SafeTestsets", "Test"]
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
module CFCoordinateReferenceSystemsProjExt
2+
3+
import Proj
4+
import JSON3
5+
import GeoFormatTypes as GFT
6+
7+
using OrderedCollections: LittleDict
8+
using CFCoordinateReferenceSystems: CFProjection, InnerDict
9+
10+
# This extension does most of the work
11+
12+
include("convert.jl")
13+
include("conversions.jl")
14+
include("cf.jl")
15+
include("parameters.jl")
16+
include("mappings.jl")
17+
include("utils.jl")
18+
19+
end

0 commit comments

Comments
 (0)