Skip to content

Commit e5dcd39

Browse files
committed
tag 0.14.46
1 parent 3ce37ea commit e5dcd39

File tree

3 files changed

+25
-1
lines changed

3 files changed

+25
-1
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ClimaCore"
22
uuid = "d414da3d-4745-48bb-8d80-42e94e092884"
33
authors = ["CliMA Contributors <clima-software@caltech.edu>"]
4-
version = "0.14.45"
4+
version = "0.14.46"
55

66
[deps]
77
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"

docs/src/lib/ClimaCoreMakie.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,12 @@ ClimaCoreMakie.jl provides functionality for plotting ClimaCore fields extending
88

99
```@docs
1010
fieldheatmap
11+
fieldheatmap!
12+
FieldHeatmap
1113
fieldcontourf
14+
fieldcontourf!
15+
FieldContourf
16+
fieldline
17+
fieldline!
18+
FieldLine
1219
```

lib/ClimaCoreMakie/src/fieldline.jl

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
"""
2+
fieldline(field)
3+
4+
Plots a line plot of a 1D field.
5+
6+
## Attributes
7+
8+
Inherited from [`Makie.lines`](https://docs.makie.org/stable/examples/plotting_functions/lines/index.html#lines).
9+
10+
- `color` sets the color of the line.
11+
12+
- `linewidth` sets the width of the line.
13+
14+
- `linestyle` sets the style of the line (e.g., `:solid`, `:dash`, `:dot`).
15+
16+
See the [Makie.lines documentation](https://docs.makie.org/stable/examples/plotting_functions/lines/index.html#lines) for a complete list of attributes.
17+
"""
118
@recipe FieldLine (field,) begin
219
Makie.documented_attributes(Makie.Lines)...
320
end

0 commit comments

Comments
 (0)