使用hurl.it,我正在尝试对西雅图市开放数据进行API调用。
这里是GET目的地:
tuple(int(round(s*shrink)) for s in size)
我收到的错误:
https://data.seattle.gov/resource/82su-5fxf.json?$where=within_polygon(location, 'MULTIPOLYGON(((-122.345239999941 47.7339842230969,-122.344670705637 47.7051200031236, -122.35540073991 47.7051536806063,-122.355548433321 47.7340195160745, -122.345239999941 47.7339842230969)))')
然而,within_box和within_circle都在这个端点上工作 - 而不是within_polygon。 这些数据源自西雅图市的开放数据文档 - 这个特定的数据集称为我的邻居:
https://data.seattle.gov/Community/My-Neighborhood-Map/82su-5fxf
以下是' within_polygon`的一个工作示例,但使用了不同的端点:
Error: function within_polygon is not defined in SoQL.
提前感谢您的帮助。
答案 0 :(得分:1)
within_polygon
函数仅适用于每个数据集的最新API端点,因此请确保使用正确的端点。你应该使用这个:
https://dev.socrata.com/foundry/#/data.seattle.gov/3c4b-gdxv
使用该端点,并将位置字段名更正为location
,我能够创建有效的查询:
https://data.seattle.gov/resource/3c4b-gdxv.json?$where=within_polygon(location,%20%27MULTIPOLYGON(((-122.345239999941%2047.7339842230969,-122.344670705637%2047.7051200031236,%20-122.35540073991%2047.7051536806063,-122.355548433321%2047.7340195160745,%20-122.345239999941%2047.7339842230969)))%27)