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