Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Carlaf_93
Creator II
Creator II

Problem with coordinates in map

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.

1 Solution

Accepted Solutions
Gui_Approbato
Partner - Creator III
Partner - Creator III

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

View solution in original post

1 Reply
Gui_Approbato
Partner - Creator III
Partner - Creator III

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