|
POST
|
@Justin_Greco Thanks for reporting this and apologies that you are encountering this issue. Please take the following actions for us to resolve this:
Log an Esri Support Services case with the aforementioned information
Send me an email (pnasuti@esri.com) or Esri Community private message with your organization name and details
... View more
12-11-2024
05:33 AM
|
0
|
0
|
580
|
|
IDEA
|
Hi @ArmstKP addressing this is part of related architecture changes for ArcGIS Velocity - thank you for submitting this. Instead of automatically planning to stop and restart we plan to address at a deeper level to prevent the issue from occurring.
... View more
10-17-2024
05:15 AM
|
0
|
0
|
845
|
|
IDEA
|
Thanks @AndrewRudin1 for logging this. This enhancement is currently under consideration on the Velocity side whether we want to add this capability to sources within a real-time analytic.
In the meantime, please configure the secondary/join dataset as a Feature layer feed and you can set an hourly refresh (or greater) to update the data periodically.
... View more
09-23-2024
05:15 AM
|
0
|
0
|
582
|
|
POST
|
@MuneerMajid Can you log an Esri Support case for assistance with this? If you have identified a Track ID and Start Time fields in your schema the Track functions should be returning prior values if configured correctly. Remember that the first observation for a track will return null values as there are no prior values when an analytic starts processing. This will require a screenshare to review your settings and configuration to assist.
... View more
08-27-2024
04:55 AM
|
0
|
3
|
1426
|
|
POST
|
@MuneerMajid Can you please log an Esri support case with the questions you are still facing with this tool? We will also get a Velocity product engineer to further assist as needed. @JeffEismanGIS
... View more
08-20-2024
06:07 AM
|
1
|
1
|
1374
|
|
POST
|
To follow up on this thread for future community reference: From the Velocity perspective, we will enhance the Calculate Motion Statistics presentation of the tool parameters and user experience to make the settings more clear to the user (targeting 5.3 release late 2024) The History Depth parameter is of key importance for calculations This parameter is "the number of event observations to evaluate per track (includes the current observation). Motion calculations will be done based on this information." For example if you set a history depth parameter of 3, the min/max/sum/total/average/TotalIdleTime/PercentIdleTime calculations will be based on the current feature and the two prior features Relevant to @JeffSilberberg 's workflow, there was a goal to obtain the "Total Idle Time" since the beginning of idling, rather than just the total idle time relevant to the History Depth parameter To achieve this, a Detect Incidents tool was configured following the Calculate Motion Statistics tool An attribute open condition of "$feature.Idling == True" was utilized to detect and open an incident when idling had started The "IncidentDuration" value generated by the Detect Incidents tool generated a stateful and accurate calculation of how long an entity had been idling We will examine updating the Calculate Motion Statistics tool to adjust the Total and Percentage idle time values to be fully stateful beyond just the history depth
... View more
08-05-2024
03:48 AM
|
0
|
0
|
1473
|
|
POST
|
@JeffSilberberg The documentation for all Velocity tools matches the implementation - please feel free to reach out to me directly over email (pnasuti@esri.com) and we will get a member of the product team assigned to investigate your reported issues with the Calculate Motion Statistics tool directly.
... View more
08-01-2024
06:13 AM
|
0
|
1
|
1522
|
|
POST
|
@JeffSilberberg Ideally the Calculate Motion Statistics tool would be the right choice at this point to achieve what I am understanding you are asking. Assuming you have location updates coming in (people, vehicles, object in motion) and want to know when that entity is idle and not moving: Configure the Calculate Motion Statistics tool Of key importance are the distance tolerance and timespan tolerance "The units of the output motion statistics depend on the units specified for the Distance Tolerance and Timespan Tolerance parameters. For example, if you're specifying a Distance Tolerance value of 750 meters and a Timespan Tolerance value of 10 minutes, the output distance fields will be in meters, the output time span fields will be in minutes, and the output speed fields will contain values with units of meters per minute." For another example, if you specify "1 mile" and "1 hour", if the feature movement drops below 1 mile per hour, that would be identified as a dwell by this tool and output units calculated by the tool would be in miles & hours. This tool will generate the following attributes then related to idling: Idling Specifies whether the track is idle based on a distance and time threshold from the previous observation Boolean TotalIdleTime Cumulative amount of time for which idling was detected Float64 PercentageIdleTime Percentage of time for which idling was detected Float64
... View more
08-01-2024
04:12 AM
|
0
|
0
|
1529
|
|
POST
|
I would configure a Filter by Expression tool ($feature.IncidentStatus == 'Ended') followed by a Calculate Fields tool. In the Calculate Fields tool expression, you can use a TrackFieldWindow function to obtain the prior IncidentDuration value as well as the joined field value. var lastInsideDuration = TrackFieldWindow('IncidentDuration', -1,0)
var lastIntersectFeatureName = TrackFieldWindow('YourGeofenceIdentifierField', -1,0) Use Track Functions documentation for additional reference. Let me know if there are questions on this.
... View more
07-31-2024
11:58 AM
|
1
|
6
|
1524
|
|
POST
|
@ArmstKP I can envision two ways to achieve this: First, as @JeffSilberberg suggested you can use the Detect Incidents tool and set an attribute expression that identifies the incident criteria. Then, add a Filter by Expression tool following to only let pass incidents where $feature.IncidentStatus == "Started" || $feature.IncidentStatus == "Ended" (if desired) Another option is to use the Calculate Fields tool followed by a Filter by Expression. Your Calculate Fields tool can calculate a numeric or boolean value to indicate if the prior value was in the defined range. This would leverage the TrackFieldWindow track function. Then the Filter by Expression tool could follow to filter out unwanted values. Additional doc on track functions.
... View more
07-31-2024
11:51 AM
|
1
|
0
|
2917
|
|
POST
|
@MuneerMajid Thanks for posting your use case and this scenario. What you are requesting regarding a point leaving one spatial feature and entering another without an observation triggering the closure of the old incident and the creation of a new incident is something we have heard requested from other users as well. There is a planned tool parameter to be added in a future release for the Detect Incidents tool that will do exactly this. Basically it would take an observation and split it into two observations. One that "closes" the first incident detected, and another that "opens" the next incident with the new geometry. This does not yet have an anticipated release date. While there is not a workaround for this at the moment with the Detect Incidents tool to do exactly what you are asking, a combination of the Join Features tool and the Calculate Field tool using track functions (TrackFieldWindow) and Filter by Expression could be used to filter an alerting pipeline whenever a worker changes from not-in-a-work-area to in-a-work-area OR from in-a-work-area to not-in-a-work-area OR from in-one-work-area to in-another-work-area. Basically I would envision this flow as: Use the Join Features tool to enrich point worker/vehicle observations with an attribute from your well pad polygons Keep all features in the join so the value is null if the worker/vehicle is not inside a well pad Lets say this field is called "InsideWellPadName" Add a Calculate Fields tool and use the TrackFieldWindow function to obtain the prior value for "InsideWellPadName" for the feature in that Track that came before the current feature var priorWellPadName = TrackFieldWindow('InsideWellPadName', -1,0) Compare the prior value to the current value and then take your desired action using Arcade conditionals For example, if prior value is null and current value is populated, the worker/vehicle entered a well pad If prior value is populated and current value is null, the worker/vehicle exited a well pad If prior value is one well pad and current value is another well pad, the worker/vehicle moved from one well pad to another Use the Filter by Expression tool (or multiple instances of it) to split analytic pipelines for desired handling
... View more
07-09-2024
05:42 AM
|
0
|
0
|
1383
|
|
POST
|
@ArmstKP If the layer in question is an ArcGIS Online hosted feature layer (this is what is created when unchecking "Store data in spatiotemporal feature layer"), the query performance in dashboards would be better suited to be reviewed with the ArcGIS Online team and an Esri Support Services case. In that configuration, ArcGIS Velocity is simply writing the data out to an ArcGIS Online hosted feature layer. You are correct that currently ArcGIS Velocity spatiotemporal layers cannot add fields. This is an enhancement we are considering for the future of the product to enable this capability.
... View more
07-08-2024
05:36 AM
|
1
|
0
|
662
|
|
POST
|
@Teresa_Blader I agree with @JeffSilberberg's suggestion above. Using the Map Fields tool for a field calculation depending on string length (or just using the text slicing to grab the correct elements) would be a better solution and can assign the "Start Time" tag. This could be a combination of the IIf function, Date function, etc. to parse the date correctly The Velocity feeds and sources "date format" is expecting a single consistent date format. The behavior you are seeing is as designed where if the string can't be parsed to the date format the value is nulled.
... View more
07-01-2024
05:30 AM
|
0
|
2
|
944
|
|
POST
|
@MuneerMajid We were just reviewing this internally on the Velocity team. This was a software defect specific to feeds with spaces in the title. When these feeds are edited, there is a URL issue introduced (the spaces are originally replaced with underscores, however the issue is that this is changed when it should not be. This bug will be resolved with the 5.2 release that will go live tomorrow evening 6/25/24. Unfortunately in the case of existing feeds, the feed will need to be recreated to revert to having a correct URL. The support analyst on your case will be reaching out with additional details.
... View more
06-25-2024
01:02 PM
|
0
|
0
|
670
|
|
POST
|
@MuneerMajid Please make sure to log an Esri Support case for this issue for tracking from our side. Is this issue appearing with just one feed/stream service or multiple?
... View more
06-20-2024
05:22 AM
|
0
|
2
|
717
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 06-04-2025 05:55 AM | |
| 2 | 04-25-2025 11:39 AM | |
| 1 | 04-08-2025 05:23 AM | |
| 1 | 01-28-2025 06:21 AM | |
| 1 | 01-24-2025 02:34 PM |
| Online Status |
Offline
|
| Date Last Visited |
2 weeks ago
|