Next Article in Journal
Intrusion Detection System CAN-Bus In-Vehicle Networks Based on the Statistical Characteristics of Attacks
Previous Article in Journal
Machine Learning Assists IoT Localization: A Review of Current Challenges and Future Trends
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Context-Aware Lossless and Lossy Compression of Radio Frequency Signals

1
Departament de Teoria del Senyal i Comunicacions, Universitat Politècnica de Catalunya (UPC), Jordi Girona 1-3, 08034 Barcelona, Spain
2
Institut de Ciències del Cosmos (ICCUB), Universitat de Barcelona (IEEC-UB), Martí i Franquès 1, 08028 Barcelona, Spain
3
DAPCOM Data Services, Vilabella Centre de Negocis, Vilabella 5-7, 08500 Vic, Spain
*
Author to whom correspondence should be addressed.
Sensors 2023, 23(7), 3552; https://doi.org/10.3390/s23073552
Submission received: 23 February 2023 / Revised: 23 March 2023 / Accepted: 27 March 2023 / Published: 28 March 2023
(This article belongs to the Section Environmental Sensing)

Abstract

:
We propose an algorithm based on linear prediction that can perform both the lossless and near-lossless compression of RF signals. The proposed algorithm is coupled with two signal detection methods to determine the presence of relevant signals and apply varying levels of loss as needed. The first method uses spectrum sensing techniques, while the second one takes advantage of the error computed in each iteration of the Levinson–Durbin algorithm. These algorithms have been integrated as a new pre-processing stage into FAPEC, a data compressor first designed for space missions. We test the lossless algorithm using two different datasets. The first one was obtained from OPS-SAT, an ESA CubeSat, while the second one was obtained using a SDRplay RSPdx in Barcelona, Spain. The results show that our approach achieves compression ratios that are 23% better than gzip (on average) and very similar to those of FLAC, but at higher speeds. We also assess the performance of our signal detectors using the second dataset. We show that high ratios can be achieved thanks to the lossy compression of the segments without any relevant signal.

1. Introduction

Radio Frequency (RF) signals are everywhere. Bluetooth, Wi-Fi, mobile telephony and TV all use RF signals to communicate. The massive adoption of these technologies has pushed forward the development of new standards, thus increasing the number of assigned or licensed frequency bands. By exploiting these bands when they are unused, opportunistic communications aim to use the spectrum in a more efficient way [1,2]. Opportunistic communications are related to cognitive radio, which is a radio that is aware of its internal state and environment and can be dynamically configured to use the best channel. In this sense, it is important to monitor the spectrum for subsequent opportunistic transmissions. This technique is known as spectrum sensing and nowadays is usually performed with a Software Defined Radio (SDR) [3].
Apart from communications, SDRs are also used in other fields such as remote sensing. Earth observation techniques have seen a significant increase in both quality and quantity in recent times, leading to a significant surge in the amount of data produced. Moreover, since remote sensing is usually carried out by satellites with limited storage capacity and bandwidth [4], this growth in data poses significant challenges in terms of data storage and transmission.
Taking into account the extensive presence of RF signals and the constraints of the devices that usually perform sensing tasks, data compression appears to be the key that enables the storage and transfer of this kind of data. For this reason, there are some studies addressing this issue [5,6]. However, they are focused on very specific communications signal types or they do not support lossless (or near-lossless) compression.
This article proposes a new method to compress, either lossless or lossy, generic RF signals. In Section 3, a brief description of FAPEC is provided, i.e., the entropy coder used in our algorithm. In Section 4.1 and Section 4.2, we propose a lossless and a smart lossy pre-processing stage for FAPEC, respectively. Then, in Section 5 and Section 6, we describe the parameters and test files used and the performance of the proposed approach is assessed. Finally, in Section 7, we present our conclusions and state future research lines and possible improvements for the presented methods.

2. RF Signals Data Format

In this paper, we deal with the compression of RF data, specifically the signals obtained with a SDR. From communications theory [7], it is known that any pass-band signal s ( t ) can be expressed as
s ( t ) = i s ( t ) · cos ( 2 π f 0 t ) q s ( t ) · sin ( 2 π f 0 t ) ,
where i s ( t ) and q s ( t ) are the in-phase and quadrature components, respectively, and f 0 is the carrier frequency.
For simplicity, we may work with the equivalent baseband signal
b s ( t ) = i s ( t ) + j q s ( t ) .
The data to be compressed are the discrete time samples of the signals i s ( t ) and q s ( t ) .
In the dataset used in this work, the samples are 16-bit signed integers and they are interleaved, forming a sequence x ( n ) , n { 0 , , N 1 } such that
x ( 2 k ) = i s ( k T ) x ( 2 k + 1 ) = q s ( k T )
with k N and T the sampling period.

