|
POST
|
Thanks @AlixVezina for confirming this. Perhaps a possible feature request 🤔
... View more
02-10-2021
02:12 AM
|
1
|
0
|
1116
|
|
POST
|
Hi, I have several Date fields with Time in a Smart Editor Widget but there seems to be no way to control the format. Specifically I would like to have HH:MM (no seconds). I am happy with 24 hour format. So in the Web Map I have defined how I would like it to display but it only honours this in the Popup and the Attribute Table. Is there a way to not require seconds or at least be recorded in the background and not required as an input? Thanks in advance.
... View more
02-04-2021
07:47 AM
|
0
|
2
|
1154
|
|
POST
|
Thanks @XanderBakker Because I'm a total novice with Arcade I'm struggling understanding the code. The field name would be PROPBREAKDOWN so my first line of code looks like below, I'm assuming I shouldn't have this commented out i.e. // var test1 = $feature.PROPBREAKDOWN var test1 = I'm then not sure about line 2, should i just copy & paste green text. How does this work if other polygons in the dataset have different values against them i.e. if Amenity Accommodation had a value of 20 or 50 etc. Thanks
... View more
01-22-2021
03:23 AM
|
0
|
3
|
3086
|
|
POST
|
Hi, I have a dataset whereby several attributes have been entered into one single field and would like to put each on a new line so that the attribute window is much clearer. Each entry is separated by a semicolon ; Currently this looks like: Is it possible to separate into: Amenity Accommodation - 14 Flat - 65 Four in a Block - 60 House - 66 Sheltered Accommodation - 38 There are also other Housing types available in different polygons. I wondered if some sort of IF = statement would be required to create the expression? Thanks in advance p.s. if Arcade is a suitable solution i am a novice
... View more
01-21-2021
07:02 AM
|
0
|
5
|
3176
|
|
POST
|
Hi @AlixVezina A lot of really useful information there, this may end up being the best approach and so I'll need to set some time aside and do some testing. Thanks 👍
... View more
01-13-2021
08:18 AM
|
1
|
0
|
5215
|
|
POST
|
Thanks for the response @AlixVezina and clarifying. Hopefully this is functionality that can be incorporated into the Smart Editor widget in the future perhaps. I don't believe ArcGIS Field Maps would be the best overall solution even though it has the functionality I am enquiring about as the operative will be office based and needs to capture the incident onto a map, input attribute information and then maintain that information as the incident progresses through from being reported to finally being closed.
... View more
01-08-2021
01:57 AM
|
1
|
2
|
5244
|
|
POST
|
Hi, I would like to use the Smart Editor Widget to populate a numeric value into another field based on what is selected in the 'Issue' dropdown pictured below. The numeric value would then be inserted into the separate field 1, 2, 3 etc. I thought I could use the new cool functionality within the widget and create a Smart Action with an expression whereby. Flooding - No Property Risk would have a Reported Risk value of 2 Flooding - Property Risk would have a value of 1 The selection from the dropdown would auto fill Reported Risk. I have tried Attribute Actions > Preset also but you can't build an expression which is what I think I weed need to do in order to allocate the numeric value? Thankyou
... View more
01-07-2021
09:09 AM
|
2
|
5
|
5270
|
|
POST
|
Hi @AlixVezina , apologies for the late response as I was off over Christmas. Thankyou for the detailed response, I think this solution may work and I have been trying it out. Unfortunately I have ran into an issue at step 2 Configure a filter against each of these hosted layer views in the visualization tab to only display the features for "1, Null" or "2, Null". In the filter expression Null values are not listed and cannot seem to type manually without getting a yellow error warning. There are definitely entries with Null values in the second field (Response Risk). Would you be able to clarify the Filter expression please? Thanks 🙂
... View more
01-06-2021
09:07 AM
|
0
|
1
|
1719
|
|
POST
|
Hi, I would like to symbolise a hosted point feature layer based on data from 2 different fields using the Smart Editor Widget. A record is initially entered as a Reported Risk Priority of 1 or 2. This symbolises as Red or Amber on the web map. The record is then updated via a separate field and is assigned the Response Risk Priority of 1, 2 or Closed. The idea is that the colour coded symbols on the map displays Reported Risk as Red or Amber until Response Risk is assigned at which point it may change or remain the same colour. Using ArcGIS Pro I symbolised every variation I can think of and the Smart Editor Widget looks like below. However I only want to include 1, Null and 2, Null as the web mapping application is used at the point of adding the initial record and allocating the Reported Risk Priority. Other than having lots of separate layers I cannot think of another way to do this. I hope I have managed to explain my problem? Thanks
... View more
12-22-2020
09:20 AM
|
0
|
3
|
1770
|
|
POST
|
The data sits in a Hosted Feature Layer and is maintained via a Web Mapping Application created using ArcGIS Web App Builder (currently no Edit Widget available in Web Experience Builder). As this is my first attempt at a dashboard I'm on a learning curve at the moment. I was hoping this would maybe be a simple bit of code however this possibly looks more complex 😞
... View more
11-17-2020
07:49 AM
|
0
|
0
|
1743
|
|
POST
|
Hi, is it possible to show the average response time on an ArcGIS Dashboard? I have created a Hosted Feature Layer and there are two date type fields called Rep_Time (this is the Reported Date & Time) and Res_Time (this is the Response Date & Time). What I would like to have is an Indicator Element displaying this in hours and minutes. I found this post helpful https://www.esri.com/arcgis-blog/products/ops-dashboard/real-time/displaying-time-spans-with-arcade-in-dashboards/ but too complicated for me I am afraid. My Arcade expression looks like this (which even if it did work would probably only display seconds?) var dateopened = $datapoint["Rep_Time"]; var datecleared = $datapoint["Res_Time"]; var secondsToRespond = $DateDiff(dateCleared, dateOpened, 'seconds'); Thanks.
... View more
11-17-2020
03:44 AM
|
0
|
2
|
1772
|
|
POST
|
Unfortunately I was unable to get this code to work despite substituting the field name however I found a way that seems to work. var busstops = Filter(FeatureSetByName($map,"Bus Facilities"),"STOP_SHELT = 'Bus Stop'") var countBusStops = Count(Intersects(busstops,$feature)) return countBusStops
... View more
10-19-2020
02:13 AM
|
0
|
2
|
9399
|
|
POST
|
Thanks Xander Bakker, that's helpful. I think I understand a bit more clearly now. With reference to your last comment I actually have a field in the Bus Facilities Layer called which lists the type. There are 3 types of entries: Bus Stop, Bus Shelter and Unknown. So in theory I could generate a Count for each of these?
... View more
10-15-2020
06:58 AM
|
0
|
4
|
9399
|
|
POST
|
I managed to get this expression to work but don't understand how the 'bus' and 'Bus' text works?!
... View more
10-15-2020
05:00 AM
|
1
|
6
|
9399
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 06-10-2025 08:06 AM | |
| 1 | 10-15-2020 05:00 AM | |
| 6 | 04-26-2024 01:29 AM | |
| 1 | 05-09-2022 08:42 AM | |
| 1 | 01-05-2023 09:13 AM |
| Online Status |
Offline
|
| Date Last Visited |
Wednesday
|