Questions about spatial data
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
sorry my mistake
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thank you, your method can solve the problem, but hope Alteryx has a more direct way to read spatial data.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thank you for your reply.
