|
DOC
|
@JoabelBarbieri with later releases of ArcGIS Pro, and updates made to arcpy, arcpy's Append tool is just as performant as uploading a File Geodatabase and appending the records from there. So, you could use this in the script instead. You can also change the upsert=False to True in the Append function. If you do, you will also need to add a new parameter, upsert_matching_field, and set this to a unique field. That field must also have a unique index applied to it. As for the size doubling, I could not reproduce this. I would test on another service to see if the same occurs.
... View more
05-02-2023
06:27 AM
|
0
|
0
|
29116
|
|
DOC
|
@VithushanLogan the WEBGISDR_Export_FULL_10.8.1.zip will work for 10.9.1 as well.
... View more
04-19-2023
06:34 AM
|
0
|
0
|
36159
|
|
DOC
|
@VithushanLogan you will need to update the webgisdr.properties file to use an S3 bucket.
... View more
04-06-2023
11:00 AM
|
0
|
0
|
36349
|
|
POST
|
Hi @PeterGreen_CEC , If you have a service that you will be adding/removing layers from, it's important to publish the service with Allow assignment of unique numeric IDs for sharing web layers enabled. This will ensure no applications/web maps will be broken due to a new layer being added to the Map. You can reference the individual layer by referencing the index value at the end of the URL. For example, take a look at the following URL: https://services.arcgis.com/P3ePLMYs2RVChkJx/ArcGIS/rest/services/ACS_Population_by_Race_and_Hispanic_Origin_Boundaries/FeatureServer If I wanted to add in only the county layer, I would specify a /1 at the end of the URL: https://services.arcgis.com/P3ePLMYs2RVChkJx/ArcGIS/rest/services/ACS_Population_by_Race_and_Hispanic_Origin_Boundaries/FeatureServer/1
... View more
03-30-2023
11:58 AM
|
0
|
1
|
3132
|
|
POST
|
Hi @Anonymous User , It's recommended to use separate web adaptors for portal and server. I don't think having one for both is technically supported. I usually recommend having the web adaptors installed on a dedicated web server in a DMZ if ArcGIS Enterprise is going to be externally accessible (outside your Org's firewall). However, if ArcGIS Enterprise is internal only, it's fine to have the web adaptors installed on an existing server (i.e. both installed on portal server). The web adaptor is a very small application and barely consumes any resources to run.
... View more
03-30-2023
10:02 AM
|
1
|
0
|
881
|
|
POST
|
The below should work: def test(x, y):
if x == 'UNF_GT' and y == None:
return 'UNF_GT' Try removing the other elif statements.
... View more
03-30-2023
07:04 AM
|
2
|
1
|
2442
|
|
DOC
|
@neomapper , @Javier_Morales Can both of you share the feature service you are trying to update to an AGOL Group, and then invite my user account, jskinner_CountySandbox, to this Group?
... View more
03-29-2023
03:27 AM
|
0
|
0
|
29361
|
|
DOC
|
@PeterKnoop good catch on adding the users to Groups. I've updated the scripts to add them as either users/managers.
... View more
03-22-2023
06:16 AM
|
0
|
0
|
22711
|
|
DOC
|
@neomapper it appears to be an unknown error. How many features are you trying to append?
... View more
03-21-2023
12:19 PM
|
0
|
0
|
29474
|
|
DOC
|
The below video will walk through migrating built-in named user accounts to enterprise named user accounts within ArcGIS Enterprise/ArcGIS Online using the attached scripts. The enterprise accounts can be SAML or, for ArcGIS Enterprise, Active Directory (IWA). Note: My Esri training will not be maintained for AGOL accounts The below script will print which users have Esri Access enabled. To maintain training, these users should be removed from the CSV and migrated manually. See the following link for more details for users that have Esri access enabled. from arcgis.gis import GIS
gis = GIS('https://www.arcgis.com', username, password)
all_users = gis.users.search()
for user in all_users:
if user.esri_access == 'both':
print(user.username)
... View more
03-21-2023
10:51 AM
|
6
|
35
|
22873
|
|
POST
|
Hi @Salehalamri , You can convert a database to a geodatabase using the Enable Enterprise Geodatabase tool in ArcGIS Pro.
... View more
03-15-2023
10:00 AM
|
0
|
1
|
2858
|
|
POST
|
Hi @GIS_Rookie , Here is an example: import arcpy
# Variables
fc = r"C:\Projects\GIS.sde\Crimes" # Path to SDE feature class
latField = 'latitude' # Latitude field name
longField = 'longitude' # Longitude field name
# Create search cursor
with arcpy.da.SearchCursor(fc, [latField, longField]) as cursor:
for row in cursor:
latitude = row[0]
longitude = row[1]
print(latitude, longitude)
del cursor
... View more
03-07-2023
04:45 AM
|
2
|
0
|
5944
|
|
POST
|
Hi MarGIS, The data store directories must be stored on the local drive. However, the backup location can be configured on a network drive.
... View more
03-06-2023
04:49 AM
|
0
|
0
|
1026
|
|
POST
|
If I designate #2 as a dedicated NoteBook Server and give it it's own Web Adaptor does that prevent it also being used in its current capacity? No, it will not prevent it being used as an ArcGIS Server instance used to host your referenced services.
... View more
03-03-2023
10:19 AM
|
1
|
0
|
3603
|
|
POST
|
Hi Greg, Download the connector from the following link. The symbology is saved in the WebMapAsJSON directory within that zip. On page 21 of the ArcGIS GeoEvent Serer - Waze Connector.pdf will show you how to implement.
... View more
03-03-2023
03:45 AM
|
1
|
3
|
2539
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | a month ago | |
| 4 | 05-07-2020 05:14 PM | |
| 1 | 03-25-2026 04:16 AM | |
| 1 | 03-16-2026 01:00 PM | |
| 1 | 12-22-2025 10:39 AM |
| Online Status |
Offline
|
| Date Last Visited |
14 hours ago
|