diff --git a/parcels/field.py b/parcels/field.py index 4e0cf2dfd..50ab34513 100644 --- a/parcels/field.py +++ b/parcels/field.py @@ -1244,7 +1244,7 @@ def show(self, animation=False, show_time=None, domain=None, depth_level=0, proj """Method to 'show' a Parcels Field :param animation: Boolean whether result is a single plot, or an animation - :param show_time: Time at which to show the Field (only in single-plot mode) + :param show_time: Time in seconds from start after which to show the Field (only in single-plot mode) :param domain: dictionary (with keys 'N', 'S', 'E', 'W') defining domain to show :param depth_level: depth level to be plotted (default 0) :param projection: type of cartopy projection to use (default PlateCarree) diff --git a/parcels/plotting.py b/parcels/plotting.py index 356f13bf8..c5d6888ac 100644 --- a/parcels/plotting.py +++ b/parcels/plotting.py @@ -17,7 +17,7 @@ def plotparticles(particles, with_particles=True, show_time=None, field=None, do animation=False, **kwargs): """Function to plot a Parcels ParticleSet - :param show_time: Time at which to show the ParticleSet + :param show_time: Time in seconds from start after which to show the ParticleSet :param with_particles: Boolean whether particles are also plotted on Field :param field: Field to plot under particles (either None, a Field object, or 'vector') :param domain: dictionary (with keys 'N', 'S', 'E', 'W') defining domain to show @@ -104,7 +104,7 @@ def plotfield(field, show_time=None, domain=None, depth_level=0, projection='Pla vmin=None, vmax=None, savefile=None, **kwargs): """Function to plot a Parcels Field - :param show_time: Time at which to show the Field + :param show_time: Time in seconds from start after which to show the Field :param domain: dictionary (with keys 'N', 'S', 'E', 'W') defining domain to show :param depth_level: depth level to be plotted (default 0) :param projection: type of cartopy projection to use (default PlateCarree)