<?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: Return attributes from intersection of vertices a polyline in Attribute Rules Questions</title>
    <link>https://community.esri.com/t5/attribute-rules-questions/return-attributes-from-intersection-of-vertices-a/m-p/1391904#M1333</link>
    <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/188597"&gt;@MikeMillerGIS&lt;/a&gt;&amp;nbsp; I was able to utilize this function to reduce the code debt and queries. A new issue immerged which is a head scratcher.&lt;BR /&gt;&lt;BR /&gt;The&amp;nbsp;find_closest_line function still returns values even if the intersecting features are outside the buffer distance as seen with the highlighted feature. Buffer is set to 1 meter. For reference there is a 1 meter buffer object I created using a point and the Buffer GP tool in ArcGIS Pro.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JS_Esri_1-1709739870604.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/97076i39FDAECF40531283/image-size/large?v=v2&amp;amp;px=999" role="button" title="JS_Esri_1-1709739870604.png" alt="JS_Esri_1-1709739870604.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;/* *********************************************************** */

/* ********************* Field Variables ********************* */
var startField = 'START_FIELD'
var endField = 'END_FIELD'
var alignDistance = 1
/* ******************* Field Variables End ******************* */

/* ************************* Functions *********************** */

function find_closest_line(vert_ref) {
  // Find closest line segment to $feature. Limit search to specific radius.
  var candidates = Intersects(line_class, Buffer(vert_ref, alignDistance, "meters"));
  var shortest = [1e10, null];
  for (var line in candidates) {
      var d = Distance(vert_ref, line)

      if (d &amp;lt; shortest[0]) shortest = [d, line]
  }
  return shortest[-1]
} 

// ************* End Functions Section ******************

var line_class = FeatureSetByName($datastore, "Old_Line", [startField,endField], true);

var line_shape = Geometry($feature)
var spRef = line_shape['spatialReference']

// Get the origin and end points of the line
var orig_x = line_shape['paths'][0][0].x
var orig_y = line_shape['paths'][0][0].y
var orig_point = Point({x: orig_x, y: orig_y, spatialReference: spRef})

var end_x = line_shape['paths'][-1][-1].x
var end_y = line_shape['paths'][-1][-1].y
var end_point = Point({x: end_x, y: end_y, spatialReference: spRef})

//find point intersecting origin
var origin_closest_line = find_closest_line(orig_point);
if (origin_closest_line == null) return { "errorMessage": "First vertex must intersect at least one line" }

//find point intersecting end
var end_closest_line = find_closest_line(end_point);
if (end_closest_line == null) return { "errorMessage": "Last vertex must intersect at least one line" }

var from = origin_closest_line[startField]
var to = end_closest_line[endField]

