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