how can I built a temporal relation between two feature layers.
My first layer has a observation time period and my second feature has the actual observation. I would like to build the relation directly in ArcGIS using the python console.
What I need is a function which:
First feature layer
ID DATE START END1 2015-03-29 13:20:00 14:50:002 2015-04-05 08:35:00 12:05:00Second feature layer
ID DATE TIME1 2015-03-29 13:23:05 2 2015-03-29 13:28:073 2015-03-29 13:34:014 2015-03-29 13:49:435 2015-04-05 08:39:22 6 2015-04-05 10:04:00 7 2015-04-05 11:35:11 I guess, beside the loop function, I need to build a timestamp for each date.
أكثر...
My first layer has a observation time period and my second feature has the actual observation. I would like to build the relation directly in ArcGIS using the python console.
What I need is a function which:
- iterates through the second feature and
- checks if the time condition with the first feature attributes are fulfilled and
- returns the corresponding id.
First feature layer
ID DATE START END1 2015-03-29 13:20:00 14:50:002 2015-04-05 08:35:00 12:05:00Second feature layer
ID DATE TIME1 2015-03-29 13:23:05 2 2015-03-29 13:28:073 2015-03-29 13:34:014 2015-03-29 13:49:435 2015-04-05 08:39:22 6 2015-04-05 10:04:00 7 2015-04-05 11:35:11 I guess, beside the loop function, I need to build a timestamp for each date.
أكثر...