<?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 Arcpy Support for Parcel Lineage Chart in ArcGIS Parcel Fabric Ideas</title>
    <link>https://community.esri.com/t5/arcgis-parcel-fabric-ideas/arcpy-support-for-parcel-lineage-chart/idi-p/1676613</link>
    <description>&lt;P&gt;I would like to propose an enhancement to the arcpy.parcel module that exposes the ability to &lt;STRONG&gt;programmatically create a &lt;A href="https://pro.arcgis.com/en/pro-app/latest/help/data/parcel-editing/viewparcellineage.htm" target="_self"&gt;Parcel Lineage Chart&lt;/A&gt;&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;Today, the Parcel Lineage Chart is available only as an interactive UI element within the &lt;STRONG&gt;Parcel Lineage pane&lt;/STRONG&gt; in ArcGIS Pro. While this works well for manual inspection, there is currently no way to generate the same lineage link chart through Python, which limits automation and large-scale workflows.&lt;/P&gt;&lt;P&gt;I propose adding a dedicated ArcPy method (for example,&lt;BR /&gt;arcpy.parcel.CreateParcelLineageChart()) that would create a standard Parcel Lineage link chart for a given record or set of records, equivalent to what users see in the Parcel Lineage pane.&lt;/P&gt;&lt;H3&gt;&lt;FONT face="andale mono,times" size="4" color="#0000FF"&gt;&lt;STRONG&gt;Why it is Useful and Important?&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;&lt;FONT face="andale mono,times"&gt;&lt;STRONG&gt;Automation of Chain-of-Title Reports:&amp;nbsp;&lt;/STRONG&gt;Manual creation of charts for hundreds of records is unsustainable. An Arcpy solution allows for "batch" lineage generation.&lt;/FONT&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;FONT face="andale mono,times"&gt;&lt;STRONG&gt;Quality Control:&lt;/STRONG&gt; Large-scale record editing often involve complex lineage logic. A script could iterate through migrated records and generate charts to help editors visually verify that "Parent-Child" relationships were correctly established during the data editing process.&lt;/FONT&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;FONT face="andale mono,times"&gt;&lt;STRONG&gt;Alignment with Other Pro Tools:&lt;/STRONG&gt; Since tools like "&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/parcel/export-parcel-record-features.htm" target="_self"&gt;Export Parcel Record Features&lt;/A&gt;" already exist to help create "Before/After" layouts, adding a direct Lineage Chart export via Python completes the automation story for parcel history.&lt;/FONT&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;FONT face="andale mono,times"&gt;Below is a conceptual example of how this functionality could look within a Python script:&lt;/FONT&gt;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import arcpy

parcel_fabric: str = r"C:\Data\CountyData.sde\PF_Dataset\ParcelFabric"
record_name: str = "some_record_name"

arcpy.parcel.CreateParcelLineageChart(in_parcel_fabric= parcel_fabric,
                                      record= record_name)

arcpy.AddMessage(f"Parcel lineage chart created for record: {record_name}")&lt;/LI-CODE&gt;</description>
    <pubDate>Thu, 08 Jan 2026 15:47:38 GMT</pubDate>
    <dc:creator>Ofir_Mazor</dc:creator>
    <dc:date>2026-01-08T15:47:38Z</dc:date>
    <item>
      <title>Arcpy Support for Parcel Lineage Chart</title>
      <link>https://community.esri.com/t5/arcgis-parcel-fabric-ideas/arcpy-support-for-parcel-lineage-chart/idi-p/1676613</link>
      <description>&lt;P&gt;I would like to propose an enhancement to the arcpy.parcel module that exposes the ability to &lt;STRONG&gt;programmatically create a &lt;A href="https://pro.arcgis.com/en/pro-app/latest/help/data/parcel-editing/viewparcellineage.htm" target="_self"&gt;Parcel Lineage Chart&lt;/A&gt;&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;Today, the Parcel Lineage Chart is available only as an interactive UI element within the &lt;STRONG&gt;Parcel Lineage pane&lt;/STRONG&gt; in ArcGIS Pro. While this works well for manual inspection, there is currently no way to generate the same lineage link chart through Python, which limits automation and large-scale workflows.&lt;/P&gt;&lt;P&gt;I propose adding a dedicated ArcPy method (for example,&lt;BR /&gt;arcpy.parcel.CreateParcelLineageChart()) that would create a standard Parcel Lineage link chart for a given record or set of records, equivalent to what users see in the Parcel Lineage pane.&lt;/P&gt;&lt;H3&gt;&lt;FONT face="andale mono,times" size="4" color="#0000FF"&gt;&lt;STRONG&gt;Why it is Useful and Important?&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;&lt;FONT face="andale mono,times"&gt;&lt;STRONG&gt;Automation of Chain-of-Title Reports:&amp;nbsp;&lt;/STRONG&gt;Manual creation of charts for hundreds of records is unsustainable. An Arcpy solution allows for "batch" lineage generation.&lt;/FONT&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;FONT face="andale mono,times"&gt;&lt;STRONG&gt;Quality Control:&lt;/STRONG&gt; Large-scale record editing often involve complex lineage logic. A script could iterate through migrated records and generate charts to help editors visually verify that "Parent-Child" relationships were correctly established during the data editing process.&lt;/FONT&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;FONT face="andale mono,times"&gt;&lt;STRONG&gt;Alignment with Other Pro Tools:&lt;/STRONG&gt; Since tools like "&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/parcel/export-parcel-record-features.htm" target="_self"&gt;Export Parcel Record Features&lt;/A&gt;" already exist to help create "Before/After" layouts, adding a direct Lineage Chart export via Python completes the automation story for parcel history.&lt;/FONT&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;FONT face="andale mono,times"&gt;Below is a conceptual example of how this functionality could look within a Python script:&lt;/FONT&gt;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import arcpy

parcel_fabric: str = r"C:\Data\CountyData.sde\PF_Dataset\ParcelFabric"
record_name: str = "some_record_name"

arcpy.parcel.CreateParcelLineageChart(in_parcel_fabric= parcel_fabric,
                                      record= record_name)

arcpy.AddMessage(f"Parcel lineage chart created for record: {record_name}")&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 08 Jan 2026 15:47:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-parcel-fabric-ideas/arcpy-support-for-parcel-lineage-chart/idi-p/1676613</guid>
      <dc:creator>Ofir_Mazor</dc:creator>
      <dc:date>2026-01-08T15:47:38Z</dc:date>
    </item>
    <item>
      <title>Re: Arcpy Support for Parcel Lineage Chart Generation (PDF/HTML Outputs)</title>
      <link>https://community.esri.com/t5/arcgis-parcel-fabric-ideas/arcpy-support-for-parcel-lineage-chart/idc-p/1676667#M1194</link>
      <description>&lt;P&gt;I would also love to see something like this developed. I work in a County and get many questions from the public or local township officials about when a parcel was split and what parcels were created. Some of these histories can get complex, so it would be nice to have the ability to create a web tool so these people can search for the split history on any parcel without me spending the time creating the documents for their request. In my experience, the local townships do not keep good records of this data, so they contact us for this information. A tool like this would save everyone time.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jan 2026 13:45:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-parcel-fabric-ideas/arcpy-support-for-parcel-lineage-chart/idc-p/1676667#M1194</guid>
      <dc:creator>AdamHart1</dc:creator>
      <dc:date>2026-01-08T13:45:50Z</dc:date>
    </item>
    <item>
      <title>Re: Arcpy Support for Parcel Lineage Chart</title>
      <link>https://community.esri.com/t5/arcgis-parcel-fabric-ideas/arcpy-support-for-parcel-lineage-chart/idc-p/1676983#M1195</link>
      <description>&lt;P&gt;This would help our workflows immensely. Some of our more rural areas split via nested Minor Land Divisions vs subdivision processes. Being able to have the user drive the inquiry on their own would free up my staff greatly.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jan 2026 02:16:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-parcel-fabric-ideas/arcpy-support-for-parcel-lineage-chart/idc-p/1676983#M1195</guid>
      <dc:creator>ThomasHoman</dc:creator>
      <dc:date>2026-01-09T02:16:32Z</dc:date>
    </item>
  </channel>
</rss>

