• Stars
    star
    173
  • Rank 218,813 (Top 5 %)
  • Language
    Python
  • License
    MIT License
  • Created over 6 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A Python package for delineating nested surface depressions from digital elevation data.

Welcome to the lidar package

Open In Colab image image image image image image image image DOI

lidar is Python package for delineating the nested hierarchy of surface depressions in digital elevation models (DEMs). It is particularly useful for analyzing high-resolution topographic data, such as DEMs derived from Light Detection and Ranging (LiDAR) data.

Citations

  • Wu, Q., (2021). lidar: A Python package for delineating nested surface depressions from digital elevation data. Journal of Open Source Software, 6(59), 2965, https://doi.org/10.21105/joss.02965
  • Wu, Q., Lane, C.R., Wang, L., Vanderhoof, M.K., Christensen, J.R., & Liu, H. (2019). Efficient Delineation of Nested Depression Hierarchy in Digital Elevation Models for Hydrological Analysis Using Level-Set Method. Journal of the American Water Resources Association. https://doi.org/10.1111/1752-1688.12689 (PDF)

Contents

Introduction

lidar is a Python package for delineating the nested hierarchy of surface depressions in digital elevation models (DEMs). In traditional hydrological modeling, surface depressions in a DEM are commonly treated as artifacts and thus filled and removed to create a depressionless DEM, which can then be used to generate continuous stream networks. In reality, however, surface depressions in DEMs are commonly a combination of spurious and actual terrain features. Fine-resolution DEMs derived from Light Detection and Ranging (LiDAR) data can capture and represent actual surface depressions, especially in glaciated and karst landscapes. During the past decades, various algorithms have been developed to identify and delineate surface depressions, such as depression filling, depression breaching, hybrid breaching-filling, and contour tree method. More recently, a level-set method based on graph theory was proposed to delineate the nested hierarchy of surface depressions. The lidar Python package implements the level-set method and makes it possible for delineating the nested hierarchy of surface depressions as well as elevated terrain features. It also provides an interactive Graphical User Interface (GUI) that allows users to run the program with minimal coding.

Statement of Need

The lidar package is intended for scientists and researchers who would like to integrate surface depressions into hydrological modeling. It can also facilitate the identification and delineation of depressional features, such as sinkholes, detention basins, and prairie potholes. The detailed topological and geometric properties of surface depressions can be useful for terrain analysis and hydrological modeling, including the size, volume, mean depth, maximum depth, lowest elevation, spill elevation, perimeter, major axis length, minor axis length, elongatedness.

State of the Field

Currently, there are a few open-source Python packages that can perform depression filling on digital elevation data, such as RichDEM and whitebox, the Python frontend for WhiteboxTools. However, there are no Python packages offering tools for delineating the nested hierarchy of surface depressions and catchments as well as simulating inundation dynamics. The lidar Python package is intended for filling this gap.

Key Features

  • Smoothing DEMs using mean, median, and Gaussian filters.
  • Extracting depressions from DEMs.
  • Filtering out small artifact depressions based on user-specified minimum depression size.
  • Generating refined DEMs with small depressions filled but larger depressions kept intact.
  • Delineating depression nested hierarchy using the level-set method.
  • Delineating mount nested hierarchy using the level-set method.
  • Computing topological and geometric properties of depressions, including size, volume, mean depth, maximum depth, lowest elevation, spill elevation, perimeter, major axis length, minor axis length, elongatedness, eccentricity, orientation, and area-bbox-ratio.
  • Exporting depression properties as a csv file.

Installation

lidar supports a variety of platforms, including Microsoft Windows, macOS, and Linux operating systems. Note that you will need to have Python 3.x (< 3.9) installed. Python 2.x is not supported. lidar is available on both PyPI and conda-forge. lidar has a GDAL dependency, which can be challenging to install using pip on Windows. Therefore, it is highly recommended to install lidar from the conda-forge channel. If you encounter any errors, please check the Dependencies section below.