3. The FAPEC Data Compressor

Originally designed for space missions [8], Fully Adaptive Prediction Error Coder (FAPEC) is a highly efficient and extensible data compressor. The advantages of using FAPEC include its resilience in handling noisy or outlier data, its high computing performance and its versatility.
The structure of FAPEC follows a pattern similar to that of other data compressors, with a pre-processing stage followed by an entropy coder [9]. In fact, its name comes from this structure, where the first stage is typically a predictor that estimates the samples and generates a prediction error. The error sequence is then sent to the entropy coder, rather than the original samples. It is worth noting that in some pre-processing stages, such as the one presented in this paper, some side information is also sent to the entropy coder.
FAPEC is equipped with various pre-processing stages, including a basic differential coder, multi-band prediction and a wavelet transform [10]. In its latest version, FAPEC 22.0, an algorithm for water column and bathymetry data, was also added [11,12].
To ensure robustness against data corruption and achieve a high computing performance, FAPEC compresses data in chunks, which typically range from 64 kB to 8 MB. The input sequence is split into several chunks of equal size, and each chunk is processed independently of the others.

4. FAPEC Tailoring for RF Data

In Section 2, we described the typical format of RF files: the discrete time samples of the equivalent baseband signal coded as 16-bit signed integers. Now, we shall propose an algorithm for this kind of data. Our approach is based on Linear Predictive Coding (LPC), that is, a linear filter which predicts samples following the model
x ^ ( n ) = i = 1 Q h i x ( n i ) ,
where x ^ ( n ) is the predicted sequence, x ( n i ) is the previous samples, h i is the filter coefficients and Q is the filter order. The prediction error is defined as
e ( n ) = x ( n ) x ^ ( n ) .
There are several reasons that justify using a linear predictor to process RF data. The first one is that a Wide Sense Stationary (WSS) process can always be represented in terms of the optimal linear prediction error. Thus, the filtering described above can also be interpreted as an approximation of x ( n ) by an AR(Q) process. In addition, we may find papers about IQ data compression that use FLAC to perform the encoding [5]. Finally, linear prediction is a very general and simple method. Taking into account that our target is arbitrary RF signals, a generic method is preferred. Additionally, in the case that the prediction error follows a Gaussian distribution, uncorrelatedness and independence are equivalent, thus linear prediction is optimum [13].

4.1. General Aspects of the Proposed Algorithm

