<?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: Job which creates 3 shapefiles from one according to a field in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Job-which-creates-3-shapefiles-from-one-according-to-a-field/m-p/2275967#M52190</link>
    <description>I would recommend you to read this tutorial on tMap . &lt;BR /&gt;It might help you to understand filtering using tMap, which BTW does not mean filter each incoming fields. &lt;BR /&gt;Mathieu&lt;BR /&gt; &lt;A href="http://www.talendforge.org/tutorials/tutorial.php?language=english&amp;amp;idTuto=9" rel="nofollow noopener noreferrer"&gt;http://www.talendforge.org/tutorials/tutorial.php?language=english&amp;amp;idTuto=9&lt;/A&gt;</description>
    <pubDate>Wed, 04 Sep 2013 10:07:40 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2013-09-04T10:07:40Z</dc:date>
    <item>
      <title>Job which creates 3 shapefiles from one according to a field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Job-which-creates-3-shapefiles-from-one-according-to-a-field/m-p/2275962#M52185</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;I would like to know if it's possible with TOS to create 3 shapefiles from one.&lt;BR /&gt;I have one shapefile (with a point geometry) with a field "Type" which contains 3 string values : "Site", "Technology point" and "Technology room". &lt;BR /&gt;I would like to get 3 shapes with the same fields but one shape for each "Type".&lt;BR /&gt;I tried with the components tReplicate and tMap but I don't succeed to split the shapefile according to the "Type" field.&lt;BR /&gt;Thank you for your help.&lt;BR /&gt;Best regards&lt;BR /&gt;Nicolas&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 11:55:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Job-which-creates-3-shapefiles-from-one-according-to-a-field/m-p/2275962#M52185</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T11:55:10Z</dc:date>
    </item>
    <item>
      <title>Re: Job which creates 3 shapefiles from one according to a field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Job-which-creates-3-shapefiles-from-one-according-to-a-field/m-p/2275963#M52186</link>
      <description>Hi Nicolas, 
&lt;BR /&gt;Sure it's possible using a tMap component for filtering on your field "Type". 
&lt;BR /&gt;You just have to create three output in your tMap, respectively linked to your three shapefile output components...and duplicate the other fields according to your needs. 
&lt;BR /&gt;You will have to explain your filter condition in Java in the tMap, something like : "Site".equals(rowX.Type) .... 
&lt;BR /&gt;Cheers, 
&lt;BR /&gt;Mathieu</description>
      <pubDate>Fri, 30 Aug 2013 10:15:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Job-which-creates-3-shapefiles-from-one-according-to-a-field/m-p/2275963#M52186</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-08-30T10:15:16Z</dc:date>
    </item>
    <item>
      <title>Re: Job which creates 3 shapefiles from one according to a field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Job-which-creates-3-shapefiles-from-one-according-to-a-field/m-p/2275964#M52187</link>
      <description>I'm not sure to understand what I have to do. 
