|
POST
|
How exactly are you executing the export? Can you create a new feature class in the enterprise geodatabase from ArcGIS Pro?
... View more
04-12-2022
06:28 AM
|
0
|
0
|
1311
|
|
POST
|
BTW - this question should be posted in the Geoprocessing community. Just noticed it's posted in the Member Introductions.
... View more
04-12-2022
06:26 AM
|
0
|
1
|
1415
|
|
POST
|
You could try executing a simple python script with time.sleep() within your model. time — Time access and conversions — Python 3.10.4 documentation
... View more
04-12-2022
05:56 AM
|
1
|
3
|
1421
|
|
POST
|
Have you seen this? Work with Microsoft Excel files in ArcGIS Pro—ArcGIS Pro | Documentation
... View more
04-08-2022
07:52 AM
|
2
|
0
|
2736
|
|
POST
|
I believe Portal does not support automatically importing groups from Azure AD. Once you have Azure AD set as your Portal IDP, there is some 'manual' work involved to create a Portal group and link it to an Azure AD group. I used to work with Azure AD in ArcGIS Enterprise 1081 at a previous org, so I will try to remember the steps. There is a Portal setting to enable SAML group-based membership, make sure this is checked in your Portal IDP settings. Then, create a new group with the exact name as it appears in Azure AD. In the group creation/settings, check the box that says to use SAML groups. Then if a user was a member of that group in Azure AD, they would be a member of that Portal group the next time they signed in. This was confusing to me at first, but I found that users need to sign out and sign back in before the group membership list in Portal is updated. I always had to set up groups this way in order to link them to my Azure AD groups. This probably could have been scripted to create the groups we needed but I never got around to it.
... View more
04-08-2022
07:33 AM
|
1
|
0
|
2842
|
|
POST
|
What is the original DEM resolution of the two rasters? You say the mosaic'ed DEM looks ok but you might want to zoom into the boundary and compare elevations at the boundary. You might see some steep jumps due to collection/processing methods or the collection date of the source data. Resampling a 30m DEM (for example) to 5m does not improve the accuracy, just chops up the existing cells into smaller cells.
... View more
04-08-2022
07:15 AM
|
0
|
1
|
2708
|
|
POST
|
Actually, once you get the gis server object (gis_servers), you can try something like: serverFolder = 'My test folder' serviceList = gis_servers.services.list(folder=serverFolder) Then loop through that list and execute .start or .stop for service in serviceList:
service.start()
# service.stop()
... View more
04-01-2022
10:48 AM
|
2
|
2
|
3711
|
|
POST
|
Have you seen this? Example: Stop or start all services in a folder—ArcGIS Server Administration (Linux) | Documentation for ArcGIS Enterprise (depaul.edu)
... View more
04-01-2022
10:33 AM
|
0
|
3
|
3713
|
|
POST
|
Thanks! Combo of restarting and cleaning views did the trick.
... View more
04-01-2022
08:40 AM
|
0
|
0
|
1166
|
|
POST
|
I am trying to set up new counters in ArcGIS Monitor 10.8.1. For example, trying to add a system counter to monitor the machine ArcGIS Monitor is installed on. I fill in all the information and hit Test. I see the spinning icon and it runs for hours and does not return any errors or succeed. This also happens if I test other counters that have already been set up and tested successfully by another user. I am running ArcGIS Monitor app as an administrator on the machine. Has anyone seen this behavior?
... View more
04-01-2022
08:19 AM
|
0
|
2
|
1184
|
|
POST
|
Running ArcGIS Enterprise 10.91. I have a Postgres enterprise geodatabase connection, connected as the SDE user. In ArcGIS Pro I can create, update, and delete tables using this connection. I am attempting to register this with our ArcGIS Server so we can publish services. Attempts to register this data store through ArcGIS Server Manager returns the following error: The connection property set was missing a required property or the property value was unrecognized. Bad login user[ ] I would assume the username and password are correct since I can use this connection file in ArcGIS Pro. Any ideas?
... View more
03-28-2022
07:57 AM
|
0
|
2
|
1945
|
|
POST
|
I see you have a space in your output geodatabase path. In general, it's a big no-no to have spaces or special characters in any paths you'll be using in ArcGIS. Try running it again but replace the space with an underscore or similar.
... View more
03-18-2022
06:55 AM
|
1
|
0
|
1173
|
|
IDEA
|
I built a python toolbox for ArcGIS Pro that will start or stop all services in a folder on the GIS Server. Requires a federated ArcGIS Enterprise deployment. The GIS Server and GIS Server Folder parameters dynamically provide dropdowns based on the active Portal you are signed into, in ArcGIS Pro. DM if you're interested, I can pass it along. FYI - working on an update for this that will allow you to select individual services in a Folder, rather than running the whole operation on every service in a selected folder. It will look something like this: I also have similar tools in the works that will handle deletion and restarting services as well. Cheers.
... View more
03-17-2022
10:24 AM
|
0
|
0
|
2250
|
|
POST
|
Great, thanks. That's what I needed to get the field name. Still getting the sequence error though. with arcpy.da.UpdateCursor(fc, fieldList) as cursor: for row in cursor: objectID = row[0] for counter, i in enumerate(row): current_field = fieldList[counter] if i is not None and chr(10) in str(i) or chr(13) in str(i): print('\nError found on Object ID: {}'.format(objectID)) print ('Field: {}'.format(current_field)) print('There is a newline in: {}'.format(i.replace(chr(10), eolchar).replace(chr(13), eolchar))) row = [i.replace(chr(10), eolchar).replace(chr(13), eolchar)] cursor.updateRow(row)
... View more
03-04-2022
06:40 AM
|
0
|
1
|
1568
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 07-16-2022 08:54 AM | |
| 1 | 11-09-2021 04:14 PM | |
| 1 | 04-13-2022 08:10 AM | |
| 1 | 11-13-2024 05:02 PM | |
| 1 | 05-06-2021 06:48 PM |
| Online Status |
Offline
|
| Date Last Visited |
2 weeks ago
|