GEOJSON sample file
geojson_point_feature_sample.geojson
57 B
application/geo+json
SHA256 verified
File details
Filename
geojson_point_feature_sample.geojsonSize57 B (57 bytes)
MIME type
application/geo+jsonExtension
.geojsonSHA256
e3eecfa7a92afdd609e7c6476589ef3ada1591785c9d497f45d5818142fd2298Download commands
Use in scripts and tests
curl -L -o geojson_point_feature_sample.geojson \
https://samplefile.com/samples/download/data/geojson/geojson_point_feature_sample.geojson/
wget -O geojson_point_feature_sample.geojson \
https://samplefile.com/samples/download/data/geojson/geojson_point_feature_sample.geojson/
import requests
url = "https://samplefile.com/samples/download/data/geojson/geojson_point_feature_sample.geojson/"
resp = requests.get(url)
with open("geojson_point_feature_sample.geojson", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/data/geojson/geojson_point_feature_sample.geojson/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("geojson_point_feature_sample.geojson", buf);
# Download and verify SHA256
curl -L -o geojson_point_feature_sample.geojson https://samplefile.com/samples/download/data/geojson/geojson_point_feature_sample.geojson/
echo "e3eecfa7a92afdd609e7c6476589ef3ada1591785c9d497f45d5818142fd2298 geojson_point_feature_sample.geojson" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/data/geojson/geojson_point_feature_sample.geojson/").content
assert hashlib.sha256(data).hexdigest() == "e3eecfa7a92afdd609e7c6476589ef3ada1591785c9d497f45d5818142fd2298"
More GEOJSON files
Other GEOJSON Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
geojson_country_boundaries_sample.geojson |
12.6 KB | e1e2f3a5392bfffa… |
Download |
geojson_polygon_feature_sample.geojson |
135 B | bf425c787a530c7c… |
Download |