Open Access Paper
28 December 2022 Mega-nourishment morphology evolution prediction combining spatial and temporal features
Yong Li, Chen Du
Author Affiliations +
Proceedings Volume 12506, Third International Conference on Computer Science and Communication Technology (ICCSCT 2022); 125062C (2022) https://doi.org/10.1117/12.2662229
Event: International Conference on Computer Science and Communication Technology (ICCSCT 2022), 2022, Beijing, China
Abstract
To protect coastal areas and ecology environment, Sand nourishment is widely used as an effective method. The morphology evolution and prediction is needed for sand nourishment and maintenance. Based on the observations of a mega-nourishment, a data-driven approach combining temporal and spatial features for the prediction of nourishment morphology evolution is proposed in this paper. The sequence grids from the survey data are used to extract the spatial features of nourishment beach by CNN, which can reduce the complexity of the network and extract the spatial features. And then LSTM is employed to derive the temporal relationship from past time-series features for predicting future nourishment terrain. Finally, the final prediction result is obtained through decoding the LSTM output by the fully connected layer. The complex spatiotemporal correlations of the sand nourishment evolution can be derived by training the proposed model effectively. The proposed model achieved the best performance for nourishment morphology evolution prediction compared with other methods as shown by the experimental results.

1.

INTRODUCTION

A number of coastal areas in the world are threaten by the increasingly environmental problems such as storm surge and sea level rise1. The effectively approaches of intervention are required to provide sustainable protection against the risk of flooding1, 2.

Sand nourishment belongs to a kind of soft approaches which is to place the sand imported for strengthening the beach1,3. Sand nourishment is considered as a more environmentally friendly, economical, and efficient counter measure against sea flooding. Moreover, an additional appealing area can be created by the nourishment for the coast tourism4. So sand nourishments are widely applied to protect coastal areas5,6. With beach nourishment increasing worldwide3, the morphological evolution prediction is of major importance7,8. However, previous studies are limited due to the lack of the terrain observations of sand nourishment3,7,9.

The nourishment morphology prediction output the future data by inputting the historical data, which is actually a sequence prediction problem. The deep learning methods are capable of considering spatiotemporal changes from historical data and obtain the predicted data by the time-series monitoring data. The prediction model can be gradually trained and adjusted to reduce prediction error and achieve optimal performance10,11. The deep learning has many applications such as predicting sea surface temperature, sea level changes, precipitation distribution, air quality and et al.10,12-15.

To make use of the temporal and spatial information from the survey data, a data-driven method combining the long short term memory (LSTM) network and convolutional neural network (CNN) is proposed to predict the nourishment morphology evolution. Section 2 describes the survey data and the model combining LSTM and CNN. Section 3 describes and analyses the experimental data and the results. Finally, the conclusion is drawn in Section 4.

2.

DATA AND METHODOLOGY

2.1

Study data

The mega-nourishment known as the Sand Engine comprising 21.5 million m3 sand nourishment in the Netherlands was constructed in 2011 for coastal protection and coastline maintenance as well as for ecology and recreational purposes2,4. The nourishment terrain is observed monthly since summer 20112. The surveyed area was 4.7 by 1.6 km as shown in Figure 1a.

Figure 1.

The data of study area.

00099_PSISDG12506_125062C_page_2_1.jpg

The observed data are realigned to shoreline orientation as Figure 1b. As can be seen in Figure 1c, the collected x, y, z point data are transformed to a 20 by 20 m grid through the Inverse Distance Weighting (IDW) interpolation.

2.2

Nourishment morphology prediction by combining CNN and LSTM

The spatial correlation of nourishment terrain is acquired by the CNN model. The deep neural layers are capable of being used to obtain the spatial correlation features. This architecture makes CNN perform well for obtaining features because it has the strengths of local connectivity and spatial arrangement between layer nodes. The CNN mainly consists of two kinds of layers. The first is the convolutional layers, which is used for obtaining the spatial feature. The second is the pooling layers, which is employed to reduce the number of layer links and improve computing efficiency.

The spatial features extracted by the above network are put into the LSTM model after flattening to one-dimensional vector. The LSTM network has the structure of memory units, which is capable of storing long term dependencies. The memory unit contains three kinds of gates. The input gate can be used to determine what new features to store. The output gate can control how to deliver output information. The forgotten gate is adopted for reducing some features.

2.3

Predicting nourishment terrain

