{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "[![image](https://colab.research.google.com/assets/colab-badge.svg)](https://githubtocolab.com/gee-community/geemap/blob/master/examples/notebooks/85_postgis.ipynb)\n", "[![image](https://mybinder.org/badge_logo.svg)](https://gishub.org/geemap-binder)\n", "\n", "**Adding data from a PostGIS database to the map**\n", "\n", "Setting up the conda env:\n", "\n", "```\n", "conda create -n geo python=3.8\n", "conda activate geo\n", "conda install geopandas\n", "conda install mamba -c conda-forge\n", "mamba install geemap sqlalchemy psycopg2 -c conda-forge\n", "```\n", "\n", "Sample dataset:\n", "- [nyc_data.zip](https://github.com/giswqs/postgis/raw/master/data/nyc_data.zip) (Watch this [video](https://youtu.be/fROzLrjNDrs) to load data into PostGIS)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**Connecting to the database**" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "import geemap\n", "from IPython.display import display" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "You can directly pass in the user name and password to access the database. Alternative, you can define environment variables. The default environment variables for user and password are `SQL_USER` and `SQL_PASSWORD`, respectively." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The `try...except...` statements are only used for building the documentation website (https://geemap.org) because the PostGIS database is not available on GitHub. If you are running the notebook with Jupyter installed locally and PostGIS set up properly, you don't need these `try...except...` statements." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "try:\n", " con = geemap.connect_postgis(\n", " database=\"nyc\", host=\"localhost\", user=None, password=None, use_env_var=True\n", " )\n", "except:\n", " pass" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Create a GeoDataFrame from a sql query." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "sql = 'SELECT * FROM nyc_neighborhoods'" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "try:\n", " gdf = geemap.read_postgis(sql, con)\n", " display(gdf)\n", "except:\n", " pass" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Convert gdf to ee.FeatureCollection" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "try:\n", " m = geemap.Map()\n", " fc = geemap.gdf_to_ee(gdf)\n", " m.addLayer(fc, {}, \"NYC EE\")\n", " m.centerObject(fc)\n", " display(m)\n", "except:\n", " pass" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Display the GeoDataFrame on the interactive map." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "try:\n", " m = geemap.Map()\n", " m.add_gdf_from_postgis(\n", " sql, con, layer_name=\"NYC Neighborhoods\", fill_colors=[\"red\", \"green\", \"blue\"]\n", " )\n", " display(m)\n", "except:\n", " pass" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "![](https://i.imgur.com/mAXaBCv.gif)" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" } }, "nbformat": 4, "nbformat_minor": 5 }