Academia.eduAcademia.edu

Outline

Time series analysis of rainfall for the state of Odisha

2022, AIP Conference Proceedings

https://doi.org/10.1063/5.0083522

Abstract

The rainfall data analysis and its timely prediction is very important for agricultural practices planning. In case of heavy/scanty rainfall prediction, early forecasting helps to plan for disaster management in areas of high risk. In this article, time series analysis of rainfall for the state of Odisha is carried out. Odisha is a state which is constantly being hit by waves of droughts, floods and cyclones. Thus, it becomes extremely important to analyze and forecast for rainfall in this region so that proper measures to avert disasters can be undertaken. For time series modeling, rainfall data for last 50 years has been analyzed using Auto-Regressive Integrated Moving Average (ARIMA) method. Several suitable ARIMA models are identified based on significant parameters. The variability in prediction and actual provides for the consistency of model. The months of highest and lowest precipitation have been identified. Later on the efforts to identify regions in Odisha for scanty and heavy rainfall has been made and predictions are made for 10 years into the future time period. It can be seen that accurate predictions help for crop planning and adopting better agronomic practices for crops, proper disaster management in risk zones and providing timely relief to those in affected areas.

FAQs

sparkles

AI

What rainfall trends were observed in Odisha from 1960 to 2015?add

The study finds that Odisha's average rainfall has shown a marginal increase of 7-10% by 2050, while the number of rainy days decreased from 120 to 90 days.

How does the ARIMA model perform in forecasting Odisha's rainfall?add

The research identifies ARIMA(1,0,0)×(1,1,0) as the best fitting model, which accurately predicts rainfall until 2026 based on diagnostic checks.

What role does the Southwest monsoon play in Odisha's rainfall distribution?add

The Southwest monsoon contributes 80% of Odisha's annual rainfall, predominantly occurring between mid-June and September.

Which methodology was used to ensure the stationary status of the rainfall data?add

The study utilized the Augmented Dickey-Fuller (ADF) unit-root test to verify the stationarity of the rainfall dataset prior to ARIMA modeling.

What implications do rainfall changes have on agriculture in Odisha?add

Changes in rainfall patterns could result in crop failures and significant agricultural damage, emphasizing the need for efficient water resource management.

References (22)

  1. TS_Rainfall=ts(Rainfall_Raw$Rainfall..mm., frequency=12, start=1960)
  2. TS_Rainfall_Test=ts(Rainfall_Test$Rainfall..mm., frequency=12, start=2016)
  3. ## Stationarity Test ndiffs(TS_Rainfall)
  4. ## Identification of Model by plotting ACF and PACF plots par(mfrow=c(1,
  5. Acf(TS_Rainfall, 48)
  6. Pacf(TS_Rainfall,48) After identification of models, the residuals are checked.
  7. Model1 = arima(TS_Rainfall, order =c(1,0,0,1,1,0)
  8. Model_1_residuals=residuals(Model1)
  9. Box.test(Model_1_residuals, lag = 48, type = "Ljung-Box") checkresiduals(Model1) adf.test(Model_1_residuals)
  10. Model_test1=arima(training,order =c(1,0,0,1,1,0)
  11. forecast_1 = forecast(Model_test1,h=120) accuracy(forecast_1,test)
  12. ##After checking residuals, the plots were generated. REFERENCES
  13. Central Soil and Water Conservation Research and Training Institute, CSWCRTI Vision 2030 (2011).
  14. S. Mishra, D. K. Swain, D. Mishra, and G. H. Santra, (2021), Intelligent and Cloud Computing: Smart Innovation, Systems and Technologies, vol 153. Springer, Singapore.
  15. D. R. Kothawale, J. V. Revadekar, & R. Kumar, J Earth Syst Sci 119, 51-65 (2010).
  16. P. Narayanan, A. Basistha, S. Sarkar, S. Kamna, Comptes Rendus Geoscience, 345 (1), 22-27 (2013).
  17. G. E. P. Box, G. M. Jenkins, Time Series Analysis, Forecasting and Control, San Francisco: Holden-Day (1976).
  18. L.M. Haines, W.P. Munoz, C.J. Van Gelderen, J. Appl. Stat. 16, 55-67 (1989).
  19. B. Praveen, S. Talukdar, Shahfahad et al. Scientific Reports 10, 10342 (2020).
  20. T. Dimri, S. Ahmad, and M. Sharif, J. Earth Syst. Sci. 129, 149 (2020).
  21. R. H. Shumway, D. S. Stoffer, Time Series Analysis and Its Applications with R Examples, Fourth ed, Springer (2017).
  22. R. J. Hyndman, G. Athanasopoulos, Forecasting: principles and practice, 2nd edition, OTexts: Melbourne, Australia. OTexts.com/fpp2 (2018).