Install from PyPI

To install lidar from PyPI, run this command in your terminal:

pip install lidar

Install from conda-forage

If you have Anaconda or Miniconda installed on your computer, you can create a fresh conda environment to install lidar:

conda create -n py38 python=3.8
conda activate py38
conda install lidar -c conda-forge

Upgrade lidar

If you have installed lidar before and want to upgrade to the latest version, you can run the following command in your terminal:

pip install -U lidar

If you use conda, you can update lidar to the latest version by running the following command in your terminal:

conda update lidar -c conda-forge

To install the development version from GitHub directly using Git, run the following code:

pip install git+https://github.com/giswqs/lidar

Dependencies

lidar's Python dependencies are listed in its requirements.txt file. In addition, lidar has a C library dependency: GDAL >=1.11.2. How to install GDAL in different operating systems will be explained below. More information about GDAL can be found here.

Linux

Debian-based Linux

The following commands can be used to install GDAL for Debian-based Linux distributions (e.g., Ubuntu, Linux Mint).

sudo add-apt-repository ppa:ubuntugis/ppa
sudo apt-get update
sudo apt-get install gdal-bin libgdal-dev

If you encounter any compiling errors, try the following commands.

sudo apt-get install --reinstall build-essential
sudo apt-get install python3-dev
pip install wheel
Pacman-based Linux

The following commands can be used to install GDAL for Pacman-based Linux distributions (e.g., Arch Linux, Manjaro). You might need to use sudo if you encounter permission errors.

sudo pacman -S yaourt --noconfirm
yaourt -S gdal --noconfirm
yaourt -S python-gdal --noconfirm

macOS

For a Homebrew based Python environment, do the following.

brew update
brew install gdal

Alternatively, you can install GDAL binaries from kyngchaos. You will then need to add the installed location /Library/Frameworks/GDAL.framework/Programs to your system path.

Windows

The instruction below assumes that you have installed Anaconda. Open Anaconda Prompt and enter the following commands to create a conda environment and install required packages

conda create -n py38 python=3.8
conda activate py38
conda install lidar -c conda-forge

When installing the lidar package, if you encounter an error saying Microsoft Visual C++ 14.0 is required, please follow the steps below to fix the error and reinstall lidar. More information can be found at this link Fix Python 3 on Windows error - Microsoft Visual C++ 14.0 is required.

  • Download Microsoft Build Tools for Visual Studio 2017
  • Double click to install the downloaded installer - Microsoft Build Tools for Visual Studio 2017.
  • Open Microsoft Build Tools for Visual Studio 2017
  • Select Workloads --> Visual C++ build tools and click the install button

Usage

Launch the interactive notebook tutorial for the lidar Python package with Google Colab now:

Open In Colab

A quick example

import os
import pkg_resources
from lidar import *

# identify the sample data directory of the package
package_name = 'lidar'
data_dir = pkg_resources.resource_filename(package_name, 'data/')

# use the sample dem. Change it to your own dem if needed
in_dem = os.path.join(data_dir, 'dem.tif')
# set the output directory
out_dir = os.getcwd()

# parameters for identifying sinks and delineating nested depressions
min_size = 1000      # minimum number of pixels as a depression
min_depth = 0.5      # minimum depth as a depression
interval = 0.3       # slicing interval for the level-set method
bool_shp = True      # output shapefiles for each individual level

# extracting sinks based on user-defined minimum depression size
out_dem = os.path.join(out_dir, "median.tif")
in_dem = MedianFilter(in_dem, kernel_size=3, out_file=out_dem)
sink_path = ExtractSinks(in_dem, min_size, out_dir)
dep_id_path, dep_level_path = DelineateDepressions(sink_path,
                                                   min_size,
                                                   min_depth,
                                                   interval,
                                                   out_dir,
                                                   bool_shp)
print('Results are saved in: {}'.format(out_dir))

lidar GUI

