Research on UAV 3D Airspace Signal Strength Prediction Based on Physical Perception Feature Engineering
Abstract
1. Introduction
1.1. Background and Motivation
1.2. Limitations of State of the Art
- Empirical Stochastic Models: For the Hata, COST-231 and 3GPP logarithmic distance models, their characteristics are simple analysis form and low computational requirements. However, they are mainly based on ground measurement accessories and describe the environment through simplified path loss indices. In complex urban canyons, these models lack spatial granularity and cannot consider specific building layouts or vertical signal fluctuations caused by antenna side lobes. As stated in the reference [6], the prediction errors of empirical models in heterogeneous environments usually exceed 10 dBm, which is insufficient for high-precision unmanned aerial vehicle tasks.
- Deterministic Models: These include ray tracing (RT) [7] and digital twin-based simulations [8]. These methods use high-precision 3D electronic maps and reconstruct propagation paths (reflection, diffraction, and scattering) by solving approximations of Maxwell’s equations. Although they offer high physical fidelity, their application is limited by two factors: first, the cost of acquiring real-time high-precision 3D geometry data is too high; second, the computational complexity is extremely high. A single ray-tracing simulation can take several hours, making it unsuitable for resource-constrained in-vehicle chips and unable to support real-time tasks such as online path re-planning.
- Data-Driven Machine Learning Models: In recent years, deep learning (DL) has been widely applied in channel modeling. For instance, satellite images combined with convolutional neural networks (CNNSs) have been employed for feature extraction [9], while Transformers have been utilized for time series signal processing [10]. Although these models perform well within the training distribution, they have problems such as “black box” opacity and lack of inductive bias:
- •
- Dimensionality and Generalization Failure: Most deep learning models tend to remember “location-signal” mappings rather than learn underlying physical laws. When the height of the drone changes (for example, training at 70 m but testing at 150 m), the model will encounter covariate offsets. In the absence of physical constraints, pure data-driven models usually fail to accurately predict antenna gain changes, resulting in a sharp decline in generalization ability.
- •
- Computational Paradox: Complex architectures like Transformers contain millions of parameters, leading to high inference latency. For a UAV cruising at 20 m/s, even millisecond-level delays can lead to signal loss, which is unacceptable in practical engineering.
- •
- Lack of Interpretability: As emphasized in [11], uninterpretable AI models pose safety risks in aviation communications, as engineers cannot diagnose the physical causes of prediction failures.
1.3. Our Contribution: Physics-Informed Feature Engineering
- We propose a novel PIFE-XGBoost framework: This work proposes a novel modeling framework that fuses physics-based geometric features with the lightweight and computationally efficient gradient boosting tree algorithm. This framework not only achieved the competitive prediction accuracy compared to existing baseline models in scenarios ranging from 70 to 150 m in height, but also successfully disentangled the complex interplay between height and distance, solving the common problem of pure data-driven models where they are prone to misinterpreting local noise (overfitting) in the vertical height direction.
- We have clarified the nonlinear correlation pattern between altitude and signal attenuation: We used the “information gain” indicator to clearly demonstrate how the altitude of the unmanned aerial vehicle dynamically affects the degree of signal attenuation. The height and angle interaction features we constructed are particularly crucial for capturing the influence of the base station antenna’s side lobe, and also provide a new theoretical reference for analyzing the channel characteristics between the unmanned aerial vehicle and the ground.
- Balances Prediction Accuracy and Computational Efficiency: >By leveraging the optimized gradient boosting structure, our proposed PIFE-XGBoost achieves an exceptionally low inference latency of approximately 6.87 s per sample. Compared to computationally intensive deep learning architectures (e.g., Transformer-based models), our method significantly reduces the computational overhead, making it highly suitable for deployment on resource-constrained platforms such as the Raspberry Pi. This level of efficiency is well-suited for the real-time requirements for autonomous UAV path planning and signal monitoring.
- Enhancing Model Interpretability and Transparency: Using SHAP (SHapley Additive exPlanations) analysis, we convert the black-box model into an interpretable white-box framework. By visualizing the marginal contributions of physical features, we not only improve model reliability but also provide empirical support for the strong correlation assumptions adopted in the 3GPP standard channel model.
1.4. Paper Organization
2. Related Work
2.1. Channel Modeling Assisted by Computer Vision and Its Dimensional Limitations
- 1.
- Satellite images are usually taken from the Nadir view, and this view inevitably loses the height information of the vertical dimension through this two-dimensional projection. For ground communication, the height of the base station is fixed, and this simplification is acceptable; however, for drone communication, the flight height is a key variable determining the link quality. As the classic theory by Al-Hourani et al. [13] states, the change in the drone’s height directly alters the probability of line-of-sight (LoS). The CNN model proposed by Sani et al. [9] can only perceive the “planar texture” of the ground, but cannot perceive the relative position of the drone in the “vertical space”, resulting in the model being unable to understand the effect of the elevation angle on the Fresnel gap.
- 2.
- Physical bottleneck of generalization ability: Due to the lack of explicit 3D geometric feature input, CNN models primarily memorize statistical correlations between image textures and signal intensities. When the model is transferred to new areas with different building height distributions, its prediction performance often experiences a significant decline.
2.2. Time Series Prediction Based on Heavy Deep Learning and Its Computational Power Paradox
- 1.
- Both the Transformer and LSTM models contain millions of parameters. Although they can function properly on powerful GPU servers, they are not suitable for the edge scenarios where drones are used, and it is difficult to support such large-scale matrix calculations.
- 2.
- The delay in response poses the risk of “being unable to make timely decisions”. In the task of “planning the flight path based on the signal conditions”, the model’s response speed must be at the millisecond level or higher (even a slight delay is unacceptable).
- Engineering Case Analysis: Consider a drone cruising at a speed of 20 m/s. If a deep learning model (such as [10]) takes 100 ms to generate predictions, this means that during the time the model is calculating, the drone has actually flown blindly for 2 m. In urban canyons with severe multipath effects, this 2-m displacement is sufficient to cause the drone to plunge into a signal blind zone.
- Advantages of this paper: In comparison, the PIFE-XGBoost algorithm chosen in this paper is essentially a set of lightweight decision trees, capable of achieving microsecond-level response (approximately 6.87 s on average). This real-time closed-loop of “perception-decision” is an engineering advantage unmatched by heavy deep learning models.
2.3. The Regression of Interpretable Artificial Intelligence (XAI) and Physical Prior Knowledge
2.4. Chapter Summary
- By integrating physical laws to construct features, the prediction blind zone in the vertical direction of the 2D model has been resolved.
- By adopting lightweight and computationally efficient algorithms, this work overcomes the low real-time decision-making bottleneck of complex deep learning models.
- The interpretability derived from physical principles has addressed the risk of unreliable performance in black-box models.
3. Methodology
- Physics-Guided Feature Integration: By explicitly constructing geometric features based on electromagnetic propagation laws, such as height–distance interactions, our model resolves the “prediction blind zones” in the vertical domain that typically plague 2D or unconstrained data-driven models.
- Computational Efficiency for Real-Time Deployment: By adopting lightweight and gradient-boosted tree architecture, the framework overcomes the high inference latency bottleneck of complex deep learning structures, such as Transformers, enabling microsecond-level decision-making on resource-constrained UAV on-board equipment.
- Model Transparency and Interpretability: Moving beyond black-box estimation, the integration of physical principles allows for systematic diagnosis of model outputs. By using interpretability tools, we ensure that the predictions remain consistent with established radio propagation theory, thereby enhancing aviation communication safety.
3.1. 3D Geometric Modeling and Relative Position Representation
3.2. Physics-Informed Feature Engineering (PIFE)
3.2.1. Logarithmic Characteristics of Path Loss
3.2.2. Height-Distance Interaction Feature
- Antenna Gain Modulation: As the height and horizontal distance change, the connection between the drone and the base station will switch between the main lobe and side lobe of the antenna, resulting in significant fluctuations in reception gain.
- Fresnel Zone Clearance: An increase in height is usually accompanied by an improvement in the probability of line-of-sight (LoS) and a reduction in first-order Fresnel zone blockage, thereby altering the multipath fading characteristics [2].
3.2.3. Construction of Comprehensive Feature Vector
3.3. RSRP Prediction Model Based on Regularized Boosting Tree
3.3.1. Objective Function and Regularization
3.3.2. Residual Learning Based on Taylor Expansion
3.4. Model Performance Evaluation Metrics
- 1.
- Root Mean Squared Error (RMSE): RMSE is more sensitive to large prediction errors and can effectively reflect the robustness of the model under extreme signal fluctuations.
- 2.
- Mean Absolute Error (MAE): MAE reflects the absolute average level of deviation between the predicted value and the actual value, and has a more intuitive physical meaning (unit: dBm).
- 3.
- Goodness of fit ( Score): is used to measure the extent to which the model explains the variance in the spatial distribution of RSRP. The closer is to 1, the more accurately the model can reproduce the true signal attenuation pattern through physical characteristics.where is the actual measured RSRP value, is the model prediction, is the mean of the actual measured values, and N is the total number of samples in the test set.
4. Experimental Results and Analysis
4.1. Experimental Environment and Data Acquisition
4.1.1. Description of Experimental Scenario
4.1.2. Hardware Platform and Measurement Equipment
- Drone Platform: The DJI Matrice 350 RTK drone, manufactured by SZ DJI Technology Co., Ltd., Shenzhen, Guangdong, China, is selected (as shown in Figure 1). This platform is equipped with advanced RTK (Real-Time Kinematic Carrier Phase Differential) positioning technology, capable of providing centimeter-level three-dimensional position accuracy, ensuring the accuracy of the three-dimensional geometric feature operators in Section 3.1.
- Data Collection Terminal: The onboard terminal is a Samsung mobile device integrated with the Google framework.
- Software Configuration: The terminal runs the professional-grade network drive test software G-Net Track Pro V7.0. This software is capable of extracting downlink RSRP (Reference Signal Received Power), cell ID (PCI), and GPS timestamps in real-time at a frequency of 1 Hz, providing a reliable foundation for subsequent data alignment.
4.1.3. Data Acquisition and Preprocessing
- Equipment: Use a Samsung mobile phone to set up G-Net Track Pro and attach the phone to the drone. Combine it with the longitude, latitude and altitude coordinates recorded by the M350 RTK to build the original dataset. The dataset recorded signals from the LTE network of China Telecom (Band 1, EARFCN: 1000) with a carrier frequency of 2.1 GHz. To ensure data consistency, UEs are locked to a specific serving cell (PCI: 103) and handoff events are eliminated. The UAV maintained a constant cruising speed of 5 m/s at all test altitudes: 70 m, 100 m, 120 m and 150 m to ensure controlled experimental conditions.
- Project anomaly cleaning: We handle some missing signals or sudden signal failures that cause inaccurate collected data. According to the statistical insights provided by Auer et al. [7] and Gustafson et al. [24], we use a threshold to identify and prune sampling outliers. Additionally, we manually review the signal logs to discard segments affected by unstable signal transitions, ensuring that the final training set accurately reflects stable propagation conditions in the 3D space.
- Spatial transformation: We performed a spatial transformation on the Shipaiwan dataset to convert raw GPS coordinates into relative Cartesian positions. The original GPS coordinates were converted from the base station as the origin to relative Cartesian coordinates. To strictly prevent the leakage of spatial data (Spatial Data Leakage), the final 8598 samples were divided into training set 80% and test set 20% according to the chronological order (temporal division).
- Coordinate projection accuracy: To ensure the spatial fidelity of distance features, we evaluated the projection error of the Equirectangular Projection (ERP) used in this study. The maximum horizontal range of the Macao Experimental Zone is approximately 1.5 km. Based on the standard WGS84 to ENU (East North Up) transformation, the maximum relative distance distortion at this scale and latitude (approximately 22° N) is less than 0.15 m. This confirms that the Euclidean distance derived from the projected coordinates is sufficiently accurate for UAV signal modeling, where the link budget tolerance is significantly greater than the geometric approximation error.
4.2. Experimental Setup and Evaluation Metrics
4.2.1. Data Preprocessing and Feature Construction
- 3D Logarithmic Attenuation Factor (): Recognizing that RSRP scales logarithmically with Euclidean separation, we calculate the 3D distance between the UAV and the BS as:Explicitly providing this log-scaled metric simplifies the XGBoost decision splitting process, effectively linearizing the fundamental power-law path loss.
- Geometric Elevation Proxy (): To account for the altitude-dependent variations in Line-of-Sight (LoS) probability [20], we define the ratio of altitude to horizontal distance:This ratio serves as a critical indicator for shadowing conditions, helping the model distinguish between unobstructed LoS and complex Non-Line-of-Sight (NLoS) propagation at different flight levels.
- Relative Spatial Offsets (): Instead of absolute GPS coordinates, we utilize Cartesian offsets relative to the BS. This localized coordinate system focuses the learning process on site-specific shadow fading patterns within the Shipaiwan area, preventing the model from becoming biased toward global position values.
4.2.2. Model Implementation and Parameter Settings
- 1.
- Random Forest (Baseline): We used this as a baseline model to evaluate basic predictability, without strong physical features or gradient boosting mechanisms. For parameter settings, we refer to the configuration of Sotiroudis et al. [25].
- 2.
- PIFE-XGBoost (Proposed): The core model proposed in this paper. Utilizing the XGBoost framework by Chen et al. [21], this model inputs physical perception features into the regressor. The key hyperparameters optimized through grid search are set as follows: the number of weak estimators () is set to 600; the maximum tree depth () is set to 10; and the learning rate () is set to 0.03.
- 3.
- XPBoost (Comparison): This is a hybrid model that combines gradient boosting with Gaussian Process (GP), and employs the Vecchia approximation proposed by Tang et al. [8] to accelerate the computation of spatial residuals. The model is set up to verify whether introducing complex spatial statistical models can bring greater performance gains compared to pure physical feature engineering.
4.2.3. Evaluation Metrics
4.3. Quantitative Performance Evaluation
4.3.1. Ablation Experiment
- 1.
- The experimental results show that the predictive performance from Group A to Group B did not exhibit the expected significant improvement. This phenomenon confirms the viewpoint of Shakya et al. [11], that tree models possess a powerful inherent feature-detection capability: at a sufficient depth, XGBoost can implicitly reconstruct the Euclidean distance from the original coordinates. This phenomenon is specific to simple geometric physical priors (e.g., 3D Euclidean distance, logarithmic distance) in Group B, which are low-dimensional and have clear linear correlations with signal attenuation, thus being easily inferred by the tree-splitting mechanism of XGBoost. At this point, introducing explicit distance features additionally becomes redundant. This also partly explains why Nagao et al. [12] were able to achieve a stable and fundamental foundation in the city structure extraction task solely based on coordinate information. In contrast, the complex nonlinear physical coupling features (e.g., the height–distance interaction term in Group C) involve the joint modulation of antenna gain and Fresnel zone clearance, which cannot be autonomously synthesized by the model from a single coordinate feature and must be explicitly constructed as physical informed inputs. The identical performance observed in Group A and Group B (Table 1) does not imply that physical features are redundant; rather, it indicates that simple geometric priors like 3D distance can be implicitly inferred by tree-based models from raw coordinates. However, the significant accuracy gain achieved by Group C confirms that our proposed PIFE framework captures complex, non-linear interaction terms (e.g., the scaling effect of flight altitude on path loss) that the model cannot autonomously learn from coordinates alone, thereby validating the necessity of physics-informed expert knowledge. To further investigate the specific contribution of these interaction terms and address the potential concerns regarding feature redundancy, a SHAP (SHapley Additive exPlanations) analysis was conducted for Group C, as shown in Figure 3. The SHAP results reveal that the interaction terms angle and h_dist_ratio rank as the second and fourth most influential features, respectively. This confirms that while the base distance (Group B) might be redundant for a well-trained XGBoost model, the structural interaction terms introduced in the PIFE framework provide essential non-linear priors that the model’s tree-splitting mechanism cannot autonomously synthesize from raw coordinates. This evidence directly supports the performance leap observed in Group C.
- 2.
- However, when the height–distance interaction term (Group C) is introduced, the model performance breaks the performance bottleneck. This strongly validates the viewpoint of Maeng et al. [16]: the model cannot spontaneously derive the physical modulation effect of antenna radiation patterns. The interaction term successfully injects this crucial prior knowledge, achieving a significant performance gain in accuracy. While the numerical increase in appears modest, its significance is underscored by the extremely low variance across cross-validation folds (Std. Dev. = 0.0007). This ensures that the PIFE-XGBoost model provides a deterministic rather than stochastic performance gain. Furthermore, the reduction in absolute error (MAE) provides higher reliability for real-time UAV flight control, where link budget precision is non-negotiable.
4.3.2. Robustness Validation
4.3.3. Comparative Analysis of Algorithm Performance
- 1.
- Analysis of the effectiveness of physical perception enhancement: PIFE-XGBoost achieves the lowest MAE at all height levels. Especially at a height of 120 m, its MAE drops to 0.92 dBm. This indicates that the introduction of physical perception features can effectively guide the gradient boosting tree to capture the propagation patterns of signals in three-dimensional space, and its performance is significantly better than traditional neural network models [15] and other adaptive path loss models (such as AMPLE [26]). It is worth noting that while Random Forest (RF) exhibits slightly higher values at 100 m and 150 m, PIFE-XGBoost consistently achieves the lowest Mean Absolute Error (MAE) across all tested height layers. The slightly lower of our model at 100 m and 150 m is due to the PIFE framework’s focus on fitting the absolute signal power (consistent with MAE) rather than minimizing the relative variance of predictions (corresponding to ), which is a deliberate design for UAV link budget optimization. In UAV wireless link modeling, MAE is considered a more decisive metric than as it reflects the absolute precision of signal power prediction, which is critical for link budget reliability. The slight advantage of RF in may stem from its bagging mechanism’s ability to smooth localized fluctuations, yet it lacks the absolute accuracy and physical interpretability provided by the PIFE framework. It aligns with the direction of interpretable modeling proposed by [11].
- 2.
- Impact of model complexity: Contrary to the commonly expected “complex models perform better” as stated by Sotiroudis et al. [25], XPBoost combined with Gaussian processes exhibits performance degradation. This result indicates that in the context of drone communication, the forced introduction of stationary Gaussian processes can lead to overfitting of local noise, similar to the generalization bottleneck that Kaur et al. [14] LSTM model may encounter when dealing with non-temporal spatial discrete points. Compared to the computationally expensive Kriging interpolation [27], PIFE-XGBoost achieves a better balance between efficiency and accuracy.
- 3.
- Quantitative Inference Latency: In addition to accuracy, we also measured the inference delay to verify the real-time performance of the model. The benchmarking was conducted on a high-performance host computer equipped with an Intel Core Ultra 9 185H CPU (16 cores, up to 5.1 GHz) and 16 GB of RAM. The experimental results show that the average inference time for each sample of PIFE XGBoost is 6.87 s. This microsecond-level response is several orders of magnitude faster than typical deep learning models, confirming that this model does not overfit to local noise and has strong efficiency for real-time drone applications.
- 4.
- Practical Performance Discussion Additionally, the Physical Feature Integration (PIFE) provides meaningful structural bias, which enhances the model’s spatial consistency within diverse aerial altitudes. To evaluate this, a Leave-One-Height-Out (LOHO) test was conducted by training the model on datasets from 70 m, 100 m, and 150 m and testing on the unseen 120 m altitude. This test specifically validates the model’s interpolation capability across the vertical dimension. As shown in Table 4, PIFE-XGBoost (Group C) achieved an of 0.6725 and an MAE of 1.3146 dBm. Compared to the baseline (Group A, = 0.6559), the proposed framework demonstrates improved local generalization and higher reliability in predicting signal behaviors at intermediate altitudes where empirical samples are unavailable.
- 5.
- Comparative Analysis with State-of-the-Art (SOTA) Models To further validate the effectiveness of the proposed framework, a comprehensive benchmark was performed on the full dataset. We compared PIFE-XGBoost with representative competitive models, including LightGBM and a data-driven MLP. For a rigorous and fair comparison, all models were evaluated under a standardized 10-fold cross-validation setup with consistent hyperparameters: the LightGBM model was trained with 600 boosting rounds and a learning rate of 0.03; the MLP contained two hidden layers (64 units per layer) optimized with the Adam algorithm; and the Baseline XGBoost shared the same hyperparameters as our proposed model but was limited to raw coordinate inputs only.
4.4. Model Interpretability Analysis
4.5. Visual Analysis
4.5.1. Regression Fitting Analysis
4.5.2. Spatial Distribution Reconstruction
Physical Consistency
Comparative Analysis
5. Conclusions and Future Work
5.1. Research Conclusions
- 1.
- Our PIFE-XGBoost model demonstrated superior predictive accuracy across all evaluation altitudes, peaking at 120 m with a Mean Absolute Error (MAE) of 0.92 dBm and an of 0.816. This performance marks a substantial improvement over the Random Forest baseline (MAE = 1.04 dBm), consistent with the altitude-dependent channel dynamics analyzed by Zhang et al. [20]. By integrating physical constraints as explicit features, the proposed method successfully decoupled the nonlinear interactions between flight height and 3D propagation distance, effectively capturing the gain variations of the antenna’s main lobe.
- 2.
- A comparative analysis with the Gaussian Process (GP)-enhanced XGBoost model shows that increasing model complexity does not yield better performance, but instead leads to performance degradation. At the height of 120 m, the error MAE even rises to 1.55 dBm. Although the Gaussian Process (GP) is theoretically suitable for processing spatially correlated signals, the visualization results show that it is prone to overfitting to local environmental noise in the complex dynamic 3D UAV flight environment, resulting in discontinuous and physically inconsistent predicted signal distributions. This also confirms the previous finding [8,25] that the more complex the model, the worse the generalization ability.
- 3.
- The analysis of feature importance indicates that the constructed height–distance interaction term contributes the most to the model’s prediction gain. This confirms that the model has successfully transitioned from “mechanical memory” of geographic coordinates to “understanding” of propagation physical mechanisms, aligning with the trustworthy AI criteria proposed by Gholami et al. [28] in 3D channel modeling. This transition ensures that the model maintains high robustness in high-altitude sparse sampling areas (such as 150 m), without the common performance collapse observed in purely data-driven models.
5.2. Future Outlook
5.2.1. Joint Modeling of Large-Scale Path Loss and Small-Scale Fading
5.2.2. Environmental Generalization Test
5.2.3. Real-Time Edge Deployment
5.2.4. Signal Perception and Trajectory Planning
Author Contributions
Funding
Institutional Review Board Statement
Informed Consent Statement
Data Availability Statement
Conflicts of Interest
References
- Geraci, G.; Garcia-Rodriguez, A.; Azari, M.M.; Lozano, A.; Mezzavilla, M.; Chatzinotas, S.; Chen, Y.; Rangan, S.; Di Renzo, M. What will the future of UAV cellular communications be? A flight from 5G to 6G. IEEE Commun. Surv. Tutor. 2022, 24, 1304–1335. [Google Scholar] [CrossRef]
- 3GPP. Study on enhanced LTE support for aerial vehicles. In Technical Report (TR) 36.777, V15.0.0, 3rd Generation Partnership Project (3GPP); 3GPP: Sophia Antipolis, France, 2017. [Google Scholar]
- Hao, H.; Xu, C.; Zhang, W.; Chen, X.; Yang, S.; Muntean, G.-M. Reliability-Aware Optimization of Task Offloading for UAV-Assisted Edge Computing. IEEE Trans. Comput. 2025, 74, 3832–3844. [Google Scholar] [CrossRef]
- 3GPP. Study on channel model for frequencies from 0.5 to 100 GHz. In Technical Report (TR) 38.901, V16.1.0, 3rd Generation Partnership Project (3GPP); 3GPP: Sophia Antipolis, France, 2019. [Google Scholar]
- Mozaffari, M.; Saad, W.; Bennis, M.; Nam, Y.H.; Debbah, M. A tutorial on UAVs for wireless networks: Applications, challenges, and open problems. IEEE Commun. Surv. Tutor. 2019, 21, 2334–2360. [Google Scholar] [CrossRef]
- Khuwaja, A.A.; Chen, Y.; Zhao, N.; Alouini, M.S.; Dobbins, P. A survey of channel modeling for UAV communications. IEEE Commun. Surv. Tutor. 2018, 20, 2804–2821. [Google Scholar] [CrossRef]
- Auer, S.; Zhu, X.; Hinz, S.; Bamler, R. 3D analysis of scattering effects based on Ray Tracing techniques. In Proceedings of the 2009 IEEE International Geoscience and Remote Sensing Symposium; IEEE: Piscataway, NJ, USA, 2009; Volume 3, pp. III-17–III-20. [Google Scholar]
- Tang, Z.; Zhao, H.; Zhang, J.; Wu, H.; Wang, J. Digital twin-enabled task-driven UAV communications under uncertainty. IEEE Trans. Veh. Technol. 2025, 74, 8454–8459. [Google Scholar]
- Sani, U.S.; Malik, O.A.; Lai, D.T.C. Improving Path Loss Prediction Using Environmental Feature Extraction from Satellite Images: Hand-Crafted vs. Convolutional Neural Network. Appl. Sci. 2022, 12, 7685. [Google Scholar] [CrossRef]
- Zhang, J.; Liu, Y.; Wang, X. Transformer-Based Air-to-Ground mmWave Channel Characteristics Prediction for 6G UAV Communications. Sensors 2025, 25, 3731. [Google Scholar]
- Shakya, I.L.; Rezazadeh, F.; Chergui, H.; Verikoukis, C. Explainable AI in 6G O-RAN: A tutorial and survey on architecture, use cases, challenges, and future research. IEEE Commun. Surv. Tutor. 2024, 26, 2489–2535. [Google Scholar]
- Nagao, T.; Hayashi, T. A study on urban structure map extraction for radio propagation prediction using XGBoost. In Proceedings of the 15th European Conference on Antennas and Propagation (EuCAP), Dusseldorf, Germany, 22–26 March 2021; IEEE: Piscataway, NJ, USA, 2021; pp. 1–5. [Google Scholar]
- Al-Hourani, A.; Kandeepan, S.; Lardner, S. Optimal LAP altitude for maximum coverage. IEEE Wirel. Commun. Lett. 2014, 3, 569–572. [Google Scholar] [CrossRef]
- Kaur, G.; Goyal, R.K.; Mehta, R. An efficient handover mechanism for 5G networks using hybridization of LSTM and SVM. Multimedia Tools Appl. 2022, 81, 37057–37085. [Google Scholar] [CrossRef]
- Ostlin, E.; Zepernick, H.J.; Suzuki, H. Macrocell path-loss prediction using artificial neural networks. IEEE Trans. Veh. Technol. 2010, 59, 2735–2747. [Google Scholar] [CrossRef]
- Maeng, S.J.; Kwon, H.; Ozdemir, O.; Guvenc, I. Impact of 3-D antenna radiation pattern in UAV air-to-ground path loss modeling and RSRP-based localization in rural area. IEEE Open J. Antennas Propag. 2023, 4, 124–138. [Google Scholar] [CrossRef]
- Zeng, Y.; Zhang, R.; Lim, T.J. Energy-efficient UAV communication with trajectory optimization. IEEE Trans. Wirel. Commun. 2017, 16, 3747–3760. [Google Scholar] [CrossRef]
- Al-Hourani, A.; Gomez, K.; Kandeepan, S. Modeling cellular-to-UAV path-loss for suburban environments. IEEE Wirel. Commun. Lett. 2018, 7, 82–85. [Google Scholar] [CrossRef]
- Hata, M. Empirical formula for propagation loss in land mobile radio services. IEEE Trans. Veh. Technol. 2010, 29, 317–325. [Google Scholar] [CrossRef]
- Zhang, X.; Andrews, J.G. Downlink cellular network analysis with multi-slope path loss models. IEEE Trans. Commun. 2015, 63, 1881–1894. [Google Scholar] [CrossRef]
- Chen, T.; Guestrin, C. XGBoost: A scalable tree boosting system. In Proceedings of the 22nd ACM SIGKDD International Conference on Knowledge Discovery and Data Mining, San Francisco, CA, USA, 13–17 August 2016; Association for Computing Machinery: New York, NY, USA, 2016; pp. 785–794. [Google Scholar]
- Saad, W.; Bennis, M.; Chen, M. A vision of 6G wireless systems: Applications, trends, technologies, and open research problems. IEEE Netw. 2020, 34, 134–142. [Google Scholar] [CrossRef]
- Matolak, D.W.; Sun, R. Air-ground channel characterization for unmanned aircraft systems—Part I: Methods, measurements, and models for over-water settings. IEEE Trans. Veh. Technol. 2017, 66, 26–44. [Google Scholar] [CrossRef]
- Gustafson, C.; Abbas, T.; Bolin, D.; Tufvesson, F. Statistical modeling and estimation of censored pathloss data. IEEE Wirel. Commun. Lett. 2015, 4, 569–572. [Google Scholar] [CrossRef]
- Sotiroudis, S.P.; Goudos, S.K.; Siakavara, K. Neural networks and random forests: A comparison regarding prediction of propagation path loss for NB-IoT networks. In Proceedings of the 8th International Conference on Modern Circuits and Systems Technologies (MOCAST), Thessaloniki, Greece, 13–15 May 2019; IEEE: Piscataway, NJ, USA, 2019; pp. 1–4. [Google Scholar]
- Zhou, L.; Zhang, J.; Zhang, J.; Cetinkaya, O.; Jubb, S.A. AMPLE: An adaptive multiple path loss exponent radio propagation model considering environmental factors. IEEE Trans. Veh. Technol. 2025, 74, 3395–3408. [Google Scholar] [CrossRef]
- Yamada, S.; Fujii, T. Performance analysis of 3D radio environment mapping with path classification and Kriging. In Proceedings of the IEEE Consumer Communications and Networking Conference (CCNC), Las Vegas, NV, USA, 10–13 January 2025; IEEE: Piscataway, NJ, USA, 2025; pp. 1–6. [Google Scholar]
- Gholami, L.; Ducange, P.; Gotta, A.; Cassará, P. Leveraging explainable AI for 3D geometry-based channel status prediction in UAV-assisted communication networks. IEEE Open J. Commun. Soc. 2025, 6, 885–899. [Google Scholar] [CrossRef]
- Rekkas, V.P.; Sotiroudis, S.P.; Zaharis, Z.D.; Koudouridis, G.P.; Sarigiannidis, P.; Karagiannidis, G.K.; Christodoulou, C.G.; Goudos, S.K. Machine learning based radio environment maps for 4G/5G networks. IEEE Trans. Antennas Propag. 2025, 73, 10529–10543. [Google Scholar] [CrossRef]
- Chen, X.; Zhong, X.; Zhang, Z.; Dai, L.; Zhou, S. High-efficiency urban 3D radio map estimation based on sparse measurements. IEEE Trans. Veh. Technol. 2025, 74, 16488–16503. [Google Scholar] [CrossRef]
- Purucker, P.; Reil, C.; Höß, A.; Schuller, B.W. Deep neural quality of service prediction for unmanned aircraft system communications. In Proceedings of the International Wireless Communications and Mobile Computing Conference (IWCMC), Ayia Napa, Cyprus, 27–31 May 2024; IEEE: Piscataway, NJ, USA, 2024; pp. 605–610. [Google Scholar]
- Shibli, A.; Zanouda, T. Data-driven radio environment map estimation using graph neural networks. In Proceedings of the IEEE ICC Workshops, Denver, CO, USA, 8–12 June 2024; IEEE: Piscataway, NJ, USA, 2024; pp. 1–6. [Google Scholar]
- Tonchev, K.; Ivanov, A.; Neshov, N.; Manolova, A.; Poulkov, V. Learning graph convolutional neural networks to predict radio environment maps. In Proceedings of the 25th International Symposium on Wireless Personal Multimedia Communications (WPMC), Heraklion, Greece, 30 October–2 November 2022; IEEE: Piscataway, NJ, USA, 2022; pp. 60–65. [Google Scholar]