In the implementation of a linear predictor as a pre-processing stage for FAPEC, we made some tweaks in order to reduce the computational complexity and improve the performance. In this section, the modifications and the actual implementation are described.
First, it is known that the coefficients h i from Equation (4) are the solution to the Yule–Walker equations [14]:
R x h = r x
where R x is the autocorrelation matrix with elements r i j = r x ( | i j | ) , 0 i , j < Q , r x the correlation vector with r j = r x ( j ) , 1 j Q and h the filter coefficients.
Solving the system with Gauss–Jordan elimination has a complexity of O ( Q 3 ) . However, the Toeplitz structure of R x can be exploited and the system can be solved using the Levinson–Durbin recursion [13], with a complexity of O ( Q 2 ) .
Obtaining Equation (6) involves a statistical approach. However, in this paper, the input sequence x ( n ) is a finite sequence acquired from an SDR receiver. Consequently, x ( n ) must be partitioned into subsequences of length N Q denoted as x N ( n ) , where stationarity can be assumed. We should remark that x ( n ) corresponds to the whole chunk and it is split into shorter sequences of length N. The autocorrelation lags are given by the short-term autocorrelation sequence, also known as the autocorrelation method [13]:
r x ( i ) = m = 0 N 1 i x N ( m ) x N ( m + i ) , i 0 .
It is worth noting that, since the character of the input data is unknown, the parameter N is selected by the user when configuring the compressor.
In order to slightly reduce the computational complexity, we may choose not to use all the N samples of x N ( n ) . Instead, we set a training length T N and, as it is assumed that the sequence is WSS, coefficients computed with T or N samples should be very similar. Now, the autocorrelation is calculated as follows:
r x ( i ) = m = 0 T 1 i x N ( m ) x N ( m + i ) , i 0 .
Using this method, the number of samples used to compute r x ( i ) decreases as i increases, so i T must be used to obtain estimates of good quality. There exists another method to estimate the correlation lags, called the covariance method. This approach uses all T samples, so the estimates tend to have better quality. However, the autocorrelation method keeps the Toeplitz structure and the covariance method does not. Further information about the trade-off between these methods can be found in, for instance, reference [15].
Once the autocorrelation was estimated with the autocorrelation method described above, we apply the Levinson–Durbin algorithm to solve the system. In order to improve the performance of the predictor, on each iteration of the recursion, the error is computed, and if it is less than 10 % of the initial error or less than 1 % of the previous error, the algorithm stops with the filter order used in that iteration. This modification allows the user to select high-filter orders but avoid overfitting and still have a reasonable complexity.
In brief, the proposed algorithm involves splitting the input sequence x ( n ) into subsequences of length N and computing their autocorrelation using T < N samples. Filter coefficients are then obtained via a modified Levinson–Durbin algorithm, which stops when the prediction error reaches a predetermined threshold. Both the coefficients and the prediction errors are subsequently fed to the entropy coder, with the former being quantized for optimal coding. It should be noted that decompression involves calculating x ^ ( n ) using Equation (4) and adding it to the prediction error for the corresponding sample. Therefore, it is evident that decompression is less complex than compression.
The algorithm described here can be independently applied to each component. However, the user has the option to enable coupling between components. In this case, the coefficients computed for the first component are reused for the others, resulting in further reduced complexity.

4.2. Smart Lossy

