This endpoint searches for features matching tags inside an uploaded WKT geometry, then gives the total count and GeoJSON download size.
This API is especially useful for gauging the size of extracts before sending to clients (desktop or mobile). Downloading and processing large amounts (10-50MB+) of GeoJSON on mobile or old devices can significantly impact the end user experience.Documentation Index
Fetch the complete documentation index at: https://docs.buntinglabs.com/llms.txt
Use this file to discover all available pages before exploring further.
PUT request body (ASCII/UTF8 encoded).
Coordinates are in WGS84 (EPSG:4326) and ordered longitude, latitude. All counted geometries
will intersect with the uploaded geometry.
tags is formatted as a list of tags, each like key=value.You can create a tag list by forming an array of key=value items and joining
them into one string with the & character.This list must be URL encoded because both = and & are reserved characters in URI.An example list of tags could be leisure=park and name=Westglen Park. This matches parks
that have the name Westglen Park. To set this parameter,
we’ll URL encode leisure=park&name=Westglen Park.Documentation on tags can be found on the TagInfo resource website.Content-Type: application/json. The body will have a property feature_count
which will be an unsigned integer representing the number of features matching the tags and bounding box.
error field describing the cause.