Xuất các tòa nhà 3D sang PLY — một định dạng đơn giản cho đám mây điểm và lưới. Hỗ trợ màu đỉnh. Được dùng rộng rãi trong khoa học và quét 3D.
Tính năng chính

Giới thiệu về định dạng PLY
PLY is a Stanford University format, invented for the results of three-dimensional scanning. It is arranged as simply as can be: the header describes which properties vertices and faces have, and then come the data themselves. Thanks to that PLY became a working format in science and in point cloud processing — it is read by MeshLab, CloudCompare, Open3D, ParaView and Blender.
Its main difference from STL is support for colour right in the vertices. Where STL delivers only shape, PLY carries the colouring as well, so a city model stays readable: the types of development are visible by colour without assigning materials by hand.
The export contains the buildings of the selected area: outlines are extruded upward by height tags, and the colour of the development type is transferred into every vertex by averaging the colours of the adjacent faces. Coordinates are in meters from the centre of the area and the base is flat — there is no relief and no georeferencing in the model. By default the file is written in binary form (more compact and faster to read); the text variant is only needed if you intend to look through the contents by eye.
Chương trình nào mở được tệp PLY
Các chương trình và ứng dụng sau có thể mở, chỉnh sửa và làm việc với tệp PLY (Stanford Polygon Format) (.ply) được xuất từ OSM2CDR:
Format specifications
- Open standard
- 3D coordinates supported
- Lossless (no quality loss)
- Stores feature attributes
- Output: 1 file
- Stanford PLY (Polygon File Format). Vertex/face mesh with optional per-vertex colour. Opens in MeshLab, CloudCompare, Blender.
Ai sử dụng bản đồ PLY
Cách xuất PLY
Cách mở tệp sau khi xuất
- MeshLab (free) — open the model, look at the vertex colour, measure its overall dimensions, simplify the mesh if there are many buildings.
- CloudCompare (free) — compare the model with your point cloud from laser scanning or a drone survey, align the coordinate systems, compute deviations.
- Blender — File -> Import -> Stanford (.ply); to see the colouring, turn on vertex colour display in the material.
- Open3D in Python — o3d.io.read_triangle_mesh("map.ply") and then your own processing: slices, simplification, volume computation.
- ParaView — if the model goes into scientific visualization together with computed fields.
Bản đồ phổ biến ở định dạng PLY
Nhận bản đồ xuất ở định dạng PLY (Stanford Polygon Format)
Tải bản đồ PLY chuyên nghiệp từ OpenStreetMap. Tạo tức thì, bất kỳ khu vực nào.
Câu hỏi thường gặp
Định dạng liên quan
Thường được xuất cùng nhau
Related Articles
PLY (Polygon File Format) — Stanford Format for Point Clouds and 3D Scanning
PLY is the Stanford Polygon File format by Greg Turk (1994): ASCII/binary, per-vertex attributes; standard for point clo
tutorialHow to Export 3D Buildings from OpenStreetMap to STL for 3D Printing
Step-by-step guide: export OpenStreetMap buildings with real heights to STL, glTF and OBJ for 3D printing, architectural
guide3D Maps from OpenStreetMap: All Export Formats
Overview of all 3D map export formats from OSM: STL, OBJ, glTF, FBX, IFC, CityJSON. Which to choose for your task.