The algorithm proposed in the previous section allows to apply a lossy approach (specifically, near-lossless with variable bitrate) by quantizing the input samples just before computing the autocorrelation with Equation (8). Its implementation rounds the quantized sample instead of truncating it in order to avoid a bias caused by the quantization noise. To avoid error propagation, it is important to apply quantization to the samples rather than the prediction errors.
However, for some use cases such as continuous monitoring in remote sensing, it may be more interesting to adapt the loss level to the features of the data. For instance, if the received signal only contains noise, a high level of losses can be applied. Due to its adaptive capacity, we call this method smart lossy.
In order to detect signal features, we propose two different methods: a first one based on spectrum sensing and a second one that takes advantage of the error magnitude computed during the Levinson–Durbin recursion. In practice, the first technique can be used to adjust the parameters of the second, which exhibits a much lower computational load.
The spectrum sensing method consists of first estimating the noise power and using this estimate to implement an energy detector. Then, different levels of losses can be applied to what is assumed to be signal or noise, respectively. The problem can be stated as follows:
H 0 : x ( n ) = w ( n ) H 1 : x ( n ) = s ( n ) + w ( n )
where w ( n ) N ( 0 , σ w 2 ) and s ( n ) is an unknown signal.
Estimating the noise power is a well-known problem, and as such, there exist several techniques that address it [16,17]. Given that we want to be as general as possible regarding the type of signal, we decided to use the Akaike Information Criterion (AIC) [18], as it does not need any knowledge about the signal s ( n ) . The method is as follows: we compute the averaged periodogram of the signal using Welch’s method [19]:
P x ( k / L ) = 1 K m = 0 K 1 1 L n = 0 L 1 x m ( n ) e 2 π j L k m 2 Periodogram ,
where L is the size of the Fast Fourier Transform (FFT) and K is the number of periods of length N defined in Section 4.1. For simplicity, we take L = N . In addition, thanks to the Central Limit Theorem (CLT), P x ( k / L ) N σ w 2 , σ w 2 K , and using the AIC, we can find which frequency bins are assumed to represent the signal. The expression of AIC is given by
AIC ( k ) = ( L k ) · K · log ( α ( k ) ) + k ( 2 L k ) ,
α ( k ) = 1 L k i = k + 1 L λ i i = k + 1 L λ i L k ,
where λ i = P x ( i / L ) is the power of the ith frequency bin in the averaged periodogram [20].
Knowing the index that minimizes the value of AIC ( k )
k min = argmin k AIC ( k ) ,
the bins 0 i < k min are assumed to represent the signal. Thus, an estimate of the noise power can be obtained as
σ ^ w 2 = 1 L k min i = k min L λ i .
Once we have an estimate of the noise power, we can proceed with the second step of the method, namely detecting the signal. There are several approaches that deal with this problem, such as the matched filter or cyclostationarity detection [21,22,23,24]. However, these methods need some information about the signal. For this reason, we decided to use an energy detector, as this allows blind detection. The energy detector is given by
T ( x ) = n = 0 D 1 x ( n ) 2 H 1 H 0 γ ,
where T ( x ) χ D , σ w 2 2 and γ is the detection threshold.
For a fixed probability of false alarm P F , the threshold can be computed with
γ = Q χ D 2 1 ( P F ) · σ ^ w 2 ,
where Q χ D 2 is the tail distribution function of the chi-squared distribution with D degrees of freedom.
In our approach, the degrees of freedom and the probability of false alarm are user parameters. The former is given by the desired probability of detection and allows to adjust de bias-variance tradeoff, whereas the latter may be used to tune the aggressiveness of the method. For instance, if we want to be cautious, we can set a higher value for P F , thus increasing the probability of detecting noise as a signal and performing lossless (or near-lossless) compression more often.
This method has been implemented in the C programming language and has been released under the BSD license. Thus, it can be integrated into FAPEC or other third-party software. The source code is available at [25].
The second method, which we call the prediction evaluation method, aims at a simple and fast implementation by reusing quantities already computed in the prediction stage. It relies on the Levinson–Durbin algorithm, from which we take the autocorrelation r x ( i ) , the training length T, the estimated error ϵ , the filter order Q, and the LPC coefficients h i . From these values, noise power σ ^ w 2 can be estimated as
σ ^ w 2 = ϵ T ,
which can be understood as the LPC modeling error. The signal power σ ^ s 2 can be estimated as
σ ^ s 2 = 1 T i = 1 Q h i r x ( i ) ,
which can be seen as the LPC modeling success. Thus, for a given sub-sequence of N samples where these quantities are determined, we estimate the Signal-to-Noise Ratio (SNR) as
SNR = σ ^ s 2 σ ^ w 2 .
Finally, we define the smart lossy quantization step as
δ = σ ^ s 2 + σ ^ w 2 κ
where κ is the target dynamic range. That is, κ = 2 β , where β is the target bits that we want to keep from the digital RF data. Then, depending on the SNR (above or below a given threshold), we can assign different values to κ ( κ s and κ w , respectively). This will make lossy compression more or less aggressive (that is, removing more or less bits), setting lower or higher κ values, respectively. Note that δ depends on the total estimated power, meaning that this approach adapts to the actual signal features. Thus, loud signals with a high SNR can still be significantly quantized depending on the κ setting, whereas faint signals also with high SNR may even be left lossless. Note that, in certain types of RF signals such as Global Navigation Satellite System (GNSS), the noise estimation may actually correspond to most of the signal power, whereas the signal estimation may correspond to higher-power parasitic signals. In these cases, the user may configure κ w κ s , meaning that the sub-sequences with high SNR (meaning parasitic signals or interferences) are aggressively compressed, whereas those with low SNR (meaning a “clean” GNSS or spread spectrum signal) can be left with very small losses. Nevertheless, spread spectrum signals exhibit an inherent gain related to the spreading factor, and thus higher loss levels can be used.
Contrary to the near-lossless case (where the quantization is applied to the input samples), in this prediction evaluation method we apply the quantization δ to the prediction errors, which leads to slightly better results in terms of ratio and reconstructed quality. This approach means that we must reconstruct each lossy sample during compression before proceeding to the next sample, meaning some computing overhead but avoiding error propagation.

5. Test Setup