lidar also provides a Graphical User Interface (GUI), which can be invoked using the following Python script:

import lidar
lidar.gui()

image

lidar toolbox for ArcGIS Pro

Toolbox interface

toolbox

toolbox_ui

Video tutorials

Delineating nested surface depressions and catchments using ArcGIS Pro

demo

Delineating nested surface depressions and catchments using ArcMap

demo

A real-world example

The images below show working examples of the level set method for delineating nested depressions in the Cottonwood Lake Study Area (CLSA), North Dakota. More test datasets (e.g., the Pipestem watershed in the Prairie Pothole Region of North Dakota) can be downloaded from http://gishub.org/2019-JAWRA-Data

The following example was conducted on a 64-bit Linux machine with a quad-core Intel i7-7700 CPU and 16 GB RAM. The average running time of the algorithm for this DEM was 0.75 seconds.

image

image

image

References

The level-set algorithm was proposed by Wu et al. (2019):

  • Wu, Q., Lane, C.R., Wang, L., Vanderhoof, M.K., Christensen, J.R., & Liu, H. (2019). Efficient Delineation of Nested Depression Hierarchy in Digital Elevation Models for Hydrological Analysis Using Level-Set Method. Journal of the American Water Resources Association. DOI: 10.1111/1752-1688.12689 (PDF)

Applications of the level-set and contour-tree methods for feature extraction from LiDAR data:

  • Wu, Q., & Lane, C.R. (2017). Delineating wetland catchments and modeling hydrologic connectivity using LiDAR data and aerial imagery. Hydrology and Earth System Sciences. 21: 3579-3595. DOI: 10.5194/hess-21-3579-2017
  • Wu, Q., Deng, C., & Chen, Z. (2016). Automated delineation of karst sinkholes from LiDAR-derived digital elevation models. Geomorphology. 266: 1-10. DOI: 10.1016/j.geomorph.2016.05.006
  • Wu, Q., Su, H., Sherman, D.J., Liu, H., Wozencraft, J.M., Yu, B., & Chen, Z. (2016). A graph-based approach for assessing storm-induced coastal changes. International Journal of Remote Sensing. 37:4854-4873. DOI: 10.1080/01431161.2016.1225180
  • Wu, Q., & Lane, C.R. (2016). Delineation and quantification of wetland depressions in the Prairie Pothole Region of North Dakota. Wetlands. 36(2):215โ€“227. DOI: 10.1007/s13157-015-0731-6
  • Wu, Q., Liu, H., Wang, S., Yu, B., Beck, R., & Hinkel, K. (2015). A localized contour tree method for deriving geometric and topological properties of complex surface depressions based on high-resolution topographic data. International Journal of Geographical Information Science. 29(12): 2041-2060. DOI: 10.1080/13658816.2015.1038719
  • Wu, Q., Lane, C.R., & Liu, H. (2014). An effective method for detecting potential woodland vernal pools using high-resolution LiDAR data and aerial imagery. Remote Sensing. 6(11):11444-11467. DOI: 10.3390/rs61111444

Contributing

Contributions are welcome, and they are greatly appreciated! Every little bit helps, and credit will always be given. You can contribute in many ways:

Types of Contributions

Report Bugs

Report bugs at https://github.com/giswqs/lidar/issues.

If you are reporting a bug, please include:

  • Your operating system name and version.
  • Any details about your local setup that might be helpful in troubleshooting.
  • Detailed steps to reproduce the bug.

Fix Bugs

Look through the GitHub issues for bugs. Anything tagged with "bug" and "help wanted" is open to whoever wants to implement it.

Implement Features

Look through the GitHub issues for features. Anything tagged with "enhancement" and "help wanted" is open to whoever wants to implement it.

Write Documentation

lidar could always use more documentation, whether as part of the official lidar docs, in docstrings, or even on the web in blog posts, articles, and such.

Submit Feedback

