Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
505 views

Temporal libraries for Java

I'm looking for temporal libraries for Java, i.e. libraries which allow to store multiple historical version of the same concept. I'm looking for a library which has an API to do something like: ...
6
votes
3answers
153 views

Temporal Expression library in .NET

Does anyone know of a library to handle events and recurring events likes the temporal expression libraries that exist for ruby like Runt (http://runt.rubyforge.org/) or TExp ...
5
votes
2answers
283 views

Are there any design patterns for bitemporal NoSQL databases?

I'm curious if anyone has implemented or even knows of any bitemporal databases built on NoSQL platforms (e.g., riak).
5
votes
3answers
2k views

See if the current time falls within a specific range of time in the current day in Java

I am sure this was done 1000 times in 1000 different places. The question is I want to know if there is a better/standard/faster way to check if current "time" is between two time values given in ...
3
votes
3answers
160 views

Suitability of Amazon SimpleDB for large temporal data sets eminating from thousands of separate devices

I'm trying to establish whether Amazon SimpleDB is suitable for a subset of data I have. I have thousands of deployed autonomous sensor devices recording data. Each sensor device essentially reports ...
3
votes
1answer
464 views

Does Drools Fusion have a concept of “now”?

I'm trying to write a rule that delays firing until, at least, 15 minutes have passed since the last firing. However, the temporal operators in Drools Fusion only allow reasoning about two events in ...
3
votes
4answers
357 views

Temporal data using NHibernate

Can anyone supply some tips/pointers/links on how to implement a temporal state-table with NHibernate? I.e., each entity table has *start_date* and *end_date* columns that describe the time interval ...
3
votes
1answer
600 views

How would you make a Temporal Many-to-Many Relationship in SQL?

How would you represent a temporal many-to-many relation in SQL? Under non-temporal circumstances one would use a junction table (aka link/bridge/map) to connect the two sides. Is adding temporal ...
2
votes
2answers
101 views

What is the name of concept: temporal numeric dataset with summing/aggregation operations?

I have a, say, daily income data set of numeric Temporal Properties, like: Date Income 2012-01-03 12 2012-01-05 11 2012-01-06 28 2012-01-07 9 2012-01-08 15 I'm doing several operations on it: ...
2
votes
2answers
170 views

Confused between Temporal and Spatial locality in real life code

I was reading this question, I wanted to ask more about the code that he showed i.e for(i = 0; i < 20; i++) for(j = 0; j < 10; j++) a[i] = a[i]*j; The questions are, I ...
2
votes
3answers
283 views

Spatial vs. Temporal locality

I understand the definitions of the terms, but I am having trouble applying their concepts to code. For an exercise, we are asked to describe if the following code is spatial or temporal: for (int ...
2
votes
1answer
50 views

Movement Paths & Spatial-Temporal Queries in SQL Server

Hey, so I'm trying to figure out the best way of storing movement paths and then afterwards how they might be queried. Let me try to explain a bit more. Say I have many cars moving around on a map ...
2
votes
6answers
148 views

The best way to store the following temporal data in DB

Imagine we have a set of entities each of which has its state: free, busy or broken. The state is specified for a day, for example, today on 2011-05-17 an entity E1 is free and tomorrow on 2011-05-18 ...
2
votes
2answers
503 views

How can I plot subsets of temporal data?

I'm entirely new to R, to programming, and to data analysis, and I apologize if I am asking my question in the wrong place. Thanks for any help or ideas you can offer, or any direction or advice if I ...
2
votes
2answers
798 views

Implementing rental store in Rails: how to track an inventory state over time?

Let's say you're implementing rails app for a snowboard rental store. A given snowboard can be in one of 3 states: away for maintenance available at store X on loan to customer Y The company ...
1
vote
3answers
119 views

high-dimensional Spatial-temporal clustering

My question is, how I can make a cluster analysis from spatial - temporal and high dimensional data? my purpose is to find subspace clusters that can show patterns in the space and in the time. over ...
1
vote
1answer
80 views

Temporal locality with regard to data access and temporal locality with regard to data fetch

I am stuck with a question which is stated below, Describe the general characteristics and behavior of a program that would exhibit: (a) Low temporal locality with regard to data accesses (b) Low ...
1
vote
2answers
162 views

comparing AC and BC dates

I have a prolog implementation which allows me to compare time points in events using a prolog-based representation of the 13 Allen's relationships. Each event has a start point (YYYY-MM-DD) and an ...
1
vote
1answer
479 views

Analyse code for spatial and temporal locality

Hi have some question regarding spatial and temporal locality. I have read in the course theory that spatial locality If one item is referenced, the likelihood of other address close by will be ...
1
vote
1answer
66 views

comparing temporal sequences

I'm trying to wrap my head around this task and wondering if there is a standard way of doing this or some libraries that would be useful. Certain events are tracked and timed at several data sources ...
1
vote
3answers
690 views

Rules engine for spatial and temporal reasoning?

I have an application that receives a number of datums that characterize 3 dimensional spatial and temporal processes. It then filters these datums and creates actions which are then sent to ...
1
vote
7answers
632 views

Difficult Temporal Cross-Table Database Constraint

I have a particularly difficult business constraint that I would like to enforce at the database level. The data is financial in nature, and so must be protected from inconsistencies to the nth degree ...
1
vote
2answers
397 views

Temporal Extraction (i.e. Extract date/time entities from free form text) - How?

Has anyone found a simple, but effective way to extract date references from text? I've done a fair amount of searching for temporal extraction tools, but there isn't a lot out there. There are a ...
0
votes
0answers
32 views

Need Temporal Median Filter Using OpenCV

Does anyone know if there is some open source/public domain code, using OpenCV, that does temporal median filtering of an image sequence. I would like an output image that is a pixel-to-pixel median ...
0
votes
1answer
60 views

Is this both temporal or spatial locality?

I wanted to ask about spatial and temporal locality . If I am in a loop with a looping variable say i and I am traversing an array named arr[i], then when I access arr[i] then according to me it ...
0
votes
1answer
115 views

Java TIMESTAMP has trailing zeros, how do I remove?

I'm using Java with hibernate and am in the early stages of learning how everything works. I'm getting there slowly but I have had some trouble with dates in Java. My current problem is that when I ...
0
votes
1answer
495 views

MySQL query to evaluate aggregate duration of time something is “on”

I have a series of timestamped on/off data in a table, representing on/off states, or the point at which a state "starts" 00:00:00 0 04:00:00 1 08:00:00 0 09:00:00 1 15:00:00 0 ...