Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ ClimaCore.jl Release Notes
main
-------

v0.14.46
-------
- Restrict GPUCompiler to < v1.7.6 to avoid GPU errors [2430](https://github.com/CliMA/ClimaCore.jl/pull/2430)

v0.14.45
-------
- Add split divergence operator [2409](https://github.com/CliMA/ClimaCore.jl/pull/2409)
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ClimaCore"
uuid = "d414da3d-4745-48bb-8d80-42e94e092884"
authors = ["CliMA Contributors <clima-software@caltech.edu>"]
version = "0.14.45"
version = "0.14.46"

[deps]
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"
Expand Down
1 change: 1 addition & 0 deletions docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@ FFTW = "7a1cc6ca-52ef-59f5-83cd-3a7055c09341"
IntervalSets = "8197267c-284f-5f27-9208-e0e47529a953"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Literate = "98b081ad-f1c9-55d3-8b20-4c87d4299306"
Makie = "ee78f7c6-11fb-53f2-987a-cfe4a2b5a57a"
OrdinaryDiffEqSSPRK = "669c94d9-1f4b-4b64-b377-1aa079aa2388"
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
2 changes: 2 additions & 0 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import ClimaCore,
ClimaCorePlots,
ClimaCoreTempestRemap,
ClimaCoreSpectra
using Makie # Required for Documenter to resolve @ref links to Makie types in ClimaCoreMakie docs

if !@isdefined(TUTORIALS)
TUTORIALS = ["introduction"]
Expand Down Expand Up @@ -60,6 +61,7 @@ withenv("GKSwstype" => "nul") do
sitename = "ClimaCore.jl",
format = format,
checkdocs = :exports,
warnonly = [:cross_references], # Warn instead of error on unresolved @ref links (e.g., Makie.Linestyle)
clean = true,
doctest = true,
modules = [
Expand Down
7 changes: 7 additions & 0 deletions docs/src/lib/ClimaCoreMakie.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,12 @@ ClimaCoreMakie.jl provides functionality for plotting ClimaCore fields extending

```@docs
fieldheatmap
fieldheatmap!
FieldHeatmap
fieldcontourf
fieldcontourf!
FieldContourf
fieldline
fieldline!
FieldLine
```
17 changes: 17 additions & 0 deletions lib/ClimaCoreMakie/src/fieldline.jl
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
"""
fieldline(field)

Plots a line plot of a 1D field.

## Attributes

Inherited from [`Makie.lines`](https://docs.makie.org/stable/examples/plotting_functions/lines/index.html#lines).

- `color` sets the color of the line.

- `linewidth` sets the width of the line.

- `linestyle` sets the style of the line (e.g., `:solid`, `:dash`, `:dot`).

See the [Makie.lines documentation](https://docs.makie.org/stable/examples/plotting_functions/lines/index.html#lines) for a complete list of attributes.
"""
@recipe FieldLine (field,) begin
Makie.documented_attributes(Makie.Lines)...
end
Expand Down
Loading