The best way to send feedback is to file an issue at https://github.com/giswqs/lidar/issues.

If you are proposing a feature:

  • Explain in detail how it would work.
  • Keep the scope as narrow as possible, to make it easier to implement.
  • Remember that this is a volunteer-driven project, and that contributions are welcome.

Get Started

Ready to contribute? Here's how to set up lidar for local development.

  1. Fork the lidar repo on GitHub.

  2. Clone your fork locally:

git clone [email protected]:your_name_here/lidar.git
  1. Install your local copy into a conda env. Assuming you have conda installed, this is how you set up your fork for local development:
conda create -n lidar-test python
conda activate lidar-test
cd lidar/
pip install -e .
  1. Create a branch for local development:
git checkout -b name-of-your-bugfix-or-feature

Now you can make your changes locally.

  1. When you're done making changes, check that your changes pass flake8 and the tests, including testing other Python versions with tox:
flake8 lidar tests
python setup.py test or pytest

To get flake8 and tox, just pip install them into your conda env.

  1. Commit your changes and push your branch to GitHub:
git add .
git commit -m "Your detailed description of your changes."
git push origin name-of-your-bugfix-or-feature
  1. Submit a pull request through the GitHub website.

Pull Request Guidelines

Before you submit a pull request, check that it meets these guidelines:

  1. The pull request should include tests.
  2. If the pull request adds functionality, the docs should be updated. Put your new functionality into a function with a docstring, and add the feature to the list in README.md.
  3. The pull request should work for Python 3.7 and 3.8. Check https://github.com/giswqs/lidar/actions and make sure that the tests pass for all supported Python versions.

Credits

More Repositories

1

leafmap

A Python package for interactive mapping and geospatial analysis with minimal coding in a Jupyter environment
Python
1,312
star
2

earthengine-py-notebooks

A collection of 360+ Jupyter Python notebook examples for using Google Earth Engine with interactive mapping
Jupyter Notebook
1,213
star
3

qgis-earthengine-examples

A collection of 300+ Python examples for using Google Earth Engine in QGIS
Python
800
star
4

streamlit-geospatial

A multi-page streamlit app for geospatial
Python
586
star
5

python-geospatial

A collection of Python packages for geospatial analysis with binder-ready notebook examples
Shell
564
star
6

Awesome-GEE

A curated list of Google Earth Engine resources
545
star
7

geospatial-data-catalogs

A list of open geospatial datasets available on AWS, Earth Engine, Planetary Computer, NASA CMR, and STAC Index
Jupyter Notebook
380
star
8

whitebox-python

WhiteboxTools Python Frontend
Python
315
star
9

aws-open-data-geo

A list of open geospatial datasets on AWS
Python
239
star
10

geospatial

A Python package for installing commonly used packages for geospatial analysis and data visualization with only one command.
Python
205
star
11

WhiteboxTools-ArcGIS

ArcGIS Python Toolbox for WhiteboxTools
Python
196
star
12

mapwidget

Custom Jupyter widgets for creating interactive 2D/3D maps using popular JavaScript libraries with bidirectional communication, such as Cesium, Mapbox, MapLibre, Leaflet, and OpenLayers
Python
151
star
13

whiteboxR

WhiteboxTools R Frontend
R
147
star
14

geebook

Geospatial Data Science with Earth Engine and Geemap
Jupyter Notebook
114
star
15

geospatial-ml

A Python package for installing commonly used packages for geospatial analysis and machine learning with only one command.
Python
111
star
16

whiteboxgui

An interactive GUI for WhiteboxTools in a Jupyter-based environment
Python
108
star
17

earthengine-py-examples

A collection of 300+ examples for using Earth Engine and the geemap Python package
Python
103
star
18

manjaro-linux

Shell scripts for setting up Manjaro Linux for Python programming and deep learning
Shell
88
star
19

streamlit-timeline

Streamlit component for rendering vis.js timeline
Python
87
star
20

geog-414

