<?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: Creating Multipart Objects in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/creating-multipart-objects/m-p/1672314#M100779</link>
    <description>&lt;P&gt;not sure if you want the features to remain in the same layer or not.&amp;nbsp; If you want separate layers for each grouping see&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/analysis/split-by-attributes.htm" target="_blank" rel="noopener"&gt;Split By Attributes (Analysis)—ArcGIS Pro | Documentation&lt;/A&gt;&lt;/P&gt;&lt;P&gt;or if you want to split by using another geometry layer&amp;nbsp;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/analysis/split.htm" target="_blank"&gt;Split (Analysis)—ArcGIS Pro | Documentation&lt;/A&gt;&lt;/P&gt;&lt;P&gt;The opposite of multipart to singlepart is&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/dissolve.htm" target="_blank" rel="noopener"&gt;Dissolve (Data Management)—ArcGIS Pro | Documentation&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 11 Dec 2025 15:29:17 GMT</pubDate>
    <dc:creator>DanPatterson</dc:creator>
    <dc:date>2025-12-11T15:29:17Z</dc:date>
    <item>
      <title>Creating Multipart Objects</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/creating-multipart-objects/m-p/1672308#M100778</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I have a polyline shapefile layer in ArcGIS Pro which shows the road system of a proposed development. All of the roads are on this one layer, but I want to break it down into different selectable sectors for different parts of the development. I used the Multipart to Singlepart tool to break down the shapefile, but I can't find a tool to allow me to select certain polylines to group together (I essentially want to create the equivalent of a block in AutoCAD where all the roads in Sector 1 are grouped together, all the roads in Sector 2 are grouped together etc.). Is it possible to do this in GIS?&lt;/P&gt;</description>
      <pubDate>Thu, 11 Dec 2025 15:17:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/creating-multipart-objects/m-p/1672308#M100778</guid>
      <dc:creator>JamesCarroll7</dc:creator>
      <dc:date>2025-12-11T15:17:45Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Multipart Objects</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/creating-multipart-objects/m-p/1672314#M100779</link>
      <description>&lt;P&gt;not sure if you want the features to remain in the same layer or not.&amp;nbsp; If you want separate layers for each grouping see&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/analysis/split-by-attributes.htm" target="_blank" rel="noopener"&gt;Split By Attributes (Analysis)—ArcGIS Pro | Documentation&lt;/A&gt;&lt;/P&gt;&lt;P&gt;or if you want to split by using another geometry layer&amp;nbsp;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/analysis/split.htm" target="_blank"&gt;Split (Analysis)—ArcGIS Pro | Documentation&lt;/A&gt;&lt;/P&gt;&lt;P&gt;The opposite of multipart to singlepart is&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/dissolve.htm" target="_blank" rel="noopener"&gt;Dissolve (Data Management)—ArcGIS Pro | Documentation&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Dec 2025 15:29:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/creating-multipart-objects/m-p/1672314#M100779</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2025-12-11T15:29:17Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Multipart Objects</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/creating-multipart-objects/m-p/1672355#M100786</link>
      <description>&lt;P&gt;Like Dan said, Dissolve with the "sector" field should be enough. If you need a more specific workflow, here's an arcpy function that'll condense a bunch of geometries into one multipart:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import ujson
def reduce_geoms(geoms: list[arcpy.Geometry]) -&amp;gt; arcpy.Geometry:
    iter_geom = iter(geoms)
    first = next(iter_geom)
    assert first.type != "point"
    retval = ujson.loads(first.JSON) 
    has_curves = "curvePaths" in retval
    path_key = "curvePaths" if has_curves else "paths"
    for g in iter_geom:
        gson = ujson.loads(g.JSON)
        paths = None
        if "curvePaths" in gson:
            paths = gson["curvePaths"]
            if not has_curves:
                retval["curvePaths"] = retval["paths"]
                del retval["paths"]
                path_key = "curvePaths"
        else:
            paths = retval["paths"]
        retval[path_key].extend(paths)
    return arcpy.AsShape(retval, True)&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 11 Dec 2025 17:17:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/creating-multipart-objects/m-p/1672355#M100786</guid>
      <dc:creator>DavidSolari</dc:creator>
      <dc:date>2025-12-11T17:17:31Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Multipart Objects</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/creating-multipart-objects/m-p/1673265#M100851</link>
      <description>&lt;P&gt;Many thanks Dan, that worked a treat. I do need all of the multipart features to be in one layer, but I used the 'Merge' tool to do that once I had all the multipart features created.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Dec 2025 09:18:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/creating-multipart-objects/m-p/1673265#M100851</guid>
      <dc:creator>JamesCarroll7</dc:creator>
      <dc:date>2025-12-16T09:18:29Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Multipart Objects</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/creating-multipart-objects/m-p/1673266#M100852</link>
      <description>&lt;P&gt;Thanks for that David, very helpful, I appreciate it!&lt;/P&gt;</description>
      <pubDate>Tue, 16 Dec 2025 09:18:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/creating-multipart-objects/m-p/1673266#M100852</guid>
      <dc:creator>JamesCarroll7</dc:creator>
      <dc:date>2025-12-16T09:18:52Z</dc:date>
    </item>
  </channel>
</rss>