The nourishment prediction result is obtained by the fully connected layer following the above CNN and LSTM. The prediction framework is shown as Figure 2. The convolutional kernel size is 3×3 with stride 1×1. ‘‘Same-Padding’’ is performed during the convolution processes. The activation function of ReLU is used for convolutional layers and LSTM layer.

Figure 2.

The model combining CNN and LSTM for predicting nourishment terrain.

00099_PSISDG12506_125062C_page_2_2.jpg

The stateful LSTM has the ability of maintaining the information through long time series16. The time lag is set to three. Mean squared error (MSE) is employed as loss function during the training process.

3.

RESULTS

The nourishment observations from August 2011 to September 2015 are used in this research. Twenty-three data from August 2011 to April 2014 is used to train the model. The remaining nine data in July 2014 to September 2015 is used to test the model.

Each three past grid data is used as one input sample. A predicted next terrain grid is the output. A one-step prediction model based on the observations is created. A total of 30 epochs is run for training model. The recursive method is used for multiple-step prediction.

Figure 3 shows the root of mean squared error (RMSE) variation of each model over prediction time. And the proposed model results are compared with four classic models, namely, CNN, RNN, LSTM, and the BP neural network. The same dataset and the recursive prediction process are adopted by each model as the proposed model. The average RMSE of the five models are shown as figure 4. The best performance is achieved by the proposed model in this paper as shown in Figures 3 and 4.

Figure 3.

Corresponding RMSE of different models on prediction over time.

00099_PSISDG12506_125062C_page_3_1.jpg

Figure 4.

The average RMSE of different models on prediction over time.

00099_PSISDG12506_125062C_page_3_2.jpg

Figure 5-7 show the observations and predictions of this proposed model at three different dates for comparison. The measurements and the predicted terrain are generally consistent. The differences mainly exist at steep slope.

Figure 5.

The true nourishment terrains. (a): July 2014; (b): March 2015; (c): September 2015.

00099_PSISDG12506_125062C_page_4_1.jpg

Figure 6.

The nourishment predictions. (a): July 2014; (b): March 2015; (c) September 2015.

00099_PSISDG12506_125062C_page_4_2.jpg

Figure 7.

Error maps of predicting nourishment. (a): The differences between the observation and prediction in July 2014; (b): The differences between the observation and prediction in March 2015; (c): The differences between the observation and prediction in September 2015.

00099_PSISDG12506_125062C_page_4_3.jpg

4.

CONCLUSION

Sand nourishment is widely used for protecting coastal areas against the flooding risk. The nourishment prediction is important because of increasingly nourishments worldwide. To make use of temporal and spatial information, we carry out nourishment prediction by combining LSTM and CNN. The spatial features of nourishment are obtained by CNN from the observation grids. The time dependency is tackled by LSTM. The nourishment prediction result is obtained by the fully connected layer following the above CNN and LSTM. The results show that the best performance is achieved by the proposed model in this paper compared with other methods.

ACKNOWLEDGMENTS

This research has been supported by the National Natural Science Foundation of China (Grant No. 41977394); the Major Project of Science and Technology of Yunnan Province (Grant No. 202002AE090010).

REFERENCES

[1] 

Brière, C., Janssen, S. K., Oost, A. P., Taal, M. and Tonnon, P. K., “Usability of the climate-resilient nature-based sand motor pilot, The Netherlands,” Journal of coastal conservation, 22 491 –502 (2018). https://doi.org/10.1007/s11852-017-0527-3 Google Scholar

[2] 

Stive, M. J., de Schipper, M. A., Luijendijk, A. P., Aarninkhof, S. G., van Gelder-Maas, C., van Thiel de Vries, J. S., de Vries, S., Henriquez, M., Marx, S. and Ranasinghe, R., “A new alternative to saving our beaches from sea-level rise: The sand engine,” Journal of Coastal Research, 29 1001 –8 (2013). https://doi.org/10.2112/JCOASTRES-D-13-00070.1 Google Scholar

[3] 

Ludka, B., Guza, R. and O’Reilly, W., “Nourishment evolution and impacts at four southern California beaches: A sand volume analysis,” Coastal Engineering, 136 96 –105 (2018). https://doi.org/10.1016/j.coastaleng.2018.02.003 Google Scholar

[4] 

Taal, M., Loffler, M., Vertegaal, C., Wijsman, J., Van der Valk, L. and Tonnon, P., “[Development of Sand Motor: Concise Report Describing the First Four Years of the Monitoring and Evaluation Programme],” Deltares, Delft, (2016). Google Scholar

