从 Mapbox Tilequery 下载数据 API
Download data from Mapbox Tilequery API
有没有办法从 Mapbox Tilequery 下载批量数据 API?我需要下载给定区域建筑物的 GeoJSON 点,比如说整个旧金山。
Tilequery API 有一个 limit
参数,它为给定的 API 请求指定 return 的特征数量。如文档here中所述,limit
不能超过50,因此无法批量下载要素数据。
值得一看 Mapbox Terms of Service, which indicate some limitations on the downloading/caching of Mapbox data. Much of Mapbox building data is provided via OpenStreetMap, so you could instead consider following this guide to use Overpass Turbo 以查询 OpenStreetMap 数据并提取给定区域中的特定建筑特征。
有没有办法从 Mapbox Tilequery 下载批量数据 API?我需要下载给定区域建筑物的 GeoJSON 点,比如说整个旧金山。
Tilequery API 有一个 limit
参数,它为给定的 API 请求指定 return 的特征数量。如文档here中所述,limit
不能超过50,因此无法批量下载要素数据。
值得一看 Mapbox Terms of Service, which indicate some limitations on the downloading/caching of Mapbox data. Much of Mapbox building data is provided via OpenStreetMap, so you could instead consider following this guide to use Overpass Turbo 以查询 OpenStreetMap 数据并提取给定区域中的特定建筑特征。