I am interested in storing scientific data from a chart (plot) of say x against y in a data warehouse, where both x and y are real numbers.
Each chart will be generated for a fixed set of descriptive dimensions (e.g. time, date, location, equipment) which can be modelled in a traditional star/snowflake schema.
An example would be say angle vs response of a detector, where angle is the independent variable and response is the dependant. Angle here could be any real number between 0 and 360 degrees.
My current thought is to use the real value as a dimension, potentially prepopulating an angle_dimension table with values from 0 to 360 at a suitable scale (e.g. 3dp) and round the measured results where necessary, although this results in a loss of precision.
I am wondering if there are any more effective ways to store this data for later use in an OLAP cube? The type of query I'd be looking to do is to compare chart data at different time points to look for changes or to look at the average response in a given range (say 0-15 degrees) at different locations or for different equipment.