coordinates of given type
extract coordinates and type
coordinates of given type
extract coordinates and type
Hi @ikubra800
Â
Did you try to use the stringsearch?
Â
Do you want to separate lat and long, correct?
Â
Thanks in Advance,
Danilo
Â
Â
Â
Â
Â
Your attribute coordinates reads like:
ox1,y1],x2,y2],x3,y3],x4,y4]
WKT for a linestring has the following format:
LINESTRING (x1 y1, x2 y2, x3 y3, x4 y4)
So perform a bit of consecutive search-and-replace:
Thanks for response @danilo_fme​ and @geomancer​ ,
Â
I solved that GeoJSON (Geographic JavaScript Object Notation) reader directly.
Thanks for response @danilo_fme​ and @geomancer​ ,
Â
I solved that GeoJSON (Geographic JavaScript Object Notation) reader directly.
Hi @ikubra800​Â
Â
Thanks your feedback. It is a very good that you solved the problem with the GeoJSON Reader.