[5] 

de Schipper, M. A., de Vries, S., Ruessink, G., de Zeeuw, R. C., Rutten, J., van Gelder-Maas, C. and Stive, M. J., “Initial spreading of a mega feeder nourishment: Observations of the Sand Engine pilot project,” Coastal Engineering, 111 23 –38 (2016). https://doi.org/10.1016/j.coastaleng.2015.10.011 Google Scholar

[6] 

Mulder, J. P. and Tonnon, P. K., ““Sand Engine”: Background and design of a mega-nourishment pilot in the Netherlands,” in Coastal Engineering Proc., 35 (2011). Google Scholar

[7] 

Luijendijk, A. P., Ranasinghe, R., de Schipper, M. A., Huisman, B. A., Swinkels, C. M., Walstra, D. J. and Stive, M. J., “The initial morphological response of the Sand Engine: A process-based modelling study,” Coastal Engineering, 119 1 –14 (2017). https://doi.org/10.1016/j.coastaleng.2016.09.005 Google Scholar

[8] 

Davidson, M. A., Turner, I. L., Splinter, K. D. and Harley, M. D., “Annual prediction of shoreline erosion and subsequent recovery,” Coastal Engineering, 130 14 –25 (2017). https://doi.org/10.1016/j.coastaleng.2017.09.008 Google Scholar

[9] 

Arens, S. M., Mulder, J. P., Slings, Q. L., Geelen, L. H. and Damsma, P., “Dynamic dune management, integrating objectives of nature development and coastal safety: Examples from the Netherlands,” Geomorphology, 199 205 –13 (2013). https://doi.org/10.1016/j.geomorph.2012.10.034 Google Scholar

[10] 

Qin, D., Yu, J., Zou, G., Yong, R., Zhao, Q. and Zhang, B., “A novel combined prediction scheme based on CNN and LSTM for urban PM 2.5 concentration,” IEEE Access, 7 20050 –9 (2019). https://doi.org/10.1109/Access.6287639 Google Scholar

[11] 

Sejnowski, T. J., “[The Deep Learning Revolution],” The MIT Press, Cambridge (2018). https://doi.org/10.7551/mitpress/11474.001.0001 Google Scholar

[12] 

Wen, C., Liu, S., Yao, X., Peng, L., Li, X., Hu, Y. and Chi, T., “A novel spatiotemporal convolutional long short-term neural network for air pollution prediction,” Science of the Total Environment, 654 1091 –9 (2019). https://doi.org/10.1016/j.scitotenv.2018.11.086 Google Scholar

[13] 

Ma, C., Li, S., Wang, A., Yang, J. and Chen, G., “Altimeter observation-based eddy nowcasting using an improved Conv-LSTM network,” Remote Sensing, 11 783 –800 (2019). https://doi.org/10.3390/rs11070783 Google Scholar

[14] 

Yang, Y., Dong, J., Sun, X., Lima, E., Mu, Q. and Wang, X., “A CFCC-LSTM model for sea surface temperature prediction,” IEEE Geoscience and Remote Sensing Letters, 15 207 –11 (2017). https://doi.org/10.1109/LGRS.2017.2780843 Google Scholar

[15] 

Xingjian, S., Chen, Z., Wang, H., Yeung, D. Y., Wong, W. K. and Woo, W. C., “Convolutional LSTM network: A machine learning approach for precipitation nowcasting,” Advances in Neural Information Processing Systems, 802 10 (2015). Google Scholar

[16] 

Gupta, S. and Dinesh, D. A., “Resource usage prediction of cloud workloads using deep bidirectional long short term memory networks,” in IEEE International Conference on Advanced Networks and Telecommunications Systems (ANTS), 1 –6 (2017). Google Scholar
© (2022) COPYRIGHT Society of Photo-Optical Instrumentation Engineers (SPIE). Downloading of the abstract is permitted for personal use only.
Yong Li and Chen Du "Mega-nourishment morphology evolution prediction combining spatial and temporal features", Proc. SPIE 12506, Third International Conference on Computer Science and Communication Technology (ICCSCT 2022), 125062C (28 December 2022); https://doi.org/10.1117/12.2662229
Advertisement
Advertisement
RIGHTS & PERMISSIONS
Get copyright permission  Get copyright permission on Copyright Marketplace
KEYWORDS
Data modeling

Convolutional neural networks

Ecology

Neural networks

Earth sciences

Environmental sensing

Back to Top