The signals used in the following tests come from two different datasets: the first one was obtained with OPS-SAT, a CubeSat by the European Space Agency (ESA) [26]. This consists of seven signals centered at 433.0 MHz, three at 1575.42 MHz and three at 1602.56 MHz. All signals were sampled at 3 MHz. The second one has been captured with a SDRplay RSPdx in Barcelona, Spain, and it consists of three Amplitude Modulation (AM) signals in the medium-wave broadcast band (526.5–1606.5 kHz) and three Automatic Packet Reporting System (APRS) signals [27] in the 2-meter band (144.8 MHz). In this case, the signals were sampled at 15.625 kHz. Both datasets are public and can be downloaded from [28].
To evaluate the lossless data compression performance of our algorithm, we conducted tests in comparison with gzip, Zstd and FLAC using their default settings. Gzip is a commonly used generic compressor that uses a combination of LZ77 [29] and Huffman [30] encoding techniques. Zstd is also a general purpose compressor designed to give a compression ratio comparable to that of gzip, but much faster. Besides LZ77 and Huffman, it also takes advantage of Finite State Entropy [31]. In the case of FLAC, the format specification sets a maximum sample rate of 655.350 kHz, smaller than the 3 MHz of the OPS-SAT signals. For this reason, we modified the sampling rate in the header to 44.1 kHz. Observe that we have not decimated the signal and that the FLAC performance does not depend on this parameter. Finally, FAPEC has been configured with a period and a training length of N = T = 8192 samples and a maximum filter order of Q = 16 . Channel coupling has also been enabled. In order to show that the value of the training period T has a minor impact on the algorithm, we also performed lossless compression tests for T { 256 , 512 , 1024 , 2048 , 4096 } .
Regarding the smart lossy algorithm, its performance is only assessed with the second dataset. The reason is that we are interested in the quality of the signal after demodulation, and thus, we must know the modulation used, and this is not the case for the first dataset. For the spectrum sensing method, we computed the FFT with N = L = 2048 points and computed the detection threshold for a probability of false alarm P F = 0.05 with D = 4096 degrees of freedom. The prediction evaluation method has been configured with an SNR threshold of 5 dB and a target of 0 bits for the noise. The two extreme values for the signal target bits are considered: 16 bits (lossless) and 1 bit ( κ s = 2 ). Observe that this target is not strictly the number of bits used to represent the signal (see Equation (20) and its explanation).
In order to perform a fair comparison, all tests were forced to operate in single thread mode and were executed on the same Mac mini (M1, 2020) running macOS 13.1.

6. Test Results

6.1. Lossless and Near-Lossless Compression

This section presents the compression ratio and throughput obtained in the tests. The compression ratio is calculated as the ratio of the size of the original file to the compressed file, while the compression throughput represents the amount of raw data that can be compressed per second.
As can be seen in Figure 1, FAPEC and FLAC exhibit very similar compression ratios. When compared to gzip and Zstd, FAPEC yields ratios of at least 12% better and 23.4% on average. In this situation, one could consider using a well-known algorithm such as FLAC. However, compression throughput must also be taken into account. In Figure 2, we show that FAPEC is two times faster than FLAC and almost six times faster than gzip. Regarding Zstd, it is much faster than FAPEC, but as previously shown, it produces lower compression ratios.
In Figure 1, we also show the near-lossless compression ratios for the second and fourth levels of losses. In the first case, the two Least Significant Bits (LSB) are removed and the ratio increases by 28%. In the second case, the three LSB are removed and the ratio increases by 49%. Ratios are remarkably better for GNSS files from the first dataset, given the typically small amplitude of the signals contained therein.
To conclude, the lossless compression results in Figure 3 show that, for a fixed sequence length ( N = 8192 ), the value of T does not significantly affect the performance of FAPEC. For instance, when T = 256 , the average compression ratio is 1.765 instead of 1.789 , whereas the throughput increases from 142.74 MB/s to 153.02 MB/s. Given this modest decrease in computational efficiency, the rest of the tests are performed with T = N .

6.2. Smart Lossy

We conclude the results section by showing the performance of the detector on an APRS signal (D2-APRS-1). In Figure 4, we show that both methods allow the detection of the presence of a signal and the application of different levels of losses. If we set the method to be very aggressive and remove the segments not detected as relevant signals, the compression ratio for this file increases from 2.04 to 32.51 without any errors after demodulation. If we wanted to even further increase the compression ratio, we could also apply lossy compression to the signal segments. For instance, setting κ s = 1 results in a ratio of 104.62, and the signal is still demodulated without any errors.

7. Conclusions and Future Work

