|
POST
|
ArcGIS Pro supports different python containers (see DeepLearning with ArcGIS Pro discussions re: cloned environment of ArcGIS Pro's default environment,). The scripts would need to be explicitly told what container they should run in. Sounds like when you load a Raster the Spatial Analyst extension is being, for lack of a better word, Turned-On. This is (re)setting the _conda_ python path back to the default used by SA. See - Install and Setup | ArcGIS API for Python *By default, ArcGIS Pro has a single conda environment, arcgispro-py3, which includes all Python libraries used by ArcGIS Pro as well as several others, such as scipy and pandas. Enviornments can be activated in Pro via File | Package Manager. I don't know how to do this in C#, but you need to replicate this Activated logic to swith between your Python scripts.
... View more
05-15-2025
08:48 AM
|
0
|
1
|
1387
|
|
POST
|
Also, think about where on the network your Geodatabase is being saved. Recall that Geodatabases on OneDrive 'are not supported by ESRI'. The data transfer delay associated with OneDrive and other Cloude storage solutions dependent on network traffic (and any dropped packets) from your desk all the way to the server in (wherever that is at ;-).
... View more
05-15-2025
08:38 AM
|
0
|
0
|
1242
|
|
POST
|
Sounds like ESRI could spend 40 hours and create a basic MXD doctor with this concept.
... View more
04-18-2025
09:31 AM
|
9
|
0
|
3177
|
|
POST
|
Step 1. Have someone who has never logged into the computer with the problem (i.e., crash when project open) login, navigate to the project, and open the project with noissues? If the answer is YES, then the issue is with the Frist user's profile. Delete the folder C:\Users\<user id of the person with the problem>\AppData\Local\ESRI\ArcGISPro; reboot and have them try again. Step 2. IF the new person and the old person have the same issue (project crashes ArcGIS Pro) then we know where the problem is...don't we? ;-). Most likely the project is trying to connect to a 'partially' unreachable Feature class OR references a printer that is a hung state. In both cases ArcGIS Pro can 'find' the FC or Printer, but cannot communicate past that point. Step 3. to see if your project file is the actual culprit - Re: how to restore a corrupt arcgis pro aprx - Esri Community
... View more
04-18-2025
09:28 AM
|
1
|
0
|
1689
|
|
POST
|
What Field are you joining on? Matches have to be exact so even an extra space within a text field would make a difference (i.e., 'this' is not equal to 'this '). One option would be to do the import table command in Pro then join that vs. using a .csv directly.
... View more
04-17-2025
07:47 AM
|
1
|
0
|
440
|
|
BLOG
|
Selim, Since your update version tool is IN the post build event, then the Version # in the actual build will NOT contain that new number, rather it will be the version # of the last run. Post build is for such things as copying Solutions to an external location. In my case, we need a new <date> for the build updated before VS Build executes. ArcGIS Pro uses that date to determine if the AssemblyCache gets updated. If you never change the <date> then ArcGIS Pro will not automatically update the cache (i.e., you will have to manually delete it).
... View more
04-06-2025
09:22 AM
|
0
|
0
|
872
|
|
POST
|
If you loaded Survey quality data as a table, then most likely you then used the XY event mapping to show the data. To make the layer permanent you would need to save as a Feature Class. If the layer is listed in the Legend Pane but is not displaying 'where' you expect, try right clicking on the layer and Zoom To to see where the data is actually being drawn. High probability that the layer projection for your data does not match of your base map. Again, convert to a FC to ensure the projection definition is saved. *if this is actually survey grade date ensure you have the correct survey accurate Projection Defined (e.g., NAD1983 (2001) vs. just NAD1983).
... View more
03-27-2025
04:42 PM
|
0
|
0
|
342
|
|
BLOG
|
Thanks for the hint! I built a new console .exe that now updates my <Data> tag, it is run by the Visual Studio Prebuild even.
... View more
03-24-2025
01:12 PM
|
0
|
0
|
983
|
|
IDEA
|
ESRI did provide an ArcGIS Pro 2.9 to ArcGIS Pro 3 upgrade tool. However, there is no 3.3 to 3.4 tool to address known issues (e.g., help with Net 6 to 8 migration and changes in several Visual Studio internal tags, such as changes to the Runtime IDs from win10-x64 to win-x64).
... View more
03-24-2025
01:08 PM
|
0
|
0
|
545
|
|
IDEA
|
So technically, it sounds like different versions of Microsoft Edge WebView2 Runtime (e.g. if you built against a static vs. evergreen install on your development machine) could result in different behavior or unforeseen compatibility errors.
... View more
03-24-2025
01:02 PM
|
0
|
0
|
755
|
|
POST
|
Found an additional risk with multiple add-ins Implement AssemblyLoadContext for Add-In Isolation... - Esri Community
... View more
03-24-2025
12:57 PM
|
0
|
0
|
606
|
|
IDEA
|
In visual studio each time we rebuild and test an ArcGIS Pro add-in one should update the <Data> tag. If you want to test outside of the Visual Studio Development Environment this is required to ensure ArcGIS Pro actually is running your new code vs. a cached version. This need to update the config.daml multiple times during the development work during the day is tedious. Recommend a code snippet or Sample be made available to support this. For example, see attached. *Added Error checking to Program.cs
... View more
03-24-2025
12:49 PM
|
0
|
1
|
531
|
|
BLOG
|
How about a simpler SDK tool that would automatically update the config.daml <date> tag during each 'Rebuild Solution' build? <Date>03/21/2025 11:00:00 AM</Date> I would think the version attribute should be 3.0 for all ArcGIS Pro 3.x builds.
... View more
03-24-2025
10:47 AM
|
1
|
0
|
1002
|
|
POST
|
How many rows are calculated? for many Feature Services the maximum number of rows that can be returned by the query is defined in the service. ESRI default is 1000 rows. To test, in Python suggest you do a loop or add code to 'chunk' the calculation by OBJECT ID or FID (i.e., calc FID 0 to 999 then repeat for 1000-1999, until your done. Then check and see if the null has been solved.
... View more
03-24-2025
10:34 AM
|
1
|
0
|
745
|
|
POST
|
If you actually know the Condition for the button or tool then you should be able to use the Framework.Application.Deactivate("esri_mapping_openProjectCondition") command in code to disable the button. I do note this will also probably disable Name: Save Project Name: Save Project As ID: esri_core_saveProjectAsButton Condition: esri_mapping_openProjectCondition
... View more
03-24-2025
10:22 AM
|
0
|
0
|
445
|
| Title | Kudos | Posted |
|---|---|---|
| 7 | a week ago | |
| 1 | 12-17-2025 12:46 PM | |
| 1 | 11-24-2025 01:43 PM | |
| 1 | 11-25-2025 09:49 AM | |
| 1 | 07-31-2025 08:54 AM |
| Online Status |
Offline
|
| Date Last Visited |
Tuesday
|