|
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
|
1308
|
|
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
|
893
|
|
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
|
1021
|
|
POST
|
Question for you - what release of ArcGIS Pro are you using?
... View more
06-20-2024
02:35 PM
|
0
|
1
|
1523
|
|
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
|
1285
|
|
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
|
702
|
|
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
|
1255
|
|
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
|
3629
|
|
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
|
895
|
|
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
|
4424
|
|
POST
|
From the internals - "The standard label engines in ArcMap and Pro have many options for label placement, weights, priorities etc, but just like rotation, these are not yet supported in a feature service through Portal or ArcGIS Online. Rendering through a map service does support these properties though." There is an ENH-000109622 -"Adding more labelling options in ArcGIS Online" but the enhancement request was closed as it's a known limitation. I'd recommend adding an ArcGIS Idea for this item so it gets visibility in front of the dev team.
... View more
06-18-2024
02:18 PM
|
0
|
0
|
682
|
|
POST
|
This is a manual way of transferring attributes from a line layer to a point layer - there is the Transfer Attributes command in the Modify Features pane in ArcGIS Pro. This workflow has been around for quite some time so I suspect your installation of ArcGIS Pro should be fine.
... View more
06-18-2024
10:54 AM
|
0
|
0
|
1181
|
|
POST
|
Yes. So I believe you're not using the correct field type. In the Fields Designer, you need to select the "Date Only" field type rather than the "Date" field type. I was able to replicate the behavior you're seeing using the Date field type. If I use the "Date Only" field type, then I do not get the 12:00 AM timestamp.
... View more
06-18-2024
10:44 AM
|
1
|
1
|
2273
|
|
POST
|
I don't see why not. If you're installing ArcGIS Pro on the server, then the ArcPy modules are installed there as well. Then you can run your code on the server.
... View more
06-18-2024
10:19 AM
|
0
|
2
|
3397
|
|
POST
|
One idea to consider is there are new Field Data Types introduced at ArcGIS Pro 3.2 - one of which is DATE only. You could create a new field using this new field type, calculate the new DATE field from the old date field, then use the code to filter out date information without worrying about the time component.
... View more
06-18-2024
10:17 AM
|
0
|
3
|
2280
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | Monday | |
| 1 | Tuesday | |
| 1 | Tuesday | |
| 1 | Tuesday | |
| 1 | 04-06-2021 12:48 PM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|