|
POST
|
@SeanReynolds, I would try a truncate/append method instead. See the following document.
... View more
11-03-2023
08:45 AM
|
0
|
1
|
1374
|
|
POST
|
Hi @LeeBrannon1, I don't believe Spatiotemporal Feature Services are supported with Distributed Collaboration in which the service will be distributed as a 'copy'. A feature service requires Sync enabled for the data to be copied, and I don't think there is a way to enable Sync on a Spatiotemporal Feature Service.
... View more
11-03-2023
08:02 AM
|
1
|
2
|
1991
|
|
POST
|
@mikaël, You could create a model in ArcGIS Pro that performs the following: 1. Converts the JSON URL to a feature class using Pro's JSON to Features tool 2. Truncate the AGOL feature service using Truncate Table. I can't recall if this works on AGOL feature services, so you may have to use Delete Features instead 3. Append the feature class created from step 1 to the AGOL feature service.
... View more
11-03-2023
08:00 AM
|
0
|
1
|
4520
|
|
POST
|
Hi @coolgis, Try manually starting the database with the following steps: 1. On the portal server, open a command prompt as an Admin 2. Navigate to the pgsql\bin directory within the Portal install location, ex: cd C:\Program Files\ArcGIS\Portal\framework\runtime\pgsql\bin 3. Execute the below command replace C:\arcgisportal\db with the path to your db folder: pg_ctl -m fast start -o "-p 7654" -D C:\arcgisportal\db
... View more
10-20-2023
07:33 AM
|
0
|
1
|
2122
|
|
POST
|
Hi @davidchamberlain2, You can do this using Attribute Rules. Execute the Add Attribute Rule tool for your feature class. Ex:
... View more
10-20-2023
05:58 AM
|
1
|
1
|
2256
|
|
DOC
|
@PeterKnoop thank you for this, this is good to know.
... View more
10-19-2023
09:48 AM
|
0
|
0
|
31978
|
|
DOC
|
@gis_user yes, this dropdown won't show until you fill out the parameters before. You can select all the users, and then all the users content to create a report for all items.
... View more
10-19-2023
09:34 AM
|
0
|
0
|
31991
|
|
DOC
|
Hi @gis_user, You can select multiple users from the Source User parameter:
... View more
10-19-2023
09:09 AM
|
0
|
0
|
32011
|
|
POST
|
Hi @lmatteo, I would recommend making version MAJ a child version of LTD. When publishing your service, make sure you are connected to the LTD version. When you are ready to update the LTD version, you can perform a reconcile/post from MAJ to LTD and the service will be updated as well.
... View more
10-18-2023
07:01 AM
|
2
|
1
|
1435
|
|
POST
|
Hi @MANESK, You can do this using ArcGIS GeoEvent Server. GeoEvent allows you to poll APIs and write the data (i.e. JSON) to a feature service.
... View more
10-17-2023
03:43 AM
|
0
|
1
|
1491
|
|
POST
|
Hi @coolgis, The webgisdr performs the export sites you have mentioned before. Will the same URL be used in the new environment? For example, do you have a DNS (gis.domain.com) that will be switched over to the new environment once everything is migrated? If this is the case, you can update the hosts file in the new environment where the web adaptors will be installed. Take a look at the following document on steps to do this.
... View more
09-28-2023
06:43 AM
|
0
|
0
|
1888
|
|
POST
|
Hi @JoshDawe , Try setting the Output Coordinate System to the PCS in the Environments of the tool:
... View more
09-25-2023
11:35 AM
|
0
|
1
|
1969
|
|
POST
|
Hi @abhishek_choudhary , For your second parameter, you can create it as type Field and set the Dependency to the InputFeatureLayer (as you currently do). This will provide a dropdown to select the field:
... View more
09-25-2023
11:32 AM
|
0
|
0
|
1574
|
|
DOC
|
@ModernElectric create a model using the GP tools Truncate and Append. If needed, you can schedule the model to run on a scheduled basis, or export the model to a script, and execute the script on a scheduled basis.
... View more
09-25-2023
05:15 AM
|
0
|
0
|
27617
|
|
POST
|
Try the following: import arcpy
import os
import requests
fc = arcpy.GetParameterAsText(0)
dest_path = arcpy.GetParameterAsText(1)
print(fc)
with arcpy.da.SearchCursor(fc, ['LINK']) as cursor:
for row in cursor:
print("Downloading: " + row[0])
response = requests.get(row[0])
outputFile = row[0].split("/")[0]
with open(dest_path + '\\' + outputFile, 'wb') as f:
f.write(response.content)
del cursor
... View more
09-22-2023
12:45 PM
|
0
|
0
|
2589
|
| 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 |
Online
|
| Date Last Visited |
5 hours ago
|