{ "cells": [ { "cell_type": "markdown", "id": "0", "metadata": {}, "source": [ "\"Open\n", "\n", "**Creating a rectangular grid covering a region of interest for computing zonal statistics**\n", "\n", "Uncomment the following line to install [geemap](https://geemap.org) if needed." ] }, { "cell_type": "code", "execution_count": null, "id": "1", "metadata": {}, "outputs": [], "source": [ "# %pip install git+https://github.com/gee-community/geemap.git" ] }, { "cell_type": "markdown", "id": "2", "metadata": {}, "source": [ "Import libraries" ] }, { "cell_type": "code", "execution_count": null, "id": "3", "metadata": {}, "outputs": [], "source": [ "import ee\n", "import geemap" ] }, { "cell_type": "markdown", "id": "4", "metadata": {}, "source": [ "Update the package and restart the kernel if you run into errors." ] }, { "cell_type": "code", "execution_count": null, "id": "5", "metadata": {}, "outputs": [], "source": [ "# geemap.update_package()" ] }, { "cell_type": "markdown", "id": "6", "metadata": {}, "source": [ "Add temperature data." ] }, { "cell_type": "code", "execution_count": null, "id": "7", "metadata": {}, "outputs": [], "source": [ "Map = geemap.Map(center=[40, -100], zoom=4)\n", "image = ee.ImageCollection(\"NOAA/GFS0P25\").first().select(\"temperature_2m_above_ground\")\n", "vis_params = {\n", " \"min\": -40.0,\n", " \"max\": 35.0,\n", " \"palette\": [\"blue\", \"purple\", \"cyan\", \"green\", \"yellow\", \"red\"],\n", "}\n", "Map.addLayer(image, vis_params, \"Temperature\")\n", "Map.add_colorbar(vis_params, label=\"Temperature (°C)\")\n", "Map" ] }, { "cell_type": "markdown", "id": "8", "metadata": {}, "source": [ "Create a grid covering the area of interest." ] }, { "cell_type": "code", "execution_count": null, "id": "9", "metadata": {}, "outputs": [], "source": [ "geometry = ee.Geometry.BBox(-130, 24, -68, 50)\n", "grid = geemap.create_grid(geometry, 2e5)\n", "Map.addLayer(grid, {}, \"Grid\")" ] }, { "cell_type": "markdown", "id": "10", "metadata": {}, "source": [ "Compute zonal statistics based on the image and grid. In this case, we are computing the mean temperature for each grid cell." ] }, { "cell_type": "code", "execution_count": null, "id": "11", "metadata": {}, "outputs": [], "source": [ "stats = geemap.zonal_stats(image, grid, stat_type=\"MEAN\", scale=2e5, return_fc=True)" ] }, { "cell_type": "code", "execution_count": null, "id": "12", "metadata": {}, "outputs": [], "source": [ "stats" ] }, { "cell_type": "markdown", "id": "13", "metadata": {}, "source": [ "Add the mean temperature grid to the map." ] }, { "cell_type": "code", "execution_count": null, "id": "14", "metadata": {}, "outputs": [], "source": [ "Map.add_styled_vector(\n", " stats, column=\"mean\", palette=\"coolwarm\", layer_name=\"Mean Temperature\"\n", ")\n", "Map.add_layer_manager()\n", "Map" ] }, { "cell_type": "markdown", "id": "15", "metadata": {}, "source": [ "![](https://i.imgur.com/Kwe5eom.png)" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" } }, "nbformat": 4, "nbformat_minor": 5 }