Channel Impulse Responses

Introduction and Scope

Environments with complex radio-frequency (RF) propagation conditions such as indoor, urban or industrial environments have been a focus of the RF po- sitioning community for a long time. Especially in industrial environments, the abundance of metal objects causing absorption, reflection, diffraction and scat- tering of the signals leads to highly complex signal propagation that is hard to model analytically. Therefore, classical RF positioning methods relying on an- gualation or lateration are hardly applicable. While received signal strength (RSS) based positioning exploiting the spatial significance of the propaga- tion conditions has been used in these environments for many years, recently the use of Channel Impulse Responses (CIRs), containing information on the whole signal propation path, including Multipath Components have been pro- posed. While the specialized hardware and firmware components used to ob- tain these signals are not yet available in mass user products like smartphones, the introduction of Ultra-Wideband (UWB) technology into newer generations of devices means that CIR-based positioning is a promising possibility even for applications that require low-cost positioning.

Since CIRs contain a variety of spatial and environment-related information, they have been used for positioning in three different ways:

Environments with complex radio-frequency (RF) propagation conditions such as indoor, urban or industrial environments have been a focus of the RF po- sitioning community for a long time. Especially in industrial environments, the abundance of metal objects causing absorption, reflection, diffraction and scat- tering of the signals leads to highly complex signal propagation that is hard to model analytically. Therefore, classical RF positioning methods relying on an- gualation or lateration are hardly applicable. While received signal strength (RSS) based positioning exploiting the spatial significance of the propaga- tion conditions has been used in these environments for many years, recently the use of Channel Impulse Responses (CIRs), containing information on the whole signal propation path, including Multipath Components have been pro- posed. While the specialized hardware and firmware components used to ob- tain these signals are not yet available in mass user products like smartphones, the introduction of Ultra-Wideband (UWB) technology into newer generations of devices means that CIR-based positioning is a promising possibility even for applications that require low-cost positioning.

Since CIRs contain a variety of spatial and environment-related information, they have been used for positioning in three different ways:

  • Model Error Mitigation: The CIRs are used to classify propagation con- ditions like a missing line-of-sight (LOS) link or to estimate model errors caused by multipath components. The goal is to use CIRs to enhance classicial positioning methods.
  • Fingerprinting: The CIRs are assumed to be spatially significant and the relation of the signal propagation to the environment is exploited for posi- tioning by implicit modeling using a set of recorded training data.
  • Multipath-SLAM: The CIRs are used to jointly estimate virtual anchors (i.e. characteristic reflection points) or other significant features and the user positions.

Since, in recent years, many research groups have been working on CIR- based positioning in adverse environments, a dataset to compare different ap- proaches under a common evaluation framework is highly beneficial to the community. Hence, we introduce a robotic scenario dataset using the popular Decawave 1000 UWB chip. For this we reconstructed an industrial environment in a testing hall equipped with state-of-the-art positioning reference systems.

Environment and Setup

The environment resembles an industrial setting: it includes metal shelves, industrial vehicles and other objects that influence the radio signal propagation in the environment. The measurement setup is depicted in Figure 1: the stationary anchor nodes (highlighted with red boxes) are placed around the area and the mobile node (highlighted with a green circle) is attached to a wooden table to assure a constant height. The measurement setup was such that the mobile node was configured as a transmitter and the stationary anchor nodes were configured as receivers. We moved the wooden table throughout the en- vironment at constant speed (at our best). Hence, the environment and data resembles a robotic scenario.

Figure 1: Measurement setup. The industrial environment consists of metal shelves, and industrial vehicles. The Receiver/Anchor tags are highlighted with red boxes, the transmitter/ mobile node is highlighted with a green circle.

Figure 2 shows the distribution of the acquired data within the environment. The trajectories of the transmitter nodes are in-between the various objects; the size of the area is approximately 15m × 20m. In total, we captured about 300,000 channel impulse responses over a time period of approximately 1.5 hours. The sampling interval of the data was about 10 Hz. For clearance, a constant sampling interval is not available, as straightforward re-sampling of CIR data is not possible because of the complexity of the signals. Of these, a temporally coherent set of 230,000 CIRs is available for training purposes, while another coherent set of 70,000 datapoints is used for testing/evaluation. This corresponds to exactly 20 minutes of recording time.

Figure 2: Data distribution of the recorded data set. The objects in the en- vironment are indicated in green: Metal shelves filled with goods (1) and (3); industrial vehicles (2) and (4) and a large metal box (5). The anchor node positions are depicted as red squares.

Dataset Description

The dataset is provided as a PANDAS1 dataframe. The main file (i.e. the training data) contains the CIRs and reference positions. Each data instance (i.e. column of the dataframe) contains:

  • rec time ([int]): the timestamp in μs at which the CIR was received at the receiver node.

  • burst id ([int]): the transmitter time index. This can be used for synchronization. For clarity, at each of the burst IDs, the transmitter (i.e., the mobile node) transmits an impulse that is received by a subset of the re- ceivers (i.e, anchors). The complete set of CIRs from all anchors is not available at all time steps (as at some receivers the detection was not successful due to an insufficient channel and/or data corruption).

  • cir real (array[int]) and cir imag (array[int]): the real and imag- inary parts of the CIR as tuples. The CIRS are centered around the peaks and contain 366 samples each.

  • anch ID ([string]): the anchor id of the receiving anchor.

  • The positions of the agent (i.e. the mobile tag, the transmitter) ref x, ref y as float. The reference positions are corresponding to the re- ceiver timestamp rec time.

An additional PANDAS dataframe containing the anchor/receiver positions is also available. It contains:

• anch ID [string] the anchor IDs.

• p x, p y [float] positions of the anchors.
The dataset is available here: https://dataset.not.yet.available.com.

Challenge Objectives

For the challenge, a second dataframe is provided that includes the same columns as the training dataset apart from the reference positions ref x, ref y. Using these data, the objective is to estimate position values at a regular time interval of 100 μs. The participants must provide a PANDAS dataframe of length 12,000 that includes:

  • the timestamps t est [int] of the position estimates in μs (starting from 10,000).

  • the corresponding estimated positions x est and y est as float

For clarity, the input data are not available at a perfectly regular sampling inter- val and the complexity of CIRs does not allow for direct interpolation to obtain regularly spaced data, so, depending on the applied methods, re-sampling of the results might be necessary. This is to ensure a fair comparison of the meth- ods. The resulting estimates will then be evaluated using the third quartile of the 2D Euclidean distance between the measurement points as score.