In this paper, a pre-processing stage for lossless data compression of RF signals has been proposed. In addition, we also proposed two methods to detect the presence of relevant signals, thus allowing the application of different loss levels to noise and signal. In the first method, noise power is estimated with spectrum sensing methods and then an energy detector is implemented using the former estimate of the noise power. On the other hand, the second method relies on the error already computed in each iteration of the Levinson–Durbin algorithm. Hence, the complexity is much lower.
We tested the mentioned algorithms with the FAPEC entropy coder on two different datasets: the first one was obtained with OPS-SAT, a CubeSat by the ESA, and the second one was obtained with a SDRplay RSPdx in Barcelona, Spain. When comparing FAPEC with other compressors such as Zstd and gzip, we obtain, on average, the best compression ratios on RF signals. On the other hand, the audio coding format FLAC and FAPEC exhibit very similar compression ratios. Regarding the compression throughput, Zstd is the fastest algorithm, but the compression ratios are clearly worse. Finally, we showed the performance of the aforementioned detectors using an APRS signal and also how this allows to increase the compression ratios by more than an order of magnitude.
We can outline some future lines of research that could potentially stem from this work. For instance, the proposed lossy algorithm performs variable bitrate encoding, but constant bitrate encoding could also be implemented. Regarding smart lossy, other detection methods could be considered. In particular, if it is assumed that noise is Gaussian and the desired signal is not, normality tests could be used as the detector. Observe that we already make this assumption to estimate the noise power. Besides that, more sophisticated algorithms such as neural networks could be employed, at the cost of increasing the complexity and reducing the interpretability. In addition, we intend to perform tests with several GNSS signals and lossy configurations in order to determine the maximum loss levels that would still allow for reliable decoding. Finally, it is known that different modulations require different levels of SNR to be successfully demodulated. For instance, modulations with a large number of symbols require a higher SNR. For this reason, studying the Bit Error Rate (BER) for different modulations and levels of losses could also be insightful.

Author Contributions

Conceptualization, A.M., J.P. and J.R.; methodology, J.P.; software, A.M. and J.P.; validation, O.M., J.R. and J.P.; formal analysis, A.M., J.P. and J.R.; investigation, A.M., J.P. and J.R.; resources, J.P. and O.M.; data curation, O.M., J.P. and A.M.; writing—original draft preparation, A.M.; writing—review and editing, J.P., J.R. and O.M.; visualization, A.M. and O.M.; supervision, J.R. and J.P.; project administration, J.P. and J.R.; funding acquisition, J.P. All authors have read and agreed to the published version of the manuscript.

Funding

This work was (partially) funded by the European Space Agency (ESA) Contract No. 4000137290, the Spanish Ministry of Science and Innovation projects PID2019-105717RB-C22 (RODIN) and PID2021-122842OB-C21, the ERDF (a way of making Europe) by the European Union, the Institute of Cosmos Sciences University of Barcelona (ICCUB, Unidad de Excelencia María de Maeztu) through grant CEX2019-000918-M, grant 2021 SGR 1033 by Generalitat de Catalunya (AGAUR), and fellowship FPI-UPC 2022 by Universitat Politècnica de Catalunya and Banc de Santander.

Institutional Review Board Statement

Not applicable.

Informed Consent Statement

Not applicable.

Data Availability Statement

The data presented in this study are openly available in Dataset from: Context-Aware Lossless and Lossy Compression of Radio Frequency Signals at 10.21227/ccdy-s283, reference number [28]. The FAPEC data compressor is available at www.dapcom.es (accessed on 20 February 2023).

Acknowledgments

The authors would like to thank David Evans and Vladimir Zelenevskiy from ESA and Carles Fernández-Prades from CTTC for the assistance provided during the implementation of the project RICSDAC (ESA Contract No. 4000137290).

Conflicts of Interest

The authors declare the following conflict of interest. J.P. is CTO of DAPCOM, the original developer of the FAPEC algorithm. The funders had no role in the design of the study; in the collection, analyses, or interpretation of data; in the writing of the manuscript; or in the decision to publish the results.

Abbreviations

The following abbreviations are used in this manuscript:
AICAkaike Information Criterion
AMAmplitude Modulation
APRSAutomatic Packet Reporting System
BERBit Error Rate
CLTCentral Limit Theorem
ESAEuropean Space Agency
FAPECFully Adaptive Prediction Error Coder
FFTFast Fourier Transform
FLACFree Lossless Audio Codec
GNSSGlobal Navigation Satellite System
IQIn-phase and Quadrature
LPCLinear Predictive Coding
LSBLeast Significant Bits
RFRadio Frequency
SDRSoftware-Defined Radio
SNRSignal-to-Noise Ratio
WSSWide Sense Stationary

