<?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>idea From now on, please track this idea from the Ideation por... in Suggest an Idea</title>
    <link>https://community.qlik.com/t5/Suggest-an-Idea/GeoAnalytics-Improve-quot-NamedPointLookup-quot-functionalities/idc-p/2100415#M13675</link>
    <description>&lt;P&gt;From now on, please track this idea from the Ideation portal.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;A title="Link to new idea" href="https://ideation.qlik.com/app/#/case/274428" target="_blank" rel="noopener"&gt;Link to new idea&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Meghann&lt;/P&gt;&lt;P data-unlink="true"&gt;&lt;EM&gt;NOTE: Upon clicking this link 2 tabs may open - please feel free to close the one with a login page. If you &lt;STRONG&gt;only&lt;/STRONG&gt; see 1 tab with the login page, please try clicking this link first: &lt;STRONG&gt;&lt;A title="Authenticate me!" href="#" target="_blank" rel="noopener"&gt;Authenticate me!&lt;/A&gt;&lt;/STRONG&gt;&amp;nbsp;t&lt;/EM&gt;&lt;EM&gt;hen try the link above again. Ensure pop-up blocker is off.&lt;/EM&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 02 Aug 2023 15:32:56 GMT</pubDate>
    <dc:creator>Meghann_MacDonald</dc:creator>
    <dc:date>2023-08-02T15:32:56Z</dc:date>
    <item>
      <title>GeoAnalytics: Improve "NamedPointLookup" functionalities in order obtain a sufficient quality of detection &amp; search</title>
      <link>https://community.qlik.com/t5/Suggest-an-Idea/GeoAnalytics-Improve-quot-NamedPointLookup-quot-functionalities/idi-p/1775533</link>
      <description>&lt;P&gt;QlikSense dashboard demo to show exemples of GPS coordinates detection issues with&amp;nbsp;&lt;SPAN&gt;"NamedPointLookup" tool&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;(ref. to the idea&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Ideas/GeoAnalytics-Improve-quot-NamedPointLookup-quot-functionalities/idi-p/1775512#comment-on-this" target="_blank" rel="noopener"&gt;https://community.qlik.com/t5/Ideas/GeoAnalytics-Improve-quot-NamedPointLookup-quot-functionalities/idi-p/1775512#comment-on-this&lt;/A&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="exemple.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/47381i2A221055C67C2638/image-size/large?v=v2&amp;amp;px=999" role="button" title="exemple.png" alt="exemple.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Script used :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;CityDetection:
LOAD * INLINE [
Id, CityCountryName
1, "La Roche-sur-Yon,FR"
2,  "La Roche sur Yon,FR"
3, "Saint-Gilles-Croix-de-Vie,FR"
4, "Saint-Gilles Croix de Vie,FR"
5, "La Rochelle,FR"
6, "La  Rochelle,FR"
];

LIB CONNECT TO 'GeoAnalyticsPlusCloud';

/* Generated by GeoAnalytics for operation NamedPointLookup ---------------------- */
[_inlineMap_]:
mapping LOAD * inline [
_char_, _utf_
"'", '\u0027'
'"', '\u0022'
"[", '\u005b'
"/", '\u002f'
"*", '\u002a'
";", '\u003b'
"}", '\u007d'
"{", '\u007b'
"`", '\u0060'
"´", '\u00b4'
"	", '\u0009'
];

IF FieldNumber('Id', 'CityDetection') = 0 THEN
	call InvalidInlineData('The field Id in CityDetection is not available');
END IF
IF FieldNumber('CityCountryName', 'CityDetection') = 0 THEN
	call InvalidInlineData('The field CityCountryName in CityDetection is not available');
END IF
Let [CityDetectionInlineTable] = 'Id' &amp;amp; Chr(9) &amp;amp; 'CityCountryName';
Let numRows = NoOfRows('CityDetection');
Let chunkSize = 1000;
Let chunks = numRows/chunkSize;
For n = 0 to chunks
	Let chunkText = '';
	Let chunk = n*chunkSize;
	For i = 0 To chunkSize-1
		Let row = '';
		Let rowNr = chunk+i;
		Exit for when rowNr &amp;gt;= numRows;
		For Each f In 'Id', 'CityCountryName'
			row = row &amp;amp; Chr(9) &amp;amp; MapSubString('_inlineMap_', Peek('$(f)', $(rowNr), 'CityDetection'));
		Next
		chunkText = chunkText &amp;amp; Chr(10) &amp;amp; Mid('$(row)', 2);
	Next
	[CityDetectionInlineTable] = [CityDetectionInlineTable] &amp;amp; chunkText;
Next
chunkText=''


[LookupResult]:
SQL SELECT [CityCountryName], [CityDetection_Geometry], [CityDetection_Name], [CountryIso2] FROM NamedPointLookup(nameField='CityCountryName', type='P*', country='', nameTable='CityDetection')
DATASOURCE CityDetection INLINE tableName='CityDetection', tableFields='Id,CityCountryName', geometryType='NONE', loadDistinct='NO', suffix='', crs='Auto' {$(CityDetectionInlineTable)}
;
tag field [CityCountryName] with '$primarykey';
tag field [CityDetection_Geometry] with '$geopoint';
tag field [CityCountryName] with '$geoname';
tag field [CityDetection_Geometry] with '$relates_CityCountryName';
tag field [CityCountryName] with '$relates_CityDetection_Geometry';

[CityDetectionInlineTable] = '';
/* End GeoAnalytics operation NamedPointLookup ----------------------------------- */

LEFT JOIN(CityDetection)
LOAD *
RESIDENT [LookupResult];

DROP TABLE [LookupResult];&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jan 2021 22:04:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Suggest-an-Idea/GeoAnalytics-Improve-quot-NamedPointLookup-quot-functionalities/idi-p/1775533</guid>
      <dc:creator>Florent</dc:creator>
      <dc:date>2021-01-27T22:04:01Z</dc:date>
    </item>
    <item>
      <title>Re: GeoAnalytics: Improve "NamedPointLookup" functionalities in order obtain a sufficient quality of detection &amp; search - Status changed to: Open - Collecting Feedback</title>
      <link>https://community.qlik.com/t5/Suggest-an-Idea/GeoAnalytics-Improve-quot-NamedPointLookup-quot-functionalities/idc-p/1785454#M5275</link>
      <description>&lt;P&gt;Thank you for your feedback on ways to improve our product. While this is something we understand would be useful, it's not on the short-term roadmap. Please continue to show your support for this idea.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Patric&lt;/P&gt;</description>
      <pubDate>Tue, 23 Feb 2021 18:16:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Suggest-an-Idea/GeoAnalytics-Improve-quot-NamedPointLookup-quot-functionalities/idc-p/1785454#M5275</guid>
      <dc:creator>Patric_Nordstrom</dc:creator>
      <dc:date>2021-02-23T18:16:26Z</dc:date>
    </item>
    <item>
      <title>From now on, please track this idea from the Ideation por...</title>
      <link>https://community.qlik.com/t5/Suggest-an-Idea/GeoAnalytics-Improve-quot-NamedPointLookup-quot-functionalities/idc-p/2100415#M13675</link>
      <description>&lt;P&gt;From now on, please track this idea from the Ideation portal.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;A title="Link to new idea" href="https://ideation.qlik.com/app/#/case/274428" target="_blank" rel="noopener"&gt;Link to new idea&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Meghann&lt;/P&gt;&lt;P data-unlink="true"&gt;&lt;EM&gt;NOTE: Upon clicking this link 2 tabs may open - please feel free to close the one with a login page. If you &lt;STRONG&gt;only&lt;/STRONG&gt; see 1 tab with the login page, please try clicking this link first: &lt;STRONG&gt;&lt;A title="Authenticate me!" href="#" target="_blank" rel="noopener"&gt;Authenticate me!&lt;/A&gt;&lt;/STRONG&gt;&amp;nbsp;t&lt;/EM&gt;&lt;EM&gt;hen try the link above again. Ensure pop-up blocker is off.&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Aug 2023 15:32:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Suggest-an-Idea/GeoAnalytics-Improve-quot-NamedPointLookup-quot-functionalities/idc-p/2100415#M13675</guid>
      <dc:creator>Meghann_MacDonald</dc:creator>
      <dc:date>2023-08-02T15:32:56Z</dc:date>
    </item>
    <item>
      <title>Re: GeoAnalytics: Improve "NamedPointLookup" functionalities in order obtain a sufficient quality of detection &amp; search - Status changed to: Closed - Archived</title>
      <link>https://community.qlik.com/t5/Suggest-an-Idea/GeoAnalytics-Improve-quot-NamedPointLookup-quot-functionalities/idc-p/2100416#M13676</link>
      <description />
      <pubDate>Wed, 02 Aug 2023 15:32:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Suggest-an-Idea/GeoAnalytics-Improve-quot-NamedPointLookup-quot-functionalities/idc-p/2100416#M13676</guid>
      <dc:creator>Ideation</dc:creator>
      <dc:date>2023-08-02T15:32:58Z</dc:date>
    </item>
  </channel>
</rss>

