The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
20 views

Row / column vs linear indexing speed (spatial locality)

Related question: This one I am using a spatial grid which can potentially get big (10^6 nodes) or even bigger. I will regularly have to perform displacement operations (like a particle from a node ...
2
votes
1answer
112 views

Movement data analysis in R; Flights and temporal subsampling

I want to analyse angles in movement of animals. I have tracking data that has 10 recordings per second. The data per recording consists of the position (x,y) of the animal, the angle and distance ...
1
vote
1answer
140 views

Kripke structure

What is a (pseudocode) algorithm for checking invariant over Kripke structures, such that in case the invariant is violated, the counterexample returned by the algorithm is of minimal length?
2
votes
1answer
131 views

Time-based Dictionary/Hashtable with 128-bit keys, i.e. timeout a value out of the dictionary

I have a need to make a time-based dictionary hashtable that doesn't grow infinitely in size. By "time-based", I specifically mean that if I were to add a dictionary at time X, I would like the item ...
3
votes
2answers
181 views

Moving average in Temporal database in PostgreSQL

How can I apply the moving average in temporal database. My data includes temperature and I want to apply moving average for every 15 records.
0
votes
1answer
75 views

temporal rule engine for alarm management

I am looking for a rule based system (forward chaining) like CLIPS than can do temporal reasoning, i.e. phrases of the form: If condition active for more than 10s... If condition1 becomes active ...
1
vote
1answer
52 views

Create a model that switches between two different states using Temporal Logic?

Im trying to design a model that can manage different requests for different water sources. Platform : MAC OSX, using latest Python with TuLip module installed. For example, Definitions : Two water ...
1
vote
1answer
104 views

Sorting photos: temporal clustering plugin or software

In short: I want to cluster a directory filled with lots of photos to get groups of roughly three photos each. (Every cluster goes on one page of soon-to-exist photo book.) I've looked around and ...
6
votes
2answers
187 views

How can we produce kappa and delta in the following model using Matlab?

I have a following stochastic model describing evolution of a process (Y) in space and time. Ds and Dt are domain in space (2D with x and y axes) and time (1D with t axis). This model is usually known ...
2
votes
2answers
95 views

Temporal Expression recognition in Python

Does anybody know a Python module to easily extract temporal expressions such as 12/01/2011 and Monday, 12/3/1987 or others (in English format)? Would like to avoid to build a huge set of regex.
2
votes
1answer
124 views

Has anyone implemented an alternative to missing Drools Temporal Unit: Years and Months

Drools seems to support only days, hours, minutes, seconds and milliseconds for the units of time used with Temporal Operators. I am working on a rule that looks for people within a particular age ...
0
votes
0answers
78 views

One-to-Many Relationships in Slowly Changing Dimension (Temporal) tables

I'm using MS SQL 2008 and I'm trying to design my tables in the "Temporal" way to keep track of changes made to the data. Each table has EffectiveFrom and EffectiveTo datetime fields. I have two ...
2
votes
0answers
85 views

Temporal aggregation in PostGIS

I have a database of climatic data for farms in postgresql/postgis. it contains information about temperature, humidity and ... for farms and it is updated every hour. I need to perform some ...
1
vote
1answer
86 views

Best Practice for state retention between temporally disconnected Javascript events?

We have an ASP MVC application that leverages partial-page AJAX updates. When a user-driven action occurs on one panel of our screen, we need to ensure our jsTree (in a separate panel) updates. ...
0
votes
1answer
174 views

Taking the difference of temporal fields in JPQL

I have an entity Event which has fields startDate and endDate. I'd like to select only those events that have at most x days left to the their endDate. I want to do this in JPQL and with only one ...
1
vote
2answers
269 views

How to find references to dates in natural text?

What I want to do is to parse raw natural text and find all the phrases that describe dates. I've got a fairly big corpus with all the references to dates marked up: I met him ...
1
vote
1answer
119 views

retrieve TIMESTAMP

I have an Entity with a TIMESTAMP column. When I use an EntityManager to persist a new entry in my database, I can see the new row correctly set in my table but if I try to retrieve this Entity with a ...
1
vote
2answers
159 views

fsharp / dotnet and temporal database

I am looking for a way to integrate as directly as possible a temporal awareness into my classes. I deal with data that change with time quite a lot, like share prices, so this would probably need ...
4
votes
2answers
147 views

Is there a way to represent temporal data in RDFs?

I have bunch of temporal data which I want to convert to RDF format. Is there any accepted way of doing so? Example of tabulated data which should be somehow converted into RDF format: | Name | ...
0
votes
4answers
146 views

How to save all versions of posts in mysql database

It is popular to save all versions of posts when editing (like in stackexchange projects), as we can restore old versions. I wonder what is the best way to save all versions. Method 1: Store all ...
0
votes
0answers
182 views

Java Hbm2ddl, how to generate a “Timestamp” type in SQL Script

I just tried to generate Java class(JPA) to SQL schema by hbm2ddl, I tried following Annotations, but every time the column type is datetime in SQL. I thought java.util.Calendar to be generate as ...
2
votes
2answers
155 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: ...
1
vote
0answers
408 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 ...
1
vote
3answers
295 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 ...
0
votes
1answer
401 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 ...
2
votes
2answers
2k 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 ...
1
vote
1answer
443 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 ...
3
votes
3answers
3k 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 ...
0
votes
1answer
340 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 ...
4
votes
4answers
445 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 ...
2
votes
1answer
101 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
388 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
2k 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 ...
6
votes
1answer
1k 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 ...
1
vote
2answers
241 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 ...
2
votes
1answer
951 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 ...
9
votes
2answers
1k 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: ...
8
votes
3answers
544 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).
1
vote
1answer
93 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 ...
7
votes
4answers
260 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
4answers
7k 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 ...
1
vote
3answers
1k 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 ...
0
votes
1answer
650 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 ...
3
votes
2answers
2k 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 ...
3
votes
4answers
510 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 ...
1
vote
7answers
855 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 ...
4
votes
2answers
728 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 ...
4
votes
1answer
784 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 ...