EPT (Entwine Point Tile)
Jul 10,2026
GISBox is a one-stop 3D GIS data editing, conversion and publishing platform that supports editing in multiple GIS formats such as OSGB/GEOTIFF/RVT, converting to 3DTiles/Terrain and publishing.
Introduction
EPT (Entwine Point Tile) is a hierarchical spatial indexing format for large point cloud datasets, developed as part of the Entwine ecosystem. It organizes point cloud data into a tiled, octree-based structure so that clients can stream, query, and visualize only the portions they need. EPT is widely used for web-based point cloud delivery and visualization, especially for LiDAR and other large 3D geospatial datasets. Its main advantage is efficient access to massive point clouds without requiring the entire dataset to be loaded at once.
File Structure
The EPT structure has the following main characteristics:
- Classification: Hierarchical tiled point cloud storage and streaming format
- Data Organization: Points are divided into spatial tiles, typically using an octree structure
- Access Method: Supports progressive loading, partial queries, and multi-resolution access
- Symmetry: Not a map projection; instead, it is a spatial data structure for 3D point clouds
- Technical Basis: Built around JSON metadata plus tiled binary point data, often stored in formats such as LASzip or binary arrays
Pros
- Efficient streaming: Clients can load only the required tiles, making very large point clouds practical to view online.
- Scalable structure: The hierarchical organization supports datasets ranging from small scans to national-scale LiDAR archives.
- Multi-resolution access: Users can quickly preview low-resolution data and refine detail progressively.
- Web-friendly: EPT is well suited for browser-based visualization tools such as Potree and other point cloud viewers.
- Open ecosystem support: It is supported by open-source geospatial tools and workflows, making it practical for modern data publishing.
Cons
- Preprocessing required: Raw point cloud data must be converted into the EPT structure before use.
- Storage overhead: Tiling and metadata generation can increase file count and management complexity.
- Not ideal for editing: EPT is optimized for distribution and visualization rather than direct editing of source point clouds.
- Tool dependence: Effective use often depends on compatible software libraries, servers, or web viewers.
- Complexity for small datasets: For modest point clouds, the tiled hierarchy may be unnecessary compared with simpler single-file formats.
Application Scenario
EPT is mainly used for large-scale LiDAR publication, cloud-hosted point cloud services, browser-based 3D visualization, and efficient spatial querying of massive point datasets. It is especially suitable when users need fast remote access to only part of a dataset, such as in web mapping, digital twins, terrain inspection, or city-scale 3D platforms. However, for small standalone point clouds or editing-focused workflows, simpler formats such as LAS or LAZ are often more appropriate.
Example
1. Perform multiple segmentations to obtain the final point cloud of the tabletop.
2. Octree structure for 3D point clouds.

File Opening Mode
1. Display point cloud data using Open3D.
Related GIS files
PDS Design Review
MicroStation
Inventor
IGES
References
- https://entwine.io/en/latest/entwine-point-tile.html
- https://docs.safe.com/fme/2023.2/html/FME-Form-Documentation/FME-ReadersWriters/ept/ept.htm
- https://github.com/connormanning/ept-tools