Abstract
This study explores the predictive capabilities of Convolutional Neural Networks (CNNs) in modeling urban heat distributions, focusing on the Urban Heat Island (UHI) effect in San Francisco. Leveraging high-resolution rasterized temperature data from the Urban Heat Watch Program and urban morphological data, the research employs a CNN model to predict microscale temperature variations across 212 subgrids and 3 times of day in the city. The model incorporates features such as building height and baseline rural temperature data to predict the temperature of each 10m x 10m cell. The model achieved a Mean Squared Error of 0.0216 in the normalized scale, far above other baseline machine learning models, demonstrating a promising proficiency in capturing the relationships between urban form and microclimatic variations. This research not only substantiates the potential of deep learning in predicting UHI effects in a lightweight and straightforward package for urban planners but also paves the way for future studies to explore and enhance the model’s applicability and accuracy across diverse urban contexts.
Introduction
As the world’s population continues to increase, urbanization is increasingly prevalent1, with over 50% of the world’s population residing in cities2 and some estimates projecting growth in urban area by over one million kilometers by 20303. Consequences of urban development, such as anthropogenic heat, impervious surfaces, and lack of vegetative cover4,5, fuel what is known as the Urban Heat Island (UHI) effect, where higher temperatures in urban settings are present compared to surrounding rural and suburban areas, thus creating “islands” of heat6. With this expansion, the effects of UHIs have become an increasingly prevalent factor in urban planning and academic research7.
Especially important as global warming continues to drive temperatures up across the world, and further exacerbated by heat islands, the base impact of increased temperatures is itself damaging. Extreme heat results in fatalities through factors such as heatstroke8 and cardiovascular disease9, and whether in Athens10, Shanghai11, or Ho Chi Minh City12, studies consistently link deteriorating health and deaths across the world to the heat island effect13. Furthermore, subgroups such as Black people, women, those of lower socioeconomic status, the elderly, and young children are disproportionally affected by heat9,14, underscoring the urgency of working to resolve the issue.
The pervasive effect of UHIs also dramatically impacts local meteorology, human lives, and animals. One particularly harmful impact is an increased concentration of airborne pollutants15, leading to effects ranging from economic losses to death, with over 6.4 million deaths worldwide in 2015 attributed to air pollution16. UHIs also alter the process of natural selection17, which is extremely damaging to local ecosystems in these cities. Ironically, urban heat is also self-perpetuating; through greater adoption of air conditioning units, refrigerants with 2,000 times the global warming potential as carbon dioxide18 are emitted, resulting in a cyclic worsening of this effect.
To potentially aid solutions around policy and urban planning to mitigate this effect, this study aims to develop a machine-learning platform to predict temperatures at a fine granularity in cities due to easily gatherable features such as building footprints, zoning, water features, and roads. Compared to traditional simulation programs such as UMEP-SOLWEIGH19 and ENVI-MET20, such a data-driven approach requires less data and reduces the need for expert knowledge that can lead to human error21. Machine learning techniques such as regression22, artificial neural networks23, dense neural networks21, and random forests24,4 have been used to predict varying related metrics, such as UHI intensity, but these models often inherently do not take into account spatiality and thus cannot accurately predict the exact distribution of temperatures throughout the target area. For example, a study determining the most influential factors in the UHI effect by Yoo4 uses a random forest algorithm built on decision trees and thus cannot consider spatial factors (such as the proximity of buildings). Thus, it is evident that a gap exists in considering these factors, which this paper aims to help fill.
Methods
Data Acquisition and Preprocessing
Temperature data across various zones in San Francisco was meticulously gathered by the Urban Heat Watch (UHW) Program on September 2nd, 202225. The program modeled gridded heatmaps with a fine granularity of 10 meters by 10 meters, capturing traverse measurements during distinct time intervals: morning (6-7 am), afternoon (3-4 pm), and evening (7-8 pm), resulting in three unique heatmaps. We divide each heatmap into 212 “zones”, each of size 640 meters by 640 meters, resulting in a total of 636 subgrids when considering all time intervals. To facilitate model training and interpretation of predictions, temperature values were normalized between 0 and 1 with 0.5 representing the average temperature.
Building footprint data, including building heights from Microsoft26, and OpenStreetMap data27, which encapsulates categories such as land use, bodies of water, natural features, and roads, were extracted for each subgrid. Each 10m x 10m cell within a subgrid was annotated for land use type (e.g., residential,
commercial), presence of water (e.g., lakes, ponds), natural features (e.g., scrub, rock), and road types (e.g., highway, side road). Additionally, each cell was assigned a height corresponding to the tallest building within its bounds, or zero if no building was present.
A crucial aspect of our model’s input involves integrating a reference temperature28 from a rural location, specifically Moss Beach, CA. This inclusion is pivotal for establishing a baseline temperature, representing what the temperature in San Francisco might have been without urbanization. Moss Beach was selected as the reference station adhering to the World Meteorological Organization’s guidelines, which advocate for a location embedded in relatively flat terrain and exhibiting rural characteristics21. Furthermore, its coastal nature, proximity to open spaces, and location approximately 20 miles south of San Francisco mirror some of the geographical and meteorological aspects of San Francisco, thereby making it a pertinent baseline for our study. The reference temperature from Moss Beach is incorporated into the model, aiding it in discerning the urban heat island effect by providing a comparative rural temperature metric against the urban temperatures observed in San Francisco.
The extensive data available in San Francisco minimized the impact of missing and erroneous data. Nevertheless, we encountered limited instances of missing data, particularly in the UHW dataset. In these cases, we applied mean/median imputation, standard for handling such gaps in a data-driven manner. Furthermore, both the UHW and Microsoft Building Footprints datasets included mechanisms to flag questionable entries, which we subsequently excluded from our analysis. Additionally, we conducted a thorough manual verification of the OpenStreetMap data, particularly focusing on green spaces and tree coverage, and found these data to be accurate and reliable. It is important to note that our modeling approach, including data augmentation and regularization as described below, heavily mitigates the impact of minor data inaccuracies.
Data Augmentation
We also employed data augmentation techniques to enhance the robustness of our model and ensure it generalizes well to unseen data. Each subgrid, along with its associated feature maps (e.g., heights, bodies of water), was spatially rotated by 90, 180, and 270 degrees, and these rotated grids were added to the dataset. This approach not only quadrupled our dataset size but also enabled the model to learn invariant features regardless of their orientation in the input space.
Augmented data was randomly selected for manual inspection and found to be as expected. The rotated feature maps still represent plausible urban scenarios, as similar configurations of buildings, green spaces, and roads could occur in different configurations in real-world settings. Furthermore, the model was evaluated on an independent test set not exposed to the augmentation process, ensuring that the model’s predictive accuracy and generalizability were not compromised by the inclusion of augmented data. The consistent performance of the model on this untouched test set shows that the spatial rotation of data, as part of our augmentation strategy, did not noticeably artificially inflate the model’s efficacy or introduce systematic biases.
Model Architecture
A Convolutional Neural Network (CNN) was employed for its unparalleled ability to discern and learn spatial patterns within the data, an essential feature for analyzing urban environments. CNNs excel in processing two-dimensional data and capturing local spatial relationships and hierarchies, which are crucial in understanding the complex dynamics of urban heat distributions. Their effectiveness in this domain is well-documented in recent literature, with successful applications in classifying functional zoning at a fine scale29, identifying urban features such as buildings and roads30, and analyzing vegetation cover and properties31. Compared to other architectures like Dense Neural Networks or Random Forests, CNNs offer a more direct and efficient method for processing spatial data without extensive feature engineering. While preliminary exploration of alternative architectures was considered, the decision to use a CNN was ultimately guided by its proven track record in similar studies and its inherent suitability for the spatial nature of our data.
In the context of our CNN, each subgrid is treated as an input feature map, where the various urban characteristics serve as channels of information that the network leverages to comprehend and predict temperature distributions. The CNN scans through each cell and its neighbors, identifying localized patterns and relationships between urban features and temperature.
The architecture of the CNN was designed with multiple input layers to accommodate the diverse feature maps and additional variables. Each spatial input was passed through a dedicated CNN block, consisting of convolutional and max-pooling layers, to extract pertinent spatial features. These extracted features were then flattened and concatenated with non-spatial inputs, such as the time of day and a reference temperature from Moss Beach, CA. The concatenated features were passed through dense layers, reshaped into a grid structure, and finally, through an output layer to predict the final 64×64 temperature grid.
Model Training and Evaluation
The model was compiled using the Adam optimizer and Mean Squared Error (MSE) as the loss function, given the regression nature of the task. It was trained over 100 epochs with a batch size of 32, using 80% of the data for training and validating on 20%. The model was then evaluated on a separate test set, ensuring an unbiased assessment of its predictive capabilities.
To address overfitting, we implemented regularization techniques and employed data augmentation strategies, such as spatial rotations of input grids. Underfitting was mitigated by iteratively increasing the model complexity through additional layers and neurons, ensuring the model was sufficiently expressive to capture the nuanced relationships inherent in the urban heat data. By examining the low training and testing error, it is clear that these strategies prevailed, and no significant issues with model fit were present.
Results
CNN Results, Metrics
This study focuses on two key metrics: normalized Mean Squared Error (MSE), and unscaled Root Mean Squared Error (RMSE).
The MSE metric allows us to assess how well the model captures the relative distribution of temperatures. This is particularly important for urban planners interested in understanding spatial temperature patterns rather than absolute temperature values. For example, when considering the impact of adding green spaces or altering zoning regulations, the relative differences in temperature distribution are more informative than the exact temperature values. As our temperature data is scaled between 0 and 1, the normalized MSE of 0.00216 indicates that the relative difference between temperature predictions was only off by 0.22%.
The unscaled RMSE metric provides a more direct figure; the temperature data is returned to its pre-normalized state (degrees Fahrenheit), and so RMSE represents how far the model’s predictions were from the true temperature values. The unscaled RMSE indicates that the model’s predictions were, on average, just 0.214 degrees Fahrenheit units away from the actual values, a figure that is easily understandable by policymakers and other stakeholders.
The low MSE and RMSE values suggest that the model can accurately predict temperature distributions based on the provided urban features and reference temperature, supporting the hypothesis that these variables can be utilized to predict urban heat distributions.
Architecture | MSE (Normalized) | RMSE (Unscaled) |
Convolutional Neural Network (CNN) | 2.16 × 10-3 | 2.14 × 10-1 |
Random Forest Regressor (RF) | 2.45 × 10-3 | 2.29 × 10-1 |
Decision Tree Regressor (DT) | 4.55 × 10-3 | 3.12 × 10-1 |
Principal Component Regression (PCR) | 5.75 × 10-2 | 1.11 |
Multi-Layer Perceptron (MLP) | 5.82 × 10-2 | 1.11 |
K-Nearest-Neighbors Regression (k-NN) | 6.77 × 10-2 | 1.20 |
Linear Regression (LR) | 2.23 × 10-2 | 2.18 × 1011 |
Baseline Comparison Outline
No existing studies precisely replicate our task of predicting micro-scale temperatures influenced by the urban heat island effect using spatial features. This unique challenge necessitates a comparative evaluation of our Convolutional Neural Network (CNN) approach against a diverse range of potential machine learning architectures to underscore its effectiveness. We have selected six widely used models as baselines: Multi-layer Perceptron (MLP), Support Vector Machine (SVM), Random Forest (RF), Linear Regression (LR), k-Nearest Neighbors (k-NN), and Decision Trees (DT). The choice of MLP allows us to demonstrate the advantages of CNN over more basic neural network structures, particularly in handling spatially structured data. LR provides a contrast from the perspective of powerful linear and non-linear approaches that require the transformation of spatial data. Random Forest and Decision Trees, as representatives of ensemble and tree-based methods, offer insights into how traditional machine learning models perform on this complex spatial prediction task. k-NN is included to explore the efficacy of instance-based learning in capturing local spatial patterns. Through these comparisons, we aim to highlight the specific strengths of CNNs in capturing and interpreting the intricate spatial relationships crucial for accurate micro-scale temperature prediction in urban environments.
Baseline Comparisons
All baseline models were trained with a flattened transformation of the original dataset, as they are unable to take into account spatial factors like the CNN. As expected, the CNN outperformed all other models, confirming its superior ability to capture spatial relationships embedded in the dataset.
Following closely behind, RF performed well despite its lack of explicit spatial awareness. Its performance suggests that ensemble methods can serve as alternatives for this spatial analysis task, but also reinforces the precision of a well-tuned CNN.
DT and MLP models reported significantly higher errors, likely due to difficulty in managing the dataset’s complexity without CNN-like spatial processing capability. PCR and KNN performed modestly well, indicating that these methods, while they can reduce dimensionality or capture local similarities, they are likely inadequate alone for dealing with the high complexity of spatial data involved in temperature predictions.
Linear regression, unsurprisingly, as the most naive model selection, performed extremely poorly, with an RMSE indicating that predictions were billions of degrees off from the true temperature values. The data contained non-linear, complex spatial relationships which were a significant mismatch with the model’s assumptions (linearity).
Discussion
The results align with the initial hypothesis that urban features, when integrated with machine learning models, can effectively predict spatial temperature distributions. This alignment is particularly evident in the model’s ability to discern and learn from the complex, multi-dimensional data, thereby providing predictions that closely mirror the actual temperature distributions recorded by the Urban Heat Watch Program. Comparatively, our findings echo the sentiments of previous studies that have identified a tangible link between urban structures and localized temperature anomalies, further solidifying the foundational understanding that urban planning and design are pivotal in managing urban thermal environments.
A critical theme emanating from the findings is the potential for utilizing such predictive models in urban planning and policy-making to mitigate UHI effects. The model’s ability to accurately predict temperatures based on urban features and a reference temperature suggests that urban planners and policymakers can leverage such technologies to simulate and evaluate the potential impact of various urban design strategies on localized temperatures. This could guide the development of urban spaces that are functionally efficient and thermally comfortable, especially in the context of a warming climate.
While our model demonstrates a robust predictive capability, it is imperative to juxtapose these findings against prior studies. Some research in the domain has leaned heavily into the physical aspects of urban planning, such as green spaces and building materials, to understand and mitigate UHI effects. Our model, which integrates a myriad of urban features into a predictive framework, adds a computational lens to this narrative, suggesting that digital simulations can serve as a viable tool in understanding and potentially mitigating UHI effects.
The practical implementation of our model in urban planning and policy-making contexts does pose certain challenges that need to be acknowledged and addressed. The foremost challenge lies in the realm of data quality: the model’s predictive accuracy is contingent upon the precision and completeness of urban data inputs, such as building footprints and land use details, and usage by real-world planners could result in failure to reduce urban heat if data is not properly vetted or acquired. While the model incorporates a degree of robustness to mitigate the impact of suboptimal data quality, the integrity of input data remains a critical factor, and manual verification of the data will be necessary. Moreover, the process of assembling and processing these extensive datasets can be resource-intensive, demanding above-average time and computational power, which may exceed the typical resources of urban planning departments. It is important to note, however, that the technical setup of the model itself is relatively straightforward; for the hundreds of cities covered by the Urban Heat Watch Program, only the city parameter must be changed for the model to adapt to any location. Thus, the model can run as a “black box” that requires little to no expert intervention to generate results. With appropriate support and resources, including leveraging widely available cloud computation, these hurdles can be effectively and readily overcome. Ultimately, it is crucial to verify the input and output of the model and avoid solely relying on its projections in a vacuum.
Though the authors face time and computational limitations in incorporating all possible features, future research could explore the integration of dynamic meteorological variables, like transient weather patterns or long-term climatic changes, into the model, providing a more holistic and overall more accurate predictive tool by considering additional features. Additionally, exploring the model’s applicability and accuracy in different urban contexts and climates could provide valuable insights into its generalizability and potential for global applicability. Even without these additional features, this study still achieves its purpose of demonstrating a promising base for other studies to build upon in forecasting urban heat.
Conclusion
The exploration into the predictive capabilities of Convolutional Neural Networks (CNNs) in forecasting urban heat distributions has unveiled a potent tool that intertwines urban morphology and microclimatic variations. Our model, substantiated by its low error metrics, not only affirms the hypothesis that urban features can be pivotal predictors of localized temperature patterns but also underscores the potential of computational models in advancing our understanding and management of Urban Heat Island (UHI) effects. The findings provide a digital framework that can simulate, analyze, and potentially mitigate the thermal implications of various urban design strategies. One especially relevant use of this model is in urban planning, where departments on a local to national level could leverage this tool to advise them in creating thermally amiable layouts in terms of zoning, building heights, infastructure, and many more factors.
Moving forward, augmenting the model by integrating dynamic meteorological variables is imperative, thereby enhancing its predictive accuracy and temporal adaptability, as well as allowing for more factors to be considered by planners. Future studies should also explore the model’s applicability across diverse urban and climatic contexts, ensuring its robustness and generalizability in a global scenario. Moreover, synthesizing such predictive models with practical urban planning and policy-making will be pivotal, guiding the development of both thermally comfortable and environmentally sustainable urban spaces. Ultimately, this study shows that a combination of computational modeling and pragmatic urban development by policymakers can serve to mitigate UHI effects and foster urban futures safer for humans and animals alike.
Acknowledgements
Map data copyrighted OpenStreetMap contributors and available from https://www.openstreetmap.org
References
- Beckline, M. (2017). Perspectives of remote sensing and GIS applications in tropical forest management. American Journal of Agriculture and Forestry, 5(3), 33. https://doi.org/10.11648/j.ajaf.20170503.11 [↩]
- Jansson, Å. (2013). Reaching for a sustainable, resilient urban future using the lens of ecosystem services. Ecological Economics, 86(2013), 285-291. https://doi.org/10.1016/j.ecolecon.2012.06.013 [↩]
- Foley, J. A., DeFries, R., Asner, G. P., Barford, C., Bonan, G., Carpenter, S. R., Chapin, F. S., Coe, M. T., Daily, G. C., Gibbs, H. K., Helkowski, J. H., Holloway, T., Howard, E. A., Kucharik, C. J., Monfreda, C., Patz, J. A., Prentice, I. C., Ramankutty, N., & Snyder, P. K. (2005). Global consequences of land use. Science, 309(5734), 570-574. https://doi.org/10.1126/science.1111772 [↩]
- Yoo, S. (2018). Investigating important urban characteristics in the formation of urban heat islands: A machine learning approach. Journal of Big Data, 5(1). https://doi.org/10.1186/s40537-018-0113-z [↩] [↩] [↩]
- Myrup, L. O. (1969). A numerical model of the urban heat island. Journal of Applied Meteorology, 8(6), 908-918. [↩]
- Santamouris, M. (2015). Analyzing the heat island magnitude and characteristics in one hundred asian and australian cities and regions. Science of the Total Environment, 512-513, 582-598. https://doi.org/10.1016/j.scitotenv.2015.01.060 [↩]
- Kleerekoper, L., van Esch, M., & Salcedo, T. B. (2012). How to make a city climate-proof, addressing the urban heat island effect. Resources, Conservation and Recycling, 64, 30-38. https://doi.org/10.1016/j.resconrec.2011.06.004 [↩]
- Doyon, B., Bélanger, D., & Gosselin, P. (2008). The potential impact of climate change on annual and seasonal mortality for three cities in québec, canada. International Journal of Health Geographics, 7(1). https://doi.org/10.1186/1476-072x-7-23 [↩]
- Basu, R. (2009). High ambient temperature and mortality: A review of epidemiologic studies from 2001 to 2008. Environmental Health, 8(1). https://doi.org/10.1186/1476-069x-8-40 [↩] [↩]
- Paravantis, J., Santamouris, M., Cartalis, C., Efthymiou, C., & Kontoulis, N. (2017). Mortality associated with high ambient temperatures, heatwaves, and the urban heat island in athens, greece. Sustainability, 9(4), 606. https://doi.org/10.3390/su9040606 [↩]
- Tan, J., Zheng, Y., Tang, X., Guo, C., Li, L., Song, G., Zhen, X., Yuan, D., Kalkstein, A. J., Li, F., & Chen, H. (2009). The urban heat island and its impact on heat waves and human health in shanghai. International Journal of Biometeorology, 54(1), 75-84. https://doi.org/10.1007/s00484-009-0256-x [↩]
- Dang, T. N., Van, D. Q., Kusaka, H., Seposo, X. T., & Honda, Y. (2018). Green space and deaths attributable to the urban heat island effect in ho chi minh city. American Journal of Public Health, 108(S2), S137-S143. https://doi.org/10.2105/ajph.2017.304123 [↩]
- Wong, K. V., Paddon, A., & Jimenez, A. (2013). Review of world urban heat islands: Many linked to increased mortality. Journal of Energy Resources Technology, 135(2). https://doi.org/10.1115/1.4023176 [↩]
- Hsu, A., Sheriff, G., Chakraborty, T., & Manya, D. (2021). Disproportionate exposure to urban heat island intensity across major US cities. Nature Communications, 12(1). https://doi.org/10.1038/s41467-021-22799-5 [↩]
- U.S. Department of Energy. (2009, November 14). Assessment of International Urban Heat Island Research (Navigant Consulting, Author). [↩]
- Landrigan, P. J. (2017). Air pollution and health. The Lancet Public Health, 2(1), e4-e5. https://doi.org/10.1016/s2468-2667(16)30023-8 [↩]
- Shochat, E., Warren, P., Faeth, S., McIntyre, N., & Hope, D. (2006). From patterns to emerging processes in mechanistic urban ecology. Trends in Ecology & Evolution, 21(4), 186-191. https://doi.org/10.1016/j.tree.2005.11.019 [↩]
- National Renewable Energy Laboratory. (2022, March 14). News Release: Scientists Show Large Impact of Controlling Humidity on Greenhouse Gas Emissions. https://www.nrel.gov/news/press/2022/nrel-shows-impact-of-controlling-humidity-on-greenhouse-gas-emissions.html [↩]
- Lindberg, F., Grimmond, C., Gabey, A., Huang, B., Kent, C. W., Sun, T., Theeuwes, N. E., Järvi, L., Ward, H. C., Capel-Timms, I., Chang, Y., Jonsson, P., Krave, N., Liu, D., Meyer, D., Olofson, K. F. G., Tan, J., Wästberg, D., Xue, L., & Zhang, Z. (2018). Urban multi-scale environmental predictor (UMEP): An integrated tool for city-based climate services. Environmental Modelling & Software, 99, 70-87. https://doi.org/10.1016/j.envsoft.2017.09.020 [↩]
- Taleghani, M., Sailor, D., & Ban-Weiss, G. A. (2016). Micrometeorological simulations to predict the impacts of heat mitigation strategies on pedestrian thermal comfort in a los angeles neighborhood. Environmental Research Letters, 11(2), 024003. https://doi.org/10.1088/1748-9326/11/2/024003 [↩]
- Oh, J. W., Ngarambe, J., Duhirwe, P. N., Yun, G. Y., & Santamouris, M. (2020). Using deep-learning to forecast the magnitude and characteristics of urban heat island in seoul korea. Scientific Reports, 10(1). https://doi.org/10.1038/s41598-020-60632-z [↩] [↩] [↩]
- Su, Y.-F., Foody, G. M., & Cheng, K.-S. (2012). Spatial non-stationarity in the relationships between land cover and surface temperature in an urban heat island and its impacts on thermally sensitive populations. Landscape and Urban Planning, 107(2), 172-180. https://doi.org/10.1016/j.landurbplan.2012.05.016 [↩]
- Liu, S., Zhang, J., Li, J., Li, Y., Zhang, J., & Wu, X. (2021). Simulating and mitigating extreme urban heat island effects in a factory area based on machine learning. Building and Environment, 202, 108051. https://doi.org/10.1016/j.buildenv.2021.108051 [↩]
- Hou, H., Longyang, Q., Su, H., Zeng, R., Xu, T., & Wang, Z.-H. (2023). Prioritizing environmental determinants of urban heat islands: A machine learning study for major cities in china. International Journal of Applied Earth Observation and Geoinformation, 122, 103411. https://doi.org/10.1016/j.jag.2023.103411 [↩]
- Shandas, V., Voelkel, J., Williams, J., & Hoffman, J. (2019). Integrating satellite and ground measurements for predicting locations of extreme urban heat. Climate, 7(1), 5. https://doi.org/10.3390/cli7010005 [↩] [↩]
- ??Microsoft. 2023. USBuildingFootprints. GitHub. https://github.com/microsoft/USBuildingFootprints [↩]
- Boeing, G. (2017). OSMnx: New methods for acquiring, constructing, analyzing, and visualizing complex street networks. Computers, Environment and Urban Systems, 65, 126-139. https://doi.org/10.1016/j.compenvurbsys.2017.05.004 [↩]
- Weather Visual Crossing Corporation. (2023). Visual Crossing Weather (2022). data service. Retrieved from https://www.visualcrossing.com/ [↩]
- Zhou, W., Ming, D., Lv, X., Zhou, K., Bao, H., & Hong, Z. (2020). SO–CNN based urban functional zone fine division with VHR remote sensing image. Remote Sensing of Environment, 236, 111458. https://doi.org/10.1016/j.rse.2019.111458 [↩]
- He, X., Wang, A., Ghamisi, P., Li, G., & Chen, Y. (2019). LiDAR data classification using spatial transformation and CNN. IEEE Geoscience and Remote Sensing Letters, 16(1), 125-129. https://doi.org/10.1109/lgrs.2018.2868378 [↩]
- Kattenborn, T., Leitloff, J., Schiefer, F., & Hinz, S. (2021). Review on convolutional neural networks (CNN) in vegetation remote sensing. ISPRS Journal of Photogrammetry and Remote Sensing, 173, 24-49. https://doi.org/10.1016/j.isprsjprs.2020.12.010 [↩]