<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Qlik Sense Maps in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Maps/m-p/1548221#M39466</link>
    <description>&lt;P&gt;I'm not sure if there is an easy or direct way then how I have been able to do it as mentioned below.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="cs.PNG" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/6618i6CDBEF6EDF331325/image-size/large?v=v2&amp;amp;px=999" role="button" title="cs.PNG" alt="cs.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I had used following using the reqion name to view geo area&lt;/P&gt;&lt;P&gt;&lt;A href="https://nominatim.openstreetmap.org/search.php?q=East+Midlands%2C+UK&amp;amp;polygon_geojson=1&amp;amp;viewbox=" target="_blank" rel="noopener"&gt;https://nominatim.openstreetmap.org/search.php?q=East+Midlands%2C+UK&amp;amp;polygon_geojson=1&amp;amp;viewbox=&lt;/A&gt;&lt;/P&gt;&lt;P&gt;and following to get polygon coordinates&lt;/P&gt;&lt;P&gt;&lt;A href="https://nominatim.openstreetmap.org/search.php?q=" target="_blank" rel="noopener"&gt;https://nominatim.openstreetmap.org/search.php?q=&lt;/A&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;East+Midlands%2C+UK&lt;/STRONG&gt;&lt;/FONT&gt;&amp;amp;polygon_geojson=1&amp;amp;format=json&lt;BR /&gt;&lt;A href="https://nominatim.openstreetmap.org/search.php?q=East+of+England%2C+UK&amp;amp;polygon_geojson=1&amp;amp;format=json" target="_blank" rel="noopener"&gt;https://nominatim.openstreetmap.org/search.php?q=East+of+England%2C+UK&amp;amp;polygon_geojson=1&amp;amp;format=json&lt;/A&gt;&lt;/P&gt;&lt;P&gt;From the saved JSON file I had to remove the Beginning and Ending Square Brackets to do the conversion to KML&lt;/P&gt;&lt;P&gt;Following sites can be used for conversion&lt;BR /&gt;&lt;A href="https://mygeodata.cloud/converter/json-to-kml" target="_blank" rel="noopener"&gt;https://mygeodata.cloud/converter/json-to-kml&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://geoconverter.hsr.ch/" target="_blank" rel="noopener"&gt;https://geoconverter.hsr.ch/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I had to edit and merge the individual KML files to create a single KML for easier loading in Qlik Sense. Please refer to following text and files for reference.&lt;/P&gt;&lt;P&gt;&amp;lt;?xml version="1.0" encoding="utf-8" ?&amp;gt;&lt;BR /&gt;&amp;lt;kml xmlns="&lt;A href="http://www.opengis.net/kml/2.2" target="_blank" rel="noopener"&gt;http://www.opengis.net/kml/2.2&lt;/A&gt;"&amp;gt;&lt;BR /&gt;&amp;lt;Document id="root_doc"&amp;gt;&lt;BR /&gt;&amp;lt;Folder&amp;gt;&lt;BR /&gt;&amp;lt;name&amp;gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;RegionName&lt;/STRONG&gt;&lt;/FONT&gt;&amp;lt;/name&amp;gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;Placemark&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&amp;lt;name&amp;gt;East of England&amp;lt;/name&amp;gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;lt;Style&amp;gt;&amp;lt;LineStyle&amp;gt;&amp;lt;color&amp;gt;ff0000ff&amp;lt;/color&amp;gt;&amp;lt;/LineStyle&amp;gt;&amp;lt;PolyStyle&amp;gt;&amp;lt;fill&amp;gt;0&amp;lt;/fill&amp;gt;&amp;lt;/PolyStyle&amp;gt;&amp;lt;/Style&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;Polygon&amp;gt;&amp;lt;outerBoundaryIs&amp;gt;&amp;lt;LinearRing&amp;gt;&amp;lt;coordinates&amp;gt;&amp;nbsp;&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;(Multiple Coordinate here that are removed here in example but you can refer in file)&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;lt;/coordinates&amp;gt;&amp;lt;/LinearRing&amp;gt;&amp;lt;/outerBoundaryIs&amp;gt;&amp;lt;/Polygon&amp;gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;lt;/Placemark&amp;gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;The above italic section you can repeat for each region.&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;BR /&gt;[SalesData]:&lt;BR /&gt;LOAD&lt;BR /&gt;Region1,&lt;BR /&gt;RegionName,&lt;BR /&gt;SalesCountry,&lt;BR /&gt;SalesCountryCode2,&lt;BR /&gt;SalesCountryCode3,&lt;BR /&gt;Sales//,&lt;BR /&gt;// Latitude,&lt;BR /&gt;// Longitude,&lt;BR /&gt;// AreaCoordinates&lt;BR /&gt;FROM [lib://AttachedFiles/UKData.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is Sheet3);&lt;/P&gt;&lt;P&gt;LOAD&lt;BR /&gt;UKRegion.Name as RegionName,&lt;BR /&gt;// UKRegion.Point,&lt;BR /&gt;UKRegion.Area as Area//,&lt;BR /&gt;// UKRegion.Line&lt;BR /&gt;FROM [lib://AttachedFiles/UKRegion.kml]&lt;BR /&gt;(kml, Table is [UKRegion/RegionName]);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 22 Feb 2019 18:09:27 GMT</pubDate>
    <dc:creator>vvira1316</dc:creator>
    <dc:date>2019-02-22T18:09:27Z</dc:date>
    <item>
      <title>Qlik Sense Maps</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Maps/m-p/1548077#M39452</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;How to create UK regions-&amp;nbsp; area map in qlik sense, If I load the below regions into map , not showing all regions.&lt;/P&gt;&lt;P&gt;Can any one please suggest how to make Area Map in Qlik sense with below regions . Thanks in advance.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Region&lt;BR /&gt;East Midlands&lt;BR /&gt;East of England&lt;BR /&gt;London&lt;BR /&gt;National&lt;BR /&gt;North East&lt;BR /&gt;North West&lt;BR /&gt;Northern Ireland&lt;BR /&gt;Scotland&lt;BR /&gt;South Central&lt;BR /&gt;South East Coast&lt;BR /&gt;South West&lt;BR /&gt;Wales&lt;BR /&gt;West Midlands&lt;BR /&gt;Yorkshire &amp;amp; the Humber&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 06:31:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Maps/m-p/1548077#M39452</guid>
      <dc:creator>maheshankala</dc:creator>
      <dc:date>2024-11-16T06:31:10Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense Maps</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Maps/m-p/1548221#M39466</link>
      <description>&lt;P&gt;I'm not sure if there is an easy or direct way then how I have been able to do it as mentioned below.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="cs.PNG" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/6618i6CDBEF6EDF331325/image-size/large?v=v2&amp;amp;px=999" role="button" title="cs.PNG" alt="cs.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I had used following using the reqion name to view geo area&lt;/P&gt;&lt;P&gt;&lt;A href="https://nominatim.openstreetmap.org/search.php?q=East+Midlands%2C+UK&amp;amp;polygon_geojson=1&amp;amp;viewbox=" target="_blank" rel="noopener"&gt;https://nominatim.openstreetmap.org/search.php?q=East+Midlands%2C+UK&amp;amp;polygon_geojson=1&amp;amp;viewbox=&lt;/A&gt;&lt;/P&gt;&lt;P&gt;and following to get polygon coordinates&lt;/P&gt;&lt;P&gt;&lt;A href="https://nominatim.openstreetmap.org/search.php?q=" target="_blank" rel="noopener"&gt;https://nominatim.openstreetmap.org/search.php?q=&lt;/A&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;East+Midlands%2C+UK&lt;/STRONG&gt;&lt;/FONT&gt;&amp;amp;polygon_geojson=1&amp;amp;format=json&lt;BR /&gt;&lt;A href="https://nominatim.openstreetmap.org/search.php?q=East+of+England%2C+UK&amp;amp;polygon_geojson=1&amp;amp;format=json" target="_blank" rel="noopener"&gt;https://nominatim.openstreetmap.org/search.php?q=East+of+England%2C+UK&amp;amp;polygon_geojson=1&amp;amp;format=json&lt;/A&gt;&lt;/P&gt;&lt;P&gt;From the saved JSON file I had to remove the Beginning and Ending Square Brackets to do the conversion to KML&lt;/P&gt;&lt;P&gt;Following sites can be used for conversion&lt;BR /&gt;&lt;A href="https://mygeodata.cloud/converter/json-to-kml" target="_blank" rel="noopener"&gt;https://mygeodata.cloud/converter/json-to-kml&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://geoconverter.hsr.ch/" target="_blank" rel="noopener"&gt;https://geoconverter.hsr.ch/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I had to edit and merge the individual KML files to create a single KML for easier loading in Qlik Sense. Please refer to following text and files for reference.&lt;/P&gt;&lt;P&gt;&amp;lt;?xml version="1.0" encoding="utf-8" ?&amp;gt;&lt;BR /&gt;&amp;lt;kml xmlns="&lt;A href="http://www.opengis.net/kml/2.2" target="_blank" rel="noopener"&gt;http://www.opengis.net/kml/2.2&lt;/A&gt;"&amp;gt;&lt;BR /&gt;&amp;lt;Document id="root_doc"&amp;gt;&lt;BR /&gt;&amp;lt;Folder&amp;gt;&lt;BR /&gt;&amp;lt;name&amp;gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;RegionName&lt;/STRONG&gt;&lt;/FONT&gt;&amp;lt;/name&amp;gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;Placemark&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&amp;lt;name&amp;gt;East of England&amp;lt;/name&amp;gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;lt;Style&amp;gt;&amp;lt;LineStyle&amp;gt;&amp;lt;color&amp;gt;ff0000ff&amp;lt;/color&amp;gt;&amp;lt;/LineStyle&amp;gt;&amp;lt;PolyStyle&amp;gt;&amp;lt;fill&amp;gt;0&amp;lt;/fill&amp;gt;&amp;lt;/PolyStyle&amp;gt;&amp;lt;/Style&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;Polygon&amp;gt;&amp;lt;outerBoundaryIs&amp;gt;&amp;lt;LinearRing&amp;gt;&amp;lt;coordinates&amp;gt;&amp;nbsp;&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;(Multiple Coordinate here that are removed here in example but you can refer in file)&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;lt;/coordinates&amp;gt;&amp;lt;/LinearRing&amp;gt;&amp;lt;/outerBoundaryIs&amp;gt;&amp;lt;/Polygon&amp;gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;lt;/Placemark&amp;gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;The above italic section you can repeat for each region.&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;BR /&gt;[SalesData]:&lt;BR /&gt;LOAD&lt;BR /&gt;Region1,&lt;BR /&gt;RegionName,&lt;BR /&gt;SalesCountry,&lt;BR /&gt;SalesCountryCode2,&lt;BR /&gt;SalesCountryCode3,&lt;BR /&gt;Sales//,&lt;BR /&gt;// Latitude,&lt;BR /&gt;// Longitude,&lt;BR /&gt;// AreaCoordinates&lt;BR /&gt;FROM [lib://AttachedFiles/UKData.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is Sheet3);&lt;/P&gt;&lt;P&gt;LOAD&lt;BR /&gt;UKRegion.Name as RegionName,&lt;BR /&gt;// UKRegion.Point,&lt;BR /&gt;UKRegion.Area as Area//,&lt;BR /&gt;// UKRegion.Line&lt;BR /&gt;FROM [lib://AttachedFiles/UKRegion.kml]&lt;BR /&gt;(kml, Table is [UKRegion/RegionName]);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Feb 2019 18:09:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Maps/m-p/1548221#M39466</guid>
      <dc:creator>vvira1316</dc:creator>
      <dc:date>2019-02-22T18:09:27Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense Maps</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Maps/m-p/1548701#M39520</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Here is another site that can provide better mapping&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://borders.ukdataservice.ac.uk/easy_download.html" target="_blank" rel="noopener"&gt;https://borders.ukdataservice.ac.uk/easy_download.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I had to edit the KML files.&lt;/P&gt;&lt;P&gt;LOAD&lt;BR /&gt;infuse_rgn_2011.Name as RegionName,&lt;BR /&gt;// infuse_rgn_2011.Point,&lt;BR /&gt;infuse_rgn_2011.Area as Area//,&lt;BR /&gt;// infuse_rgn_2011.Line&lt;BR /&gt;FROM [lib://AttachedFiles/infuse_rgn_2011.kml]&lt;BR /&gt;(kml, Table is [infuse_rgn_2011/sql_statement]);&lt;BR /&gt;Concatenate&lt;BR /&gt;LOAD&lt;BR /&gt;wales_ol_2011.Name as RegionName,&lt;BR /&gt;wales_ol_2011.Area as Area&lt;BR /&gt;FROM [lib://AttachedFiles/wales_ol_2011.kml]&lt;BR /&gt;(kml, Table is [wales_ol_2011/sql_statement]);&lt;BR /&gt;Concatenate&lt;BR /&gt;LOAD&lt;BR /&gt;scotland_ol_2001_mod.Name as RegionName,&lt;BR /&gt;scotland_ol_2001_mod.Area as Area&lt;BR /&gt;FROM [lib://AttachedFiles/scotland_ol_2001_mod.kml]&lt;BR /&gt;(kml, Table is [scotland_ol_2001_mod/sql_statement]);&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="cs.PNG" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/6680iB4783C28F837F243/image-size/large?v=v2&amp;amp;px=999" role="button" title="cs.PNG" alt="cs.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The Northern Ireland data points in a single node is too long. Qlik is unable to load and will receive following error message&lt;/P&gt;&lt;DIV class="headline edc_error"&gt;The following error occurred:&lt;/DIV&gt;&lt;DIV class="edc_error"&gt;xmlSAX2Characters: huge text node On line number: 16. SystemID: (null)&lt;/DIV&gt;</description>
      <pubDate>Mon, 25 Feb 2019 12:47:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Maps/m-p/1548701#M39520</guid>
      <dc:creator>vvira1316</dc:creator>
      <dc:date>2019-02-25T12:47:26Z</dc:date>
    </item>
  </channel>
</rss>