A repo for GEOG-414 (Spatial Data Management) at the University of Tennessee
HTML
84
star
21

GEE-Courses

A collection of Jupyter notebooks for GEE Courses
84
star
22

streamlit-template

A streamlit app template based on streamlit-option-menu
Python
64
star
23

maxar-open-data

The Maxar Open Data STAC Catalog in CSV, GeoJSON, and MosaicJSON formats
Python
58
star
24

streamlit-multipage-template

A streamlit multipage app template for geospatial applications
Python
56
star
25

Wetland-Hydro-GEE

Mapping wetland hydrological dynamics using Google Earth Engine (GEE)
JavaScript
50
star
26

leafmap-book

Geospatial Data Science with Leafmap
Jupyter Notebook
45
star
27

gee-tutorials

Google Earth Engine tutorials
Jupyter Notebook
39
star
28

geemap-apps

Interactive web apps created using geemap and streamlit
Python
33
star
29

postgis

Spatial Data Management with PostgreSQL and PostGIS https://gishub.org/sdm
Jupyter Notebook
32
star
30

leafmap-apps

Interactive web apps created using leafmap and streamlit
Python
32
star
31

giswqs

30
star
32

giswqs-bk

30
star
33

Learning-R

R Tutorials
R
29
star
34

geehydro

A Python package for mapping inundation dynamics using Google Earth Engine
Python
27
star
35

eefolium

A lightweight Python package for interactive mapping with Earth Engine and folium
Python
24
star
36

earthengine-apps

A collection of Earth Engine Apps created using geemap and voila
Jupyter Notebook
23
star
37

geemap-heroku

Python scripts for deploying Earth Engine Apps to heroku
Jupyter Notebook
22
star
38

whitebox-frontends

WhiteboxTools Frontends
20
star
39

geodemo

A Python package for interactive mapping
Python
19
star
40

aws-open-data

A list of open datasets on AWS
Python
17
star
41

leafmap-streamlit

Publishing interactive web apps using leafmap and streamlit
Python
17
star
42

geog-414-fall2022

Spatial Data Management with Google Earth Engine
Jupyter Notebook
17
star
43

data

Some commonly used geospatial datasets
Jupyter Notebook
16
star
44

gh-pages-html-template

A simple template for deploying an HTML website to GitHub Pages
HTML
16
star
45

mkdocs-template

A template for building a mkdocs website
14
star
46

geospatial-apps

A collection of streamlit web apps for geospatial applications
Python
14
star
47

streamlit-mapbox

A Streamlit Component for rendering Mapbox GL JS
Python
13
star
48

aws-open-data-stac

A list of STAC endpoints for the AWS Open Data Program
Python
12
star
49

global-surface-water

A streamlit web app for mapping global surface water
Python
12
star
50

streamlit-water

A streamlit web app visualizing global surface water datasets.
Python
12
star
51

GEOG-503

Programming in GIS (GEOG-503)
Jupyter Notebook
11
star
52

wetland

Mapping surface water and wetland hydrological dynamics using Google Earth Engine
Python
11
star
53

geemap-streamlit

geemap with streamlit
Python
11
star
54

giswqs.github.io-bk

Public website
CSS
10
star
55

Depression-Analysis-Toolbox

An ArcGIS toolbox for identifying nested depressions in digital elevation models (DEMs)
Python
10
star
56

leafmaptools

A Python package for building a tool widgets infrastructure with ipyleaflet and ipywidgets
Python
10
star
57

GeoPython-Twitter-Bot

A Twitter Bot for GeoPython
JavaScript
10
star
58

notebook-share

A repo for sharing notebooks
9
star
59

NASA-CMR-STAC

A list of geospatial datasets on NASA's Common Metadata Repository (CMR)
Jupyter Notebook
9
star
60

leafmap-jupyterlite

Leafmap for Jupyterlite
Jupyter Notebook
9
star
61

streamlit-google-sheet

