Skip to content

Commit

Permalink
update toml test
Browse files Browse the repository at this point in the history
  • Loading branch information
lazarusA committed Sep 16, 2024
1 parent 84eecb0 commit 1edd024
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
12 changes: 12 additions & 0 deletions docs/src/UserGuide/compute_debug.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
using YAXArrays, Dates

axlist = (
Dim{:time}(Date("2022-01-01"):Day(1):Date("2022-01-10")),
Dim{:lon}(range(1, 10, length=10)),
Dim{:lat}(range(1, 5, length=15)),
Dim{:variables}(["a", "b"])
)
data = rand(10, 10, 15, 2)
properties = Dict(:description => "multi dimensional test cube")
a = YAXArray(axlist, data, properties)

2 changes: 1 addition & 1 deletion docs/src/UserGuide/read.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@ using ArchGDAL
using Downloads: download
path = download("https://github.com/yeesian/ArchGDALDatasets/raw/307f8f0e584a39a050c042849004e6a2bd674f99/gdalworkshop/world.tif", "world.tif")
# ds = open_dataset(path) # this is broken
ds = open_dataset(path)
nothing
````
1 change: 1 addition & 0 deletions test/Project.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[deps]
ArchGDAL = "c9ce4bd3-c3d5-55b8-8973-c0e20141b8c3"
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
Expand Down

0 comments on commit 1edd024

Please sign in to comment.