|
POST
|
Hi @Anonymous User, You can use the Change Provider operation.
... View more
08-12-2021
09:23 AM
|
0
|
1
|
2067
|
|
POST
|
Hi @JamesMcClellan , Try the following: 1. Log into ArcGIS Online 2. Go to the item details of the service you wish to update 3. Click View at the bottom of the page: JakeSkinner_0-1628784749402.png This should add the URL with a token to a new tab. 5. Add the admin portion into the URL.
... View more
08-12-2021
09:13 AM
|
1
|
1
|
1894
|
|
POST
|
Hi @Sietse_de_Haan, The easiest approach would be to use GeoEvent Server to poll the API and send the JSON to a feature service. Another option would be to use python in which you could query the API, process the JSON, and then update a feature service using the ArcGIS API for Python. Here is an example on how to update a feature service.
... View more
08-12-2021
08:50 AM
|
1
|
2
|
2751
|
|
DOC
|
@BB_GISyes, that is most likely the reason. I will have to run some tests to see how this will work with an In Memory feature layer.
... View more
08-11-2021
05:57 AM
|
0
|
0
|
31430
|
|
POST
|
@Hussam_AlJabrilooks like there is an issue with the service. Are you able to access the attribute table in the web map?
... View more
08-11-2021
05:52 AM
|
1
|
1
|
4709
|
|
IDEA
|
When transferring content from portal to portal, whether it's ArcGIS Enterprise to ArcGIS Enterprise, or ArcGIS Enterprise to ArcGIS Online, I've found from working with customers is that there is not a 'one size fits all' solution. There are A LOT of 'what ifs'. For example, say an organization needs to copy a web map from their ArcGIS Enterprise organization to another ArcGIS Enterprise organization, and the web map is referencing ArcGIS Server services. What happens if the target organization does not have this ArcGIS Server service published? What should occur: the web map should not be copied the web map should be copied, but reference the original source data the service should be transferred as a hosted feature service One organization may say the web map should not be copied, but another says it should but reference the original source data. This is just one example of a what if scenario. I've found the best path forward is to gain an understanding of what the customer is looking to achieve and create a custom tool (usually leveraging the ArcGIS API for Python) to do this.
... View more
08-11-2021
05:36 AM
|
0
|
0
|
6914
|
|
IDEA
|
@sbiswas_geoadaptiveare you trying to transfer a web application from ArcGIS Enterprise to ArcGIS Enterprise or ArcGIS Enterprise to ArcGIS Online? If you are performing the former, try the following tools: https://community.esri.com/t5/arcgis-enterprise-documents/copy-content-between-portals/ta-p/920460 The latter may prove more difficult, if you are looking to copy a web application, since ArcGIS Online is always at a later release than ArcGIS Enterprise. The configuration of certain widgets may have changed in ArcGIS Online.
... View more
08-10-2021
05:29 AM
|
0
|
0
|
6938
|
|
POST
|
@WalterSimonazzi_VicPolthe Spatiotemporal Data Store will require a minimum of 13 GBs of disk space from the installation alone. The data will then be replicated to each node. With a 112 million points, this may be correct depending on the number of attributes. How long of a time frame do you plan to keep the historical records for (i.e. 6 months, 1 year)? There is a data retention option for a Spatiotemporal Data Store you can set. JakeSkinner_0-1628594644839.png
... View more
08-10-2021
04:24 AM
|
2
|
0
|
1767
|
|
POST
|
@Paul_van_Helden 1. Open a web browser and log into Portal 2. Go to Organization > Settings > Servers tab This will perform a validation of your federated ArcGIS Server(s): JakeSkinner_0-1628593781754.png
... View more
08-10-2021
04:09 AM
|
1
|
4
|
5101
|
|
POST
|
@Anonymous User, Here is a script that will list which domains are no longer in use. This can be a good starting point to perform some of the other maintenance tasks you're looking to do. import arcpy, os, sys
# Variables
report = r"C:\Temp\Python\list_unused_domains.csv"
gdbConnection = r"C:\DBConnection\SQL SERVER - [email protected]"
# Create report of domains not in use
with open(report, "w") as f:
f.write("Domains not in use\n")
# create list of domains
domains = arcpy.da.ListDomains(gdbConnection)
lst_names = [domain.name for domain in domains]
# list featureclasses
arcpy.env.workspace = gdbConnection
lst_fds = arcpy.ListDatasets(feature_type="feature")
lst_fds.append("")
lst_doms = []
for fds in lst_fds:
lst_fc = arcpy.ListFeatureClasses(feature_dataset=fds)
for fc in lst_fc:
try:
flds = arcpy.ListFields(os.path.join(gdbConnection, fds, fc))
for fld in flds:
if fld.domain != "":
lst_doms.append(fld.domain)
except:
pass
# process tables
lst_tbl = arcpy.ListTables()
for tbl in lst_tbl:
try:
flds = arcpy.ListFields(tbl)
for fld in flds:
if fld.domain != "":
lst_doms.append(fld.domain)
except:
pass
# create list of domains not in use
lst_notinuse = list(set(lst_names) - set(lst_doms))
# write to file
for dom in lst_notinuse:
f.write(f"{dom}\n")
print("Finished")
... View more
08-09-2021
06:23 AM
|
0
|
1
|
2896
|
|
POST
|
Hi @VaibhavGr , You can also use ArcGIS Online Notebooks: https://doc.arcgis.com/en/arcgis-online/get-started/get-started-with-notebooks.htm
... View more
08-09-2021
05:52 AM
|
1
|
0
|
6047
|
|
POST
|
It looks like you only have user privileges from the screen shot. I see (user) in the AGS connection name. Can you verify you have publisher privileges?
... View more
08-04-2021
03:55 AM
|
0
|
0
|
1172
|
|
POST
|
Hi @Anonymous User , If you are using ArcGIS Pro, yes, you can publish to a stand-alone ArcGIS Server instance. See the following links for steps on how to do this: 1. Create a connection to ArcGIS Server: https://pro.arcgis.com/en/pro-app/latest/help/projects/connect-to-a-gis-server.htm 2. Steps to publish a map: https://pro.arcgis.com/en/pro-app/latest/help/sharing/overview/publish-a-map-service.htm
... View more
08-03-2021
05:53 AM
|
0
|
2
|
1206
|
|
POST
|
Hi @Anonymous User , 1. Go to the item details of the feature service 2. Scroll to the bottom and click View for the URL: JakeSkinner_1-1627994690607.png 3. Click on the layer you wish to delete features for: JakeSkinner_2-1627994742642.png 4. Scroll to the bottom and choose Delete Features for Supported Operations JakeSkinner_3-1627994770204.png 5. Specify 1=1 for the Where clause and click Delete Features JakeSkinner_5-1627994838453.png Another option would be to use the Delete Features tool in ArcGIS Pro. You can browse to feature services as if they were feature classes.
... View more
08-03-2021
05:48 AM
|
4
|
1
|
6703
|
|
DOC
|
@Michael_Wozniak you can accomplish this with the following steps: 1. Remove the toEmail under Variables 2. Add a dictionary of the Problem Categories followed by the e-mail(s) that should be notified. Ex: # E-mail Dictionary
emailDict = {'Animal Control': ['[email protected]'], 'Public Works': ['[email protected]', '[email protected]']} 3. Add a new toEmail variable (line 10 below) referencing the dictionary: # Query service and check if editDate time is within the last hour
if count < 1000:
params = {'f': 'pjson', 'where': "1=1", 'outFields' : '*', 'returnGeometry' : 'false', 'token' : token}
r = requests.post(URL, data=params, verify=False)
response = json.loads(r.content)
for feat in response['features']:
typeProb = feat['attributes']['probtype']
status = feat['attributes']['status']
assignedto = feat['attributes']['assignedto']
toEmail = emailDict[assignedto]
createDate = feat['attributes'][dateField]
createDate = int(str(createDate)[0:-3])
t = datetime.datetime.now() - timedelta(hours=hoursValue)
t = time.mktime(t.timetuple())
if createDate > t:
sendEmail()
... View more
08-01-2021
02:23 PM
|
0
|
0
|
15823
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 07-08-2026 12:27 PM | |
| 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 |
Tuesday
|