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