Skip to content

Commit

Permalink
Merge pull request #236 from MIT-AI-Accelerator/gnadt
Browse files Browse the repository at this point in the history
Gnadt
  • Loading branch information
gnadt authored Oct 27, 2023
2 parents 6516b29 + 3e6bef4 commit 28abdf6
Show file tree
Hide file tree
Showing 27 changed files with 1,643 additions and 330 deletions.
10 changes: 8 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "MagNav"
uuid = "f91b31a4-be4d-40e3-b767-4b8c09c10076"
version = "1.1.5"
version = "1.1.6"

[deps]
ArchGDAL = "c9ce4bd3-c3d5-55b8-8973-c0e20141b8c3"
Expand Down Expand Up @@ -69,27 +69,33 @@ Inflate = "0.1"
Interpolations = "0.14"
IterTools = "1"
KernelFunctions = "0.10"
LazyArtifacts = "1"
LinearAlgebra = "1"
MAT = "0.10"
MLJLinearModels = "0.9, 0.10"
NearestNeighbors = "0.4"
Optim = "1"
Parameters = "0.12"
Pkg = "1"
Plots = "1"
Pluto = "0.19"
PrecompileTools = "1"
Random = "1"
RecipesBase = "1"
Revise = "3"
SatelliteToolboxGeomagneticField = "0.1"
ShapML = "0.3"
SpecialFunctions = "2"
Statistics = "1"
StatsBase = "0.33, 0.34"
TOML = "1"
Test = "1"
TestItemRunner = "0.2"
ZipFile = "0.10"
Zygote = "0.6"
julia = "1.6"

[extras]
CPUSummary = "2a0fbf3d-bb9c-48f3-b0a9-814d99fd7ab9"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
TestItemRunner = "f8b46487-2199-4994-9208-9a1283c18c0a"

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ julia> using Pluto
julia> Pluto.run()
```

In Pluto, select and open the desired Pluto notebook, and it should run automatically.
In Pluto, select and open the desired Pluto notebook, then click `Run notebook code` if it does not run automatically.

### Docker

Expand Down
7 changes: 4 additions & 3 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ folder = "examples"

# run Pluto notebooks in src_dir & create Markdown files
# done sequentially to avoid recompiling multiple times
println("building example Pluto notebooks")
src_dir = joinpath(package_dir,folder)
bopts = BuildOptions(src_dir;
output_format = documenter_output,
use_distributed = false)
println("building example Pluto notebooks")
build_notebooks(bopts)

# map sidebar names to Markdown files
Expand All @@ -24,14 +24,15 @@ notebooks = [
"Using Simulated Data" => "$folder/pluto_sim.md",
]

# create folder in docs/src if it doesn't exist
# create folder in docs_src_dir if it doesn't exist
dst_dir = joinpath(docs_src_dir,folder)
isdir(dst_dir) || mkdir(dst_dir)

# move Markdown files into folder in docs/src
# move Markdown files into folder in docs_src_dir
for notebook in notebooks
src = joinpath(package_dir ,notebook[2])
dst = joinpath(docs_src_dir,notebook[2])
println("moving $src to $dst")
mv(src,dst;force=true)
end

Expand Down
2 changes: 1 addition & 1 deletion docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Pages = [
Depth = 1
```

There are also multiple example notebooks available that showcase various functionalities.
There are also multiple example Pluto notebooks available that showcase various functionalities.

## Version

Expand Down
Loading

0 comments on commit 28abdf6

Please sign in to comment.