Skip to content

Python code to bulk download UK Environment Agency LiDAR data

License

Notifications You must be signed in to change notification settings

kdmayer/uk-lidar-program

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

uk-lidar-program

About

Python code to bulk download UK Environment Agency LiDAR data

Setup

After cloning the GitHub repo, navigate into the root directory and set up the Python environment with conda and poetry by executing:

conda create python=3.9 -n poetry-uk-lidar
conda activate poetry-uk-lidar
poetry env use python
poetry install

Then, specify your configuration in src/main.py:

HEADLESS = False
DESIRED_PRODUCT_LIST = ['National LIDAR Programme Point Cloud']
DESIRED_YEAR = '2021'
LATEST = True
OUTPUT_DIR = <Your_Path>
AOI_SHP_PATH = <Your_Path>

Usage

From the project's root directory, execute:

poetry run python src/main.py

Available products

  • 'LIDAR Composite DTM'
  • 'LIDAR Composite First Return DSM'
  • 'LIDAR Composite Last Return DSM'
  • 'LIDAR Point Cloud'
  • 'LIDAR Tiles DSM'
  • 'LIDAR Tiles DTM'
  • 'National LIDAR Programme DSM'
  • 'National LIDAR Programme DTM'
  • 'National LIDAR Programme First Return DSM'
  • 'National LIDAR Programme Intensity'
  • 'National LIDAR Programme Point Cloud'
  • 'National LIDAR Programme VOM'
  • 'SurfZone DEM 2019'

About

Python code to bulk download UK Environment Agency LiDAR data

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 57.2%
  • Jupyter Notebook 42.8%