What is AWS Registry of Open Data?

The AWS Registry of Open Data hosts publicly available datasets in the cloud, making large geospatial files accessible without costly downloads. For LiDAR users, this means direct access to terabytes of point cloud and elevation data from government agencies worldwide.

☁️

Cloud-Hosted

Stream data directly from S3

πŸ”“

Free Access

No AWS account needed*

🌍

Global Coverage

US, UK, NZ & more

⚑

Fast Downloads

AWS global infrastructure

Available LiDAR Datasets

Major Open LiDAR Collections on AWS

Several government agencies host their LiDAR data on AWS for public access. Here are the key datasets for elevation and terrain analysis.

πŸ‡ΊπŸ‡Έ USGS 3DEP LiDAR Point Clouds

✦ Coverage: Entire United States + territories

✦ Format: EPT (Entwine Point Tiles) + LAZ

✦ Resolution: QL0-QL3 (0.35m–1.4m NPS)

✦ License: Public Domain

🏴󠁧󠁒󠁳󠁣󠁴󠁿 Scottish Public Sector LiDAR

✦ Coverage: ~45,000 km² of Scotland

✦ Format: LAZ + COG (DTM/DSM)

✦ Resolution: 4–10 points/mΒ²

✦ License: OGL v3

πŸ‡³πŸ‡Ώ New Zealand Elevation

✦ Coverage: New Zealand (multiple regions)

✦ Format: Cloud Optimized GeoTIFF (COG)

✦ Resolution: 1m DEM/DSM

✦ License: CC-BY-4.0

πŸ‡ΊπŸ‡Έ Indiana Statewide Elevation

✦ Coverage: Entire Indiana (2011–2020)

✦ Format: LAS (uncompressed)

✦ Update: 2025–2028 collection planned

✦ License: CC0 (Public Domain)

How to Access AWS LiDAR Data

Multiple Access Methods

AWS Open Data can be accessed through web browsers, command-line tools, or programmatically. Choose the method that best fits your workflow.

# List USGS LiDAR projects
aws s3 ls s3://usgs-lidar-public/ --no-sign-request

# Download specific project
aws s3 cp s3://usgs-lidar-public/USGS_LPC_CA_LosAngeles_2016_LAS_2018/ . --recursive --no-sign-request

# Browse Scottish LiDAR
aws s3 ls s3://scotland-gov-gi/lidar-1/ --no-sign-request

AWS CLI commands for accessing public LiDAR buckets

01

AWS CLI Access

The most flexible way to access AWS Open Data is through the AWS Command Line Interface (CLI):

Installation:

  • Install AWS CLI (free, no account required for public data)
  • Use --no-sign-request flag for public buckets
  • Browse bucket contents with aws s3 ls
  • Download with aws s3 cp or aws s3 sync

Key S3 Buckets:

  • s3://usgs-lidar-public/ β€” USGS 3DEP EPT tiles
  • s3://usgs-lidar/ β€” USGS raw LAZ (Requester Pays)
  • s3://scotland-gov-gi/ β€” Scottish LiDAR
  • s3://nz-elevation/ β€” New Zealand COGs

02

Web Browser Access

Many AWS LiDAR datasets have web interfaces for easy browsing:

USGS 3DEP Options:

Scottish LiDAR:

New Zealand:

🌐 Popular Web Viewers

β†’ USGS Entwine Viewer

β†’ Equator LiDAR Viewer

β†’ USGS LidarExplorer

β†’ Scottish Remote Sensing Portal

No installation required β€” works in any modern browser

# Python with boto3
import boto3
from botocore import UNSIGNED
from botocore.config import Config

s3 = boto3.client('s3', config=Config(signature_version=UNSIGNED))
response = s3.list_objects_v2(
Bucket='usgs-lidar-public',
Prefix='USGS_LPC_CA_',
MaxKeys=10
)

# Or use PDAL for direct point cloud access
pdal pipeline my_pipeline.json

Python and PDAL access to AWS LiDAR data

03

Programmatic Access

For automated workflows, use programming libraries to access AWS data:

Python Options:

  • boto3: AWS SDK for Python β€” browse and download files
  • PDAL: Point Data Abstraction Library β€” direct LAZ/EPT access
  • rasterio: Read COGs directly from S3
  • laspy: Read/write LAS/LAZ files

PDAL with EPT:
The PDAL library can read Entwine Point Tiles directly from AWS without downloading entire files β€” perfect for extracting small areas from large datasets.

STAC Catalogs:
Many datasets publish STAC metadata for easy discovery. Query by location, date, or attributes.

Understanding File Formats

πŸ“¦

EPT (Entwine Point Tiles)

Cloud-optimized octree format

