This tool works with a input layer to calculate values for a new or existing field. Build an Arcade expression to calculate the values to populate features with. If your data is time-enabled and of time type instant, you can optionally build expressions that are track aware.
For example, suppose you want to modify an existing field named TotalSales. You want the field to be represented by the sum of the total sales in 2016 and 2017. Using those fields in the expression, you calculate the field value as
$feature["Sales2016"] + $feature["Sales2017"].
Using another example, suppose you have GPS measurements that record the location, time, bus ID, and speed of the busses in a city. We want to create a new field called SpeedFrom3 that averages the speed of the last 3 recorded GPS measurements for each feature. For this calculation we would use a track aware calculation, where the track is a bus denoted by the bus ID. The calculation to determine the average speed of the previous 3 time steps and the current time step is
average($track.field["speed"].history(-4)).
The points, lines, areas, or table that will have field values calculated.
Можна не тільки обирати шар на карті, а й обрати Вибрати шар аналізу внизу розкривного списку для огляду ваших ресурсів, які містяться у наборі даних спільного файлового сховища великих даних або у векторному шарі. Ви можете додатково застосувати фільтр на вашому вхідному шарі або застосувати вибір на розміщених на хості шарах, доданих до вашої карти. Фільтри та вибори застосовуються тільки для аналізу.
The new or existing field that will have values calculated and the data type of that field. If you are calculating values on a field that already exists, you do not need to match the data type.
Add an expression using the expression builder to calculate field values.
For example, suppose we want to add the values of a field named income and bonus. To do this, add the expression $feature["income"] + $feature["bonus"]
.
Specify if your expression is track aware. A track aware expression will include formatting like
$track.field["fieldname"].history(...). Track aware expressions require fields to identify individual tracks. Tracks can be composed of points, lines, areas or tables and only require that the input has a track identifier and the data is time-enabled of time type instant.
Specify if you want to calculate values for your tracks using time intervals which will segment your inputs for analysis. If you use time intervals you must set the time interval you want to use, and optionally set the reference time. If you don't set a reference time, Jan 1, 1970 will be used.
For example, if you set the time boundary to be 1 day, starting at 9:00 AM on January 1st, 1990, than each track will be truncated at 9:00 am for every day and analyzed within that segment.
Using time intervals is a fast way to accelerate computing time, as it quickly creates smaller tracks for analysis. If splitting by a reoccurring time interval makes sense for your analysis, it is recommend for big data processing.
Назва шару, який буде створено. Якщо ви записуєте результати у ArcGIS Data Store, вони будуть зберігатися у Мої ресурси і додаватися до карти. Якщо ви записуєте результати у спільне файлове сховище великих даних, вони будуть зберігатися у спільному файловому сховищі великих даних і додаватися до його маніфесту. Він не буде додаватися до карти. Назва за замовчуванням базується на назві інструменту та назві вхідного шару. Якщо шар уже існує, інструмент не буде працювати.
При записі до ArcGIS Data Store (реляційного або просторово-часового сховища великих даних) з використанням розкривного меню Зберегти результати в, можна указати ім’я папки у Мої ресурси, в яку будуть збережені результати.