diff --git a/docs/_static/homepage.gif b/docs/_static/homepage.gif index a76c535d13..4689dd893f 100644 Binary files a/docs/_static/homepage.gif and b/docs/_static/homepage.gif differ diff --git a/docs/_static/logo-horo.svg b/docs/_static/logo-horo.svg new file mode 100644 index 0000000000..3f040e6f04 --- /dev/null +++ b/docs/_static/logo-horo.svg @@ -0,0 +1,185 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ocean + Parcels + + diff --git a/docs/_static/logo-horo_dia.svg b/docs/_static/logo-horo_dia.svg new file mode 100644 index 0000000000..9272f4f7c9 --- /dev/null +++ b/docs/_static/logo-horo_dia.svg @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ocean + + + + + Parcels + + + + + diff --git a/docs/_static/parcelslogo-inverted.png b/docs/_static/parcelslogo-inverted.png deleted file mode 100644 index 89aa520a3c..0000000000 Binary files a/docs/_static/parcelslogo-inverted.png and /dev/null differ diff --git a/docs/_static/parcelslogo.png b/docs/_static/parcelslogo.png deleted file mode 100755 index c3ecaf30fb..0000000000 Binary files a/docs/_static/parcelslogo.png and /dev/null differ diff --git a/docs/conf.py b/docs/conf.py index 9af6eb0457..0fba3126f0 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -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", diff --git a/docs/examples/documentation_homepage_animation.ipynb b/docs/examples/documentation_homepage_animation.ipynb index c5e753dc76..1c4d726849 100644 --- a/docs/examples/documentation_homepage_animation.ipynb +++ b/docs/examples/documentation_homepage_animation.ipynb @@ -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", @@ -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", @@ -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})" ] }, { diff --git a/docs/examples/images/homepage.gif b/docs/examples/images/homepage.gif index a76c535d13..4689dd893f 100644 Binary files a/docs/examples/images/homepage.gif and b/docs/examples/images/homepage.gif differ diff --git a/docs/index.rst b/docs/index.rst index e746e37145..89214c1df8 100755 --- a/docs/index.rst +++ b/docs/index.rst @@ -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 `_ and `fish `_. .. 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 `_.