Stream subsets without downloading entire files

Used by: USGS 3DEP public bucket

πŸ“„

LAZ (Compressed LAS)

Industry-standard point cloud format

80-90% smaller than uncompressed LAS

Used by: All datasets

πŸ—ΊοΈ

COG (Cloud Optimized GeoTIFF)

Streamable raster elevation data

DTM/DSM without full download

Used by: NZ, Scotland

Tips for Using AWS LiDAR Data

cloud_download

Use EPT When Possible

Entwine Point Tiles let you extract just the area you need without downloading gigabytes of data. Perfect for small study areas within large datasets.

speed

Check Requester Pays

Some buckets (like s3://usgs-lidar) are “Requester Pays” β€” you need an AWS account and pay egress fees. The usgs-lidar-public bucket is fully free.

map

Know Your CRS

Different datasets use different coordinate systems. USGS uses various state plane/UTM zones, Scotland uses EPSG:27700, NZ uses EPSG:2193.

storage

Local Processing

For large areas, download to local storage first. S3 transfer speeds are fast, but repeated remote reads add latency to processing workflows.

schedule

Use Parallel Downloads

AWS CLI supports parallel transfers. Use aws s3 sync with --cli-concurrent-request to maximize download speeds.

verified

Check Metadata

Each AWS dataset has documentation on its registry page. Check collection dates, accuracy specs, and licensing before use.

Processing Your Downloaded Data

Once you have downloaded LiDAR data from AWS, you’ll need tools to visualize and process it. Lidarvisor provides a streamlined workflow for point cloud analysis.

cloud_upload

Upload LAZ/LAS Directly

No conversion needed β€” upload point cloud files from any AWS dataset for instant 3D visualization in your browser.

auto_fix_high

Generate Products

Create DEMs, hillshades, contours, slope maps, and other derived products from your point cloud data automatically.

merge_type

Merge Tiles

Combine multiple tiles into seamless coverage. Supports all common coordinate systems from AWS datasets.

Frequently Asked Questions

[us_accordion type=”togglable”]
[us_accordion_item title=”Do I need an AWS account to access this data?”]
For most public datasets, no AWS account is required. You can browse and download using the --no-sign-request flag with AWS CLI, or use web interfaces like the USGS Entwine Viewer. However, some buckets (like the raw USGS LAZ files in s3://usgs-lidar) are “Requester Pays” and require an AWS account to cover data transfer costs.
[/us_accordion_item]
[us_accordion_item title=”What is the difference between public and Requester Pays buckets?”]
Public buckets (like s3://usgs-lidar-public) are completely free to access β€” AWS pays for data egress. Requester Pays buckets (like s3://usgs-lidar) require you to have an AWS account and pay for data transfer out of AWS, typically around $0.09/GB. The public bucket contains EPT-formatted data; the Requester Pays bucket has the original LAZ files.
[/us_accordion_item]
[us_accordion_item title=”What is EPT (Entwine Point Tiles)?”]
EPT is a cloud-optimized format that organizes point cloud data in an octree structure. This allows you to stream just the portion you need without downloading entire files. For example, you can extract a 1 kmΒ² area from a dataset covering an entire state, downloading only a few MB instead of hundreds of GB. Tools like PDAL, Potree, and Cesium support EPT natively.
[/us_accordion_item]
[us_accordion_item title=”How do I find data for a specific location?”]
For USGS 3DEP, use the LidarExplorer to search by location. For Scottish data, use the Remote Sensing Portal map interface. For programmatic access, many datasets publish STAC catalogs that let you query by bounding box or coordinates.
[/us_accordion_item]
[us_accordion_item title=”Can I use this data commercially?”]
Check the license for each dataset. USGS 3DEP is public domain (no restrictions). Scottish LiDAR is mostly OGL v3 (commercial OK with attribution), though some subsets are non-commercial only. New Zealand data is CC-BY-4.0 (commercial OK with attribution). Indiana is CC0 (public domain). Always check the registry page for current licensing terms.
[/us_accordion_item]
[us_accordion_item title=”How current is the data?”]
Coverage dates vary by region and dataset. USGS 3DEP is collected over 8-year cycles with ongoing updates β€” use LidarExplorer to see collection dates for specific areas. Scottish data ranges from 2011-present with the NLP programme adding coverage through 2027. New Zealand and Indiana are updated as new surveys are completed. Check each dataset’s documentation for update schedules.
[/us_accordion_item]
[/us_accordion]

Additional Resources

πŸ› οΈ Processing Tools

β†’ PDAL (Point Data Abstraction Library)

β†’ Entwine (EPT generation)

β†’ OpenTopography

β†’ CloudCompare