<?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 Cannot pick 'procedural layer' for point shapes in Arcgis Pro, cannot apply CityEngine rule pack  in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/cannot-pick-procedural-layer-for-point-shapes-in/m-p/628700#M27983</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, I created a rule package which uses CityEninge's tree library. I added the additional annotations so it would work in ArcGIS pro. (little cga code below). I want to generate the trees in ArcGis Pro using the 'procedural layer' option, which I should be able to select from the symbology &amp;gt; Properties drop down, right?&amp;nbsp; but this option does not appear. I only get marker, stroke and fill layer options. How I can assign the rule package to point shapes?.&amp;nbsp; The point data I have is a the city's vegetation in shape file. Using arcgis pro 1.3 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried converting converting the points to multipatch but then, the rpk does not apply since it is annotated with @InPoint. So, I would need an annotation for @Multipatch????? Using the preset option forces using a single color.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the code below is a minimized version. In reality it calls other 2 little cga files, but for testing I took may sections out.&amp;nbsp; &lt;BR /&gt;I guessed the order of how the additional annotations should go, so I am not entirely sure.. pls advise if this is wrongly done, too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;import Tree_Options: "rules/Esri Vegetation Library with LumentRT 3D Plants - Plant Loader.cga"&lt;BR /&gt;#import Root_Options:"rules/aoi_roots.cga"&lt;BR /&gt;#import LOD1_trees:"rules/aoi_lod1_tree.cga"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#&amp;nbsp;&amp;nbsp; Inspector - Trees&amp;nbsp; ##############################&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@Order(1) @Range("Cylinder","Lollypop","Fan","Analytical","Model")&lt;BR /&gt;attr Representation&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;= "Analytical"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@Group("Trees",1)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;@Order(1)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;attr Genus&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;= "Robinia"&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;@Hidden&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;attr Species&amp;nbsp;&amp;nbsp; &amp;nbsp;= "Pseudoacacia"&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;@Order(2) &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;@Distance &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;@Range(0,30) &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;@Description("Change diam 0-30m")&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;attr Canopy_Diameter &amp;nbsp;&amp;nbsp; &amp;nbsp;= 8 &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;@Hidden &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;@Distance &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;@Range(0,160) &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;attr Radius = Canopy_Diameter/2&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;@Order(3)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;@Distance &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;@Range(0,160) &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;@Description("Change 0-160m. Red trees have H&amp;lt;0")&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;attr Height &amp;nbsp;&amp;nbsp; &amp;nbsp;= 10&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;@Order(4) &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;@Range(0,1) &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;@Description("between 0 to 1")&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;attr Transparency &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;= 0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;################## START&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@StartRule @InPoint&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;load --&amp;gt; loadTrees&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loadTrees --&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;set(Tree_Options.Name, Tree_Options.getCommonName(Genus,Species))&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;set(Tree_Options.Radius,case Canopy_Diameter &amp;gt;0: Canopy_Diameter/2 else: Tree_Options.getRadius)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;/* set(Tree_Options.Height,case Height&amp;lt;0: 10 else: Height) drawRedCylinder &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;Tree_Options.Generate */&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;set(Tree_Options.Height,case Height&amp;lt;0: 10 else: Height) Tree_Options.Generate &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Jan 2017 17:46:54 GMT</pubDate>
    <dc:creator>LessieOC</dc:creator>
    <dc:date>2017-01-06T17:46:54Z</dc:date>
    <item>
      <title>Cannot pick 'procedural layer' for point shapes in Arcgis Pro, cannot apply CityEngine rule pack</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/cannot-pick-procedural-layer-for-point-shapes-in/m-p/628700#M27983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, I created a rule package which uses CityEninge's tree library. I added the additional annotations so it would work in ArcGIS pro. (little cga code below). I want to generate the trees in ArcGis Pro using the 'procedural layer' option, which I should be able to select from the symbology &amp;gt; Properties drop down, right?&amp;nbsp; but this option does not appear. I only get marker, stroke and fill layer options. How I can assign the rule package to point shapes?.&amp;nbsp; The point data I have is a the city's vegetation in shape file. Using arcgis pro 1.3 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried converting converting the points to multipatch but then, the rpk does not apply since it is annotated with @InPoint. So, I would need an annotation for @Multipatch????? Using the preset option forces using a single color.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the code below is a minimized version. In reality it calls other 2 little cga files, but for testing I took may sections out.&amp;nbsp; &lt;BR /&gt;I guessed the order of how the additional annotations should go, so I am not entirely sure.. pls advise if this is wrongly done, too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;import Tree_Options: "rules/Esri Vegetation Library with LumentRT 3D Plants - Plant Loader.cga"&lt;BR /&gt;#import Root_Options:"rules/aoi_roots.cga"&lt;BR /&gt;#import LOD1_trees:"rules/aoi_lod1_tree.cga"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#&amp;nbsp;&amp;nbsp; Inspector - Trees&amp;nbsp; ##############################&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@Order(1) @Range("Cylinder","Lollypop","Fan","Analytical","Model")&lt;BR /&gt;attr Representation&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;= "Analytical"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@Group("Trees",1)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;@Order(1)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;attr Genus&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;= "Robinia"&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;@Hidden&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;attr Species&amp;nbsp;&amp;nbsp; &amp;nbsp;= "Pseudoacacia"&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;@Order(2) &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;@Distance &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;@Range(0,30) &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;@Description("Change diam 0-30m")&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;attr Canopy_Diameter &amp;nbsp;&amp;nbsp; &amp;nbsp;= 8 &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;@Hidden &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;@Distance &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;@Range(0,160) &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;attr Radius = Canopy_Diameter/2&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;@Order(3)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;@Distance &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;@Range(0,160) &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;@Description("Change 0-160m. Red trees have H&amp;lt;0")&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;attr Height &amp;nbsp;&amp;nbsp; &amp;nbsp;= 10&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;@Order(4) &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;@Range(0,1) &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;@Description("between 0 to 1")&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;attr Transparency &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;= 0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;################## START&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@StartRule @InPoint&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;load --&amp;gt; loadTrees&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loadTrees --&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;set(Tree_Options.Name, Tree_Options.getCommonName(Genus,Species))&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;set(Tree_Options.Radius,case Canopy_Diameter &amp;gt;0: Canopy_Diameter/2 else: Tree_Options.getRadius)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;/* set(Tree_Options.Height,case Height&amp;lt;0: 10 else: Height) drawRedCylinder &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;Tree_Options.Generate */&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;set(Tree_Options.Height,case Height&amp;lt;0: 10 else: Height) Tree_Options.Generate &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jan 2017 17:46:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/cannot-pick-procedural-layer-for-point-shapes-in/m-p/628700#M27983</guid>
      <dc:creator>LessieOC</dc:creator>
      <dc:date>2017-01-06T17:46:54Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot pick 'procedural layer' for point shapes in Arcgis Pro, cannot apply CityEngine rule pack</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/cannot-pick-procedural-layer-for-point-shapes-in/m-p/628701#M27984</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Lessie,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you confirm that you are working in a scene document and that the point layer you are trying to symbolize&amp;nbsp;is in the '3D Layers' group in the Contents pane. If that is correct, try to refresh the the Symbology pane. To do this, right-click on the layer name and choose the 'Symbology option' or close and reopen the Symbology pane. Follow the instructions &lt;A href="http://pro.arcgis.com/en/pro-app/help/mapping/symbols-and-styles/procedural-symbol-layers.htm" style="color: #2989c5;"&gt;here&lt;/A&gt;&amp;nbsp;to add a procedural symbol layer.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if this solves the problem. We may have a refresh bug here that we need to fix.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jan 2017 22:18:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/cannot-pick-procedural-layer-for-point-shapes-in/m-p/628701#M27984</guid>
      <dc:creator>ChaitGaddam1</dc:creator>
      <dc:date>2017-01-13T22:18:42Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot pick 'procedural layer' for point shapes in Arcgis Pro, cannot apply CityEngine rule pack</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/cannot-pick-procedural-layer-for-point-shapes-in/m-p/628702#M27985</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chait, &lt;/P&gt;&lt;P&gt;The point data is a 2D and I mport it in the Map tab, I then covert it into 3D. the points do not appear in the 3D layer group, only in the 2D layers. The data/shp file has tree heigh attributes and z-terrain elevation. I link these attributes in CityEngine once I apply the .cga rul. I am sort of trying to do the ''same''&amp;nbsp; thing in ARc|GIS pro. What can/should I do to make the point-shape file go to the 3D layer in ArcGIS pro?&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jan 2017 09:48:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/cannot-pick-procedural-layer-for-point-shapes-in/m-p/628702#M27985</guid>
      <dc:creator>LessieOC</dc:creator>
      <dc:date>2017-01-17T09:48:38Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot pick 'procedural layer' for point shapes in Arcgis Pro, cannot apply CityEngine rule pack</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/cannot-pick-procedural-layer-for-point-shapes-in/m-p/628703#M27986</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just had to drag the 2D layer into the 3D layer. I can now apply the cga rule but the geometry is missing. I get the white unkown assets cubes instead.&lt;/P&gt;&lt;P&gt;The .rpk is not including the geometry which is called by the first line in the cga code. How to I force the geometry in the rpk?&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jan 2017 10:33:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/cannot-pick-procedural-layer-for-point-shapes-in/m-p/628703#M27986</guid>
      <dc:creator>LessieOC</dc:creator>
      <dc:date>2017-01-17T10:33:27Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot pick 'procedural layer' for point shapes in Arcgis Pro, cannot apply CityEngine rule pack</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/cannot-pick-procedural-layer-for-point-shapes-in/m-p/628704#M27987</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Can you provide a test RPK that shows this problem?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jan 2017 19:09:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/cannot-pick-procedural-layer-for-point-shapes-in/m-p/628704#M27987</guid>
      <dc:creator>ChaitGaddam1</dc:creator>
      <dc:date>2017-01-17T19:09:22Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot pick 'procedural layer' for point shapes in Arcgis Pro, cannot apply CityEngine rule pack</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/cannot-pick-procedural-layer-for-point-shapes-in/m-p/628705#M27988</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I fixed it. I just had to redo the path to the obj files from within the cga code. So it works with the test .cga. Sorry, dumb mistake.&lt;/P&gt;&lt;P&gt;When I do use the non-test code. It will call other 3 .cga files. Do I also need to add the different annotations to the other .cga files as well? ex.&amp;nbsp; @InPoint,&amp;nbsp; @Distance , etc??&amp;nbsp; or is it enough to only add these annotations to the main .cga file? &lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;L.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jan 2017 10:35:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/cannot-pick-procedural-layer-for-point-shapes-in/m-p/628705#M27988</guid>
      <dc:creator>LessieOC</dc:creator>
      <dc:date>2017-01-18T10:35:22Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot pick 'procedural layer' for point shapes in Arcgis Pro, cannot apply CityEngine rule pack</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/cannot-pick-procedural-layer-for-point-shapes-in/m-p/628706#M27989</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN&gt;@InPoint, @InPolygon, @InMesh are only added to the @StartRule that is in the main CGA file. There can/should be only one rule marked with @StartRule annotation. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;Annotations such as @Distance, @Angle are only for showing units or degree sign etc. in the user interface so if you want to show those, then you can use these annotations.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jan 2017 02:33:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/cannot-pick-procedural-layer-for-point-shapes-in/m-p/628706#M27989</guid>
      <dc:creator>ChaitGaddam1</dc:creator>
      <dc:date>2017-01-19T02:33:12Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot pick 'procedural layer' for point shapes in Arcgis Pro, cannot apply CityEngine rule pack</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/cannot-pick-procedural-layer-for-point-shapes-in/m-p/628707#M27990</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Awesome. Thank you Chait!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jan 2017 16:21:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/cannot-pick-procedural-layer-for-point-shapes-in/m-p/628707#M27990</guid>
      <dc:creator>LessieOC</dc:creator>
      <dc:date>2017-01-19T16:21:27Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot pick 'procedural layer' for point shapes in Arcgis Pro, cannot apply CityEngine rule pack</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/cannot-pick-procedural-layer-for-point-shapes-in/m-p/628708#M27991</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am having similar issues and I am not able to see the Procedural Fill option either.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Aug 2017 18:56:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/cannot-pick-procedural-layer-for-point-shapes-in/m-p/628708#M27991</guid>
      <dc:creator>JohnShell</dc:creator>
      <dc:date>2017-08-02T18:56:28Z</dc:date>
    </item>
  </channel>
</rss>

