|
POST
|
You can't, you have to file a tech support case, assuming that you have those capabilities or if you are in an organization, the person involved will have to do it for you
... View more
08-06-2025
02:44 PM
|
1
|
0
|
2814
|
|
POST
|
to make the code readable Code formatting ... the Community Version - Esri Community
... View more
08-06-2025
12:34 PM
|
1
|
0
|
1659
|
|
POST
|
I marked it as Accepted Solution as a reminder to check for unnecessary package files. Good catch
... View more
08-05-2025
01:42 PM
|
0
|
0
|
1767
|
|
POST
|
@JesseCloutier can you direct to the appropriate channel
... View more
08-05-2025
12:25 PM
|
1
|
0
|
820
|
|
POST
|
The normal pathway before contacting tech support would be.... How To: Perform an ArcGIS pro Soft Reset How To: Perform a Clean Uninstall and Reinstall of ArcGIS Pro with the original at Performing a clean uninstall of ArcGIS Pro | Esri Australia Technical Blog If that doesn't work, then Tech Support is your best option.
... View more
08-05-2025
12:22 PM
|
1
|
1
|
1176
|
|
POST
|
a long shot Repair an environment—ArcGIS Pro | Documentation you may have to repair the arcgispro install instead (when you go to "uninstall a program" there is a "repair" option which you should try first to see if it will just repair the ...arcgispro-py3 environment
... View more
08-05-2025
12:19 PM
|
2
|
2
|
1800
|
|
POST
|
You will need to contact Tech Support so that they can examine your workflow with a sample of your data that causes the issue. It is by now obvious that this may not be a generic issue. Good luck
... View more
08-05-2025
07:42 AM
|
1
|
0
|
1813
|
|
POST
|
To supplement Vince's suggestion, for the visual Code formatting ... the Community Version - Esri Community
... View more
08-04-2025
01:15 PM
|
0
|
0
|
1573
|
|
POST
|
Data type Storable range Size (bits) Long integer -2,147,483,648 to 2,147,483,647 32 Big integer -9,007,199,254,740,991 to 9,007,199,254,740,991 64 ArcGIS field data types—ArcGIS Pro | Documentation It looks like you want Big Integer. See if your situation can use them.
... View more
08-04-2025
12:58 PM
|
1
|
0
|
1420
|
|
POST
|
If you can run the process manually and it works, that leaves the script. It isn't clear what tool(s) you are using/calling in your script. The error suggests a permissions issue if a short local filepath didn't help
... View more
08-04-2025
01:14 AM
|
0
|
0
|
1048
|
|
POST
|
Did you see? Find Identical (Data Management)—ArcGIS Pro | Documentation You would have to narrow down the search to the key that was duplicated (geometry or some id perhaps)
... View more
08-04-2025
01:06 AM
|
0
|
0
|
1340
|
|
POST
|
Not sure where you are going exactly, but it was a reminder to me about some basic geometry. Where is the point? - Esri Community This blog post might get you started. It will at least get you from your first point on the first line to the next point on the next line. I wasn't sure whether you wanted to continue within a list of segments so you could connect the points or return to a specific location on the other segments. Post with details here and I can augment the blog with more examples if you want.
... View more
08-02-2025
01:32 PM
|
0
|
1
|
662
|
|
BLOG
|
Start at a point, in this case a point midway along a line. (seg0, and pnt0) Find the point on the next line that is closest to it. (seg1 and pnt1) Return basic information, like azimuth and distance. Basic functions. import numpy as np
def _pnt_on_seg_(seg, pnt):
"""Mini pnt_on_seg function normally required by pnt_on_poly."""
x0, y0, x1, y1, dx, dy = *pnt, *seg[0], *(seg[1] - seg[0])
dist_ = dx * dx + dy * dy # squared length
u = ((x0 - x1) * dx + (y0 - y1) * dy) / dist_
u = max(min(u, 1), 0) # u must be between 0 and 1
xy = (np.array([dx, dy]) * u) + [x1, y1] # noqa
return xy
def _line_dir_(orig, dest, azimuth):
"""Mini line direction function."""
orig = np.atleast_2d(orig)
dest = np.atleast_2d(dest)
dxy = dest - orig
ang = np.degrees(np.arctan2(dxy[:, 1], dxy[:, 0]))
if azimuth: # if True, correct to North, otherwise return the angle
ang = np.mod((450.0 - ang), 360.)
return ang Do a run # planar coordinates in, euclidean values out
seg0 = np.array([[0., 0.], [10., 0.]])
seg1 = np.array([[0., 5.], [10., 6.]])
pnt0 = np.mean(seg0, axis=0)
pnt1 = _pnt_on_seg_(seg1, pnt0)
azim = _line_dir_(pnt0, pnt1, True) # azimuth, use ...False to get angle
d_01 = np.linalg.norm(pnt0 - pnt1) # euclidean distance
azim, d_01
354.29, 5.472704546154941 Now that you have reached your destination, perhaps you want to do something with it, or move on to the next segment or a polygon boundary. The possibilities are endless And another couple of options. The first is with the first segment location specified, then the location of the remaining points are calculated. The second is with each segment having a specified location (50% along line) and closest points calculated between each. The final line extending upwards connects those in sequence.
... View more
08-02-2025
01:29 PM
|
8
|
0
|
895
|
|
POST
|
The jackpot error 160718: The item does not have a definition.—ArcGIS Pro | Documentation You would be advised to see if the feedback link or Tech Support can assist.
... View more
07-31-2025
02:09 PM
|
0
|
1
|
846
|
|
POST
|
There are no Spatial Analyst tools built-in to do this An overview of the Spatial Analyst toolbox—ArcGIS Pro | Documentation
... View more
07-31-2025
07:58 AM
|
0
|
1
|
1069
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | Wednesday | |
| 1 | Wednesday | |
| 1 | Wednesday | |
| 1 | Wednesday | |
| 1 | 2 weeks ago |