&lt;BR /&gt;For my "Site" output shape, I use a tMap component with for each field the following condition : 
&lt;BR /&gt; (("Site".equals(row1.NO_TYPE))? row1.the_geom : null 
&lt;BR /&gt;(obvisouly, I replaced the field row1.the_geom with the good field). 
&lt;BR /&gt;In the tMap output, I have the 132 lines of the input shape and I would like to get 14 lines (the number of "Site"). So, I used a tFilterRows where I keep the lines with a geometry not null. 
&lt;BR /&gt;It works but when I use this method to get the "Technology poin", TOS crashes. 
&lt;BR /&gt;I think there is a bette idea , but I don't know which one.</description>
      <pubDate>Fri, 30 Aug 2013 13:31:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Job-which-creates-3-shapefiles-from-one-according-to-a-field/m-p/2275964#M52187</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-08-30T13:31:14Z</dc:date>
    </item>
    <item>
      <title>Re: Job which creates 3 shapefiles from one according to a field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Job-which-creates-3-shapefiles-from-one-according-to-a-field/m-p/2275965#M52188</link>
      <description>In my opinion, you only need your input shapefile, a tMap and your three shapefile output. 
&lt;BR /&gt;No need for tFilter components as you can filter output rows into your tMap. 
&lt;BR /&gt;The only thing you have to do is to define your three conditions in the tMap, one per output : 
&lt;BR /&gt;"Site".equals(row1.NO_TYPE) 
&lt;BR /&gt;"Technology point".equals(row1.NO_TYPE) 
&lt;BR /&gt;"Technology room".equals(row1.NO_TYPE) 
&lt;BR /&gt;Then you can reproduce the same output schema for all of them, even filter column by modifying the output schema...whatever you want to get! 
&lt;BR /&gt;Mathieu</description>
      <pubDate>Mon, 02 Sep 2013 13:25:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Job-which-creates-3-shapefiles-from-one-according-to-a-field/m-p/2275965#M52188</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-09-02T13:25:43Z</dc:date>
    </item>
    <item>
      <title>Re: Job which creates 3 shapefiles from one according to a field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Job-which-creates-3-shapefiles-from-one-according-to-a-field/m-p/2275966#M52189</link>
      <description>I don't understand where I can filter my input data in the tMap component. 
&lt;BR /&gt;For each field in the "Site" output schema, I wrote " ("Site".equals(row1.NO_TYPE)) ? value : null " 
&lt;BR /&gt;If I want to use only the tMap component , I must write or "nest" several tests in the same line ? It doesn't seem really clear to understand the job.
&lt;BR /&gt;I have another question : is it possible to join/merge 2 polylines with TOS ? I didn't find any component in the SDI to do that.
&lt;BR /&gt;Thank you four your help.
&lt;BR /&gt;Nicolas</description>
      <pubDate>Tue, 03 Sep 2013 09:52:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Job-which-creates-3-shapefiles-from-one-according-to-a-field/m-p/2275966#M52189</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-09-03T09:52:44Z</dc:date>
    </item>
    <item>
      <title>Re: Job which creates 3 shapefiles from one according to a field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Job-which-creates-3-shapefiles-from-one-according-to-a-field/m-p/2275967#M52190</link>
      <description>I would recommend you to read this tutorial on tMap . &lt;BR /&gt;It might help you to understand filtering using tMap, which BTW does not mean filter each incoming fields. &lt;BR /&gt;Mathieu&lt;BR /&gt; &lt;A href="http://www.talendforge.org/tutorials/tutorial.php?language=english&amp;amp;idTuto=9" rel="nofollow noopener noreferrer"&gt;http://www.talendforge.org/tutorials/tutorial.php?language=english&amp;amp;idTuto=9&lt;/A&gt;</description>
      <pubDate>Wed, 04 Sep 2013 10:07:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Job-which-creates-3-shapefiles-from-one-according-to-a-field/m-p/2275967#M52190</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-09-04T10:07:40Z</dc:date>
    </item>
    <item>
      <title>Re: Job which creates 3 shapefiles from one according to a field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Job-which-creates-3-shapefiles-from-one-according-to-a-field/m-p/2275968#M52191</link>
      <description>Thanks but I don't succeed to read any tutorials, when I write my amil and click on "register now", I'm redirected on the Talend home page. If I try again to read the tutorial, I have the same issue.
&lt;BR /&gt;It does'nt matter if I use 3 tFiler component, but I will try to improve the job later.
&lt;BR /&gt;And about my other question, is it possible to join/merge to polyline with TOS ?</description>
      <pubDate>Wed, 04 Sep 2013 10:54:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Job-which-creates-3-shapefiles-from-one-according-to-a-field/m-p/2275968#M52191</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-09-04T10:54:39Z</dc:date>
    </item>
    <item>
      <title>Re: Job which creates 3 shapefiles from one according to a field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Job-which-creates-3-shapefiles-from-one-according-to-a-field/m-p/2275969#M52192</link>
      <description>Hi Nykelbors8825
&lt;BR /&gt;For the access problem to Talend online tutorial, we have noticed this issue before and it has been fixed, right now, you can try the following way to resolve it, clear all caches and remove all cookies from your browser.
&lt;BR /&gt;Let me know if you still have problem to access tutorial.
&lt;BR /&gt;Shon</description>
      <pubDate>Mon, 16 Sep 2013 02:44:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Job-which-creates-3-shapefiles-from-one-according-to-a-field/m-p/2275969#M52192</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-09-16T02:44:32Z</dc:date>
    </item>
  </channel>
</rss>