A streamlit web app for connecting Streamlit to a public Google Sheet
Python
9
star
62

sysu-workshop

This repo hosts materials for my workshop given at Sun Yat-sen University during July 19-21, 2017
HTML
9
star
63

GIS-Info.github.io

GIS็•™ๅญฆ๏ผšๅญฆๆ กไธŽ้กน็›ฎๆŒ‡ๅ— | GIS Study Abroad: Universities and Projects Guide
9
star
64

geemap-tutorials

Interactive geemap tutorials on heroku
Jupyter Notebook
9
star
65

geog-312-fall2019

First Steps in GIS Programming
HTML
8
star
66

streamlit-leaflet

A Streamlit component for rendering leaflet maps
Python
8
star
67

geospatial-notebooks

A collection of Jupyter notebooks for geospatial applications
8
star
68

earthengine-js-examples

Google Earth Engine JavaScript Examples
JavaScript
8
star
69

Wetland-Hydrology-Analyst-Toolbox

An ArcGIS toolbox for wetland hydrology
Python
8
star
70

Learning-Python

Python notebooks
Python
8
star
71

streamlit-raster

A Python package for rendering raster datasets with streamlit and localtileserver
Python
8
star
72

dem-depression-level-set-method

Delineating nested hierarchy of topographic depressions in digital elevation models (DEMs) using level set methods
Python
8
star
73

scholarpy

A Python package for searching journal publications and researchers
Python
8
star
74

geemap-ai-docker

AI Platform Deep Learning VM Image with geemap
Jupyter Notebook
7
star
75

Planetary-Computer-Catalog

The Microsoft Planetary Computer Catalog in CSV format
Python
7
star
76

stac-index-catalogs

A list of STAC endpoints retrieved from https://stacindex.org
Jupyter Notebook
7
star
77

geebook-code

Jupyter notebooks for the GEE book
7
star
78

geog-312

First Steps in GIS Programming (GEOG 312) at the University of Tennessee, Knoxville
Jupyter Notebook
7
star
79

earthengine-py-documentation

Unofficial Google Earth Engine Python Documentation
Jupyter Notebook
6
star
80

Earth-Engine-Catalog

The Google Earth Engine data catalog in CSV format
Python
6
star
81

pyhydro

A Python package for modeling fill-spill hydrology in depression-dominated landscapes
Python
6
star
82

Learning-SciPy

Learning SciPy for Numerical and Scientific Computing
Jupyter Notebook
6
star
83

streamlit-demo

Streamlit demos for geospatial
Python
6
star
84

geosdemo

A Python package demo for interactive mapping
Python
6
star
85

Earth-Engine-Python

Earth Engine Python Examples
Python
5
star
86

streamlit-maps

A steamlit app for mapping applications
Python
5
star
87

geoscale

Python library for scale-based spatial analysis
Python
5
star
88

richdem-binder

Binder for the richdem Python package
5
star
89

timelapse

An interactive streamlit web app for creating satellite timelapse
Python
5
star
90

plotly-dash-template

A template for deploying a plotly dash app on Heroku
Python
4
star
91

streamlit-cartopy

A streamlit web app for hurricane mapping
Python
4
star
92

Earth-Engine-Twitter-Bot

A Twitter Bot for #EarthEngine
JavaScript
4
star
93

streamlit-app-template

A multi-page streamlit web app template for geospatial applications
Python
4
star
94

Crime-Analysis

Crime analysis using R and Python
HTML
4
star
95

GEOG-510

A test repo for GEOG-510
4
star
96

streamlit-tnview

A streamlit application for TennesseeView
Python
3
star
97

Python-books

Python
3
star
98

whitebox-bin

WhiteboxTools binaries
3
star
99

whitebox-rust-binder

The WhiteboxTools and Rust Programming Language on Binder
Dockerfile
3
star
100

streamlit-timeline-demo

Streamlit component for rendering vis.js timeline
Python
3
star