References

  1. Wang, B.; Liu, K.R. Advances in cognitive radio networks: A survey. IEEE J. Sel. Top. Signal Process. 2011, 5, 5–23. [Google Scholar] [CrossRef] [Green Version]
  2. Borràs, J.; Font-Segura, J.; Riba, J.; Vázquez, G. Dimension spreading for coherent opportunistic communications. In Proceedings of the 2017 51st Asilomar Conference on Signals, Systems, and Computers, Pacific Grove, CA, USA, 29 October–1 November 2017. [Google Scholar]
  3. Manco, J.; Dayoub, I.; Nafkha, A.; Alibakhshikenari, M.; Thameur, H.B. Spectrum Sensing in Software Defined Radio for Cognitive Radio Networks: A Survey. IEEE Access 2022, 10, 131887–131908. [Google Scholar] [CrossRef]
  4. Sandau, R. Status and trends of small satellite missions for Earth observation. Acta Astronaut. 2010, 66, 1–12. [Google Scholar]
  5. Nanba, S.; Agata, A. A new IQ data compression scheme for front-haul link in Centralized RAN. In Proceedings of the IEEE 24th International Symposium on Personal, Indoor and Mobile Radio Communications (PIMRC Workshops), London, UK, 8–9 September 2013. [Google Scholar]
  6. Badger, R.D.; Kim, M. Singular Value Decomposition for Compression of Large-Scale Radio Frequency Signals. In Proceedings of the 2021 29th European Signal Processing Conference (EUSIPCO), Dublin, Ireland, 23–27 August 2021. [Google Scholar]
  7. Carlson, A. Communication Systems; McGraw-Hill Education: New York, NY, USA, 2010. [Google Scholar]
  8. Portell, J.; Iudica, R.; García-Berro, E.; Villafranca, A.G.; Artigues, G. FAPEC, a versatile and efficient data compressor for space missions. Int. J. Remote Sens. 2018, 39, 2022–2042. [Google Scholar] [CrossRef]
  9. Salomon, D.; Motta, G.; Bryant, D. Data Compression: The Complete Reference; Springer: London, UK, 2007. [Google Scholar]
  10. Hernández-Cabronero, M.; Portell, J.; Blanes, I.; Serra-Sagristà, J. High-Performance Lossless Compression of Hyperspectral Remote Sensing Scenes Based on Spectral Decorrelation. Remote Sens. 2020, 12, 2955. [Google Scholar] [CrossRef]
  11. Martí, A.; Portell, J.; Amblas, D.; de Cabrera, F.; Vilà, M.; Riba, J.; Mitchell, G. Compression of Multibeam Echosounders Bathymetry and Water Column Data. Remote Sens. 2022, 14, 2063. [Google Scholar] [CrossRef]
  12. Portell, J.; Amblas, D.; Mitchell, G.; Morales, M.; Villafranca, A.G.; Iudica, R.; Lastras, G. High-Performance Compression of Multibeam Echosounders Water Column Data. IEEE J. Sel. Top. Appl. Earth Obs. Remote Sens. 2019, 12, 1771–1783. [Google Scholar] [CrossRef]
  13. Vaidyanathan, P.P. The Theory of Linear Prediction; Springer: Cham, Switzerland, 2008. [Google Scholar]
  14. Van Trees, H.; Bell, K.; Tian, Z. Detection Estimation and Modulation Theory, Part I: Detection, Estimation, and Filtering Theory; Wiley: Hoboken, NJ, USA, 2013. [Google Scholar]
  15. Kay, S.M. Modern Spectral Estimation: Theory and Application; Prentice Hall: Englewood Cliffs, NJ, USA, 1988. [Google Scholar]
  16. Nikonowicz, J.; Mahmood, A.; Sisinni, E.; Gidlund, M. Noise Power Estimators in ISM Radio Environments: Performance Comparison and Enhancement Using a Novel Samples Separation Technique. IEEE Trans. Instrum. Meas. 2019, 68, 105–115. [Google Scholar] [CrossRef]
  17. Sequeira, S.; Mahajan, R.R.; Spasojević, P. On the Noise Power Estimation in the Presence of the Signal for Energy-Based Sensing. In Proceedings of the 2012 35th IEEE Sarnoff Symposium, Newark, NJ, USA, 21–22 May 2012. [Google Scholar]
  18. Akaike, H. A new look at the statistical model identification. IEEE Trans. Autom. Control 1974, 19, 716–723. [Google Scholar] [CrossRef]
  19. Welch, P. The use of fast Fourier transform for the estimation of power spectra: A method based on time averaging over short, modified periodograms. IEEE Trans. Audio Electroacoust. 1967, 15, 70–73. [Google Scholar]
  20. Wax, M.; Kailath, T. Detection of signals by information theoretic criteria. IEEE Trans. Acoust. Speech Signal Process. 1985, 33, 387–392. [Google Scholar] [CrossRef] [Green Version]
  21. Yucek, T.; Arslan, H. A survey of spectrum sensing algorithms for cognitive radio applications. IEEE Commun. Surv. Tutor. 2009, 11, 116–130. [Google Scholar] [CrossRef]
  22. Nikonowicz, J.; Jessa, M. A novel method of blind signal detection using the distribution of the bin values of the power spectrum density and the moving average. Digital Signal Process. 2017, 66, 18–28. [Google Scholar] [CrossRef]
  23. Riba, J.; Villares, J.; Vázquez, G. A Nondata-Aided SNR Estimation Technique for Multilevel Modulations Exploiting Signal Cyclostationarity. IEEE Trans. Signal Process. 2010, 58, 5767–5778. [Google Scholar] [CrossRef] [Green Version]
  24. Riba, J.; Vilà, M. On Infinite Past Predictability of Cyclostationary Signals. IEEE Signal Process. Lett. 2022, 29, 647–651. [Google Scholar] [CrossRef]
  25. Martí, A.; Portell, J. Spectra. Released: 13 December 2022. Available online: https://doi.org/10.5281/zenodo.7432113 (accessed on 10 January 2023).
  26. OPS-SAT. 2017. Available online: https://www.esa.int/Enabling_Support/Operations/OPS-SAT (accessed on 10 January 2023).
  27. APRS Protocol Reference. 2000. Available online: http://www.aprs.org/doc/APRS101.PDF (accessed on 12 December 2022).
  28. Martí, A.; Portell, J.; Riba, J.; Mas, O. Dataset from: Context-Aware Lossless and Lossy Compression of Radio Frequency Signals. 2023. Available online: https://doi.org/10.21227/ccdy-s283 (accessed on 20 February 2023).
  29. Ziv, J.; Lempel, A. A universal algorithm for sequential data compression. IEEE Trans. Inf. Theory 1977, 23, 337–343. [Google Scholar] [CrossRef] [Green Version]
  30. Huffman, D.A. A Method for the Construction of Minimum-Redundancy Codes. Proc. IRE 1952, 40, 1098–1101. [Google Scholar] [CrossRef]
  31. Duda, J.; Tahboub, K.; Gadgil, N.J.; Delp, E.J. The use of asymmetric numeral systems as an accurate replacement for Huffman coding. In Proceedings of the 2015 Picture Coding Symposium (PCS), Cairns, Australia, 31 May–3 June 2015. [Google Scholar]
