<?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: Problem with mapping and geo location in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Problem-with-mapping-and-geo-location/m-p/2412553#M94756</link>
    <description>&lt;P&gt;More info regarding Qlik GeoAnalytics:&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/geoanalytics/Content/Qlik_GeoAnalytics/GeoAnalytics-Connector/GeoAnalytics-Connector.htm" target="_blank"&gt;Qlik GeoAnalytics Connector | Qlik GeoAnalytics Help&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;If you mapped the abbreviations to something the Qlik Sense map recognizes, you can display it on the map. You might have to manually adjust the scope to e.g. only look for cities.&lt;/P&gt;
&lt;P&gt;Here is a quick example of me mapping the license plate codes for Hamburg, Bremen, Berlin, Munich and Stuttgart to their respective UN/LOCODE and showing them on a map. I didn't have to adjust the scope, but it may help with your application:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="LRuCelver_0-1706619996529.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/158634i674C3C2FA0DAB442/image-size/medium?v=v2&amp;amp;px=400" role="button" title="LRuCelver_0-1706619996529.png" alt="LRuCelver_0-1706619996529.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Map_Plate_Locode:
Mapping Load * Inline [
	PlateAbb,	UNLOCODE
	HH,			DEHAM
	HB,			DEBRE
	B,			DEBER
	M,			DEMUC
	S,			DESTR
];

Data:
Load 
	ApplyMap('Map_Plate_Locode', Abbreviation) as Locode
Inline [
	Abbreviation
	HH
	HB
	B
	M
	S
];&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 30 Jan 2024 13:08:38 GMT</pubDate>
    <dc:creator>LRuCelver</dc:creator>
    <dc:date>2024-01-30T13:08:38Z</dc:date>
    <item>
      <title>Problem with mapping and geo location</title>
      <link>https://community.qlik.com/t5/App-Development/Problem-with-mapping-and-geo-location/m-p/2412416#M94733</link>
      <description>&lt;P&gt;Hello everyone,&lt;/P&gt;
&lt;P&gt;I am trying to add a map to my analysis. The problem is, that for the cities I only have the abbreviation, and the map is taking the wrongly. I tried in many ways to add an if column to match the abbreviations to the cities but for one reason or another, it is not taking me anywhere.&lt;/P&gt;
&lt;P&gt;A mapping table was use which looks like: (is written in a mapping section)&lt;/P&gt;
&lt;P&gt;Map_Company:&lt;BR /&gt;Mapping&lt;BR /&gt;&amp;nbsp; &amp;nbsp;LOAD&lt;BR /&gt;&amp;nbsp; &amp;nbsp;Client,&lt;BR /&gt;&amp;nbsp; &amp;nbsp;Company&lt;BR /&gt;FROM [lib://daten/01 Food/Version_5/20200429.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is Company);&lt;/P&gt;
&lt;P&gt;Then I have another section for the principal data, and the Company is loaded like this:&lt;/P&gt;
&lt;P&gt;Data_022:&lt;BR /&gt;LOAD&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; applymap ('Map_Company', Client) as Company,&lt;/P&gt;
&lt;P&gt;"Company" ends up showing me the abbreviations for the cities, now what I want to do is to link this abbreviations to the respective cities. How can I do that?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks!!!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2024 09:36:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Problem-with-mapping-and-geo-location/m-p/2412416#M94733</guid>
      <dc:creator>Nemo1</dc:creator>
      <dc:date>2024-01-30T09:36:58Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with mapping and geo location</title>
      <link>https://community.qlik.com/t5/App-Development/Problem-with-mapping-and-geo-location/m-p/2412528#M94746</link>
      <description>&lt;P&gt;Just for clarification:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;The field "Company" is supposed to show the abbreviations of the cities?&lt;/LI&gt;
&lt;LI&gt;You tried to display the cities on a map but they display in the wrong locations?&lt;/LI&gt;
&lt;LI&gt;You are trying to fix this by 'linking' the abbreviations to the full city names?&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;If you have access to the Qlik GeoAnalytics Connection, you can load a table with all recognized city codes/names and try to create a manual mapping from the abbreviations.&lt;BR /&gt;If you have a&amp;nbsp;&lt;SPAN&gt;standardized abbreviation/code (e.g. UN/LOCODE) there is a high chance Qlik Sense will display the city correctly with just the code.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2024 12:33:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Problem-with-mapping-and-geo-location/m-p/2412528#M94746</guid>
      <dc:creator>LRuCelver</dc:creator>
      <dc:date>2024-01-30T12:33:38Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with mapping and geo location</title>
      <link>https://community.qlik.com/t5/App-Development/Problem-with-mapping-and-geo-location/m-p/2412530#M94748</link>
      <description>&lt;P&gt;Hello, thanks for your answer.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1- Yes, Company shows the abbreviations of the cities.&lt;/P&gt;
&lt;P&gt;2- Exactly, they were showing random locations&lt;/P&gt;
&lt;P&gt;3- Exactly, that was my plan.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I did not know that something like GeoAnalytics Connection existed. Where can I get these access?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2024 12:36:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Problem-with-mapping-and-geo-location/m-p/2412530#M94748</guid>
      <dc:creator>Nemo1</dc:creator>
      <dc:date>2024-01-30T12:36:43Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with mapping and geo location</title>
      <link>https://community.qlik.com/t5/App-Development/Problem-with-mapping-and-geo-location/m-p/2412553#M94756</link>
      <description>&lt;P&gt;More info regarding Qlik GeoAnalytics:&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/geoanalytics/Content/Qlik_GeoAnalytics/GeoAnalytics-Connector/GeoAnalytics-Connector.htm" target="_blank"&gt;Qlik GeoAnalytics Connector | Qlik GeoAnalytics Help&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;If you mapped the abbreviations to something the Qlik Sense map recognizes, you can display it on the map. You might have to manually adjust the scope to e.g. only look for cities.&lt;/P&gt;
&lt;P&gt;Here is a quick example of me mapping the license plate codes for Hamburg, Bremen, Berlin, Munich and Stuttgart to their respective UN/LOCODE and showing them on a map. I didn't have to adjust the scope, but it may help with your application:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="LRuCelver_0-1706619996529.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/158634i674C3C2FA0DAB442/image-size/medium?v=v2&amp;amp;px=400" role="button" title="LRuCelver_0-1706619996529.png" alt="LRuCelver_0-1706619996529.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Map_Plate_Locode:
Mapping Load * Inline [
	PlateAbb,	UNLOCODE
	HH,			DEHAM
	HB,			DEBRE
	B,			DEBER
	M,			DEMUC
	S,			DESTR
];

Data:
Load 
	ApplyMap('Map_Plate_Locode', Abbreviation) as Locode
Inline [
	Abbreviation
	HH
	HB
	B
	M
	S
];&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2024 13:08:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Problem-with-mapping-and-geo-location/m-p/2412553#M94756</guid>
      <dc:creator>LRuCelver</dc:creator>
      <dc:date>2024-01-30T13:08:38Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with mapping and geo location</title>
      <link>https://community.qlik.com/t5/App-Development/Problem-with-mapping-and-geo-location/m-p/2413821#M94901</link>
      <description>&lt;P&gt;Great, thanks!!!&lt;/P&gt;</description>
      <pubDate>Fri, 02 Feb 2024 07:18:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Problem-with-mapping-and-geo-location/m-p/2413821#M94901</guid>
      <dc:creator>Nemo1</dc:creator>
      <dc:date>2024-02-02T07:18:18Z</dc:date>
    </item>
  </channel>
</rss>

