|
POST
|
Planar means the distance calculation will be done in two dimensions while Euclidean means the distance will be a straight line. The two terms are related but are not synonyms. Euclidean distances can be calculated in two dimensions, three dimensions, or even more dimensions; but the calculation will always be a straight line between points. Planar distances don't have to be Euclidean but are often assumed to be when no qualifier or adjective further describes the distance. For example, Euclidean and Manhattan (or taxi-cab) distances can both be calculated in a plane, which would make them forms of planar distance, but they represent difference distance measures. ArcGIS Pro handles both vector and raster data, as well as other types, but different fields of study and different industries historically used the two types of data. Just like anything that is studied or used by different groups, it is common for different groups to use different terms for the same or similar objects or ideas because each group interacts with those objects or ideas from different perspectives. For spatial-based analysis, there are lots of non-Euclidean distances that can be measured based on barriers, cost surfaces, networks, etc...., so knowing whether something is straight-line (i.e., Euclidean) is important and saying "planar" would be ambiguous. Is there perfect consistency and use of "Euclidean" and "planar" across all of Esri's documentation? Probably not, but what is most important is how the term is defined for a given tool relative to the options/parameters that are available. A vast majority of Esri's pages that use "Euclidean" or "planar" also give a brief definition of what that term means for that tool, and that is the definition that matters for that tool.
... View more
06-26-2025
10:26 AM
|
0
|
1
|
3946
|
|
POST
|
You seem to misunderstand what that ArcGIS Admin API machine stop command does. It does not stop the ArcGIS Server framework, it stops all the services. The ArcGIS Server framework still runs and responds to certain Admin API calls, including the start command. If the ArcGIS Admin API is not accessible, than something else was done to shut down the ArcGIS Server framework.
... View more
06-26-2025
07:11 AM
|
1
|
0
|
1432
|
|
POST
|
Since counting the number of species codes wasn't stated as a requirement, this can be done much simpler without having to use a code block. For the expression: ",".join(sorted(set(!field!.split(',')))) if !field! is not None else None
... View more
06-26-2025
07:07 AM
|
0
|
1
|
2817
|
|
POST
|
It might be worthwhile for you to read Scheduling Tasks That Access Portal Data . That thread has a discussion of different issues and ideas for accessing portal data through scheduled tasks.
... View more
06-25-2025
07:04 AM
|
3
|
1
|
1209
|
|
POST
|
You say when run in Pro you get the spinning cursor and it "never resolves." How long have you actually waited? If only a minute or two, have you tried letting it run for 15 or 30 minutes just to see if it generates results? There is a difference between something not working, i.e., broken and can't work, and something performing very very slowly. If the data set is large and something is messed up with its indexes or the database has other resource issues, it may be the query will work but take a disproportionate amount of time.
... View more
06-24-2025
11:54 AM
|
0
|
0
|
2469
|
|
POST
|
If this is versioned data, then the exact same query run in SMSS isn't actually the same. If the data is versioned, then within Pro the SQL is actually hitting the versioned data whereas the same SQL in SMSS will only be hitting the base tables. If versioned, try creating a new version from default and see if the query works.
... View more
06-24-2025
09:54 AM
|
0
|
2
|
2501
|
|
POST
|
The SQL statement itself is pretty basic, but SQL support does vary across different database platforms, so it is always good to clearly state the database and version. You mention "SQL server upgrade" but some people generically call databases "SQL server" so I tend not to assume they mean MS SQL Server. Also, what exactly do you mean by "stopped working?" Does it return an error? If so, what? Does it give unexpected results? If so, what are you expecting and what are you getting? Are you sure there are any duplicates at the moment?
... View more
06-24-2025
07:14 AM
|
0
|
4
|
2549
|
|
POST
|
How are you executing the scheduled task? Is it running with the same credentials you are running the code from the interpreter? Considering OAuth access tokens last for 2 weeks, it is common for a cached token to make something work for 2 weeks and then it breaks. If you can explain more about how you are running the scheduled task and how you are authenticating with Portal, I might be able to offer more specific feedback.
... View more
06-24-2025
06:50 AM
|
1
|
3
|
2401
|
|
POST
|
Focus on @AyanPalit's response, other responses offered today have either been wrong or poorly worded enough to be misleading.
... View more
06-23-2025
03:05 PM
|
0
|
9
|
3263
|
|
POST
|
@BenGunnewijk , as much as I agree that consistency within and across a company's product lines is important, I am interested in what "GUID standards" you are referring to? ITU-T X.667, RFC 4122 (now RFC 9562), or some specific company's implementation like Microsoft (based on RFC 4122)? Or is it really about Esri just being consistent with their own Global ID implementation?
... View more
06-23-2025
10:52 AM
|
0
|
0
|
1703
|
|
POST
|
I am not sure if this is a question or request/comment. What you are seeing is expected behavior in terms of licensing, at least on the desktop side. Software maintenance is what allows one to upgrade to new versions when they come out, so not paying maintenance any longer on some of the licenses will leave them at their current version. That said, it does seem wrong that Esri would restrict the role associated with that license since it is a valid license just for an earlier version. I would reach out to your account representative or distributor. I can't say I have ever seen documentation that states the behavior you are seeing, so your representative or distributor might be able to make some kind of accomodation.
... View more
06-20-2025
06:32 AM
|
0
|
0
|
1741
|
|
POST
|
@LindsayRaabe_FPCWA wrote: This script works when run in the interpretter, and has been running on our server when trigged by Task Scheduler overnight for some weeks. All of a sudden, now it doesn't. You mention both the interpreter and a scheduled task, but it is unclear what doesn't work. Does the script fail when running both ways or just one? Also, can you paste the text of the error message and traceback? Generally people don't do the best job of summarizing error messages, so it helps to see the exact and entire message.
... View more
06-20-2025
06:21 AM
|
0
|
10
|
2588
|
|
POST
|
Although I stated above ArcGIS Server can give red-herring or false error messages, sometimes the error messages are completely accurate. I have definitely seen cases where the PublishingTools GP service is either not running or corrupted/broken, and it prevents data store registration or validation. Have you tried what the message suggests, i.e., restart the service and reregister the data store in question?
... View more
06-18-2025
05:26 AM
|
0
|
0
|
1510
|
|
POST
|
This is why I always test a database client outside of ArcGIS software on a machine. As to why the database client isn't working on this machine, I don't work with Linux enough to hazard an informed guess.
... View more
06-18-2025
05:24 AM
|
0
|
1
|
1510
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 weeks ago | |
| 2 | a month ago | |
| 1 | a month ago | |
| 2 | 06-05-2026 10:30 AM | |
| 1 | 05-29-2026 08:22 AM |
| Online Status |
Online
|
| Date Last Visited |
7 hours ago
|