Figure 1. Lossless and near-lossless (levels 2 and 4) compression ratios of the RF signals.
Figure 1. Lossless and near-lossless (levels 2 and 4) compression ratios of the RF signals.
Sensors 23 03552 g001
Figure 2. Lossless compression throughput of the RF signals.
Figure 2. Lossless compression throughput of the RF signals.
Sensors 23 03552 g002
Figure 3. Average compression ratio and throughput (complete dataset) for N = 8192 and different values of T.
Figure 3. Average compression ratio and throughput (complete dataset) for N = 8192 and different values of T.
Sensors 23 03552 g003
Figure 4. Normalized power, detected bands and estimated SNR of an APRS signal (D2-APRS-1).
Figure 4. Normalized power, detected bands and estimated SNR of an APRS signal (D2-APRS-1).
Sensors 23 03552 g004
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content.

Share and Cite

MDPI and ACS Style

Martí, A.; Portell, J.; Riba, J.; Mas, O. Context-Aware Lossless and Lossy Compression of Radio Frequency Signals. Sensors 2023, 23, 3552. https://doi.org/10.3390/s23073552

AMA Style

Martí A, Portell J, Riba J, Mas O. Context-Aware Lossless and Lossy Compression of Radio Frequency Signals. Sensors. 2023; 23(7):3552. https://doi.org/10.3390/s23073552

Chicago/Turabian Style

Martí, Aniol, Jordi Portell, Jaume Riba, and Orestes Mas. 2023. "Context-Aware Lossless and Lossy Compression of Radio Frequency Signals" Sensors 23, no. 7: 3552. https://doi.org/10.3390/s23073552

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop