<?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: Copying Specific Data from one layer to another in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/copying-specific-data-from-one-layer-to-another/m-p/1508592#M85866</link>
    <description>&lt;P&gt;Yes they both live in the same datastore but in different geodatabases&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;GISDATA.sde&lt;UL&gt;&lt;LI&gt;Addresses&lt;UL&gt;&lt;LI&gt;addresses&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;Cadastral&lt;UL&gt;&lt;LI&gt;Parcel_Poly&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;Parcel_Point&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Hope that helps visualize things&lt;/P&gt;&lt;P&gt;I will see if I can adapt your script to my needs and see what it does. Both fields in each feature class are the same PIN and GISID.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 23 Jul 2024 14:33:47 GMT</pubDate>
    <dc:creator>Montgomerycd</dc:creator>
    <dc:date>2024-07-23T14:33:47Z</dc:date>
    <item>
      <title>Copying Specific Data from one layer to another</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/copying-specific-data-from-one-layer-to-another/m-p/1508575#M85864</link>
      <description>&lt;P&gt;Hello I am looking for a way to speed up copying specific data from one layer to another, from 2 separate feature classes.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Normally this wouldn't be a problem.&amp;nbsp; So here is the situation&lt;/P&gt;&lt;P&gt;Layer 1 Addresses - in my address layer I have a spot for PIN's and GISID from our Parcel Layer.&lt;/P&gt;&lt;P&gt;Layer 2 Parcels - contains the GISID and Parcel PINs&lt;/P&gt;&lt;P&gt;normally I would just copy and paste each one and that's fine and it works and its what I have been doing. but I am looking to speed up that process. my current project is about 300 edits that I have to manually copy/paste.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone know of a script/sql/python snippet I can run in calculate field to just pull those PIN/GISIDs and put them in my address layer. or if there already exists a tool.&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2024 14:15:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/copying-specific-data-from-one-layer-to-another/m-p/1508575#M85864</guid>
      <dc:creator>Montgomerycd</dc:creator>
      <dc:date>2024-07-23T14:15:00Z</dc:date>
    </item>
    <item>
      <title>Re: Copying Specific Data from one layer to another</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/copying-specific-data-from-one-layer-to-another/m-p/1508585#M85865</link>
      <description>&lt;P&gt;Using Field Calculate with Arcade lets you use spatial functions across layers, like &lt;STRONG&gt;Intersects&lt;/STRONG&gt;. You can use this to access the attributes of an overlaying feature from the second layer and write those values into the fields on the first.&lt;/P&gt;&lt;P&gt;The exact format will depend on where your data "lives", but let's assume they're both in the same geodatabase. It might look like this for the GISID field:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var parcels = FeatureSetByName($datastore, 'parcels', ['GISID'])

// get intersecting parcel(s)
var xs = Intersects(parcels, $feature)

// if there are any parcels, get the attribute of the first
if (Count(xs) &amp;gt; 0) {
  return First(xs)['GISID']
} else {
  return null // or replace with "no value" text or whatever
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2024 14:24:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/copying-specific-data-from-one-layer-to-another/m-p/1508585#M85865</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2024-07-23T14:24:26Z</dc:date>
    </item>
    <item>
      <title>Re: Copying Specific Data from one layer to another</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/copying-specific-data-from-one-layer-to-another/m-p/1508592#M85866</link>
      <description>&lt;P&gt;Yes they both live in the same datastore but in different geodatabases&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;GISDATA.sde&lt;UL&gt;&lt;LI&gt;Addresses&lt;UL&gt;&lt;LI&gt;addresses&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;Cadastral&lt;UL&gt;&lt;LI&gt;Parcel_Poly&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;Parcel_Point&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Hope that helps visualize things&lt;/P&gt;&lt;P&gt;I will see if I can adapt your script to my needs and see what it does. Both fields in each feature class are the same PIN and GISID.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2024 14:33:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/copying-specific-data-from-one-layer-to-another/m-p/1508592#M85866</guid>
      <dc:creator>Montgomerycd</dc:creator>
      <dc:date>2024-07-23T14:33:47Z</dc:date>
    </item>
    <item>
      <title>Re: Copying Specific Data from one layer to another</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/copying-specific-data-from-one-layer-to-another/m-p/1508595#M85868</link>
      <description>&lt;P&gt;Oh! For an enterprise geodatabase, you could just use spatial SQL, too. That will differ based on your RDBMS, but any spatial database should have something equivalent to PostGIS's &lt;STRONG&gt;ST_Intersects&lt;/STRONG&gt;. You can use it in a table join, then update the addresses point using the results of the query.&lt;/P&gt;&lt;P&gt;Edit to add: If you're using geodatabase versioning, traditional or branch, the query is still possible, but gets a *lot* more complicated to ensure you're working with the right values.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2024 14:39:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/copying-specific-data-from-one-layer-to-another/m-p/1508595#M85868</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2024-07-23T14:39:07Z</dc:date>
    </item>
  </channel>
</rss>