return {
    "result": {
        "attributes": {
            "START_FIELD": from,
            "END_FIELD": to
        }
    }
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I’ve tried to put in bailouts in the function but regardless it will always return. Anyways Thanks for getting me on the right path!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 06 Mar 2024 15:47:30 GMT</pubDate>
    <dc:creator>Jake_S</dc:creator>
    <dc:date>2024-03-06T15:47:30Z</dc:date>
    <item>
      <title>Return attributes from intersection of vertices a polyline</title>
      <link>https://community.esri.com/t5/attribute-rules-questions/return-attributes-from-intersection-of-vertices-a/m-p/1391285#M1328</link>
      <description>&lt;P&gt;Greetings Community.&lt;/P&gt;&lt;P&gt;Wondering if anyone has ever created an ArcGIS Pro Arcade attribute rule that get the vertices of the digitizing polyline and use that vertices to intersect another feature to return attributes to fields on the digitized feature.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I have a feature class called Old_Data (F1) it has two fields START_FIELD and END_FIELD.&lt;/P&gt;&lt;P&gt;I have another feature class called New_Data (F2) with the same fields names. I would like when digitizing F1 the first vertex of FI intersects the F2 returns the F1.START_FIELD and the last vertex F2 intersects the F1 returns the F1.END_FIELD where it intersects.&lt;/P&gt;&lt;P&gt;The START_FIELD and END_FIELD of the Old_Data may be different features in the Old_Data.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;The use case is to see where a feature starts and ends.&lt;BR /&gt;&lt;BR /&gt;I've played around with code and I can get a first vertices but not get data from the intersect. I'm not sure how to get the last vertices. Or get the intersect to work. My starting code below.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/96908i68CAA0FB725D5BCE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var startField = "START_FIELD";
var endField = "END_FIELD";

var geom = Geometry($feature);
var firstPoint = null;
var vertices = []
for (var part in geom.paths) {
    var segment = geom.paths[part];

    // Loop through the points in the segment
    for (var i in segment) {
        if (IsEmpty(firstPoint)) {
            firstPoint = segment[i];
            continue;
        }
        Push(vertices, segment[i]);
    }
}
var intersectingLine = Intersects(FeatureSetByName($datastore, "Old_Line",[startField, endField], true), firstPoint);

return Text(firstPoint) //just to see output&lt;/LI-CODE&gt;&lt;P&gt;Any community help would be helpful.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2024 17:15:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/attribute-rules-questions/return-attributes-from-intersection-of-vertices-a/m-p/1391285#M1328</guid>
      <dc:creator>Jake_S</dc:creator>
      <dc:date>2024-03-05T17:15:45Z</dc:date>
    </item>
    <item>
      <title>Re: Return attributes from intersection of vertices a polyline</title>
      <link>https://community.esri.com/t5/attribute-rules-questions/return-attributes-from-intersection-of-vertices-a/m-p/1391317#M1329</link>
      <description>&lt;P&gt;Take a look at -&amp;nbsp;&lt;A href="https://github.com/Esri/arcade-expressions/blob/master/attribute_rule_calculation/CalcJunctionFields.md" target="_blank" rel="noopener"&gt;https://github.com/Esri/arcade-expressions/blob/master/attribute_rule_calculation/CalcJunctionFields.md&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2024 18:10:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/attribute-rules-questions/return-attributes-from-intersection-of-vertices-a/m-p/1391317#M1329</guid>
      <dc:creator>MikeMillerGIS</dc:creator>
      <dc:date>2024-03-05T18:10:08Z</dc:date>
    </item>
    <item>
      <title>Re: Return attributes from intersection of vertices a polyline</title>
      <link>https://community.esri.com/t5/attribute-rules-questions/return-attributes-from-intersection-of-vertices-a/m-p/1391384#M1330</link>
      <description>&lt;P&gt;This literally the logic I was looking for. Yet adapting to my data only returns null values. I'm not sure why. I'll have to figure that out.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2024 19:27:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/attribute-rules-questions/return-attributes-from-intersection-of-vertices-a/m-p/1391384#M1330</guid>
      <dc:creator>Jake_S</dc:creator>
      <dc:date>2024-03-05T19:27:37Z</dc:date>
    </item>
    <item>
      <title>Re: Return attributes from intersection of vertices a polyline</title>
      <link>https://community.esri.com/t5/attribute-rules-questions/return-attributes-from-intersection-of-vertices-a/m-p/1391753#M1331</link>
      <description>&lt;P&gt;I adapted the code for my needs, polyline to polyline intersection. Yet I noticed after looking at the results and the code, even with Snapping enabled in ArcGIS Pro for some reason the intersection was returning empty. I decided to create a intersect check with a buffer. Hazzah it worked.........kinda.&lt;BR /&gt;&lt;BR /&gt;The code works great on features that are not curved.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JS_Esri_0-1709727904206.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/97033i15BD14D2BEBF83FC/image-size/large?v=v2&amp;amp;px=999" role="button" title="JS_Esri_0-1709727904206.png" alt="JS_Esri_0-1709727904206.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;As you can see in the examples above A1 line goes from Start Field B to End Field W, returning the proper values, same for A2. Yet when we move to curved lines, we get only the first line object values returned.&lt;BR /&gt;&lt;BR /&gt;As you can see in B1 the right values are returned. B1 line goes from Start Field A to End Field Z. Yet B2 and B3 are returning the first line segment values&amp;nbsp;Start Field A to End Field Z. When B2 should return&amp;nbsp;Start Field A to End Field Y, and&amp;nbsp;B3 should return&amp;nbsp;Start Field B to End Field Z.&lt;/P&gt;&lt;P&gt;I'm not sure how the curves are being handled differently.&lt;BR /&gt;&lt;BR /&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/346994"&gt;@HusseinNasser2&lt;/a&gt;&amp;nbsp;do you have any thoughts?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;/* *********************************************************** */
var fields = ['START_FIELD', 'END_FIELD']
var line_fs = FeatureSetByName($datastore, "Old_Line", fields, true);

var line_shape = Geometry($feature)
var spRef = line_shape['spatialReference']

// Get the origin and end points of the line
var orig_x = line_shape['paths'][0][0].x
var orig_y = line_shape['paths'][0][0].y
var orig_point = Point({x: orig_x, y: orig_y, spatialReference: spRef})

var end_x = line_shape['paths'][-1][-1].x
var end_y = line_shape['paths'][-1][-1].y
var end_point = Point({x: end_x, y: end_y, spatialReference: spRef})

var attributes = {}

function IsEmptyButBetter(data) {
    if (IsEmpty(data)) return true;
    for (var x in data) return false;
    return true;
}

//find point intersecting origin
var origIntx = Intersects(orig_point,line_fs);
if (Count(origIntx) == 0) {
    origIntx = Intersects(line_fs, Buffer(orig_point, 1,"meters"));
 if (Count(origIntx) == 0) return { "errorMessage": "First vertex must intersect at least one line" }
}

var origIntx = First(origIntx);

if (!IsEmptyButBetter(origIntx)) {
	attributes['START_FIELD'] = origIntx['START_FIELD']
  }

//find point intersecting end
var endIntx = Intersects(end_point, line_fs);
if (Count(endIntx) == 0) {
    endIntx = Intersects(line_fs, Buffer(end_point, 1, "meters"));
 if (Count(endIntx) == 0) return { "errorMessage": "Last vertex must intersect at least one line" }
}

var endIntx = First(endIntx);

if (!IsEmptyButBetter(endIntx)) {
	attributes['END_FIELD'] = endIntx['END_FIELD']
  }


var result = {}
if (!IsEmptyButBetter(attributes)) {
    result['result'] = {
        'attributes': attributes
    }
}

return result&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;The code works&lt;/P&gt;</description>
      <pubDate>Wed, 06 Mar 2024 12:32:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/attribute-rules-questions/return-attributes-from-intersection-of-vertices-a/m-p/1391753#M1331</guid>
      <dc:creator>Jake_S</dc:creator>
      <dc:date>2024-03-06T12:32:32Z</dc:date>
    </item>
    <item>
      <title>Re: Return attributes from intersection of vertices a polyline</title>
      <link>https://community.esri.com/t5/attribute-rules-questions/return-attributes-from-intersection-of-vertices-a/m-p/1391757#M1332</link>
      <description>&lt;P&gt;You are calling Count too much.&amp;nbsp; Count on a FeatureSet causes a database query.&amp;nbsp; I would suggest just call Intersect with a buffer(features are considered snapped if they are within the tolerance of the dataset) and looping over the results.&amp;nbsp; If you are concerned about getting the closest, then call distance to and find the closest.&amp;nbsp; Take a look at the function below&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;function find_closest_line(input_geo, fs, search_distance) {
  var candidates = Intersects(fs, Buffer(input_geo, search_distance, 'meters'));
  var shortest = [Infinity, null];
  if (IsEmpty(candidates)) {
    return null
  }
  for (var line in candidates) {
    var d = Distance(input_geo, line);
    if (d &amp;lt; shortest[0]) {
      shortest = [d, line];
    }
  }
  return shortest[-1];
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have not worked with curves in Arcade.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Mar 2024 12:43:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/attribute-rules-questions/return-attributes-from-intersection-of-vertices-a/m-p/1391757#M1332</guid>
      <dc:creator>MikeMillerGIS</dc:creator>
      <dc:date>2024-03-06T12:43:53Z</dc:date>
    </item>
    <item>
      <title>Re: Return attributes from intersection of vertices a polyline</title>
      <link>https://community.esri.com/t5/attribute-rules-questions/return-attributes-from-intersection-of-vertices-a/m-p/1391904#M1333</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/188597"&gt;@MikeMillerGIS&lt;/a&gt;&amp;nbsp; I was able to utilize this function to reduce the code debt and queries. A new issue immerged which is a head scratcher.&lt;BR /&gt;&lt;BR /&gt;The&amp;nbsp;find_closest_line function still returns values even if the intersecting features are outside the buffer distance as seen with the highlighted feature. Buffer is set to 1 meter. For reference there is a 1 meter buffer object I created using a point and the Buffer GP tool in ArcGIS Pro.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JS_Esri_1-1709739870604.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/97076i39FDAECF40531283/image-size/large?v=v2&amp;amp;px=999" role="button" title="JS_Esri_1-1709739870604.png" alt="JS_Esri_1-1709739870604.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;/* *********************************************************** */

/* ********************* Field Variables ********************* */
var startField = 'START_FIELD'
var endField = 'END_FIELD'
var alignDistance = 1
/* ******************* Field Variables End ******************* */

/* ************************* Functions *********************** */

function find_closest_line(vert_ref) {
  // Find closest line segment to $feature. Limit search to specific radius.
  var candidates = Intersects(line_class, Buffer(vert_ref, alignDistance, "meters"));
  var shortest = [1e10, null];
  for (var line in candidates) {
      var d = Distance(vert_ref, line)

      if (d &amp;lt; shortest[0]) shortest = [d, line]
  }
  return shortest[-1]
} 

// ************* End Functions Section ******************

var line_class = FeatureSetByName($datastore, "Old_Line", [startField,endField], true);

var line_shape = Geometry($feature)
var spRef = line_shape['spatialReference']

// Get the origin and end points of the line
var orig_x = line_shape['paths'][0][0].x
var orig_y = line_shape['paths'][0][0].y
var orig_point = Point({x: orig_x, y: orig_y, spatialReference: spRef})

var end_x = line_shape['paths'][-1][-1].x
var end_y = line_shape['paths'][-1][-1].y
var end_point = Point({x: end_x, y: end_y, spatialReference: spRef})

//find point intersecting origin
var origin_closest_line = find_closest_line(orig_point);
if (origin_closest_line == null) return { "errorMessage": "First vertex must intersect at least one line" }

//find point intersecting end
var end_closest_line = find_closest_line(end_point);
if (end_closest_line == null) return { "errorMessage": "Last vertex must intersect at least one line" }

var from = origin_closest_line[startField]
var to = end_closest_line[endField]

return {
    "result": {
        "attributes": {
            "START_FIELD": from,
            "END_FIELD": to
        }
    }
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I’ve tried to put in bailouts in the function but regardless it will always return. Anyways Thanks for getting me on the right path!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Mar 2024 15:47:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/attribute-rules-questions/return-attributes-from-intersection-of-vertices-a/m-p/1391904#M1333</guid>
      <dc:creator>Jake_S</dc:creator>
      <dc:date>2024-03-06T15:47:30Z</dc:date>
    </item>
    <item>
      <title>Re: Return attributes from intersection of vertices a polyline</title>
      <link>https://community.esri.com/t5/attribute-rules-questions/return-attributes-from-intersection-of-vertices-a/m-p/1392008#M1334</link>
      <description>&lt;P&gt;think it is Meter, not Meters&lt;/P&gt;</description>
      <pubDate>Wed, 06 Mar 2024 17:48:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/attribute-rules-questions/return-attributes-from-intersection-of-vertices-a/m-p/1392008#M1334</guid>
      <dc:creator>MikeMillerGIS</dc:creator>
      <dc:date>2024-03-06T17:48:17Z</dc:date>
    </item>
    <item>
      <title>Re: Return attributes from intersection of vertices a polyline</title>
      <link>https://community.esri.com/t5/attribute-rules-questions/return-attributes-from-intersection-of-vertices-a/m-p/1392022#M1335</link>
      <description>&lt;P&gt;Tried the "meter" verse "meters" no effect. Also functional reference states "&lt;SPAN&gt;Possible values:&amp;nbsp;&lt;/SPAN&gt;feet&lt;SPAN&gt;&amp;nbsp;|&amp;nbsp;&lt;/SPAN&gt;kilometers&lt;SPAN&gt;&amp;nbsp;|&amp;nbsp;&lt;/SPAN&gt;miles&lt;SPAN&gt;&amp;nbsp;|&amp;nbsp;&lt;/SPAN&gt;nautical-miles&lt;SPAN&gt;&amp;nbsp;|&amp;nbsp;&lt;/SPAN&gt;meters&lt;SPAN&gt;&amp;nbsp;|&amp;nbsp;&lt;/SPAN&gt;yards".&lt;BR /&gt;&lt;BR /&gt;But I think the Buffer() Arcade function in ArcGIS Pro 3.2.2 is busted.&lt;BR /&gt;&lt;BR /&gt;Using a simple test. I create a point feature and a line feature. I then do the same intersect by buffer and t populates the field. The point features are no where near the line.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JS_Esri_1-1709748401763.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/97110iE5BE0F8A52F4CA20/image-size/large?v=v2&amp;amp;px=999" role="button" title="JS_Esri_1-1709748401763.png" alt="JS_Esri_1-1709748401763.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var alignDistance = 1

var line_class = FeatureSetByName($datastore, "Old_Line", ["SOME_ATT"], true);
var candidates = Intersects(line_class, Buffer($feature, alignDistance, "meters"));

for (var line in candidates) {
    return line.SOME_ATT
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Mar 2024 18:06:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/attribute-rules-questions/return-attributes-from-intersection-of-vertices-a/m-p/1392022#M1335</guid>
      <dc:creator>Jake_S</dc:creator>
      <dc:date>2024-03-06T18:06:58Z</dc:date>
    </item>
    <item>
      <title>Re: Return attributes from intersection of vertices a polyline</title>
      <link>https://community.esri.com/t5/attribute-rules-questions/return-attributes-from-intersection-of-vertices-a/m-p/1392037#M1336</link>
      <description>&lt;P&gt;What spatial ref is your data, wonder if you need to use&amp;nbsp;&lt;A href="https://developers.arcgis.com/arcade/function-reference/geometry_functions/#buffergeodetic" target="_blank"&gt;https://developers.arcgis.com/arcade/function-reference/geometry_functions/#buffergeodetic&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Mar 2024 18:21:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/attribute-rules-questions/return-attributes-from-intersection-of-vertices-a/m-p/1392037#M1336</guid>
      <dc:creator>MikeMillerGIS</dc:creator>
      <dc:date>2024-03-06T18:21:41Z</dc:date>
    </item>
    <item>
      <title>Re: Return attributes from intersection of vertices a polyline</title>
      <link>https://community.esri.com/t5/attribute-rules-questions/return-attributes-from-intersection-of-vertices-a/m-p/1392049#M1337</link>
      <description>&lt;P&gt;I thought that too but Buffer Geodetic only supports&lt;SPAN&gt;Web Mercator or a WGS 84 spatial references I'm using NAD 83 (4269)&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Mar 2024 18:36:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/attribute-rules-questions/return-attributes-from-intersection-of-vertices-a/m-p/1392049#M1337</guid>
      <dc:creator>Jake_S</dc:creator>
      <dc:date>2024-03-06T18:36:07Z</dc:date>
    </item>
    <item>
      <title>Re: Return attributes from intersection of vertices a polyline</title>
      <link>https://community.esri.com/t5/attribute-rules-questions/return-attributes-from-intersection-of-vertices-a/m-p/1392701#M1340</link>
      <description>&lt;P&gt;&lt;A href="https://community.esri.com/t5/user/viewprofilepage/user-id/346994" target="_blank"&gt;@HusseinNasser2&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;is this something you are able to replicate.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Mar 2024 17:53:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/attribute-rules-questions/return-attributes-from-intersection-of-vertices-a/m-p/1392701#M1340</guid>
      <dc:creator>Jake_S</dc:creator>
      <dc:date>2024-03-07T17:53:29Z</dc:date>
    </item>
  </channel>
</rss>

