|
POST
|
Not that I can really test as I am still using 3.1.3, and 3.2.1, but, in both of these versions, I am not seeing the issue. Any changes in the attribute table persist, even when closing/reopening or adding to new map. But, you mentioned 'clicking through all of them in the attribute window' suggests that you have them selected. Just to make sure you are aware, if you are making the same edit to multiple features, you can click the layer name in the attribute window and any changes made will be applies to ALL selected features at once. No need to click through them. Unless, of course, you are making 'different' edits to the features. R_
... View more
8 hours ago
|
1
|
0
|
4
|
|
POST
|
It would need to know where to put the labels and a standalone table doesn't have a spatial component. You will want to label the Streets Centerline layer instead. If it doesn't include the street names in the table, but has a common ID between it and the table, you would want to join the standalone table to the Centerlines, then you would turn on and configure labeling for the Centerlines layer. Then, when you toggle on the Centerline featureclass, it will show the labels. R_
... View more
10 hours ago
|
0
|
0
|
5
|
|
POST
|
Sometimes see things like this with invalid/corrupt geometry. You could try the Check Geometry GP Tool in Pro to see if there are geometry errors. If so, you could run the Repair Geometry GP tool on the source data prior to overwriting the service. As always, with tools that modify the exiting data (Repair Geometry), recommend making a backup copy first. R_
... View more
yesterday
|
0
|
0
|
75
|
|
POST
|
Not sure about templates, but you can package your map or project to a file that will retain your toolbox's and GDB's. R_
... View more
Friday
|
2
|
1
|
125
|
|
POST
|
Not an answer, but letting you know that AGO assistant is available in portal. It is just a webpage that will let you log into Portal (at least up to 10.9.1, suspect it works with newer versions). R_
... View more
Friday
|
0
|
0
|
144
|
|
POST
|
Have not tested with ECW's, but have loaded 1400 jpegs, jp2's, and tiff's into mosaics without issue. I set the Input Data to Workspace and let it grab all the images in there rather than adding them all to the list individually. R_
... View more
a month ago
|
0
|
0
|
176
|
|
POST
|
<dyn type="user"/> for the logged in username. See here for other dynamic text available. R_
... View more
a month ago
|
0
|
0
|
83
|
|
POST
|
If you have access to the python API, I have used this method to add, delete or re-order the list. The domain list will honor the order of the dictionary used to update it. R_
... View more
11-05-2025
07:40 AM
|
0
|
0
|
173
|
|
POST
|
Can't test at the moment, but you might be able to open the project in Pro, then run the script. Then you could look at the definition queries applied to the layers and see if they are valid? Might give an idea as to the issue. Sometimes it's just a small syntax issue and can sometimes take a bit to figure out the right coding to string a where clause together in the proper format. R_ Edit to add: It could also depend on what your data source is. If I set up a similar definition query in Pro on data from SQL Server through .sde connection file: dt_fld >= '2025-01-02 00:00:00' And dt_fld <= '2025-12-02 00:00:00' But in the same project, if I connect to a FGDB feature class, the same query becomes: dt_fld >= timestamp '2025-01-02 00:00:00' And dt_fld <= timestamp '2025-12-30 00:00:00' Neither of which have the 'date' in them. I remember seeing that before, so 'some' data source(s) must require it that way. Another reason to check the def queries in Pro itself after the script.
... View more
11-04-2025
12:00 PM
|
0
|
0
|
254
|
|
POST
|
I used to have that issue back when running 2.x versions. It was related to Microsoft KB updates. Every time the system 'updated', I had to remove the updates from the computer to be able to change/modify the symbology without it crashing (which is a never ending cycle, and probably not the best for security). Believe 3.1 is when that issue was resolved if I remember correctly, but it's been a while. R_
... View more
11-04-2025
10:55 AM
|
0
|
0
|
208
|
|
POST
|
I have done this quite a bit, but I don't bother with the featureset (other than to query it) I get a [List] of the OID's (I use GlobalID's, but OID's should work fine) of the features from the hosted feature service, then pass that 'expanded' list as the Where clause in arcpy.management.Append. Post = r'\\computer\path\database.sde\owner.SCHEMA.Posts'
item_id = '3b61fd5e5e9842dc80sdfsd443465' # Hosted Post data
item = portal.content.get(item_id)
lyr1 = item.layers[1] # Portal Features
AddPostList = ['123','124','125',....] # List of GlobalID's to append to SDE data
with arcpy.EnvManager(preserveGlobalIds=True, maintainAttachments = True, scratchWorkspace=r"\\path\to\Default.gdb", workspace=r"\\path\to\Default\Default.gdb"):
Post = arcpy.management.Append(inputs=[lyr1.url], target=Post, schema_type="NO_TEST", subtype="", expression="GlobalID IN ('" + '\',\''.join(AddPostList) + "')")[0] Below, you can see how the list gets expanded: I have stripped the field mapping from this code as it needs the full path to the HFS fields, so it was too much and confusing to post. R_
... View more
11-03-2025
02:33 PM
|
2
|
0
|
434
|
|
POST
|
You will need some temp storage space as I see the downloadable dataset is nearly 1.5Gb. But, download the zip file, unzip it, load the unzipped tif file into Pro, then use the Clip Raster GP tool to clip out the area of interest. For the output extent, you can click on the pencil and select Polygons, and it will create a new polygon layer that you can edit and sketch the area of interest and run the tool. R_
... View more
10-30-2025
04:32 PM
|
0
|
0
|
234
|
|
POST
|
Depends on how "simple" you want. One simple way is to load into Pro/ArcMap and symbolize on the Phase Configuration field, then select Show Counts. R_
... View more
10-30-2025
04:04 PM
|
1
|
0
|
329
|
|
POST
|
This is a couple versions old, but pretty sure multipoint layers are still not supported in FM app. Technical Article that might help. R_
... View more
10-30-2025
02:04 PM
|
0
|
0
|
193
|
|
POST
|
Have you tried running the Repair Geometry GP tool on the shapefile? R_
... View more
10-30-2025
10:23 AM
|
0
|
0
|
128
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 8 hours ago | |
| 2 | Friday | |
| 1 | 10-30-2025 04:04 PM | |
| 2 | 11-03-2025 02:33 PM | |
| 1 | 10-15-2025 01:28 PM |
| Online Status |
Online
|
| Date Last Visited |
13 hours ago
|