Hi all,
I was wondering, in what order the recorded data is actually stored. For a sensor that is built up from a list of cartesian coordinates, this is pretty clear (the data is stored in the same order as the sensor locations are defined), but for a sensor that is defined as a binary mask there is multiple options for the order of the sensor data.
For example, if the plane x = a serves as a sensor, will the sensor data be stored in order of increasing y and then increasing z (i.e. grid(a,1,1), grid(a,2,1), grid(a,3,1), ..., grid(a,1,2), grid(a,2,2), ...) or vice versa (i.e. grid(a,1,1), grid(a,1,2), ..., grid(a,2,1), grid(a,2,2), ...), or maybe a totally different order?