<?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:  How to apply different rates of change to different parts of the building? in ArcGIS CityEngine Questions</title>
    <link>https://community.esri.com/t5/arcgis-cityengine-questions/how-to-apply-different-rates-of-change-to/m-p/514034#M6946</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Cheryl, thank you so much for your help! I think you are right, I should combine all the initial shapes together before I input them into the CityEngine, there is no way to combine the initial shapes by the CGA rules.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;I will take your advise and combine them in the ArcGIS.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Thank you so much&lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 02 Feb 2016 02:09:12 GMT</pubDate>
    <dc:creator>TianfangJiang</dc:creator>
    <dc:date>2016-02-02T02:09:12Z</dc:date>
    <item>
      <title>How to apply different rates of change to different parts of the building?</title>
      <link>https://community.esri.com/t5/arcgis-cityengine-questions/how-to-apply-different-rates-of-change-to/m-p/514025#M6937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The grids in the following picture is the .shp file which is exported from ArcGIS. Then I read the MEAN_Z attribute from the Object Attribute and attributed it to the following grids.&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/172189_pastedImage_1.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After that I obtained the building in the following picture. Now my work is to modify this building. First I want to change the heights of different parts of the building. My problem is how to apply different rates of change to different parts of the building. &lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/172188_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried to write the code like this:&amp;nbsp; attr MEAN_Z&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; attr height= MEAN_Z*0.5;&lt;/P&gt;&lt;P&gt;but the result is the height of the whole building became 0.5 times than before which is not what I need. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I divide this building into different parts based on so many grids and how can I apply different rates of change to different parts?&lt;/P&gt;&lt;P&gt;I think you guys are more professional than me and thank you for your help &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Jan 2016 22:16:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-cityengine-questions/how-to-apply-different-rates-of-change-to/m-p/514025#M6937</guid>
      <dc:creator>TianfangJiang</dc:creator>
      <dc:date>2016-01-23T22:16:09Z</dc:date>
    </item>
    <item>
      <title>Re:  How to apply different rates of change to different parts of the building?</title>
      <link>https://community.esri.com/t5/arcgis-cityengine-questions/how-to-apply-different-rates-of-change-to/m-p/514026#M6938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could apply a component split to get all the faces of your object and then apply a rule to each face.&amp;nbsp; The rule could set the height of building.&amp;nbsp; (For the following code, assign the start rule Lot to your initial shape.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lot --&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; comp(f) { all : Face }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Face --&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; extrude(rand()*20 + 0.5*MEAN_Z)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // set height to random value in [MEAN_Z - 10, MEAN_Z + 10]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jan 2016 10:18:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-cityengine-questions/how-to-apply-different-rates-of-change-to/m-p/514026#M6938</guid>
      <dc:creator>CherylLau</dc:creator>
      <dc:date>2016-01-25T10:18:14Z</dc:date>
    </item>
    <item>
      <title>Re:  How to apply different rates of change to different parts of the building?</title>
      <link>https://community.esri.com/t5/arcgis-cityengine-questions/how-to-apply-different-rates-of-change-to/m-p/514027#M6939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Cheryl, but I don't want to set the height of building in a random value, I want to set it as a specific value which I need. And do you know how to divide the building into several parts?&lt;/P&gt;&lt;P&gt;Thank you for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jan 2016 03:19:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-cityengine-questions/how-to-apply-different-rates-of-change-to/m-p/514027#M6939</guid>
      <dc:creator>TianfangJiang</dc:creator>
      <dc:date>2016-01-26T03:19:54Z</dc:date>
    </item>
    <item>
      <title>Re:  How to apply different rates of change to different parts of the building?</title>
      <link>https://community.esri.com/t5/arcgis-cityengine-questions/how-to-apply-different-rates-of-change-to/m-p/514028#M6940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can set the building height to whatever you want.&amp;nbsp; I just chose random heights as an example, but you can put in your own calculations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to divide something into parts, then you'll probably want to use the split() operation:&lt;/P&gt;&lt;P&gt;&lt;A href="http://cehelp.esri.com/help/topic/com.procedural.cityengine.help/html/cgareference/op_split.html" title="http://cehelp.esri.com/help/topic/com.procedural.cityengine.help/html/cgareference/op_split.html"&gt;split Operation&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or, if you want to separate out the individual faces, then you'll probably want to use the comp() operation:&lt;/P&gt;&lt;P&gt;&lt;A href="http://cehelp.esri.com/help/topic/com.procedural.cityengine.help/html/cgareference/op_comp.html" title="http://cehelp.esri.com/help/topic/com.procedural.cityengine.help/html/cgareference/op_comp.html"&gt;Component Split Operation&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jan 2016 09:00:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-cityengine-questions/how-to-apply-different-rates-of-change-to/m-p/514028#M6940</guid>
      <dc:creator>CherylLau</dc:creator>
      <dc:date>2016-01-26T09:00:27Z</dc:date>
    </item>
    <item>
      <title>Re:  How to apply different rates of change to different parts of the building?</title>
      <link>https://community.esri.com/t5/arcgis-cityengine-questions/how-to-apply-different-rates-of-change-to/m-p/514029#M6941</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Cheryl, I think you are right, maybe I need to use the Split Operation, and then attribute different heights to different parts.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jan 2016 18:52:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-cityengine-questions/how-to-apply-different-rates-of-change-to/m-p/514029#M6941</guid>
      <dc:creator>TianfangJiang</dc:creator>
      <dc:date>2016-01-26T18:52:04Z</dc:date>
    </item>
    <item>
      <title>Re:  How to apply different rates of change to different parts of the building?</title>
      <link>https://community.esri.com/t5/arcgis-cityengine-questions/how-to-apply-different-rates-of-change-to/m-p/514030#M6942</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Cheryl,&lt;/P&gt;&lt;P&gt;I tried to apply the Split Operation but the result is that the separation can only be applied on each grid instead of the whole building geometry. The follow picture shows the result,&lt;/P&gt;&lt;P&gt;\&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/173785_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code I write for the separation is:&amp;nbsp;&amp;nbsp;&amp;nbsp; split(x) {'0.5:Z|&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '0.2:Y|&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '0.3:X}&lt;/P&gt;&lt;P&gt;What should I do if I don't want to split each grid but to group these grids into several parts?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jan 2016 20:13:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-cityengine-questions/how-to-apply-different-rates-of-change-to/m-p/514030#M6942</guid>
      <dc:creator>TianfangJiang</dc:creator>
      <dc:date>2016-01-26T20:13:17Z</dc:date>
    </item>
    <item>
      <title>Re:  How to apply different rates of change to different parts of the building?</title>
      <link>https://community.esri.com/t5/arcgis-cityengine-questions/how-to-apply-different-rates-of-change-to/m-p/514031#M6943</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not sure what you are referring to when you say "grids".&amp;nbsp; Are you referring to each face of your building footprint?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the shape that you apply the split rule to?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is your initial shape?&amp;nbsp; Is it a single initial shape with many faces?&amp;nbsp; Or, are there many initial shapes?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since I don't fully understand the situation, here are some general examples that might help you determine how to split your shapes to get what you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you start with a single initial shape (which contains many faces), then you can use split() to separate it into two parts:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lot --&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; split(x) { '0.5 : A&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; | '0.5 : B }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then, part A will contain all the faces on the first half, and part B will contain all the faces on the second half.&amp;nbsp; I think this is probably along the lines of what you want to do if you want to keep some faces together.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you use comp(f), then you separate your initial shape into faces where each face becomes a different shape, unless you use the = operator.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This code separates the shape into different faces where each face is a Face shape.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lot --&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; comp(f) { all : Face }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This code separates the shape into faces but keeps all the vertical faces together as a single shape VerticalFaces.&amp;nbsp; The non-vertical faces are separated into individual Face shapes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lot --&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; comp(f) { vertical = VerticalFaces&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; | all : Face }&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jan 2016 09:40:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-cityengine-questions/how-to-apply-different-rates-of-change-to/m-p/514031#M6943</guid>
      <dc:creator>CherylLau</dc:creator>
      <dc:date>2016-01-27T09:40:06Z</dc:date>
    </item>
    <item>
      <title>Re:  How to apply different rates of change to different parts of the building?</title>
      <link>https://community.esri.com/t5/arcgis-cityengine-questions/how-to-apply-different-rates-of-change-to/m-p/514032#M6944</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, when I referring grids I mean the initial shapes imported from the .shp file. In the following picture you can see many shapes in gray color, these are the "grids" (shapes) which are imported from the .shp file. &lt;IMG class="jive-image" height="950" src="https://community.esri.com/legacyfs/online/174266_pastedImage_1.png" style="line-height: 1.5; width: 1761px; height: 949.559px;" width="1761" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But in my case, I want to combine all these shapes together and let them become one building. In the picture, all these shapes combined together shows the footprint of my building.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jan 2016 19:46:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-cityengine-questions/how-to-apply-different-rates-of-change-to/m-p/514032#M6944</guid>
      <dc:creator>TianfangJiang</dc:creator>
      <dc:date>2016-01-27T19:46:03Z</dc:date>
    </item>
    <item>
      <title>Re:  How to apply different rates of change to different parts of the building?</title>
      <link>https://community.esri.com/t5/arcgis-cityengine-questions/how-to-apply-different-rates-of-change-to/m-p/514033#M6945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, so I was under the assumption that you had one shape with multiple faces.&amp;nbsp; In this case, the split operation would work, but if you had multiple initial shapes, there's no way to combine them in the rules.&amp;nbsp; I would suggest combining all the shapes into a single shape either in CE or in the software you are using to generate the shapefile.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could combine all the shapes into one shape in CityEngine by selecting them -&amp;gt; Shapes -&amp;gt; Combine Shapes.&amp;nbsp; This will give you a single shape with multiple faces.&amp;nbsp; Then you can apply a rule to the single shape.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or, you could combine all the shapes into a single shape before you export your shapefile.&amp;nbsp; It should be a similar procedure as in CityEngine (select all the polygons, then find the menu item to combine the polygons).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jan 2016 09:19:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-cityengine-questions/how-to-apply-different-rates-of-change-to/m-p/514033#M6945</guid>
      <dc:creator>CherylLau</dc:creator>
      <dc:date>2016-01-28T09:19:27Z</dc:date>
    </item>
    <item>
      <title>Re:  How to apply different rates of change to different parts of the building?</title>
      <link>https://community.esri.com/t5/arcgis-cityengine-questions/how-to-apply-different-rates-of-change-to/m-p/514034#M6946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Cheryl, thank you so much for your help! I think you are right, I should combine all the initial shapes together before I input them into the CityEngine, there is no way to combine the initial shapes by the CGA rules.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;I will take your advise and combine them in the ArcGIS.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Thank you so much&lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Feb 2016 02:09:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-cityengine-questions/how-to-apply-different-rates-of-change-to/m-p/514034#M6946</guid>
      <dc:creator>TianfangJiang</dc:creator>
      <dc:date>2016-02-02T02:09:12Z</dc:date>
    </item>
  </channel>
</rss>

