My data is like this
POLYGON ((110.332841402 27.018266461, 110.332906738 27.018266461, 110.332906738 27.018333282, 110.332841402 27.018333282, 110.332841402 27.018266461))
This is spatial polygon data,QGIS Can be directly applied,but,alteryx not considered spatial data. Is there any way to process the data directly?
thanks!
Solved! Go to Solution.
sorry my mistake
I see my work precedes me. What you have @longhui, is spatial data formatted as WKT or "Well Known Text".The good news is that this text has all the data we need to generate the spatial objects in Alteryx as mentioned above.
https://en.wikipedia.org/wiki/Well-known_text_representation_of_geometry
Another option if you're querying this WKT from a SQL database, is using STGeomFromText( and the query will convert the text and return the spatial object for you.
Thank you, your method can solve the problem, but hope Alteryx has a more direct way to read spatial data.
Thank you for your reply.