POST
|
Thanks for the reply! I followed your workflow and it does create an average line; however, I was wanting to show this line on top of my other data. You mention adding multiple series, but I don't see that option. Maybe I didn't format the chart correctly to see that ability.
... View more
04-18-2025
07:07 AM
|
0
|
0
|
352
|
POST
|
Is there a way to create a trend or average line in a serial chart? I know you can create a guide line, but that's not quite what I'm looking for. I know in ArcGIS Insights you can create a line to show the average of the chart, but since Insights is being retired I'm trying to avoid creating new items with it. Below is an screenshot of the Insights chart with the average line. Thanks for any help!
... View more
03-27-2025
01:14 PM
|
0
|
2
|
466
|
POST
|
I created an ESRI Support case and they determined that my issue is a bug. Below is the bug number. BUG-000173408: Choice filters based on responses from a select-multiple question with an image-map appearance do not work as expected in the ArcGIS Survey123 Field App
... View more
01-28-2025
08:11 AM
|
0
|
0
|
733
|
POST
|
Thanks for the reply and finding a potential workaround. However, the workaround isn't working for me. I've copied what you've done in the screenshots, but I'm still getting the same behavior as before. I'm using Survey123 Connect version 3.21.62 so could it possibly be a version issue?
... View more
12-13-2024
12:02 PM
|
0
|
1
|
870
|
POST
|
Thanks for the response. I've attached the SVG that's being used.
... View more
12-12-2024
01:30 PM
|
0
|
3
|
879
|
POST
|
I'm trying to create a survey where the users select different choices from an image map and I use the selections as a filter in the choice filter column. The image map is a select multiple question so I know I have to use selected() in the choice filter. During my testing, I noticed that when I select the first choice the filter works properly, but any other choice doesn't display until I unselect an additional choice. I'm not sure if this is a bug or if this functionality works with an image map. I've attached my form from the image map sample.
... View more
12-12-2024
07:47 AM
|
0
|
6
|
900
|
POST
|
I'm seeing the same thing. I checked some of flows that don't use any triggers from the ArcGIS connector and they worked as expected.
... View more
10-09-2024
06:36 AM
|
0
|
0
|
559
|
POST
|
Scott, Thanks for the reply. I checked the status of my webhooks and they're still active, but they aren't being triggered today. Do you know of any troubleshooting that I can do to help identify the issue?
... View more
10-08-2024
11:45 AM
|
0
|
1
|
1144
|
POST
|
I just noticed that none of my flows have been triggering today. I have the status response 200 workaround in my flow and they were working fine until today. What troubleshooting steps can I take to make sure that this isn't another bug in the connector?
... View more
10-08-2024
11:00 AM
|
0
|
5
|
1157
|
POST
|
That's the same behavior that I'm experiencing. I periodically check the settings and reactivate the webhook if needed. I know it's a terrible workaround, but until the issue is resolved it's the best solution I've found.
... View more
08-09-2024
07:44 AM
|
1
|
0
|
2193
|
POST
|
On the feature layer, scroll down to the URL section and click View. On the next screen click Admin at the top right which should then show a WebHooks link. Click the WebHooks link and you'll see all the web hooks associated with the layer. There are some supported operations (screenshot below) so click Activate All then click the Activate All button.
... View more
08-08-2024
12:43 PM
|
0
|
1
|
1539
|
POST
|
I'm having the same issue as everybody else. I noticed the Active setting was set to false so I reactivated it, but unfortunately it some how sets itself to false after a handful of flows. I've submitted a ticket with ESRI, but the support analyst is saying she can't reproduce this issue.
... View more
08-08-2024
11:09 AM
|
0
|
3
|
1545
|
POST
|
I recently upgraded my ArcGIS Pro from version 2.9 to 3.1 and with this upgrade the ArcGIS API for Python version upgraded from 1.9.1 to 2.1.0.2. I have a script that reads an Excel file into a Pandas dataframe to update existing data in a hosted feature layer. I do some calculations within the dataframe then use edit_features(updates=) to update the hosted feature layer. This used to work, but since I've upgraded I'm getting an error message saying "The specified feature could not be updated or does not exist". I'm the owner of the hosted feature layer so I have full editing capabilities on it. Any help is appreciated! Here's my code: import pandas as pd
from arcgis.gis import GIS
gis = GIS("home")
# Hosted feature layer
dest = gis.content.get("itemID")
dlayer = dest.layers[0]
# Query the layer for open records and return needed fields
containerProblemLayer = dlayer.query(
where="StateCode = '0'",
out_fields=["CaseNumber","ResolutionNotes"]
).sdf
# Read Excel file
cpDynamics = pd.read_excel("path to excel")
# Format the case numbers so a join can occur
try:
cpDynamics["Case Number (Parent Case) (Case)"] = cpDynamics.loc[cpDynamics["Case Number (Parent Case) (Case)"].str.contains("-"), ["Case Number (Parent Case) (Case)"]] = cpDynamics["Case Number (Parent Case) (Case)"].str[-10:]
cpDynamics["Case Number (Parent Case) (Case)"] = cpDynamics["Case Number (Parent Case) (Case)"].astype("int64")
except:
cpDynamics["Case Number (Parent Case) (Case)"] = cpDynamics["Case Number (Parent Case) (Case)"].astype("int64")
try:
containerProblemLayer["CaseNumber"] = containerProblemLayer.loc[containerProblemLayer["CaseNumber"].str.contains("-"), ["CaseNumber"]] = containerProblemLayer["CaseNumber"].str[-10:]
containerProblemLayer["CaseNumber"] = containerProblemLayer.astype("int64")
except:
containerProblemLayer["CaseNumber"]=containerProblemLayer["CaseNumber"].astype("int64")
# Create a join
inner = containerProblemLayer.merge(cpDynamics, how="inner", left_on="CaseNumber", right_on="Case Number (Parent Case) (Case)")
# Calculate ResolutionNotes field
inner["ResolutionNotes"] = inner["Container Damage:"]+" "+inner["Additional Information (Parent Case) (Case)"]
finalTable = inner.drop(["(Do Not Modify) Container Problem","(Do Not Modify) Row Checksum","(Do Not Modify) Modified On","Case Number (Parent Case) (Case)","Created On","Container Damage:","Additional Information (Parent Case) (Case)","Status (Parent Case) (Case)"],axis=1)
# Create a feature set to use for the update
features_set = finalTable.spatial.to_featureset()
# Update the hosted layer
dlayer.edit_features(updates=features_set) Here's the error message:
... View more
04-19-2024
08:30 AM
|
0
|
2
|
1013
|
POST
|
Thanks for the reply. Below is my code for the table. The display expression is a simple if percent overdue is greater than 0 then display the text. Attribute1 is percent overdue and attribute2 is percent not overdue. <figure class="table" style="width:100%;">
<table>
<tbody>
<tr>
<td style="background-color:#ff9999;color:#030202;display:{expression/noDisplay};width:{expression/attribute1}%;">
{expression/attribute1}% Overdue
</td>
<td style="display:{expression/noDisplay};width:{expression/attribute2};">
</td>
<td style="display:{expression/display};width:{expression/attribute2};">
{expression/attribute1}% Overdue
</td>
</tr>
</tbody>
</table>
</figure>
... View more
03-15-2024
06:24 AM
|
0
|
0
|
667
|
Title | Kudos | Posted |
---|---|---|
1 | 08-09-2024 07:44 AM | |
1 | 03-29-2023 01:20 PM | |
2 | 11-07-2022 07:38 AM | |
1 | 01-21-2021 01:32 PM | |
1 | 08-25-2022 07:56 AM |
Online Status |
Offline
|
Date Last Visited |
04-18-2025
07:01 AM
|