Skip to content

Commit

Permalink
use PythonPlot for examples
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander-Barth committed Oct 24, 2024
1 parent 5a6e13e commit 3c4a98c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions docs/Project.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[deps]
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
ROMS = "da6b2582-fac1-11ea-b7c4-a321ee60f94e"
PyPlot = "d330b81b-6aea-500a-939a-2ce795aea3ee"
NCDatasets = "85f8d34a-cbdd-5861-8df4-14fed0d494ab"
Interpolations = "a98d9a8b-a2ab-59e6-89dd-64a1c18fca59"
GeoDatasets = "ddc7317b-88db-5cb5-a849-8449e5df04f9"
Interpolations = "a98d9a8b-a2ab-59e6-89dd-64a1c18fca59"
NCDatasets = "85f8d34a-cbdd-5861-8df4-14fed0d494ab"
PythonPlot = "274fc56d-3b97-40fa-a1cd-1b4a50311bf9"
ROMS = "da6b2582-fac1-11ea-b7c4-a321ee60f94e"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
6 changes: 3 additions & 3 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,18 +105,18 @@ sudo ln -s /opt/julia-1.10.3/bin/julia /usr/local/bin/julia
where `1.10.3` should be replaced by the version number of the current stable release.
More information is available [here](https://julialang.org/downloads/platform/).

Under Linux, you need to install also `python3-matplotlib` for PyPlot. On Debian/Ubuntu, this packages can be installed by this command:
Under Linux, you need to install also `python3-matplotlib` for PythonPlot. On Debian/Ubuntu, this packages can be installed by this command:


```bash
sudo apt install python3-matplotlib
```

* Julia package, `PyPlot`, `NCDatasets`, `ROMS` which can be installed by:
* Julia package, `PythonPlot`, `NCDatasets`, `ROMS` which can be installed by:

```julia
using Pkg
Pkg.add("PyPlot")
Pkg.add("PythonPlot")
Pkg.add("NCDatasets")
Pkg.develop(url="https://github.com/Alexander-Barth/ROMS.jl")
```
Expand Down
2 changes: 1 addition & 1 deletion docs/src/plots.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ In this example, the bathymetry defined in the grid file is visualized. Make sur
contains the file `LS2v.nc` (use e.g. `;cd ~/ROMS-implementation-test`)

```@example example_config
using ROMS, PyPlot, NCDatasets, GeoDatasets, Statistics
using ROMS, PythonPlot, NCDatasets, GeoDatasets, Statistics
ds_grid = NCDataset("LS2v.nc");
lon = ds_grid["lon_rho"][:,:];
Expand Down

0 comments on commit 3c4a98c

Please sign in to comment.