rusackas commented on issue #33618:
URL: https://github.com/apache/superset/issues/33618#issuecomment-2940882010
Indeed the bot seems to be right. Here's a sampler platter query that seems
to work just fine:
```
SELECT '{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [-122.4194, 37.7749]
},
"properties": {
"name": "San Francisco",
"category": "city",
"population": 873965
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [-74.0060, 40.7128]
},
"properties": {
"name": "New York City",
"category": "city",
"population": 8336817
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[-122.4194, 37.7749],
[-118.2437, 34.0522],
[-87.6298, 41.8781],
[-74.0060, 40.7128]
]
},
"properties": {
"name": "Cross-country route",
"type": "highway",
"length_miles": 2900
}
},
{
"type": "Feature",
"geometry": {
"type": "Polygon",
"coordinates": [[
[-109.0448, 41.0006],
[-102.0517, 41.0006],
[-102.0517, 36.9931],
[-109.0448, 36.9931],
[-109.0448, 41.0006]
]]
},
"properties": {
"name": "Colorado",
"type": "state",
"area_sq_miles": 104094
}
},
{
"type": "Feature",
"geometry": {
"type": "Polygon",
"coordinates": [[
[-87.6298, 41.8781],
[-87.5298, 41.8781],
[-87.5298, 41.9781],
[-87.6298, 41.9781],
[-87.6298, 41.8781]
]]
},
"properties": {
"name": "Chicago Downtown",
"type": "district",
"density": "high"
}
},
{
"type": "Feature",
"geometry": {
"type": "MultiPoint",
"coordinates": [
[-118.2437, 34.0522],
[-118.1937, 34.0622],
[-118.2937, 34.0422]
]
},
"properties": {
"name": "LA Metro Stations",
"type": "transit",
"system": "metro"
}
},
{
"type": "Feature",
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[-122.4194, 37.7749],
[-122.3194, 37.7849]
],
[
[-122.5194, 37.7649],
[-122.4094, 37.7549]
]
]
},
"properties": {
"name": "Bay Area Bridges",
"type": "infrastructure",
"bridges": ["Golden Gate", "Bay Bridge"]
}
},
{
"type": "Feature",
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[[
[-157.8583, 21.3099],
[-157.8083, 21.3099],
[-157.8083, 21.3599],
[-157.8583, 21.3599],
[-157.8583, 21.3099]
]],
[[
[-156.3319, 20.7984],
[-156.2819, 20.7984],
[-156.2819, 20.8484],
[-156.3319, 20.8484],
[-156.3319, 20.7984]
]]
]
},
"properties": {
"name": "Hawaiian Islands",
"type": "archipelago",
"islands": ["Oahu", "Maui"]
}
},
{
"type": "Feature",
"geometry": {
"type": "Polygon",
"coordinates": [[
[-80.1918, 25.7617],
[-80.1318, 25.7617],
[-80.1318, 25.8217],
[-80.1918, 25.8217],
[-80.1918, 25.7617]
], [
[-80.1718, 25.7817],
[-80.1518, 25.7817],
[-80.1518, 25.8017],
[-80.1718, 25.8017],
[-80.1718, 25.7817]
]]
},
"properties": {
"name": "Miami with Lake",
"type": "city_with_hole",
"description": "Polygon with interior hole"
}
}
]
}' as JSON
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]