|
POST
|
If anyone is interested here is what I did to get what I wanted: Intersect the fishnet lines with themselves to get a set of intersection points. Spatially join those points back with the fishnet. That produces 'stacks' of up to 16 points each with one of the field values (coordinates like 1200 South or 6600 West) from the lines. Dissolve the stacks of points on the coordinates field, which reduces the stack to just 2 points: one has 1200 South, the other 6600 West (or what ever). Finally, perform a spatial join with the one to one option on those points and you end up with a single point with both values at the intersection location. Ugly? Yes. But it did the trick.
... View more
11-04-2020
02:07 PM
|
1
|
0
|
1371
|
|
POST
|
Glad you got some rest... I know I didn't. I trust you weren't worried about a solution for me! I've been messing around a bit with a spatial join. Thanks Scott!
... View more
11-04-2020
08:00 AM
|
1
|
0
|
1371
|
|
POST
|
Scott Harris- after a good night's sleep, I've been able to create the group template. What's the next step? Surely I'm not going to drop a point at every intersection; When I run the Intersect gp tool, I get 105,000 points. I'd like to somehow use those points:
... View more
11-04-2020
06:50 AM
|
0
|
2
|
1371
|
|
POST
|
Slow night... some election coverage going on As a Canadian, do you ever feel like you are living upstairs from a meth lab apartment?
... View more
11-03-2020
03:56 PM
|
1
|
1
|
1371
|
|
POST
|
Not much of this is making sense to me right now, but I'll deal with it...
... View more
11-03-2020
03:25 PM
|
0
|
0
|
3674
|
|
POST
|
Thanks for the interest nine the less: we have two egdb's, test and live. In test, the feature class is unversioned, and luckily for me there is another unique value field that is populated. I created a table of the other unique id field and the (emtpy) unique field I need to populate and ran an update cursor as shown in my code on that table. Then I joined that table to the live egdb feature class and calculated my target field with the joined field values Done...
... View more
11-03-2020
03:20 PM
|
0
|
0
|
3848
|
|
POST
|
Scott Harris : I don't see that intersection tool under construct: I must be doing something wrong as I don't get the same options you show in templates:
... View more
11-03-2020
02:54 PM
|
0
|
2
|
3674
|
|
POST
|
That's were things kinda fell apart for me: I tried the group template but never found that point at every intersection builder...
... View more
11-03-2020
02:21 PM
|
0
|
0
|
3674
|
|
POST
|
Not sure what you mean- the feature class is registered as versioned, but the workspace is just the egdb...
... View more
11-03-2020
02:20 PM
|
0
|
2
|
3848
|
|
POST
|
ArcGIS Pro 2.6 I have a fishnet of polyline segments that I would like to create intersection points from. See illustration below. This fishnet is the addressing grid of my area of jurisdiction so the object is to have a point (mulitple points, actually) that has the coordinate values of the intersecting lines. At the intersection of 200 South and 8700 West, I would like two points, one with the coordinates of 200 South , 8700 West the other with the coordinates of 8700 West, 200 South. How does one go about doing this? I looked at Point at every intersection which refers you to Feature builder reference but I don't see the point at every intersection icon there. Suggestions?
... View more
11-03-2020
01:41 PM
|
0
|
15
|
5178
|
|
POST
|
Is it this? Find Routes (Ready To Use)—ArcGIS Pro | Documentation
... View more
11-03-2020
09:00 AM
|
0
|
1
|
3484
|
|
POST
|
I'm trying to update a character type field by incrementing numbers but I'm getting: Traceback (most recent call last):
File "<ipython-input-1-33b310f15b18>", line 11, in <module>
with arcpy.da.UpdateCursor(fc,'UNIQUE_ID',select)as cursor:
TypeError: cannot update the table This is the python code I'm running. import arcpy
fc = r'\\path\to\versioned\feature class'
ws = r'\\path\to\egdb'
select = "UNIQUE_ID = '0' Or UNIQUE_ID IS NULL"
edit = arcpy.da.Editor(ws)
edit.startEditing(False,False) # changed to True, False for versioned feature class
edit.startOperation()
x = 10100000
with arcpy.da.UpdateCursor(fc,'UNIQUE_ID',select)as cursor:
for row in cursor:
t = str(x)
row[0] = t
cursor.updateRow(row)
x+=1
edit.stopOperation()
edit.stopEditing(True)
As indicated in the title, this feature class is registered as versioned in an egdb. If I unregister the feature class as versioned, it works just fine. Bottom line is I need to update aa character type of field for 3,858 records by incrementing a number by 1 such that the final field value will look like records: 10100001 10100002 10100003 ... 10103858 What am I doing wrong here?
... View more
11-03-2020
08:23 AM
|
0
|
4
|
3884
|
|
POST
|
I'm famous for looping within a loop and just as famous for them failing. You might want to focus on getting it to work with just one feature class at a time and see if that gets you what you want and then move up to multiple feature classes. In other words, throttle back your approach to just one loop and get it to work.
... View more
11-03-2020
08:08 AM
|
0
|
0
|
3839
|
|
POST
|
Does your user have the correct permissions on that feature class on the egdb?
... View more
11-01-2020
06:36 AM
|
0
|
0
|
2549
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 10-11-2018 07:12 AM | |
| 1 | 05-17-2021 11:18 AM | |
| 1 | 06-29-2021 11:42 AM | |
| 1 | 07-05-2012 07:49 AM | |
| 1 | 09-03-2016 06:16 AM |
| Online Status |
Offline
|
| Date Last Visited |
05-19-2026
11:56 AM
|