-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit adds an interactive viewer for ClimaAnalysis [skip ci][ci skip]
- Loading branch information
Showing
8 changed files
with
161 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name = "ClimaExplorer" | ||
authors = ["Gabriele Bozzola <[email protected]>"] | ||
version = "0.0.1" | ||
|
||
[deps] | ||
Bonito = "824d6782-a2ef-11e9-3a09-e5662e0c26f8" | ||
CairoMakie = "13f3f980-e62b-5c42-98c6-ff1f3baf88f0" | ||
ClimaAnalysis = "29b5916a-a76c-4e73-9657-3c8fd22e65e6" | ||
GeoMakie = "db073c08-6b98-4ee5-b6a4-5efafb3259c6" | ||
|
||
[compat] | ||
Bonito = "3" | ||
ClimaAnalysis = "0.5.5" | ||
GeoMakie = "0.6.5, 0.7" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
.container { | ||
display: flex; | ||
} | ||
.column { | ||
padding: 10px; | ||
} | ||
.left { | ||
flex: 0 1 20%; /* Flex-grow: 0, Flex-shrink: 1, Flex-basis: 20% */ | ||
} | ||
.right { | ||
flex: 1; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
length(ARGS) == 1 || error("Usage: julia --project=climaexplorer explorer.jl <PATH>") | ||
|
||
include(joinpath(@__DIR__, "libexplorer.jl")) | ||
|
||
path = first(ARGS) | ||
|
||
app = BonitoApp(path) | ||
|
||
server = Server(app, "0.0.0.0", 8080) | ||
println(server) | ||
route!(server, "/" => app) | ||
wait(server) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
import ClimaAnalysis | ||
import Bonito: Observable, App, Slider, Dropdown, DOM, Server, route!, wait, Asset | ||
import CairoMakie | ||
import GeoMakie | ||
|
||
function BonitoApp(path) | ||
app = App() do | ||
climastyle = Asset(joinpath(@__DIR__, "assets", "interactive.css")) | ||
simdir = ClimaAnalysis.SimDir(path) | ||
variables = ClimaAnalysis.available_vars(simdir) |> collect | ||
vars_menu = Dropdown(variables) | ||
short_name = vars_menu.value.val | ||
# TODO: Add Dropdown menus for reduction and period | ||
|
||
# reductions = ClimaAnalysis.available_reductions(simdir; short_name) |> collect | ||
# reductions_menu = Dropdown(reductions) | ||
# reduction = reductions_menu.value.val | ||
# periods = ClimaAnalysis.available_periods(simdir; short_name, reduction) |> collect | ||
# periods_menu = Dropdown(periods) | ||
|
||
# Set up initial var | ||
reduction = Observable(first(ClimaAnalysis.available_reductions(simdir; short_name))) | ||
period = Observable(first(ClimaAnalysis.available_periods(simdir; short_name, reduction = reduction.val))) | ||
var = get(simdir; short_name, reduction = reduction.val, period = period.val) | ||
time_slider = Slider(ClimaAnalysis.times(var)) | ||
level_slider = Slider(ClimaAnalysis.altitudes(var)) | ||
|
||
var = map(vars_menu.value) do short_name | ||
reduction[] = first(ClimaAnalysis.available_reductions(simdir; short_name)) | ||
period[] = first(ClimaAnalysis.available_periods(simdir; short_name, reduction = reduction.val)) | ||
var = get(simdir; short_name, reduction = reduction.val, period = period.val) | ||
time_slider.values[] = ClimaAnalysis.times(var) | ||
level_slider.values[] = ClimaAnalysis.altitudes(var) | ||
setindex!(time_slider, first(ClimaAnalysis.times(var))) | ||
setindex!(level_slider, first(ClimaAnalysis.altitudes(var))) | ||
var | ||
end | ||
|
||
var = map(time_slider) do time | ||
short_name = vars_menu.value.val | ||
# Trigger level_slidel | ||
setindex!(level_slider, level_slider.value.val) | ||
ClimaAnalysis.slice(get(simdir; short_name, reduction = reduction.val, period = period.val); time, z = level_slider.value.val) | ||
end | ||
|
||
var = map(level_slider) do level | ||
short_name = vars_menu.value.val | ||
ClimaAnalysis.slice(get(simdir; short_name, reduction = reduction.val, period = period.val); time = time_slider.value.val, z = level) | ||
end | ||
|
||
fig = map(var) do sliced_var | ||
fig = CairoMakie.Figure(size=(1200, 760), fontsize=30) | ||
ClimaAnalysis.Visualize.contour2D_on_globe!(fig, sliced_var) | ||
# ClimaAnalysis.Visualize.plot!(fig, sliced_var) | ||
fig | ||
end | ||
|
||
return DOM.div( | ||
DOM.h3("Output: ", path), | ||
DOM.div( | ||
DOM.div( | ||
climastyle, | ||
DOM.h4("Short name"), | ||
vars_menu, | ||
DOM.h4("Reduction: ", reduction), | ||
DOM.h4("Period: ", period), | ||
DOM.h4("Time: ", time_slider.value), | ||
time_slider, | ||
DOM.h4("Altitude: ", level_slider.value), | ||
level_slider; | ||
class = "column left", | ||
), | ||
DOM.div(fig, class = "column right"), | ||
class = "container" | ||
)) | ||
end | ||
return app | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
`ClimaExplorer` | ||
============= | ||
|
||
`ClimaExplorer` is an interactive utility to visualize the output of `CliMA` | ||
simulations. `ClimaExplorer` uses `ClimaAnalysis.jl` and `Bonito.jl` to start a | ||
local server and dynamically serve plots. | ||
|
||
How to install | ||
=============== | ||
|
||
To install `ClimaExplorer`, first clone the `ClimaAnalysis.jl` repo | ||
```sh | ||
git clone https://github.com/CliMA/ClimaAnalysis.jl.git | ||
``` | ||
Then, instantiate the `climaexplorer` environment | ||
```sh | ||
julia --project=ClimaAnalysis.jl/climaexplorer -e 'using Pkg; Pkg.instantiate()' | ||
``` | ||
|
||
How to use | ||
========== | ||
|
||
Once you installed `ClimaExplorer`, you can start the server with | ||
```sh | ||
julia --project=ClimaAnalysis.jl/climaexplorer ClimaAnalysis.jl/climaexplorer/explorer.jl PATH_OF_OUTPUT | ||
``` | ||
where `PATH_OF_OUTPUT` is the path where the output files live. | ||
The first time you do so, this will take a little while. | ||
|
||
If everything went correctly, you should see a message like | ||
``` | ||
Server: | ||
isrunning: true | ||
listen_url: http://localhost:8080 | ||
online_url: http://localhost:8080 | ||
http routes: 1 | ||
/ => App | ||
websocket routes: 0 | ||
``` | ||
This means that the server has started. Visit `http://localhost:8080` to start | ||
inspecting the output. Note that the port number `8080` might be different. | ||
To close the server, press `Ctrl-C`. |