Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Good morning,
I'm trying to plot some point's layer on the map with coordinates.
[coordinates] :
LOAD * INLINE [
LAT, LONG, AREA,
46.2143, 11.1197, A];
But in the map nothing is displayed. The map doesn't understand the formet.
How should i write it?
Thanks.
Hello,
Try replacing dots with comma and changing the delimiter. Use this instead:
[coordinates] :
LOAD * INLINE [
LAT ; LONG; AREA
46,2143 ; 11,1197 ; A ] (delimiter is ';') ;
and you can add a Geomakepoint() to translate that to coordinate point on your table:
[coordinates] :
LOAD Geomakepoint(LAT,LONG) as Coordinate, * INLINE [
LAT ; LONG; AREA
46,2143 ; 11,1197 ; A ] (delimiter is ';') ;
Then you can use the Coordinate field in your map too
Hello,
Try replacing dots with comma and changing the delimiter. Use this instead:
[coordinates] :
LOAD * INLINE [
LAT ; LONG; AREA
46,2143 ; 11,1197 ; A ] (delimiter is ';') ;
and you can add a Geomakepoint() to translate that to coordinate point on your table:
[coordinates] :
LOAD Geomakepoint(LAT,LONG) as Coordinate, * INLINE [
LAT ; LONG; AREA
46,2143 ; 11,1197 ; A ] (delimiter is ';') ;
Then you can use the Coordinate field in your map too