| Experimental Group | RMSE (dBm) | MAE (dBm) | |
|---|---|---|---|
| Group A (Baseline) | 0.7188 | 2.1789 | 1.3526 |
| Group B (Basic Physics) | 0.7188 | 2.1789 | 1.3526 |
| Group C (Proposed PIFE) | 0.7243 | 2.1573 | 1.3373 |
| Fold Index | Baseline XGBoost (MAE) | PIFE-XGBoost (Proposed) | Improvement |
|---|---|---|---|
| Fold 1 | 1.3462 | 1.2085 | 10.20% |
| Fold 2 | 1.3969 | 1.2595 | 9.80% |
| Fold 3 | 1.2569 | 1.1107 | 11.60% |
| Fold 4 | 1.4518 | 1.2432 | 14.30% |
| Fold 5 | 1.3726 | 1.1896 | 13.30% |
| Fold 6 | 1.2855 | 1.1152 | 13.20% |
| Fold 7 | 1.3780 | 1.2265 | 11.00% |
| Fold 8 | 1.3740 | 1.1907 | 13.30% |
| Fold 9 | 1.3512 | 1.2132 | 10.20% |
| Fold 10 | 1.3459 | 1.2001 | 10.80% |
| Average | 1.3559 | 1.1957 | 11.80% |
| p-value | - | Significant |
| Height | Metric | Random Forest | PIFE-XGBoost | XPBoost (w/GP) |
|---|---|---|---|---|
| 70 m | 0.842 | 0.843 | 0.813 | |
| MAE (dBm) | 1.28 | 1.15 | 1.67 | |
| 100 m | 0.661 | 0.625 | 0.518 | |
| MAE (dBm) | 1.52 | 1.45 | 1.97 | |
| 120 m | 0.806 | 0.816 | 0.605 | |
| MAE (dBm) | 1.04 | 0.92 | 1.55 | |
| 150 m | 0.648 | 0.636 | 0.577 | |
| MAE (dBm) | 1.32 | 1.28 | 1.71 |
| Model Group | MAE (dBm) | RMSE (dBm) | |
|---|---|---|---|
| Group A (Baseline) | 0.6559 | 1.3400 | 1.8392 |
| Group C (Proposed PIFE) | 0.6725 | 1.3146 | 1.7944 |
| Model | Type | Avg. | Avg. MAE (dBm) | Latency (s) |
|---|---|---|---|---|
| PIFE-XGBoost (Proposed) | Proposed | 0.7682 | 1.1957 | 6.867 |
| Baseline XGBoost | Ablation | 0.7594 | 1.3359 | 5.711 |
| LightGBM | SOTA Tree | 0.6788 | 1.6303 | 6.195 |
| MLP (Deep Learning) | SOTA DL | 0.4122 | 2.3207 | 0.721 |
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. |
© 2026 by the authors. Licensee MDPI, Basel, Switzerland. This article is an open access article distributed under the terms and conditions of the Creative Commons Attribution (CC BY) license.
Share and Cite
Liu, L.; Wang, Y.; Yang, X.; Im, S.-K.; Cheng, X.; Huang, L.; Chen, J.; Guan, H. Research on UAV 3D Airspace Signal Strength Prediction Based on Physical Perception Feature Engineering. Mathematics 2026, 14, 1399. https://doi.org/10.3390/math14081399
Liu L, Wang Y, Yang X, Im S-K, Cheng X, Huang L, Chen J, Guan H. Research on UAV 3D Airspace Signal Strength Prediction Based on Physical Perception Feature Engineering. Mathematics. 2026; 14(8):1399. https://doi.org/10.3390/math14081399
Chicago/Turabian StyleLiu, Long, Yapeng Wang, Xu Yang, Sio-Kei Im, Xuan Cheng, Lu Huang, Jiaqi Chen, and Heng Guan. 2026. "Research on UAV 3D Airspace Signal Strength Prediction Based on Physical Perception Feature Engineering" Mathematics 14, no. 8: 1399. https://doi.org/10.3390/math14081399
APA StyleLiu, L., Wang, Y., Yang, X., Im, S.-K., Cheng, X., Huang, L., Chen, J., & Guan, H. (2026). Research on UAV 3D Airspace Signal Strength Prediction Based on Physical Perception Feature Engineering. Mathematics, 14(8), 1399. https://doi.org/10.3390/math14081399

