Skip to main content

Hi,

I’m finding that the date shown for data updates on ArcGIS Online Hub is misleading and not showing the date that we are actually updating the data, has anyone used the Metadata Updater to update any of the dates in metadata?  I don’t see it listed in the dropdowns for the updater. Or should I be using the XMLUpdater?

Thanks,

Lorinda

AGOL dates are in the format = seconds since Epoch…. the number of seconds that have passed since 0:00:00 January 1st, 1970.

For example, the date 11/11/2022 is stored as 1668124800 in Epoch value

Divide the @Evaluate(@Value(AGOL_Date_field)/1000) using AttributeManager and arthimetric editor for the attribute/value; before converting it with the DateTimeConverter transformers


Esri uses milliseconds for epoch. FME uses seconds, hence why ​@j.botterill suggests dividing by 1000 (to convert ms to s)


Reply