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
Binary file modified docs/_static/homepage.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
185 changes: 185 additions & 0 deletions docs/_static/logo-horo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
90 changes: 90 additions & 0 deletions docs/_static/logo-horo_dia.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed docs/_static/parcelslogo-inverted.png
Binary file not shown.
Binary file removed docs/_static/parcelslogo.png
Binary file not shown.
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,8 @@
html_static_path = ["_static"]
html_theme_options = {
"logo": {
"image_light": "parcelslogo.png",
"image_dark": "parcelslogo-inverted.png",
"image_light": "logo-horo.svg",
"image_dark": "logo-horo_dia.svg",
},
"use_edit_page_button": True,
"github_url": "https://github.com/OceanParcels/parcels",
Expand Down
6 changes: 3 additions & 3 deletions docs/examples/documentation_homepage_animation.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@
" central_latitude=90, central_longitude=-30, satellite_height=15000000\n",
" ),\n",
")\n",
"ax1.set_facecolor(\"#1EB7D0\")\n",
"ax1.add_feature(cartopy.feature.LAND, zorder=1)\n",
"ax1.add_feature(cartopy.feature.OCEAN, zorder=1)\n",
"ax1.coastlines()\n",
"scat1 = ax1.scatter(\n",
" lon[b],\n",
Expand All @@ -121,8 +121,8 @@
" central_latitude=-90, central_longitude=-30, satellite_height=15000000\n",
" ),\n",
")\n",
"ax2.set_facecolor(\"#1EB7D0\")\n",
"ax2.add_feature(cartopy.feature.LAND, zorder=1)\n",
"ax2.add_feature(cartopy.feature.OCEAN, zorder=1)\n",
"ax2.coastlines()\n",
"scat2 = ax2.scatter(\n",
" lon[b],\n",
Expand Down Expand Up @@ -152,7 +152,7 @@
"fig.canvas.draw()\n",
"plt.tight_layout()\n",
"# writergif = PillowWriter(fps=6)\n",
"# anim.save('homepageshort.gif',writer=writergif)"
"# anim.save('homepageshort.gif', writer=writergif, savefig_kwargs={\"transparent\": True})"
]
},
{
Expand Down
Binary file modified docs/examples/images/homepage.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Parcels documentation
Welcome to the documentation of Parcels. **Parcels** (Probably A Really Computationally Efficient Lagrangian Simulator) is a set of Python classes and methods to create customisable particle tracking simulations using output from Ocean Circulation models. Parcels can be used to track passive and active particulates such as water, plankton, `plastic <http://www.topios.org/>`_ and `fish <https://github.com/Jacketless/IKAMOANA>`_.

.. figure:: _static/homepage.gif
:class: dark-light

*Animation of virtual particles carried by ocean surface flow in the global oceans. The particles are advected with Parcels in data from the* `NEMO Ocean Model <https://www.nemo-ocean.eu/>`_.

Expand Down
Loading