PLY sample file
ply_scan_mesh_sample.ply
436 B
application/octet-stream
SHA256 verified
File details
Filename
ply_scan_mesh_sample.plySize436 B (436 bytes)
MIME type
application/octet-streamExtension
.plySHA256
04c9db9c0fd17497d9727765dab72b8c33abb669e44a5e31299896e81c6a74f4Download commands
Use in scripts and tests
curl -L -o ply_scan_mesh_sample.ply \
https://samplefile.com/samples/download/three-d/ply/ply_scan_mesh_sample.ply/
wget -O ply_scan_mesh_sample.ply \
https://samplefile.com/samples/download/three-d/ply/ply_scan_mesh_sample.ply/
import requests
url = "https://samplefile.com/samples/download/three-d/ply/ply_scan_mesh_sample.ply/"
resp = requests.get(url)
with open("ply_scan_mesh_sample.ply", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/three-d/ply/ply_scan_mesh_sample.ply/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("ply_scan_mesh_sample.ply", buf);
# Download and verify SHA256
curl -L -o ply_scan_mesh_sample.ply https://samplefile.com/samples/download/three-d/ply/ply_scan_mesh_sample.ply/
echo "04c9db9c0fd17497d9727765dab72b8c33abb669e44a5e31299896e81c6a74f4 ply_scan_mesh_sample.ply" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/three-d/ply/ply_scan_mesh_sample.ply/").content
assert hashlib.sha256(data).hexdigest() == "04c9db9c0fd17497d9727765dab72b8c33abb669e44a5e31299896e81c6a74f4"
More PLY files
Other PLY Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
ply_ascii_point_cloud_sample.ply |
408 B | 03c9da175d183142… |
Download |
ply_vertex_color_mesh_sample.ply |
417 B | 10a535309f8816c6… |
Download |