Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
suzel404
Creator
Creator

how can create a KML Files ?

Hi all,

I can I create KML files with Polygones data ?

Thanks you for your help.

1 Solution

Accepted Solutions
Anonymous
Not applicable

As you already have the polygon data in an excel file - you don't need to create a kml file from this, you can simply import this information into Qlik Sense.

I've added a field to the data called "area name" so it could be linked to other data you may have, and then imported it as an .xlsx file.

Then you can tag the polygon with a geo tag, and this will allow Qlik Sense to use this field within the mapping charts.

LOAD

    "area name",

    world.Area

FROM [lib://Desktop/Polygones_FRA.xlsx]

(ooxml, embedded labels, table is Feuil1);

tag fields "world.Area" with $geopolygon;

I've attached a .qvf to show you the final map.

View solution in original post

5 Replies
Michael_Tarallo
Employee
Employee

Hi Joshua,

Are you looking for a specific geographic area, or are you wanting to create something custom?

If geographic area - you can check this site out to download different KML levels of continents and countries.

If you are interested you can follow this process to obtain the .kml file:

Let us know

Mike

Regards,
Mike Tarallo
Qlik
suzel404
Creator
Creator
Author

Hi Michael,

Thanks you for your response. Very interesting!!

I want to create a custom kml file following polygones.

Joshua.


Bjorn_Wedbratt
Former Employee
Former Employee

Hi Joshua,

If you want to createa simple KML file, you can use Google Earth for example, http://www.instructables.com/id/Creating-KML-Files-For-Your-Custom-Google-Maps/

It's free and quite simple to use

suzel404
Creator
Creator
Author

Hi Bjorn,

I test the KML Files but Sense have a limit.

"Hyprcube is too large"
😞

Anonymous
Not applicable

As you already have the polygon data in an excel file - you don't need to create a kml file from this, you can simply import this information into Qlik Sense.

I've added a field to the data called "area name" so it could be linked to other data you may have, and then imported it as an .xlsx file.

Then you can tag the polygon with a geo tag, and this will allow Qlik Sense to use this field within the mapping charts.

LOAD

    "area name",

    world.Area

FROM [lib://Desktop/Polygones_FRA.xlsx]

(ooxml, embedded labels, table is Feuil1);

tag fields "world.Area" with $geopolygon;

I've attached a .qvf to show you the final map.