{ "cells": [ { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "import geemap\n", "import os" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Update the geemap package\n", "\n", "If you run into errors with this notebook, please uncomment the line below to update the [geemap](https://github.com/giswqs/geemap#installation) package to the latest version from GitHub. \n", "Restart the Kernel (Menu -> Kernel -> Restart) to take effect." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# geemap.update_package()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Download a GIF" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "from geemap import *" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "url = 'https://i.imgur.com/MSde1om.gif'\n", "out_dir = os.path.join(os.path.expanduser('~'), 'Downloads')\n", "download_from_url(url, out_file_name='temp.gif', out_dir=out_dir)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "in_gif = os.path.join(out_dir, 'temp.gif')\n", "show_image(in_gif)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Get image URLs" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "noaa_logo = 'https://bit.ly/3ahJoMq'\n", "ee_logo = 'https://bit.ly/2RJYSCo'" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Set output GIF path" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "out_gif = os.path.join(out_dir, 'output.gif')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Add images to GIF" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "add_image_to_gif(in_gif, out_gif, in_image=noaa_logo, xy = ('2%', '80%'), image_size=(80, 80))" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "add_image_to_gif(out_gif, out_gif, in_image=ee_logo, xy = ('13%', '79%'), image_size=(85, 85))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Display output GIF" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "show_image(out_gif)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Create a colorbar" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "width = 250\n", "height = 30\n", "palette = ['blue', 'purple', 'cyan', 'green', 'yellow', 'red']\n", "labels = [-40, 35]\n", "colorbar = create_colorbar(width=width, height=height, palette=palette, vertical=False,\n", " add_labels=True, font_size=20, labels=labels)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "show_image(colorbar)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Add colorbar to GIF" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "add_image_to_gif(out_gif, out_gif, in_image=colorbar, xy = ('69%', '89%'), image_size=(250, 250))" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "show_image(out_gif)" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.8.2" } }, "nbformat": 4, "nbformat_minor": 4 }