Skip to content

Commit ea26dec

Browse files
reint-fischerreint-fischer
authored andcommitted
fix typo
1 parent 92df61c commit ea26dec

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/getting_started/tutorial_quickstart.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ pset.execute(
120120
To start analyzing the trajectories computed by **Parcels**, we can open the `ParticleFile` using `xarray`:
121121

122122
```{code-cell}
123-
ds_particles = xr.open_zarr("Output.zarr")
123+
ds_particles = xr.open_zarr("output.zarr")
124124
ds_particles
125125
```
126126

@@ -141,7 +141,7 @@ plt.show()
141141

142142
That looks good! The virtual particles released in a line along the 32nd meridian (dark blue) have been advected by the flow field.
143143

144-
## Running a simulation backwards in time
144+
<!-- ## Running a simulation backwards in time
145145
146146
Now that we know how to run a simulation, we can easily run another and change one of the settings. We can trace back the particles from their current to their original position by running the simulation backwards in time. To do so, we can simply make `dt` < 0.
147147
@@ -172,4 +172,4 @@ plt.scatter(ds_particles.lon.T, ds_particles.lat.T, c=np.repeat(ds_particles.obs
172172
plt.xlabel("Longitude [deg E]")
173173
plt.ylabel("Latitude [deg N]")
174174
plt.show()
175-
```
175+
``` -->

0 commit comments

Comments
 (0)