|
POST
|
Another thing to try is go into Project > Options > Raster and Imagery > Raster Dataset > Maximum number of unique values to display > 100,000,000. Does the raster draw?
... View more
06-28-2024
08:53 AM
|
1
|
2
|
5275
|
|
POST
|
@Geobunga - sorry you're experiencing this freezing issue as well. You mention that it's intermittent and seems to be with larger and/or older projects. Question for you - is the ArcGIS Pro project stored on a network drive or is it local? One thing to test is to create an ArcGIS Pro project file (*.ppkx) and then extract that to a local drive. Then test to see if the "backup in progress" latency returns or not. Keep in mind this is a complete copy of the original project but everything is "current" with regards to release.
... View more
06-28-2024
08:11 AM
|
0
|
2
|
4750
|
|
POST
|
Certainly @LarsElmkær_Chwastek - hopeful the enhancement request is implemented is near future release! With regard to your follow up question, I do not know. The convert to graphics solution is not a dynamic solution in that one loses a direct connection to the legend data. It's simply graphics that can be edited.
... View more
06-28-2024
07:50 AM
|
0
|
0
|
2392
|
|
POST
|
So I see this when my Color Vision Simulator (Tritanopia) is turned on. By chance is CVS on the View tab active?
... View more
06-27-2024
02:05 PM
|
0
|
0
|
1271
|
|
POST
|
There's an ENH-000159803 - "Ability to rotate symbols, independently of text symbols, in legends, in layouts" and it is "under consideration" currently. Best workaround is to convert the legend to graphics, ungroup the graphic items and rotate the symbol itself. Not the best answer I know.
... View more
06-27-2024
12:56 PM
|
1
|
0
|
2413
|
|
POST
|
So I've looked into the question of an ArcReader alternative and there appears to be a Windows/iOS/Android app called ArcGIS Explorer. There is a product page located here with Home, Help and an FAQ. In ArcGIS Pro, you create a Mobile Map Package and then use it in ArcGIS Explorer. By its design, a user cannot edit the data in ArcGIS Explorer.
... View more
06-27-2024
12:40 PM
|
0
|
0
|
1298
|
|
POST
|
I don't have an answer to the question but a suggestion on how to reuse the dynamic text with other maps. In the Expression Builder UI, you can export the dynamic text expression to a Label Expression File (*.lxp), then when you change the map for the map view, import the dynamic text expression to rebuild it. Would that work in this instance?
... View more
06-27-2024
12:15 PM
|
0
|
0
|
889
|
|
POST
|
As you likely know, a model can only have one iterator but you can get around this by working with a model within a model as referenced here. I also worked with a customer that kind of got around the one iterator per model issue by having 3 models that were then accessed via a Python script tool. You can read about it here.
... View more
06-20-2024
02:43 PM
|
0
|
0
|
1015
|
|
POST
|
Question for you - what release of ArcGIS Pro are you using?
... View more
06-20-2024
02:35 PM
|
0
|
1
|
1518
|
|
POST
|
Caveat, I used ChatGPT to write this Arcade expression based upon the statement - "Write an arcade expression that calculates a field called Drop_Length_Total in a layer called DoubleD where if a line layer called DTTERM touches a point layer called VSP, I'd like the shape_length of the DTTERM layer to be added to the shape_length of a layer called DTTAP that also intersects the same VSP point." The script completed is as follows - haven't tested it as I don't have the same data as you: // Initialize the total drop length variable var dropLengthTotal = 0; // Access the DTTERM layer var dttermLayer = FeatureSetByName($map, "DTTERM"); // Access the DTTAP layer var dttapLayer = FeatureSetByName($map, "DTTAP"); // Access the VSP points layer var vspLayer = FeatureSetByName($map, "VSP"); // Loop through each VSP point for (var vspPoint in vspLayer) { // Find DTTERM lines that touch the current VSP point var touchingDTTERM = Intersects(dttermLayer, vspPoint); // Find DTTAP lines that intersect the same VSP point var intersectingDTTAP = Intersects(dttapLayer, vspPoint); // Initialize variables to hold lengths var dttermLength = 0; var dttapLength = 0; // Sum the lengths of touching DTTERM lines for (var line in touchingDTTERM) { dttermLength += line.shape_length; } // Sum the lengths of intersecting DTTAP lines for (var line in intersectingDTTAP) { dttapLength += line.shape_length; } // Sum the lengths for the current VSP point var totalLengthForVSP = dttermLength + dttapLength; // Add to the total drop length dropLengthTotal += totalLengthForVSP; } // Return the total drop length return dropLengthTotal;
... View more
06-20-2024
01:59 PM
|
0
|
0
|
1281
|
|
POST
|
By chance, do you have a Definition Query on the feature layer in the Map View>
... View more
06-20-2024
01:44 PM
|
0
|
0
|
697
|
|
POST
|
I'm using ArcGIS Pro 3.3, have added a polygon shapefile to a map view, clicked the Edit tab->Create, use the feature template to create a polygon using the polygon tool. I then switched over to the Freehand tool, left click once to start the sketch, freehand the polygon, and left double click to finish the sketch. Worked properly. What is your workflow?
... View more
06-20-2024
01:25 PM
|
0
|
0
|
1251
|
|
POST
|
So even though the Generate Schema Report GP tool parameter says - Input Dataset - it will take an entire geodatabase and generate the report for EVERYTHING in that GDB. I tested this where I selected Demo.gdb as the input dataset and generated a pdf with the full report.
... View more
06-20-2024
01:10 PM
|
0
|
6
|
3624
|
|
POST
|
I wonder if the Density Based Clustering (Spatial Statistics) GP tool with a Defined Distance parameter would get you close to what you're looking to do?
... View more
06-20-2024
10:48 AM
|
0
|
0
|
894
|
|
POST
|
Good morning @LydiaStekkinger - sorry to hear you're experiencing this freeze issue as well. A couple questions and/or things to try: 1. Do you have any Add-ins installed like XTools? If so, I'd recommend uninstalling those and try again. 2. Are you using 2 monitors via a docking station? If so, let's try disconnecting from the docking station and attempting the workflow again. 3. Run the "Can you run it" application to see if there is any hardware issues - systemrequirementslab.com/client-app?refid=1256&appkey=6D681CD0-BA6C-4B6B-9A82-639759CFD094&requirementsetid=23091 4. You mentioned Excel - do you have the correct drivers installed? You can determine and download the correct drivers here - Install the drivers to work with Microsoft Excel files—ArcGIS Pro | Documentation 5. You're at ArcGIS Pro 3.1.2 - is it possible to upgrade to the most current release (3.3)?
... View more
06-20-2024
08:02 AM
|
0
|
1
|
4418
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | a week ago | |
| 1 | Monday | |
| 1 | Tuesday | |
| 1 | a week ago | |
| 1 | 2 weeks ago |
| Online Status |
Offline
|
| Date Last Visited |
Thursday
|