pydra-core 0.0.1__py2.py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (389) hide show
  1. pydra_core/__init__.py +32 -0
  2. pydra_core/common/__init__.py +0 -0
  3. pydra_core/common/common.py +98 -0
  4. pydra_core/common/enum.py +63 -0
  5. pydra_core/common/interpolate.py +345 -0
  6. pydra_core/common/probability.py +293 -0
  7. pydra_core/core/__init__.py +0 -0
  8. pydra_core/core/calculation.py +51 -0
  9. pydra_core/core/datamodels/__init__.py +0 -0
  10. pydra_core/core/datamodels/frequency_line.py +60 -0
  11. pydra_core/core/exceedance_frequency_line.py +224 -0
  12. pydra_core/core/exceedance_frequency_line_experimental.py +163 -0
  13. pydra_core/core/hbn.py +226 -0
  14. pydra_core/data/settings/calculation_settings.sqlite +0 -0
  15. pydra_core/data/settings/lower_river_settings.cpg +1 -0
  16. pydra_core/data/settings/lower_river_settings.dbf +0 -0
  17. pydra_core/data/settings/lower_river_settings.prj +1 -0
  18. pydra_core/data/settings/lower_river_settings.shp +0 -0
  19. pydra_core/data/settings/lower_river_settings.shx +0 -0
  20. pydra_core/data/statistics/Afvoer/Borgharen/Ovkans_Borgharen_piekafvoer_2017.txt +37 -0
  21. pydra_core/data/statistics/Afvoer/Borgharen/Ovkans_Borgharen_piekafvoer_2017_metOnzHeid.txt +46 -0
  22. pydra_core/data/statistics/Afvoer/Borgharen/Ovkans_Borgharen_piekafvoer_OI2014_G_2015_metOnzHeid_v02.txt +50 -0
  23. pydra_core/data/statistics/Afvoer/Borgharen/Ovkans_Borgharen_piekafvoer_OI2014_G_2015_v02.txt +42 -0
  24. pydra_core/data/statistics/Afvoer/Borgharen/Ovkans_Borgharen_piekafvoer_OI2014_G_2050_metOnzHeid_v02.txt +56 -0
  25. pydra_core/data/statistics/Afvoer/Borgharen/Ovkans_Borgharen_piekafvoer_OI2014_G_2050_v02.txt +48 -0
  26. pydra_core/data/statistics/Afvoer/Borgharen/Ovkans_Borgharen_piekafvoer_OI2014_G_2100_metOnzHeid_v02.txt +56 -0
  27. pydra_core/data/statistics/Afvoer/Borgharen/Ovkans_Borgharen_piekafvoer_OI2014_G_2100_v02.txt +48 -0
  28. pydra_core/data/statistics/Afvoer/Borgharen/Ovkans_Borgharen_piekafvoer_OI2014_W_2015_metOnzHeid_v02.txt +50 -0
  29. pydra_core/data/statistics/Afvoer/Borgharen/Ovkans_Borgharen_piekafvoer_OI2014_W_2015_v02.txt +42 -0
  30. pydra_core/data/statistics/Afvoer/Borgharen/Ovkans_Borgharen_piekafvoer_OI2014_W_2050_metOnzHeid_v02.txt +56 -0
  31. pydra_core/data/statistics/Afvoer/Borgharen/Ovkans_Borgharen_piekafvoer_OI2014_W_2050_v02.txt +48 -0
  32. pydra_core/data/statistics/Afvoer/Borgharen/Ovkans_Borgharen_piekafvoer_OI2014_W_2100_metOnzHeid_v02.txt +51 -0
  33. pydra_core/data/statistics/Afvoer/Borgharen/Ovkans_Borgharen_piekafvoer_OI2014_W_2100_v02.txt +44 -0
  34. pydra_core/data/statistics/Afvoer/Borgharen/Ovkans_Borgharen_piekafvoer_Ref.txt +28 -0
  35. pydra_core/data/statistics/Afvoer/Dalfsen/Ovkans_Dalfsen_piekafvoer_2017.txt +31 -0
  36. pydra_core/data/statistics/Afvoer/Dalfsen/Ovkans_Dalfsen_piekafvoer_2017_metOnzHeid.txt +33 -0
  37. pydra_core/data/statistics/Afvoer/Dalfsen/Ovkans_Dalfsen_piekafvoer_OI2014_G_2015.txt +44 -0
  38. pydra_core/data/statistics/Afvoer/Dalfsen/Ovkans_Dalfsen_piekafvoer_OI2014_G_2015_metOnzHeid.txt +34 -0
  39. pydra_core/data/statistics/Afvoer/Dalfsen/Ovkans_Dalfsen_piekafvoer_OI2014_G_2050.txt +44 -0
  40. pydra_core/data/statistics/Afvoer/Dalfsen/Ovkans_Dalfsen_piekafvoer_OI2014_G_2050_metOnzHeid.txt +34 -0
  41. pydra_core/data/statistics/Afvoer/Dalfsen/Ovkans_Dalfsen_piekafvoer_OI2014_G_2100.txt +44 -0
  42. pydra_core/data/statistics/Afvoer/Dalfsen/Ovkans_Dalfsen_piekafvoer_OI2014_G_2100_metOnzHeid.txt +39 -0
  43. pydra_core/data/statistics/Afvoer/Dalfsen/Ovkans_Dalfsen_piekafvoer_OI2014_W_2015.txt +44 -0
  44. pydra_core/data/statistics/Afvoer/Dalfsen/Ovkans_Dalfsen_piekafvoer_OI2014_W_2015_metOnzHeid.txt +34 -0
  45. pydra_core/data/statistics/Afvoer/Dalfsen/Ovkans_Dalfsen_piekafvoer_OI2014_W_2050.txt +44 -0
  46. pydra_core/data/statistics/Afvoer/Dalfsen/Ovkans_Dalfsen_piekafvoer_OI2014_W_2050_metOnzHeid.txt +34 -0
  47. pydra_core/data/statistics/Afvoer/Dalfsen/Ovkans_Dalfsen_piekafvoer_OI2014_W_2100.txt +44 -0
  48. pydra_core/data/statistics/Afvoer/Dalfsen/Ovkans_Dalfsen_piekafvoer_OI2014_W_2100_metOnzHeid.txt +34 -0
  49. pydra_core/data/statistics/Afvoer/Dalfsen/Ovkans_Dalfsen_piekafvoer_Ref.txt +14 -0
  50. pydra_core/data/statistics/Afvoer/Lith/Ovkans_Lith_piekafvoer_2017.txt +47 -0
  51. pydra_core/data/statistics/Afvoer/Lith/Ovkans_Lith_piekafvoer_2017_metOnzHeid.txt +47 -0
  52. pydra_core/data/statistics/Afvoer/Lith/Ovkans_Lith_piekafvoer_OI2014_G_2015.txt +49 -0
  53. pydra_core/data/statistics/Afvoer/Lith/Ovkans_Lith_piekafvoer_OI2014_G_2015_metOnzHeid.txt +59 -0
  54. pydra_core/data/statistics/Afvoer/Lith/Ovkans_Lith_piekafvoer_OI2014_G_2050.txt +49 -0
  55. pydra_core/data/statistics/Afvoer/Lith/Ovkans_Lith_piekafvoer_OI2014_G_2050_metOnzHeid.txt +59 -0
  56. pydra_core/data/statistics/Afvoer/Lith/Ovkans_Lith_piekafvoer_OI2014_G_2100.txt +49 -0
  57. pydra_core/data/statistics/Afvoer/Lith/Ovkans_Lith_piekafvoer_OI2014_G_2100_metOnzHeid.txt +59 -0
  58. pydra_core/data/statistics/Afvoer/Lith/Ovkans_Lith_piekafvoer_OI2014_W_2015.txt +49 -0
  59. pydra_core/data/statistics/Afvoer/Lith/Ovkans_Lith_piekafvoer_OI2014_W_2015_metOnzHeid.txt +59 -0
  60. pydra_core/data/statistics/Afvoer/Lith/Ovkans_Lith_piekafvoer_OI2014_W_2050.txt +49 -0
  61. pydra_core/data/statistics/Afvoer/Lith/Ovkans_Lith_piekafvoer_OI2014_W_2050_metOnzHeid.txt +59 -0
  62. pydra_core/data/statistics/Afvoer/Lith/Ovkans_Lith_piekafvoer_OI2014_W_2100.txt +49 -0
  63. pydra_core/data/statistics/Afvoer/Lith/Ovkans_Lith_piekafvoer_OI2014_W_2100_metOnzHeid.txt +59 -0
  64. pydra_core/data/statistics/Afvoer/Lith/Ovkans_Lith_piekafvoer_Ref.txt +21 -0
  65. pydra_core/data/statistics/Afvoer/Lobith/Ovkans_Lobith_piekafvoer_2017.txt +33 -0
  66. pydra_core/data/statistics/Afvoer/Lobith/Ovkans_Lobith_piekafvoer_2017_metOnzHeid.txt +60 -0
  67. pydra_core/data/statistics/Afvoer/Lobith/Ovkans_Lobith_piekafvoer_OI2014_G_2015.txt +49 -0
  68. pydra_core/data/statistics/Afvoer/Lobith/Ovkans_Lobith_piekafvoer_OI2014_G_2015_BenedenRijn.txt +50 -0
  69. pydra_core/data/statistics/Afvoer/Lobith/Ovkans_Lobith_piekafvoer_OI2014_G_2015_metOnzHeid.txt +63 -0
  70. pydra_core/data/statistics/Afvoer/Lobith/Ovkans_Lobith_piekafvoer_OI2014_G_2015_metOnzHeid_BenedenRijn.txt +65 -0
  71. pydra_core/data/statistics/Afvoer/Lobith/Ovkans_Lobith_piekafvoer_OI2014_G_2050.txt +49 -0
  72. pydra_core/data/statistics/Afvoer/Lobith/Ovkans_Lobith_piekafvoer_OI2014_G_2050_BenedenRijn.txt +50 -0
  73. pydra_core/data/statistics/Afvoer/Lobith/Ovkans_Lobith_piekafvoer_OI2014_G_2050_metOnzHeid.txt +63 -0
  74. pydra_core/data/statistics/Afvoer/Lobith/Ovkans_Lobith_piekafvoer_OI2014_G_2050_metOnzHeid_BenedenRijn.txt +65 -0
  75. pydra_core/data/statistics/Afvoer/Lobith/Ovkans_Lobith_piekafvoer_OI2014_G_2100.txt +49 -0
  76. pydra_core/data/statistics/Afvoer/Lobith/Ovkans_Lobith_piekafvoer_OI2014_G_2100_BenedenRijn.txt +50 -0
  77. pydra_core/data/statistics/Afvoer/Lobith/Ovkans_Lobith_piekafvoer_OI2014_G_2100_metOnzHeid.txt +63 -0
  78. pydra_core/data/statistics/Afvoer/Lobith/Ovkans_Lobith_piekafvoer_OI2014_G_2100_metOnzHeid_BenedenRijn.txt +65 -0
  79. pydra_core/data/statistics/Afvoer/Lobith/Ovkans_Lobith_piekafvoer_OI2014_W_2015.txt +50 -0
  80. pydra_core/data/statistics/Afvoer/Lobith/Ovkans_Lobith_piekafvoer_OI2014_W_2015_BenedenRijn.txt +51 -0
  81. pydra_core/data/statistics/Afvoer/Lobith/Ovkans_Lobith_piekafvoer_OI2014_W_2015_metOnzHeid.txt +63 -0
  82. pydra_core/data/statistics/Afvoer/Lobith/Ovkans_Lobith_piekafvoer_OI2014_W_2015_metOnzHeid_BenedenRijn.txt +65 -0
  83. pydra_core/data/statistics/Afvoer/Lobith/Ovkans_Lobith_piekafvoer_OI2014_W_2050.txt +50 -0
  84. pydra_core/data/statistics/Afvoer/Lobith/Ovkans_Lobith_piekafvoer_OI2014_W_2050_BenedenRijn.txt +51 -0
  85. pydra_core/data/statistics/Afvoer/Lobith/Ovkans_Lobith_piekafvoer_OI2014_W_2050_metOnzHeid.txt +63 -0
  86. pydra_core/data/statistics/Afvoer/Lobith/Ovkans_Lobith_piekafvoer_OI2014_W_2050_metOnzHeid_BenedenRijn.txt +65 -0
  87. pydra_core/data/statistics/Afvoer/Lobith/Ovkans_Lobith_piekafvoer_OI2014_W_2100.txt +50 -0
  88. pydra_core/data/statistics/Afvoer/Lobith/Ovkans_Lobith_piekafvoer_OI2014_W_2100_BenedenRijn.txt +51 -0
  89. pydra_core/data/statistics/Afvoer/Lobith/Ovkans_Lobith_piekafvoer_OI2014_W_2100_metOnzHeid.txt +63 -0
  90. pydra_core/data/statistics/Afvoer/Lobith/Ovkans_Lobith_piekafvoer_OI2014_W_2100_metOnzHeid_BenedenRijn.txt +65 -0
  91. pydra_core/data/statistics/Afvoer/Lobith/Ovkans_Lobith_piekafvoer_Ref.txt +23 -0
  92. pydra_core/data/statistics/Afvoer/Olst/Ovkans_Olst_piekafvoer_2017.txt +55 -0
  93. pydra_core/data/statistics/Afvoer/Olst/Ovkans_Olst_piekafvoer_2017_metOnzHeid.txt +55 -0
  94. pydra_core/data/statistics/Afvoer/Olst/Ovkans_Olst_piekafvoer_OI2014_G_2015.txt +46 -0
  95. pydra_core/data/statistics/Afvoer/Olst/Ovkans_Olst_piekafvoer_OI2014_G_2015_metOnzHeid.txt +65 -0
  96. pydra_core/data/statistics/Afvoer/Olst/Ovkans_Olst_piekafvoer_OI2014_G_2050.txt +46 -0
  97. pydra_core/data/statistics/Afvoer/Olst/Ovkans_Olst_piekafvoer_OI2014_G_2050_metOnzHeid.txt +65 -0
  98. pydra_core/data/statistics/Afvoer/Olst/Ovkans_Olst_piekafvoer_OI2014_G_2100.txt +46 -0
  99. pydra_core/data/statistics/Afvoer/Olst/Ovkans_Olst_piekafvoer_OI2014_G_2100_metOnzHeid.txt +65 -0
  100. pydra_core/data/statistics/Afvoer/Olst/Ovkans_Olst_piekafvoer_OI2014_W_2015.txt +47 -0
  101. pydra_core/data/statistics/Afvoer/Olst/Ovkans_Olst_piekafvoer_OI2014_W_2015_metOnzHeid.txt +65 -0
  102. pydra_core/data/statistics/Afvoer/Olst/Ovkans_Olst_piekafvoer_OI2014_W_2050.txt +47 -0
  103. pydra_core/data/statistics/Afvoer/Olst/Ovkans_Olst_piekafvoer_OI2014_W_2050_metOnzHeid.txt +65 -0
  104. pydra_core/data/statistics/Afvoer/Olst/Ovkans_Olst_piekafvoer_OI2014_W_2100.txt +47 -0
  105. pydra_core/data/statistics/Afvoer/Olst/Ovkans_Olst_piekafvoer_OI2014_W_2100_metOnzHeid.txt +65 -0
  106. pydra_core/data/statistics/Afvoer/Olst/Ovkans_Olst_piekafvoer_Ref.txt +15 -0
  107. pydra_core/data/statistics/Golfvorm/Borgharen/Golfvormen_Borgharen.txt +76 -0
  108. pydra_core/data/statistics/Golfvorm/Dalfsen/Golfvormen_Dalfsen.txt +83 -0
  109. pydra_core/data/statistics/Golfvorm/Grevelingenmeer/Golfvormen_Grevelingenmeer.txt +34 -0
  110. pydra_core/data/statistics/Golfvorm/IJsselmeer/Golfvormen_IJsselmeer.txt +83 -0
  111. pydra_core/data/statistics/Golfvorm/Lith/Golfvormen_Lith.txt +76 -0
  112. pydra_core/data/statistics/Golfvorm/Lobith/Golfvormen_Lobith.txt +76 -0
  113. pydra_core/data/statistics/Golfvorm/Markermeer/Golfvormen_Markermeer.txt +140 -0
  114. pydra_core/data/statistics/Golfvorm/Olst/Golfvormen_Olst.txt +83 -0
  115. pydra_core/data/statistics/Golfvorm/Veerse Meer/Golfvormen_Veersemeer.txt +54 -0
  116. pydra_core/data/statistics/Golfvorm/Veluwerandmeer/Golfvormen_Veluwerandmeer.txt +140 -0
  117. pydra_core/data/statistics/Golfvorm/Volkerak-Zoommeer/Golfvormen_Volkerakzoommeer.txt +74 -0
  118. pydra_core/data/statistics/Meerpeil/Grevelingenmeer/Ovkans_Grevelingenmeer_piekmeerpeil_2017.txt +13 -0
  119. pydra_core/data/statistics/Meerpeil/Grevelingenmeer/Ovkans_Grevelingenmeer_piekmeerpeil_2017_metOnzHeid.txt +25 -0
  120. pydra_core/data/statistics/Meerpeil/Grevelingenmeer/Ovkans_Grevelingenmeer_piekmeerpeil_v01.txt +13 -0
  121. pydra_core/data/statistics/Meerpeil/IJsselmeer/Ovkans_IJsselmeer_piekmeerpeil_2017.txt +26 -0
  122. pydra_core/data/statistics/Meerpeil/IJsselmeer/Ovkans_IJsselmeer_piekmeerpeil_2017_metOnzHeid.txt +40 -0
  123. pydra_core/data/statistics/Meerpeil/IJsselmeer/Ovkans_IJsselmeer_piekmeerpeil_v01.txt +15 -0
  124. pydra_core/data/statistics/Meerpeil/Markermeer/Ovkans_Markermeer_piekmeerpeil_2017.txt +19 -0
  125. pydra_core/data/statistics/Meerpeil/Markermeer/Ovkans_Markermeer_piekmeerpeil_2017_metOnzHeid.txt +38 -0
  126. pydra_core/data/statistics/Meerpeil/Markermeer/Ovkans_Markermeer_piekmeerpeil_v01.txt +11 -0
  127. pydra_core/data/statistics/Meerpeil/Veerse Meer/Ovkans_Veersemeer_piekmeerpeil_excl_peilverhoging.txt +14 -0
  128. pydra_core/data/statistics/Meerpeil/Veerse Meer/Ovkans_Veersemeer_piekmeerpeil_v01.txt +16 -0
  129. pydra_core/data/statistics/Meerpeil/Veluwerandmeer/Ovkans_Veluwerandmeer_piekmeerpeil_2017.txt +14 -0
  130. pydra_core/data/statistics/Meerpeil/Veluwerandmeer/Ovkans_Veluwerandmeer_piekmeerpeil_2017_metOnzHeid.txt +37 -0
  131. pydra_core/data/statistics/Meerpeil/Veluwerandmeer/Ovkans_Veluwerandmeer_piekmeerpeil_v01.txt +14 -0
  132. pydra_core/data/statistics/Meerpeil/Volkerak-Zoommeer/Ovkans_VZM_piekmeerpeil_BER-VZM.txt +18 -0
  133. pydra_core/data/statistics/Meerpeil/Volkerak-Zoommeer/Ovkans_VZM_piekmeerpeil_BER-VZM_metOnzHeid.txt +43 -0
  134. pydra_core/data/statistics/Restant/Oosterschelde/BesliskansenOSKering.txt +525 -0
  135. pydra_core/data/statistics/Restant/Oosterschelde/KansenFaseverschil_2023.txt +8 -0
  136. pydra_core/data/statistics/Restant/Oosterschelde/KansenFaseverschil_OS.txt +13 -0
  137. pydra_core/data/statistics/Restant/Oosterschelde/KansenStormduur_OS.txt +15 -0
  138. pydra_core/data/statistics/Restant/Oosterschelde/KansenStormduur_OS_40_60_80uur_2023.txt +17 -0
  139. pydra_core/data/statistics/Restant/Oosterschelde/ScenariokansenOSKering_2008.txt +24 -0
  140. pydra_core/data/statistics/Restant/Oosterschelde/ScenariokansenOSKering_2013.txt +19 -0
  141. pydra_core/data/statistics/Restant/Oosterschelde/ScenariokansenOSKering_2017.txt +19 -0
  142. pydra_core/data/statistics/Restant/Oosterschelde/ScenariokansenOSKering_2023.txt +14 -0
  143. pydra_core/data/statistics/Restant/Up2U/Up2U10.dat +59 -0
  144. pydra_core/data/statistics/Restant/Up2U/Up2Up.dat +59 -0
  145. pydra_core/data/statistics/Restant/Up2U/Up2Ustar.dat +59 -0
  146. pydra_core/data/statistics/Restant/hulpdijken.txt +60 -0
  147. pydra_core/data/statistics/Restant/hulpgolfhoogtes.txt +24 -0
  148. pydra_core/data/statistics/Restant/hulpgolfperiodes.txt +39 -0
  149. pydra_core/data/statistics/Restant/kansstormduur.txt +8 -0
  150. pydra_core/data/statistics/Restant/pwind_west.txt +34 -0
  151. pydra_core/data/statistics/Restant/pwind_west_met_Volkerfactor.txt +34 -0
  152. pydra_core/data/statistics/Restant/pwind_west_zonder_Volkerfactor.txt +34 -0
  153. pydra_core/data/statistics/Sigmafunctie/Hollandse Kust Midden/VS_sigmafunctie_Kust_Midden.txt +19 -0
  154. pydra_core/data/statistics/Sigmafunctie/Hollandse Kust Midden/VS_sigmafunctie_Kust_Midden_2017.txt +23 -0
  155. pydra_core/data/statistics/Sigmafunctie/Hollandse Kust Noord/VS_sigmafunctie_Kust_Noord.txt +19 -0
  156. pydra_core/data/statistics/Sigmafunctie/Hollandse Kust Noord/VS_sigmafunctie_Kust_Noord_2017.txt +23 -0
  157. pydra_core/data/statistics/Sigmafunctie/Hollandse Kust Zuid/VS_sigmafunctie_Kust_Zuid.txt +19 -0
  158. pydra_core/data/statistics/Sigmafunctie/Hollandse Kust Zuid/VS_sigmafunctie_Kust_Zuid_2017.txt +23 -0
  159. pydra_core/data/statistics/Sigmafunctie/Oosterschelde/VS_sigmafunctie_OS.txt +22 -0
  160. pydra_core/data/statistics/Sigmafunctie/Oosterschelde/VS_sigmafunctie_OS_16sectoren_2023.txt +24 -0
  161. pydra_core/data/statistics/Sigmafunctie/Oosterschelde/VS_sigmafunctie_OS_2017.txt +22 -0
  162. pydra_core/data/statistics/Sigmafunctie/Waddenzee Oost/VS_sigmafunctie_WZ_oost.txt +19 -0
  163. pydra_core/data/statistics/Sigmafunctie/Waddenzee Oost/VS_sigmafunctie_WZ_oost_2017.txt +23 -0
  164. pydra_core/data/statistics/Sigmafunctie/Waddenzee West/VS_sigmafunctie_WZ_west.txt +19 -0
  165. pydra_core/data/statistics/Sigmafunctie/Waddenzee West/VS_sigmafunctie_WZ_west_2017.txt +23 -0
  166. pydra_core/data/statistics/Sigmafunctie/Westerschelde/VS_sigmafunctie_WS.txt +19 -0
  167. pydra_core/data/statistics/Sigmafunctie/Westerschelde/VS_sigmafunctie_WS_2017.txt +23 -0
  168. pydra_core/data/statistics/Sluitpeilen/Sluitfunctie Europoortkering Maas 2017.csv +631 -0
  169. pydra_core/data/statistics/Sluitpeilen/Sluitfunctie Europoortkering Rijn 2017.csv +631 -0
  170. pydra_core/data/statistics/Sluitpeilen/Sluitfunctie Hollandsche IJsselkering.csv +757 -0
  171. pydra_core/data/statistics/Sluitpeilen/Sluitfunctie Oosterscheldekering 2017.csv +55081 -0
  172. pydra_core/data/statistics/Topduur/Borgharen/Topduur_Borgharen_2017.txt +19 -0
  173. pydra_core/data/statistics/Topduur/Borgharen/Topduur_Borgharen_v00.txt +14 -0
  174. pydra_core/data/statistics/Topduur/Dalfsen/Topduur_Dalfsen_2017.txt +20 -0
  175. pydra_core/data/statistics/Topduur/Dalfsen/Topduur_Dalfsen_v01.txt +16 -0
  176. pydra_core/data/statistics/Topduur/Grevelingenmeer/Topduur_Grevelingenmeer_2017.txt +14 -0
  177. pydra_core/data/statistics/Topduur/Grevelingenmeer/Topduur_Grevelingenmeer_v01.txt +14 -0
  178. pydra_core/data/statistics/Topduur/IJsselmeer/Topduur_IJsselmeer_2017.txt +20 -0
  179. pydra_core/data/statistics/Topduur/IJsselmeer/Topduur_IJsselmeer_v01.txt +15 -0
  180. pydra_core/data/statistics/Topduur/Lith/Topduur_Lith_2017.txt +19 -0
  181. pydra_core/data/statistics/Topduur/Lith/Topduur_Lith_v01.txt +17 -0
  182. pydra_core/data/statistics/Topduur/Lobith/Topduur_Lobith_2017.txt +19 -0
  183. pydra_core/data/statistics/Topduur/Lobith/Topduur_Lobith_v01.txt +17 -0
  184. pydra_core/data/statistics/Topduur/Markermeer/Topduur_Markermeer_2017.txt +20 -0
  185. pydra_core/data/statistics/Topduur/Markermeer/Topduur_Markermeer_v01.txt +12 -0
  186. pydra_core/data/statistics/Topduur/Olst/Topduur_Olst_2017.txt +20 -0
  187. pydra_core/data/statistics/Topduur/Olst/Topduur_Olst_v01.txt +16 -0
  188. pydra_core/data/statistics/Topduur/Veerse Meer/Topduur_Veersemeer_excl_peilverhoging.txt +13 -0
  189. pydra_core/data/statistics/Topduur/Veerse Meer/Topduur_Veersemeer_v01.txt +16 -0
  190. pydra_core/data/statistics/Topduur/Veluwerandmeer/Topduur_Veluwerandmeer_2017.txt +12 -0
  191. pydra_core/data/statistics/Topduur/Veluwerandmeer/Topduur_Veluwerandmeer_v01.txt +12 -0
  192. pydra_core/data/statistics/Topduur/Volkerak-Zoommeer/Topduur_Volkerakzoommeer_BER-VZM.txt +18 -0
  193. pydra_core/data/statistics/Windrichting/Deelen/Richtingskansen_Deelen_2017.txt +28 -0
  194. pydra_core/data/statistics/Windrichting/Hollandse Kust/KansenWindrichting_Kust.txt +17 -0
  195. pydra_core/data/statistics/Windrichting/Hollandse Kust/KansenWindrichting_Kust_2017.txt +24 -0
  196. pydra_core/data/statistics/Windrichting/Oosterschelde/KansenWindrichting_16sectoren_OS_2023.txt +31 -0
  197. pydra_core/data/statistics/Windrichting/Oosterschelde/KansenWindrichting_OS.txt +20 -0
  198. pydra_core/data/statistics/Windrichting/Oosterschelde/KansenWindrichting_OS_2017.txt +24 -0
  199. pydra_core/data/statistics/Windrichting/Schiphol/Richtingskansen_Schiphol_12sectoren.txt +20 -0
  200. pydra_core/data/statistics/Windrichting/Schiphol/Richtingskansen_Schiphol_12sectoren_2017.txt +20 -0
  201. pydra_core/data/statistics/Windrichting/Schiphol/Richtingskansen_Schiphol_2017.txt +28 -0
  202. pydra_core/data/statistics/Windrichting/Schiphol/kanswindrichting_v01.txt +28 -0
  203. pydra_core/data/statistics/Windrichting/Waddenzee/KansenWindrichting_WZ.txt +17 -0
  204. pydra_core/data/statistics/Windrichting/Waddenzee/KansenWindrichting_WZ_2017.txt +24 -0
  205. pydra_core/data/statistics/Windrichting/Westerschelde/KansenWindrichting_WS.txt +17 -0
  206. pydra_core/data/statistics/Windrichting/Westerschelde/KansenWindrichting_WS_2017.txt +24 -0
  207. pydra_core/data/statistics/Windsnelheid/De Kooy/OvkansWindsnelheid_Texel.txt +70 -0
  208. pydra_core/data/statistics/Windsnelheid/De Kooy/Ovkanswind_de Kooy_2017.txt +92 -0
  209. pydra_core/data/statistics/Windsnelheid/De Kooy/Ovkanswind_de Kooy_2017_metOnzHeid.txt +92 -0
  210. pydra_core/data/statistics/Windsnelheid/Deelen/Ovkanswind_Deelen_2017.txt +90 -0
  211. pydra_core/data/statistics/Windsnelheid/Deelen/Ovkanswind_Deelen_2017_metOnzHeid.txt +90 -0
  212. pydra_core/data/statistics/Windsnelheid/Hoek van Holland/OvkansWindsnelheid_Hoek van Holland.txt +70 -0
  213. pydra_core/data/statistics/Windsnelheid/Hoek van Holland/Ovkanswind_Hoek van Holland_2017.txt +92 -0
  214. pydra_core/data/statistics/Windsnelheid/Hoek van Holland/Ovkanswind_Hoek van Holland_2017_metOnzHeid.txt +92 -0
  215. pydra_core/data/statistics/Windsnelheid/IJmuiden/OvkansWindsnelheid_IJmuiden.txt +70 -0
  216. pydra_core/data/statistics/Windsnelheid/IJmuiden/Ovkanswind_IJmuiden_2017.txt +92 -0
  217. pydra_core/data/statistics/Windsnelheid/IJmuiden/Ovkanswind_IJmuiden_2017_metOnzHeid.txt +92 -0
  218. pydra_core/data/statistics/Windsnelheid/Schiphol/Ovkanswind_Schiphol_12sectoren.txt +51 -0
  219. pydra_core/data/statistics/Windsnelheid/Schiphol/Ovkanswind_Schiphol_12sectoren_2017.txt +90 -0
  220. pydra_core/data/statistics/Windsnelheid/Schiphol/Ovkanswind_Schiphol_12sectoren_2017_metOnzHeid.txt +90 -0
  221. pydra_core/data/statistics/Windsnelheid/Schiphol/Ovkanswind_Schiphol_12sectoren_2017_metWindDrag.txt +97 -0
  222. pydra_core/data/statistics/Windsnelheid/Schiphol/Ovkanswind_Schiphol_12sectoren_2017_metWindDrag_metOnzHeid.txt +97 -0
  223. pydra_core/data/statistics/Windsnelheid/Schiphol/Ovkanswind_Schiphol_16sectoren_2017_metWindDrag.txt +97 -0
  224. pydra_core/data/statistics/Windsnelheid/Schiphol/Ovkanswind_Schiphol_16sectoren_2017_metWindDrag_metOnzHeid.txt +97 -0
  225. pydra_core/data/statistics/Windsnelheid/Schiphol/Ovkanswind_Schiphol_2017.txt +90 -0
  226. pydra_core/data/statistics/Windsnelheid/Schiphol/Ovkanswind_Schiphol_2017_metOnzHeid.txt +90 -0
  227. pydra_core/data/statistics/Windsnelheid/Schiphol/Ovkanswind_Schiphol_met_Volkerfactor_2017.txt +90 -0
  228. pydra_core/data/statistics/Windsnelheid/Schiphol/Ovkanswind_Schiphol_met_Volkerfactor_2017_metOnzHeid.txt +90 -0
  229. pydra_core/data/statistics/Windsnelheid/Schiphol/Ovkanswind_schiphol.txt +58 -0
  230. pydra_core/data/statistics/Windsnelheid/Schiphol/Ovkanswind_schiphol_10%.txt +64 -0
  231. pydra_core/data/statistics/Windsnelheid/Schiphol/Ovkanswind_schiphol_5%.txt +62 -0
  232. pydra_core/data/statistics/Windsnelheid/Schiphol/Ovkanswind_schiphol_B_met volker.txt +60 -0
  233. pydra_core/data/statistics/Windsnelheid/Vlissingen/OvkansWindsnelheid_OS.txt +67 -0
  234. pydra_core/data/statistics/Windsnelheid/Vlissingen/OvkansWindsnelheid_Vlissingen.txt +70 -0
  235. pydra_core/data/statistics/Windsnelheid/Vlissingen/Ovkanswind_Vlissingen_16sectoren_2023.txt +92 -0
  236. pydra_core/data/statistics/Windsnelheid/Vlissingen/Ovkanswind_Vlissingen_16sectoren_2023_metOnzHeid.txt +91 -0
  237. pydra_core/data/statistics/Windsnelheid/Vlissingen/Ovkanswind_Vlissingen_2017.txt +92 -0
  238. pydra_core/data/statistics/Windsnelheid/Vlissingen/Ovkanswind_Vlissingen_2017_metOnzHeid.txt +92 -0
  239. pydra_core/data/statistics/Windsnelheid/Vlissingen/Ovkanswind_Vlissingen_2017_metWindDrag.txt +97 -0
  240. pydra_core/data/statistics/Windsnelheid/Vlissingen/Ovkanswind_Vlissingen_2017_metWindDrag_metOnzHeid.txt +97 -0
  241. pydra_core/data/statistics/Windsnelheid/West-Terschelling/OvkansWindsnelheid_West-Tersch.txt +70 -0
  242. pydra_core/data/statistics/Windsnelheid/West-Terschelling/Ovkanswind_West Terschelling_2017.txt +92 -0
  243. pydra_core/data/statistics/Windsnelheid/West-Terschelling/Ovkanswind_West Terschelling_2017_metOnzHeid.txt +92 -0
  244. pydra_core/data/statistics/Zeewaterstand/Delfzijl/CondPovDelfzijl_12u_zichtjaar1985_2017.txt +82 -0
  245. pydra_core/data/statistics/Zeewaterstand/Delfzijl/CondPovDelfzijl_12u_zichtjaar1985_2017_metOnzHeid.txt +82 -0
  246. pydra_core/data/statistics/Zeewaterstand/Delfzijl/CondPovDelfzijl_12u_zichtjaar2017.txt +82 -0
  247. pydra_core/data/statistics/Zeewaterstand/Delfzijl/CondPovDelfzijl_12u_zichtjaar2017_metOnzHeid.txt +82 -0
  248. pydra_core/data/statistics/Zeewaterstand/Delfzijl/OvkansZee_Delfzijl.txt +71 -0
  249. pydra_core/data/statistics/Zeewaterstand/Den Helder/CondPovDenHelder_12u_zichtjaar1985_2017.txt +90 -0
  250. pydra_core/data/statistics/Zeewaterstand/Den Helder/CondPovDenHelder_12u_zichtjaar1985_2017_metOnzHeid.txt +90 -0
  251. pydra_core/data/statistics/Zeewaterstand/Den Helder/CondPovDenHelder_12u_zichtjaar2017.txt +89 -0
  252. pydra_core/data/statistics/Zeewaterstand/Den Helder/CondPovDenHelder_12u_zichtjaar2017_metOnzHeid.txt +89 -0
  253. pydra_core/data/statistics/Zeewaterstand/Den Helder/OvkansZee_Den Helder.txt +71 -0
  254. pydra_core/data/statistics/Zeewaterstand/Den Oever/CondPovDenOeverBuiten_12u_zichtjaar1985_2017.txt +89 -0
  255. pydra_core/data/statistics/Zeewaterstand/Den Oever/CondPovDenOeverBuiten_12u_zichtjaar1985_2017_metOnzHeid.txt +89 -0
  256. pydra_core/data/statistics/Zeewaterstand/Den Oever/CondPovDenOeverBuiten_12u_zichtjaar2017.txt +88 -0
  257. pydra_core/data/statistics/Zeewaterstand/Den Oever/CondPovDenOeverBuiten_12u_zichtjaar2017_metOnzHeid.txt +88 -0
  258. pydra_core/data/statistics/Zeewaterstand/Den Oever/OvkansZee_Den Oever.txt +71 -0
  259. pydra_core/data/statistics/Zeewaterstand/Hansweert/CondPovHansweert_12u_zichtjaar1985_2017.txt +72 -0
  260. pydra_core/data/statistics/Zeewaterstand/Hansweert/CondPovHansweert_12u_zichtjaar1985_2017_metOnzHeid.txt +72 -0
  261. pydra_core/data/statistics/Zeewaterstand/Hansweert/CondPovHansweert_12u_zichtjaar2017.txt +71 -0
  262. pydra_core/data/statistics/Zeewaterstand/Hansweert/CondPovHansweert_12u_zichtjaar2017_metOnzHeid.txt +71 -0
  263. pydra_core/data/statistics/Zeewaterstand/Hansweert/OvkansZee_Hansweert.txt +71 -0
  264. pydra_core/data/statistics/Zeewaterstand/Harlingen/CondPovHarlingen_12u_zichtjaar1985_2017.txt +86 -0
  265. pydra_core/data/statistics/Zeewaterstand/Harlingen/CondPovHarlingen_12u_zichtjaar1985_2017_metOnzHeid.txt +86 -0
  266. pydra_core/data/statistics/Zeewaterstand/Harlingen/CondPovHarlingen_12u_zichtjaar2017.txt +85 -0
  267. pydra_core/data/statistics/Zeewaterstand/Harlingen/CondPovHarlingen_12u_zichtjaar2017_metOnzHeid.txt +85 -0
  268. pydra_core/data/statistics/Zeewaterstand/Harlingen/OvkansZee_Harlingen.txt +71 -0
  269. pydra_core/data/statistics/Zeewaterstand/Hoek van Holland/CondPovHoekvanHolland_12u_zichtjaar1985_2017.txt +85 -0
  270. pydra_core/data/statistics/Zeewaterstand/Hoek van Holland/CondPovHoekvanHolland_12u_zichtjaar1985_2017_metOnzHeid.txt +85 -0
  271. pydra_core/data/statistics/Zeewaterstand/Hoek van Holland/CondPovHoekvanHolland_12u_zichtjaar2017.txt +84 -0
  272. pydra_core/data/statistics/Zeewaterstand/Hoek van Holland/CondPovHoekvanHolland_12u_zichtjaar2017_metOnzHeid.txt +84 -0
  273. pydra_core/data/statistics/Zeewaterstand/Hoek van Holland/OvkansZee_Hoek van Holland.txt +71 -0
  274. pydra_core/data/statistics/Zeewaterstand/Huibertgat/CondPovHuibertgat_12u_zichtjaar1985_2017.txt +87 -0
  275. pydra_core/data/statistics/Zeewaterstand/Huibertgat/CondPovHuibertgat_12u_zichtjaar1985_2017_metOnzHeid.txt +87 -0
  276. pydra_core/data/statistics/Zeewaterstand/Huibertgat/CondPovHuibertgat_12u_zichtjaar2017.txt +86 -0
  277. pydra_core/data/statistics/Zeewaterstand/Huibertgat/CondPovHuibertgat_12u_zichtjaar2017_metOnzHeid.txt +86 -0
  278. pydra_core/data/statistics/Zeewaterstand/Huibertgat/OvkansZee_Huibertgat.txt +71 -0
  279. pydra_core/data/statistics/Zeewaterstand/IJmuiden/CondPovIJmuiden_12u_zichtjaar1985_2017.txt +86 -0
  280. pydra_core/data/statistics/Zeewaterstand/IJmuiden/CondPovIJmuiden_12u_zichtjaar1985_2017_metOnzHeid.txt +86 -0
  281. pydra_core/data/statistics/Zeewaterstand/IJmuiden/CondPovIJmuiden_12u_zichtjaar2017.txt +86 -0
  282. pydra_core/data/statistics/Zeewaterstand/IJmuiden/CondPovIJmuiden_12u_zichtjaar2017_metOnzHeid.txt +86 -0
  283. pydra_core/data/statistics/Zeewaterstand/IJmuiden/OvkansZee_IJmuiden.txt +71 -0
  284. pydra_core/data/statistics/Zeewaterstand/IJmuiden virtueel/CondPovIJmuiden-Additional_12u_zichtjaar1985_2017.txt +86 -0
  285. pydra_core/data/statistics/Zeewaterstand/IJmuiden virtueel/CondPovIJmuiden-Additional_12u_zichtjaar1985_2017_metOnzHeid.txt +86 -0
  286. pydra_core/data/statistics/Zeewaterstand/IJmuiden virtueel/CondPovIJmuiden-Additional_12u_zichtjaar2017.txt +86 -0
  287. pydra_core/data/statistics/Zeewaterstand/IJmuiden virtueel/CondPovIJmuiden-Additional_12u_zichtjaar2017_metOnzHeid.txt +86 -0
  288. pydra_core/data/statistics/Zeewaterstand/IJmuiden virtueel/OvkansZee_IJmuiden_virtueel.txt +71 -0
  289. pydra_core/data/statistics/Zeewaterstand/Lauwersoog/CondPovLauwersoog_12u_zichtjaar1985_2017.txt +86 -0
  290. pydra_core/data/statistics/Zeewaterstand/Lauwersoog/CondPovLauwersoog_12u_zichtjaar1985_2017_metOnzHeid.txt +86 -0
  291. pydra_core/data/statistics/Zeewaterstand/Lauwersoog/CondPovLauwersoog_12u_zichtjaar2017.txt +85 -0
  292. pydra_core/data/statistics/Zeewaterstand/Lauwersoog/CondPovLauwersoog_12u_zichtjaar2017_metOnzHeid.txt +85 -0
  293. pydra_core/data/statistics/Zeewaterstand/Lauwersoog/OvkansZee_Lauwersoog.txt +71 -0
  294. pydra_core/data/statistics/Zeewaterstand/Maasmond/CondPovMaasmond_12u_zichtjaar1985_2011.txt +89 -0
  295. pydra_core/data/statistics/Zeewaterstand/Maasmond/CondPovMaasmond_12u_zichtjaar1985_2017.txt +89 -0
  296. pydra_core/data/statistics/Zeewaterstand/Maasmond/CondPovMaasmond_12u_zichtjaar1985_2017_metOnzheid.txt +93 -0
  297. pydra_core/data/statistics/Zeewaterstand/Maasmond/CondPovMaasmond_12u_zichtjaar2017.txt +86 -0
  298. pydra_core/data/statistics/Zeewaterstand/Maasmond/CondPovMaasmond_12u_zichtjaar2017_metOnzheid.txt +86 -0
  299. pydra_core/data/statistics/Zeewaterstand/Oosterschelde/CondPovOS11_12u_zichtjaar1985_2017.txt +80 -0
  300. pydra_core/data/statistics/Zeewaterstand/Oosterschelde/CondPovOS11_12u_zichtjaar1985_2017_metOnzHeid.txt +80 -0
  301. pydra_core/data/statistics/Zeewaterstand/Oosterschelde/CondPovOS11_12u_zichtjaar2017.txt +80 -0
  302. pydra_core/data/statistics/Zeewaterstand/Oosterschelde/CondPovOS11_12u_zichtjaar2017_metOnzHeid.txt +80 -0
  303. pydra_core/data/statistics/Zeewaterstand/Oosterschelde/CondPovOS11_16sectoren_12u_2023.txt +75 -0
  304. pydra_core/data/statistics/Zeewaterstand/Oosterschelde/CondPovOS11_16sectoren_12u_2023_metOnzHeid.txt +74 -0
  305. pydra_core/data/statistics/Zeewaterstand/Oosterschelde/OvkansZee_OS11.txt +71 -0
  306. pydra_core/data/statistics/Zeewaterstand/Oosterschelde/OvkansZeewaterstand_OS.txt +72 -0
  307. pydra_core/data/statistics/Zeewaterstand/Vlissingen/CondPovVlissingen_12u_zichtjaar1985_2017.txt +75 -0
  308. pydra_core/data/statistics/Zeewaterstand/Vlissingen/CondPovVlissingen_12u_zichtjaar1985_2017_metOnzHeid.txt +75 -0
  309. pydra_core/data/statistics/Zeewaterstand/Vlissingen/CondPovVlissingen_12u_zichtjaar2017.txt +75 -0
  310. pydra_core/data/statistics/Zeewaterstand/Vlissingen/CondPovVlissingen_12u_zichtjaar2017_metOnzHeid.txt +75 -0
  311. pydra_core/data/statistics/Zeewaterstand/Vlissingen/OvkansZee_Vlissingen.txt +71 -0
  312. pydra_core/data/statistics/Zeewaterstand/Vlissingen virtueel/CondPovVlissingen-Additional_12u_zichtjaar1985_2017.txt +75 -0
  313. pydra_core/data/statistics/Zeewaterstand/Vlissingen virtueel/CondPovVlissingen-Additional_12u_zichtjaar1985_2017_metOnzHeid.txt +75 -0
  314. pydra_core/data/statistics/Zeewaterstand/Vlissingen virtueel/CondPovVlissingen-Additional_12u_zichtjaar2017.txt +75 -0
  315. pydra_core/data/statistics/Zeewaterstand/Vlissingen virtueel/CondPovVlissingen-Additional_12u_zichtjaar2017_metOnzHeid.txt +75 -0
  316. pydra_core/data/statistics/Zeewaterstand/Vlissingen virtueel/OvkansZee_Vlissingen_virtueel.txt +71 -0
  317. pydra_core/data/statistics/Zeewaterstand/West-Terschelling/CondPovWestTerschelling_12u_zichtjaar1985_2017.txt +88 -0
  318. pydra_core/data/statistics/Zeewaterstand/West-Terschelling/CondPovWestTerschelling_12u_zichtjaar1985_2017_metOnzHeid.txt +88 -0
  319. pydra_core/data/statistics/Zeewaterstand/West-Terschelling/CondPovWestTerschelling_12u_zichtjaar2017.txt +87 -0
  320. pydra_core/data/statistics/Zeewaterstand/West-Terschelling/CondPovWestTerschelling_12u_zichtjaar2017_metOnzHeid.txt +87 -0
  321. pydra_core/data/statistics/Zeewaterstand/West-Terschelling/OvkansZee_West-Terschelling.txt +71 -0
  322. pydra_core/hrdatabase/__init__.py +0 -0
  323. pydra_core/hrdatabase/hrdatabase.py +177 -0
  324. pydra_core/io/__init__.py +0 -0
  325. pydra_core/io/database_hr.py +598 -0
  326. pydra_core/io/database_settings.py +183 -0
  327. pydra_core/io/file_hydranl.py +92 -0
  328. pydra_core/location/__init__.py +0 -0
  329. pydra_core/location/location.py +115 -0
  330. pydra_core/location/model/__init__.py +0 -0
  331. pydra_core/location/model/base_model.py +270 -0
  332. pydra_core/location/model/loading/__init__.py +0 -0
  333. pydra_core/location/model/loading/loading.py +368 -0
  334. pydra_core/location/model/loading/loading_factory.py +89 -0
  335. pydra_core/location/model/loading/loading_model/__init__.py +0 -0
  336. pydra_core/location/model/loading/loading_model/loading_model.py +324 -0
  337. pydra_core/location/model/loading/other_systems/__init__.py +0 -0
  338. pydra_core/location/model/loading/other_systems/loading_wave_overtopping.py +122 -0
  339. pydra_core/location/model/loading/water_systems/__init__.py +0 -0
  340. pydra_core/location/model/loading/water_systems/loading_coast.py +54 -0
  341. pydra_core/location/model/loading/water_systems/loading_eastern_scheldt.py +169 -0
  342. pydra_core/location/model/loading/water_systems/loading_ijssel_vechtdelta.py +55 -0
  343. pydra_core/location/model/loading/water_systems/loading_lake.py +55 -0
  344. pydra_core/location/model/loading/water_systems/loading_lower_rivier.py +68 -0
  345. pydra_core/location/model/loading/water_systems/loading_upper_river.py +55 -0
  346. pydra_core/location/model/statistics/__init__.py +0 -0
  347. pydra_core/location/model/statistics/other_systems/__init__.py +0 -0
  348. pydra_core/location/model/statistics/other_systems/statistics_wave_overtopping.py +72 -0
  349. pydra_core/location/model/statistics/statistics.py +171 -0
  350. pydra_core/location/model/statistics/statistics_factory.py +89 -0
  351. pydra_core/location/model/statistics/stochastics/__init__.py +0 -0
  352. pydra_core/location/model/statistics/stochastics/barrier/__init__.py +0 -0
  353. pydra_core/location/model/statistics/stochastics/barrier/barrier.py +43 -0
  354. pydra_core/location/model/statistics/stochastics/barrier/barrier_easternscheldt.py +147 -0
  355. pydra_core/location/model/statistics/stochastics/barrier/barrier_europoort.py +209 -0
  356. pydra_core/location/model/statistics/stochastics/barrier/barrier_ramspol.py +41 -0
  357. pydra_core/location/model/statistics/stochastics/barrier/no_barrier.py +21 -0
  358. pydra_core/location/model/statistics/stochastics/discharge.py +108 -0
  359. pydra_core/location/model/statistics/stochastics/discrete_probability.py +55 -0
  360. pydra_core/location/model/statistics/stochastics/lake_level.py +158 -0
  361. pydra_core/location/model/statistics/stochastics/model_uncertainty.py +358 -0
  362. pydra_core/location/model/statistics/stochastics/sea_level/sea_level.py +53 -0
  363. pydra_core/location/model/statistics/stochastics/sea_level/sea_level_lower_river.py +93 -0
  364. pydra_core/location/model/statistics/stochastics/sea_level/sea_level_point.py +65 -0
  365. pydra_core/location/model/statistics/stochastics/sea_level/sea_level_triangular.py +158 -0
  366. pydra_core/location/model/statistics/stochastics/sigma_function.py +24 -0
  367. pydra_core/location/model/statistics/stochastics/wave_shape.py +624 -0
  368. pydra_core/location/model/statistics/stochastics/wind_speed.py +196 -0
  369. pydra_core/location/model/statistics/water_systems/__init__.py +0 -0
  370. pydra_core/location/model/statistics/water_systems/statistics_coast.py +153 -0
  371. pydra_core/location/model/statistics/water_systems/statistics_eastern_scheldt.py +177 -0
  372. pydra_core/location/model/statistics/water_systems/statistics_ijssel_vechtdelta.py +229 -0
  373. pydra_core/location/model/statistics/water_systems/statistics_lake.py +86 -0
  374. pydra_core/location/model/statistics/water_systems/statistics_lower_river.py +321 -0
  375. pydra_core/location/model/statistics/water_systems/statistics_upper_river.py +86 -0
  376. pydra_core/location/model/water_system.py +249 -0
  377. pydra_core/location/model/wave_overtopping.py +25 -0
  378. pydra_core/location/profile/__init__.py +0 -0
  379. pydra_core/location/profile/foreland.py +246 -0
  380. pydra_core/location/profile/lib/DikesOvertopping.LICENSE +619 -0
  381. pydra_core/location/profile/lib/README.MD +10 -0
  382. pydra_core/location/profile/lib/__init__.py +1 -0
  383. pydra_core/location/profile/profile.py +971 -0
  384. pydra_core/location/profile/profile_loading.py +473 -0
  385. pydra_core/location/settings/__init__.py +0 -0
  386. pydra_core/location/settings/settings.py +387 -0
  387. pydra_core-0.0.1.dist-info/METADATA +22 -0
  388. pydra_core-0.0.1.dist-info/RECORD +389 -0
  389. pydra_core-0.0.1.dist-info/WHEEL +5 -0
@@ -0,0 +1,87 @@
1
+ * De conditionele overschrijdingskans van de zeewaterstand zonder statistische onzekerheid gegeven de windrichting
2
+ * voor een 12-uursperiode te West Terschelling, gelegen op locatie:
3
+ * 143870, 597420
4
+ *
5
+ * Deze statistiek is afgeleid met dezelfde methode als gebruikt in 3280.20.03.
6
+ * De door Deltares op 10 november 2016 aangeleverde statistiek is gebruikt als bron.
7
+ *
8
+ * Het waterstandsbereik waarvoor de overschrijdingskansen zijn gegeven is het hoogwater 2017 tot 8.00 m + NAP
9
+ * met een stapgrootte van 0.1 m. De laatste stapgrootte kan afwijken om op 8.00 m uit te komen. Hierbij wordt
10
+ * een stapgrootte van minimaal 6 en maximaal 15 cm gekozen.
11
+ *
12
+ * Door: G.W.F. Rongen van HKV lijn in water
13
+ * Project: PR3510.10
14
+ *
15
+ * m (m+NAP) 30 60 90 120 150 180 210 240 270 300 330 360
16
+ 0.90 1.000e+00 1.000e+00 1.000e+00 1.000e+00 1.000e+00 1.000e+00 1.000e+00 1.000e+00 1.000e+00 1.000e+00 1.000e+00 1.000e+00
17
+ 1.00 1.000e+00 1.000e+00 1.000e+00 1.000e+00 1.000e+00 1.000e+00 1.000e+00 4.071e-01 4.949e-01 4.789e-01 3.606e-01 2.777e-01
18
+ 1.10 1.000e+00 1.000e+00 1.000e+00 1.000e+00 1.000e+00 1.000e+00 1.000e+00 1.657e-01 2.449e-01 2.294e-01 1.300e-01 7.712e-02
19
+ 1.20 1.000e+00 1.000e+00 1.000e+00 1.000e+00 1.000e+00 1.000e+00 1.000e+00 6.745e-02 1.212e-01 1.098e-01 4.687e-02 2.142e-02
20
+ 1.30 1.000e+00 7.053e-01 5.256e-01 7.419e-01 7.123e-01 3.882e-01 4.385e-01 5.136e-02 1.055e-01 9.882e-02 4.390e-02 1.693e-02
21
+ 1.40 2.987e-01 1.956e-01 1.458e-01 2.058e-01 1.976e-01 1.077e-01 1.444e-01 3.840e-02 9.057e-02 8.777e-02 4.071e-02 1.319e-02
22
+ 1.50 7.897e-02 5.172e-02 3.854e-02 5.440e-02 5.223e-02 2.846e-02 4.575e-02 2.820e-02 7.655e-02 7.693e-02 3.737e-02 1.014e-02
23
+ 1.60 1.993e-02 1.306e-02 9.729e-03 1.373e-02 1.318e-02 7.184e-03 1.396e-02 2.034e-02 6.372e-02 6.651e-02 3.392e-02 7.691e-03
24
+ 1.70 4.810e-03 3.151e-03 2.348e-03 3.314e-03 3.182e-03 1.734e-03 4.105e-03 1.441e-02 5.222e-02 5.670e-02 3.043e-02 5.755e-03
25
+ 1.80 1.111e-03 7.279e-04 5.424e-04 7.656e-04 7.351e-04 4.006e-04 1.165e-03 1.003e-02 4.212e-02 4.764e-02 2.698e-02 4.250e-03
26
+ 1.90 2.461e-04 1.612e-04 1.201e-04 1.695e-04 1.628e-04 8.870e-05 3.198e-04 6.864e-03 3.343e-02 3.944e-02 2.361e-02 3.098e-03
27
+ 2.00 5.230e-05 3.425e-05 2.553e-05 3.603e-05 3.459e-05 1.885e-05 8.487e-05 4.616e-03 2.609e-02 3.215e-02 2.039e-02 2.229e-03
28
+ 2.10 1.068e-05 6.992e-06 5.211e-06 7.354e-06 7.061e-06 3.848e-06 2.181e-05 3.052e-03 2.003e-02 2.580e-02 1.736e-02 1.584e-03
29
+ 2.20 2.095e-06 1.372e-06 1.023e-06 1.443e-06 1.386e-06 7.552e-07 5.429e-06 1.984e-03 1.512e-02 2.038e-02 1.458e-02 1.112e-03
30
+ 2.30 3.957e-07 2.592e-07 1.932e-07 2.726e-07 2.618e-07 1.426e-07 1.311e-06 1.268e-03 1.122e-02 1.583e-02 1.205e-02 7.708e-04
31
+ 2.40 7.199e-08 4.715e-08 3.514e-08 4.960e-08 4.762e-08 2.595e-08 3.070e-07 7.967e-04 8.179e-03 1.210e-02 9.815e-03 5.278e-04
32
+ 2.50 1.262e-08 8.268e-09 6.162e-09 8.697e-09 8.350e-09 4.550e-09 6.982e-08 4.925e-04 5.858e-03 9.088e-03 7.864e-03 3.571e-04
33
+ 2.60 2.135e-09 1.399e-09 1.042e-09 1.471e-09 1.412e-09 7.696e-10 1.543e-08 2.995e-04 4.122e-03 6.709e-03 6.197e-03 2.387e-04
34
+ 2.70 3.486e-10 2.283e-10 1.702e-10 2.402e-10 2.306e-10 1.257e-10 3.314e-09 1.791e-04 2.848e-03 4.865e-03 4.800e-03 1.577e-04
35
+ 2.80 5.498e-11 3.601e-11 2.684e-11 3.788e-11 3.637e-11 1.982e-11 6.926e-10 1.054e-04 1.932e-03 3.465e-03 3.653e-03 1.030e-04
36
+ 2.90 8.380e-12 5.489e-12 4.090e-12 5.773e-12 5.543e-12 3.021e-12 1.408e-10 6.103e-05 1.287e-03 2.423e-03 2.730e-03 6.648e-05
37
+ 3.00 1.235e-12 8.091e-13 6.029e-13 8.510e-13 8.170e-13 4.452e-13 2.789e-11 3.477e-05 8.414e-04 1.663e-03 2.003e-03 4.242e-05
38
+ 3.10 1.762e-13 1.154e-13 8.599e-14 1.214e-13 1.165e-13 6.350e-14 5.378e-12 1.949e-05 5.397e-04 1.120e-03 1.441e-03 2.676e-05
39
+ 3.20 2.432e-14 1.593e-14 1.187e-14 1.676e-14 1.609e-14 8.768e-15 1.011e-12 1.076e-05 3.396e-04 7.400e-04 1.017e-03 1.669e-05
40
+ 3.30 3.253e-15 2.131e-15 1.588e-15 2.241e-15 2.152e-15 1.173e-15 1.853e-13 5.842e-06 2.097e-04 4.794e-04 7.027e-04 1.029e-05
41
+ 3.40 4.216e-16 2.761e-16 2.058e-16 2.905e-16 2.789e-16 1.520e-16 3.312e-14 3.123e-06 1.269e-04 3.044e-04 4.758e-04 6.278e-06
42
+ 3.50 5.297e-17 3.470e-17 2.586e-17 3.649e-17 3.504e-17 1.909e-17 5.777e-15 1.644e-06 7.536e-05 1.895e-04 3.154e-04 3.787e-06
43
+ 3.60 6.456e-18 4.228e-18 3.151e-18 4.447e-18 4.270e-18 2.327e-18 9.834e-16 8.517e-07 4.386e-05 1.156e-04 2.046e-04 2.259e-06
44
+ 3.70 7.634e-19 5.000e-19 3.726e-19 5.259e-19 5.049e-19 2.752e-19 1.635e-16 4.344e-07 2.503e-05 6.904e-05 1.298e-04 1.333e-06
45
+ 3.80 8.763e-20 5.740e-20 4.277e-20 6.037e-20 5.796e-20 3.158e-20 2.655e-17 2.182e-07 1.399e-05 4.039e-05 8.045e-05 7.784e-07
46
+ 3.90 9.768e-21 6.398e-21 4.768e-21 6.730e-21 6.461e-21 3.521e-21 4.212e-18 1.079e-07 7.668e-06 2.314e-05 4.874e-05 4.496e-07
47
+ 4.00 1.058e-21 6.928e-22 5.163e-22 7.287e-22 6.997e-22 3.813e-22 6.531e-19 5.256e-08 4.117e-06 1.297e-05 2.883e-05 2.569e-07
48
+ 4.10 1.113e-22 7.291e-23 5.434e-23 7.669e-23 7.363e-23 4.012e-23 9.903e-20 2.521e-08 2.165e-06 7.114e-06 1.665e-05 1.452e-07
49
+ 4.20 1.139e-23 7.459e-24 5.559e-24 7.846e-24 7.533e-24 4.105e-24 1.468e-20 1.191e-08 1.115e-06 3.818e-06 9.378e-06 8.125e-08
50
+ 4.30 1.133e-24 7.421e-25 5.530e-25 7.806e-25 7.494e-25 4.084e-25 2.130e-21 5.540e-09 5.626e-07 2.004e-06 5.151e-06 4.498e-08
51
+ 4.40 1.097e-25 7.182e-26 5.352e-26 7.554e-26 7.253e-26 3.952e-26 3.023e-22 2.539e-09 2.779e-07 1.028e-06 2.758e-06 2.464e-08
52
+ 4.50 1.033e-26 6.764e-27 5.040e-27 7.114e-27 6.830e-27 3.722e-27 4.199e-23 1.146e-09 1.344e-07 5.158e-07 1.438e-06 1.336e-08
53
+ 4.60 9.466e-28 6.200e-28 4.620e-28 6.521e-28 6.261e-28 3.412e-28 5.711e-24 5.097e-10 6.361e-08 2.529e-07 7.305e-07 7.169e-09
54
+ 4.70 8.449e-29 5.534e-29 4.124e-29 5.821e-29 5.588e-29 3.045e-29 7.606e-25 2.233e-10 2.947e-08 1.211e-07 3.611e-07 3.808e-09
55
+ 4.80 7.344e-30 4.810e-30 3.585e-30 5.059e-30 4.858e-30 2.647e-30 9.922e-26 9.636e-11 1.336e-08 5.667e-08 1.736e-07 2.002e-09
56
+ 4.90 6.219e-31 4.073e-31 3.035e-31 4.284e-31 4.113e-31 2.242e-31 1.268e-26 4.097e-11 5.928e-09 2.590e-08 8.118e-08 1.042e-09
57
+ 5.00 5.132e-32 3.361e-32 2.505e-32 3.535e-32 3.394e-32 1.850e-32 1.588e-27 1.717e-11 2.573e-09 1.156e-08 3.689e-08 5.369e-10
58
+ 5.10 4.127e-33 2.703e-33 2.015e-33 2.843e-33 2.730e-33 1.488e-33 1.949e-28 7.087e-12 1.092e-09 5.033e-09 1.628e-08 2.739e-10
59
+ 5.20 3.236e-34 2.120e-34 1.580e-34 2.230e-34 2.141e-34 1.167e-34 2.345e-29 2.883e-12 4.536e-10 2.139e-09 6.979e-09 1.383e-10
60
+ 5.30 2.475e-35 1.621e-35 1.208e-35 1.705e-35 1.637e-35 8.920e-36 2.767e-30 1.156e-12 1.842e-10 8.872e-10 2.903e-09 6.916e-11
61
+ 5.40 1.846e-36 1.209e-36 9.010e-37 1.272e-36 1.221e-36 6.653e-37 3.201e-31 4.565e-13 7.315e-11 3.589e-10 1.172e-09 3.424e-11
62
+ 5.50 1.343e-37 8.798e-38 6.556e-38 9.253e-38 8.884e-38 4.841e-38 3.633e-32 1.777e-13 2.840e-11 1.416e-10 4.585e-10 1.679e-11
63
+ 5.60 9.538e-39 6.247e-39 4.655e-39 6.571e-39 6.309e-39 3.438e-39 4.045e-33 6.819e-14 1.078e-11 5.449e-11 1.739e-10 8.149e-12
64
+ 5.70 6.610e-40 4.330e-40 3.227e-40 4.554e-40 4.372e-40 2.383e-40 4.419e-34 2.579e-14 3.999e-12 2.044e-11 6.389e-11 3.917e-12
65
+ 5.80 4.473e-41 2.930e-41 2.183e-41 3.081e-41 2.959e-41 1.612e-41 4.739e-35 9.613e-15 1.450e-12 7.472e-12 2.273e-11 1.865e-12
66
+ 5.90 2.955e-42 1.936e-42 1.442e-42 2.036e-42 1.955e-42 1.065e-42 4.988e-36 3.532e-15 5.138e-13 2.662e-12 7.828e-12 8.794e-13
67
+ 6.00 1.907e-43 1.249e-43 9.308e-44 1.314e-43 1.261e-43 6.873e-44 5.154e-37 1.279e-15 1.779e-13 9.239e-13 2.608e-12 4.107e-13
68
+ 6.10 1.202e-44 7.873e-45 5.867e-45 8.281e-45 7.950e-45 4.332e-45 5.229e-38 4.566e-16 6.017e-14 3.123e-13 8.403e-13 1.899e-13
69
+ 6.20 7.402e-46 4.848e-46 3.613e-46 5.099e-46 4.896e-46 2.668e-46 5.210e-39 1.607e-16 1.988e-14 1.028e-13 2.617e-13 8.702e-14
70
+ 6.30 4.454e-47 2.918e-47 2.174e-47 3.069e-47 2.946e-47 1.606e-47 5.099e-40 5.575e-17 6.417e-15 3.296e-14 7.873e-14 3.949e-14
71
+ 6.40 2.620e-48 1.716e-48 1.279e-48 1.805e-48 1.733e-48 9.444e-49 4.902e-41 1.907e-17 2.023e-15 1.028e-14 2.288e-14 1.775e-14
72
+ 6.50 1.506e-49 9.867e-50 7.353e-50 1.038e-49 9.965e-50 5.430e-50 4.630e-42 6.431e-18 6.227e-16 3.123e-15 6.416e-15 7.904e-15
73
+ 6.60 8.469e-51 5.547e-51 4.134e-51 5.835e-51 5.602e-51 3.053e-51 4.298e-43 2.138e-18 1.872e-16 9.230e-16 1.736e-15 3.487e-15
74
+ 6.70 4.656e-52 3.050e-52 2.273e-52 3.208e-52 3.080e-52 1.678e-52 3.920e-44 7.009e-19 5.493e-17 2.654e-16 4.532e-16 1.524e-15
75
+ 6.80 2.503e-53 1.640e-53 1.222e-53 1.725e-53 1.656e-53 9.023e-54 3.515e-45 2.265e-19 1.574e-17 7.421e-17 1.140e-16 6.597e-16
76
+ 6.90 1.317e-54 8.624e-55 6.426e-55 9.070e-55 8.709e-55 4.746e-55 3.098e-46 7.220e-20 4.401e-18 2.018e-17 2.765e-17 2.830e-16
77
+ 7.00 6.775e-56 4.437e-56 3.307e-56 4.667e-56 4.481e-56 2.442e-56 2.684e-47 2.269e-20 1.201e-18 5.337e-18 6.458e-18 1.203e-16
78
+ 7.10 3.411e-57 2.234e-57 1.665e-57 2.350e-57 2.256e-57 1.230e-57 2.287e-48 7.032e-21 3.200e-19 1.372e-18 1.452e-18 5.064e-17
79
+ 7.20 1.681e-58 1.101e-58 8.204e-59 1.158e-58 1.112e-58 6.058e-59 1.916e-49 2.149e-21 8.319e-20 3.427e-19 3.142e-19 2.113e-17
80
+ 7.30 8.107e-60 5.310e-60 3.957e-60 5.585e-60 5.362e-60 2.922e-60 1.579e-50 6.477e-22 2.110e-20 8.321e-20 6.540e-20 8.734e-18
81
+ 7.40 3.828e-61 2.507e-61 1.868e-61 2.637e-61 2.532e-61 1.380e-61 1.280e-51 1.925e-22 5.221e-21 1.963e-20 1.309e-20 3.578e-18
82
+ 7.50 1.769e-62 1.159e-62 8.637e-63 1.219e-62 1.170e-62 6.378e-63 1.021e-52 5.643e-23 1.260e-21 4.498e-21 2.518e-21 1.452e-18
83
+ 7.60 8.010e-64 5.246e-64 3.910e-64 5.518e-64 5.298e-64 2.887e-64 8.011e-54 1.632e-23 2.967e-22 1.001e-21 4.653e-22 5.843e-19
84
+ 7.70 3.551e-65 2.326e-65 1.733e-65 2.446e-65 2.349e-65 1.280e-65 6.185e-55 4.652e-24 6.814e-23 2.163e-22 8.257e-23 2.329e-19
85
+ 7.80 1.542e-66 1.010e-66 7.526e-67 1.062e-66 1.020e-66 5.557e-67 4.699e-56 1.308e-24 1.526e-23 4.538e-23 1.406e-23 9.203e-20
86
+ 7.90 6.558e-68 4.296e-68 3.201e-68 4.518e-68 4.338e-68 2.364e-68 3.514e-57 3.629e-25 3.333e-24 9.242e-24 2.299e-24 3.603e-20
87
+ 8.00 2.733e-69 1.790e-69 1.334e-69 1.883e-69 1.808e-69 9.852e-70 2.586e-58 9.930e-26 7.096e-25 1.827e-24 3.603e-25 1.398e-20
@@ -0,0 +1,87 @@
1
+ * De conditionele overschrijdingskans van de zeewaterstand met statistische onzekerheid gegeven de windrichting
2
+ * voor een 12-uursperiode te West Terschelling, gelegen op locatie:
3
+ * 143870, 597420
4
+ *
5
+ * Deze statistiek is afgeleid met dezelfde methode als gebruikt in 3280.20.03.
6
+ * De door Deltares op 10 november 2016 aangeleverde statistiek is gebruikt als bron.
7
+ *
8
+ * Het waterstandsbereik waarvoor de overschrijdingskansen zijn gegeven is het hoogwater 2017 tot 8.00 m + NAP
9
+ * met een stapgrootte van 0.1 m. De laatste stapgrootte kan afwijken om op 8.00 m uit te komen. Hierbij wordt
10
+ * een stapgrootte van minimaal 6 en maximaal 15 cm gekozen.
11
+ *
12
+ * Door: G.W.F. Rongen van HKV lijn in water
13
+ * Project: PR3510.10
14
+ *
15
+ * m (m+NAP) 30 60 90 120 150 180 210 240 270 300 330 360
16
+ 0.90 1.000e+00 1.000e+00 1.000e+00 1.000e+00 1.000e+00 1.000e+00 1.000e+00 1.000e+00 1.000e+00 1.000e+00 1.000e+00 1.000e+00
17
+ 1.00 1.000e+00 1.000e+00 1.000e+00 1.000e+00 1.000e+00 1.000e+00 1.000e+00 4.037e-01 4.886e-01 4.731e-01 3.592e-01 2.806e-01
18
+ 1.10 1.000e+00 1.000e+00 1.000e+00 1.000e+00 1.000e+00 1.000e+00 1.000e+00 1.643e-01 2.418e-01 2.266e-01 1.295e-01 7.793e-02
19
+ 1.20 1.000e+00 9.985e-01 9.891e-01 9.989e-01 9.986e-01 9.488e-01 9.539e-01 7.185e-02 1.282e-01 1.172e-01 5.203e-02 2.411e-02
20
+ 1.30 8.812e-01 6.790e-01 5.242e-01 7.060e-01 6.841e-01 3.903e-01 4.371e-01 5.079e-02 1.048e-01 9.827e-02 4.374e-02 1.676e-02
21
+ 1.40 3.016e-01 1.976e-01 1.472e-01 2.078e-01 1.995e-01 1.087e-01 1.444e-01 3.796e-02 8.989e-02 8.723e-02 4.054e-02 1.306e-02
22
+ 1.50 8.003e-02 5.242e-02 3.906e-02 5.513e-02 5.293e-02 2.885e-02 4.583e-02 2.786e-02 7.594e-02 7.642e-02 3.719e-02 1.003e-02
23
+ 1.60 2.027e-02 1.328e-02 9.894e-03 1.396e-02 1.341e-02 7.306e-03 1.401e-02 2.009e-02 6.318e-02 6.603e-02 3.374e-02 7.606e-03
24
+ 1.70 4.909e-03 3.215e-03 2.396e-03 3.382e-03 3.247e-03 1.769e-03 4.130e-03 1.423e-02 5.175e-02 5.627e-02 3.026e-02 5.689e-03
25
+ 1.80 1.138e-03 7.455e-04 5.556e-04 7.842e-04 7.529e-04 4.103e-04 1.175e-03 9.902e-03 4.172e-02 4.725e-02 2.681e-02 4.200e-03
26
+ 1.90 2.530e-04 1.657e-04 1.235e-04 1.743e-04 1.673e-04 9.119e-05 3.233e-04 6.773e-03 3.309e-02 3.909e-02 2.345e-02 3.061e-03
27
+ 2.00 5.396e-05 3.535e-05 2.634e-05 3.718e-05 3.569e-05 1.945e-05 8.600e-05 4.554e-03 2.582e-02 3.185e-02 2.024e-02 2.202e-03
28
+ 2.10 1.106e-05 7.242e-06 5.397e-06 7.618e-06 7.314e-06 3.985e-06 2.215e-05 3.010e-03 1.981e-02 2.555e-02 1.723e-02 1.565e-03
29
+ 2.20 2.178e-06 1.427e-06 1.063e-06 1.501e-06 1.441e-06 7.852e-07 5.528e-06 1.956e-03 1.495e-02 2.017e-02 1.446e-02 1.098e-03
30
+ 2.30 4.131e-07 2.706e-07 2.016e-07 2.846e-07 2.732e-07 1.489e-07 1.338e-06 1.250e-03 1.109e-02 1.567e-02 1.195e-02 7.609e-04
31
+ 2.40 7.544e-08 4.941e-08 3.682e-08 5.197e-08 4.990e-08 2.719e-08 3.141e-07 7.855e-04 8.079e-03 1.196e-02 9.723e-03 5.210e-04
32
+ 2.50 1.328e-08 8.699e-09 6.482e-09 9.150e-09 8.785e-09 4.787e-09 7.161e-08 4.855e-04 5.785e-03 8.984e-03 7.787e-03 3.524e-04
33
+ 2.60 2.255e-09 1.477e-09 1.101e-09 1.554e-09 1.492e-09 8.129e-10 1.586e-08 2.952e-04 4.069e-03 6.629e-03 6.133e-03 2.356e-04
34
+ 2.70 3.697e-10 2.422e-10 1.805e-10 2.547e-10 2.446e-10 1.333e-10 3.417e-09 1.765e-04 2.811e-03 4.805e-03 4.749e-03 1.556e-04
35
+ 2.80 5.855e-11 3.835e-11 2.858e-11 4.033e-11 3.872e-11 2.110e-11 7.158e-10 1.039e-04 1.907e-03 3.421e-03 3.612e-03 1.016e-04
36
+ 2.90 8.960e-12 5.869e-12 4.373e-12 6.173e-12 5.927e-12 3.230e-12 1.459e-10 6.015e-05 1.269e-03 2.392e-03 2.698e-03 6.557e-05
37
+ 3.00 1.309e-12 8.571e-13 6.387e-13 9.015e-13 8.656e-13 4.717e-13 2.858e-11 3.397e-05 8.238e-04 1.630e-03 1.967e-03 4.153e-05
38
+ 3.10 1.984e-13 1.299e-13 9.683e-14 1.367e-13 1.312e-13 7.150e-14 5.749e-12 1.906e-05 5.277e-04 1.096e-03 1.412e-03 2.617e-05
39
+ 3.20 3.072e-14 2.012e-14 1.500e-14 2.117e-14 2.032e-14 1.107e-14 1.173e-12 1.061e-05 3.334e-04 7.259e-04 9.970e-04 1.640e-05
40
+ 3.30 4.728e-15 3.097e-15 2.308e-15 3.257e-15 3.127e-15 1.704e-15 2.377e-13 5.829e-06 2.071e-04 4.724e-04 6.910e-04 1.018e-05
41
+ 3.40 7.233e-16 4.738e-16 3.530e-16 4.983e-16 4.784e-16 2.607e-16 4.789e-14 3.163e-06 1.265e-04 3.020e-04 4.698e-04 6.260e-06
42
+ 3.50 1.099e-16 7.201e-17 5.367e-17 7.575e-17 7.272e-17 3.963e-17 9.580e-15 1.691e-06 7.579e-05 1.892e-04 3.125e-04 3.805e-06
43
+ 3.60 1.674e-17 1.096e-17 8.169e-18 1.153e-17 1.107e-17 6.032e-18 1.917e-15 8.953e-07 4.472e-05 1.167e-04 2.041e-04 2.295e-06
44
+ 3.70 2.637e-18 1.727e-18 1.287e-18 1.817e-18 1.744e-18 9.505e-19 3.945e-16 4.729e-07 2.615e-05 7.113e-05 1.315e-04 1.382e-06
45
+ 3.80 4.284e-19 2.806e-19 2.091e-19 2.951e-19 2.833e-19 1.544e-19 8.287e-17 2.481e-07 1.510e-05 4.276e-05 8.329e-05 8.273e-07
46
+ 3.90 7.034e-20 4.607e-20 3.433e-20 4.846e-20 4.653e-20 2.535e-20 1.753e-17 1.290e-07 8.590e-06 2.529e-05 5.178e-05 4.914e-07
47
+ 4.00 1.164e-20 7.624e-21 5.682e-21 8.019e-21 7.700e-21 4.196e-21 3.727e-18 6.658e-08 4.828e-06 1.476e-05 3.167e-05 2.901e-07
48
+ 4.10 1.951e-21 1.278e-21 9.525e-22 1.344e-21 1.291e-21 7.034e-22 8.026e-19 3.437e-08 2.698e-06 8.544e-06 1.916e-05 1.713e-07
49
+ 4.20 3.376e-22 2.211e-22 1.648e-22 2.326e-22 2.233e-22 1.217e-22 1.781e-19 1.782e-08 1.505e-06 4.927e-06 1.151e-05 1.014e-07
50
+ 4.30 6.143e-23 4.024e-23 2.999e-23 4.232e-23 4.063e-23 2.214e-23 4.121e-20 9.273e-09 8.367e-07 2.827e-06 6.854e-06 6.013e-08
51
+ 4.40 1.171e-23 7.668e-24 5.714e-24 8.065e-24 7.743e-24 4.219e-24 9.850e-21 4.827e-09 4.631e-07 1.612e-06 4.046e-06 3.564e-08
52
+ 4.50 2.294e-24 1.503e-24 1.120e-24 1.580e-24 1.517e-24 8.268e-25 2.401e-21 2.515e-09 2.555e-07 9.149e-07 2.371e-06 2.114e-08
53
+ 4.60 4.579e-25 2.999e-25 2.235e-25 3.155e-25 3.029e-25 1.651e-25 5.944e-22 1.315e-09 1.408e-07 5.178e-07 1.381e-06 1.257e-08
54
+ 4.70 9.317e-26 6.103e-26 4.548e-26 6.419e-26 6.163e-26 3.358e-26 1.499e-22 6.905e-10 7.755e-08 2.925e-07 8.017e-07 7.501e-09
55
+ 4.80 1.942e-26 1.272e-26 9.478e-27 1.338e-26 1.284e-26 6.999e-27 3.866e-23 3.641e-10 4.272e-08 1.650e-07 4.633e-07 4.485e-09
56
+ 4.90 4.168e-27 2.730e-27 2.034e-27 2.871e-27 2.757e-27 1.502e-27 1.023e-23 1.925e-10 2.351e-08 9.283e-08 2.664e-07 2.686e-09
57
+ 5.00 9.217e-28 6.037e-28 4.499e-28 6.350e-28 6.097e-28 3.322e-28 2.770e-24 1.020e-10 1.291e-08 5.205e-08 1.524e-07 1.610e-09
58
+ 5.10 2.091e-28 1.370e-28 1.021e-28 1.441e-28 1.383e-28 7.539e-29 7.642e-25 5.407e-11 7.073e-09 2.909e-08 8.666e-08 9.655e-10
59
+ 5.20 4.839e-29 3.169e-29 2.362e-29 3.334e-29 3.201e-29 1.744e-29 2.137e-25 2.869e-11 3.866e-09 1.620e-08 4.903e-08 5.791e-10
60
+ 5.30 1.136e-29 7.440e-30 5.544e-30 7.826e-30 7.513e-30 4.094e-30 6.043e-26 1.523e-11 2.108e-09 8.992e-09 2.760e-08 3.475e-10
61
+ 5.40 2.699e-30 1.768e-30 1.317e-30 1.859e-30 1.785e-30 9.727e-31 1.725e-26 8.090e-12 1.147e-09 4.974e-09 1.546e-08 2.085e-10
62
+ 5.50 6.481e-31 4.245e-31 3.163e-31 4.465e-31 4.287e-31 2.336e-31 4.970e-27 4.299e-12 6.226e-10 2.744e-09 8.615e-09 1.252e-10
63
+ 5.60 1.572e-31 1.030e-31 7.674e-32 1.083e-31 1.040e-31 5.667e-32 1.444e-27 2.286e-12 3.373e-10 1.509e-09 4.780e-09 7.517e-11
64
+ 5.70 3.850e-32 2.522e-32 1.879e-32 2.653e-32 2.547e-32 1.388e-32 4.228e-28 1.216e-12 1.824e-10 8.271e-10 2.640e-09 4.515e-11
65
+ 5.80 9.516e-33 6.233e-33 4.645e-33 6.556e-33 6.294e-33 3.430e-33 1.247e-28 6.473e-13 9.842e-11 4.522e-10 1.452e-09 2.713e-11
66
+ 5.90 2.372e-33 1.554e-33 1.158e-33 1.634e-33 1.569e-33 8.551e-34 3.708e-29 3.447e-13 5.301e-11 2.466e-10 7.950e-10 1.630e-11
67
+ 6.00 5.963e-34 3.906e-34 2.911e-34 4.108e-34 3.944e-34 2.149e-34 1.110e-29 1.836e-13 2.850e-11 1.341e-10 4.336e-10 9.798e-12
68
+ 6.10 1.511e-34 9.897e-35 7.375e-35 1.041e-34 9.994e-35 5.446e-35 3.344e-30 9.784e-14 1.530e-11 7.274e-11 2.355e-10 5.891e-12
69
+ 6.20 3.858e-35 2.527e-35 1.883e-35 2.658e-35 2.552e-35 1.390e-35 1.014e-30 5.216e-14 8.195e-12 3.936e-11 1.275e-10 3.542e-12
70
+ 6.30 9.921e-36 6.498e-36 4.842e-36 6.835e-36 6.562e-36 3.576e-36 3.095e-31 2.782e-14 4.383e-12 2.125e-11 6.872e-11 2.131e-12
71
+ 6.40 2.569e-36 1.683e-36 1.254e-36 1.770e-36 1.700e-36 9.261e-37 9.500e-32 1.484e-14 2.341e-12 1.144e-11 3.692e-11 1.282e-12
72
+ 6.50 6.700e-37 4.388e-37 3.270e-37 4.616e-37 4.432e-37 2.415e-37 2.933e-32 7.923e-15 1.248e-12 6.150e-12 1.976e-11 7.714e-13
73
+ 6.60 1.758e-37 1.152e-37 8.583e-38 1.211e-37 1.163e-37 6.338e-38 9.105e-33 4.231e-15 6.645e-13 3.298e-12 1.054e-11 4.643e-13
74
+ 6.70 4.644e-38 3.042e-38 2.267e-38 3.200e-38 3.072e-38 1.674e-38 2.842e-33 2.260e-15 3.532e-13 1.764e-12 5.606e-12 2.795e-13
75
+ 6.80 1.234e-38 8.083e-39 6.024e-39 8.502e-39 8.163e-39 4.448e-39 8.915e-34 1.207e-15 1.875e-13 9.421e-13 2.971e-12 1.683e-13
76
+ 6.90 3.299e-39 2.161e-39 1.610e-39 2.273e-39 2.182e-39 1.189e-39 2.811e-34 6.453e-16 9.940e-14 5.020e-13 1.570e-12 1.014e-13
77
+ 7.00 8.867e-40 5.808e-40 4.328e-40 6.109e-40 5.865e-40 3.196e-40 8.905e-35 3.450e-16 5.262e-14 2.670e-13 8.266e-13 6.107e-14
78
+ 7.10 2.397e-40 1.570e-40 1.170e-40 1.651e-40 1.585e-40 8.639e-41 2.834e-35 1.845e-16 2.782e-14 1.417e-13 4.340e-13 3.680e-14
79
+ 7.20 6.513e-41 4.266e-41 3.179e-41 4.487e-41 4.308e-41 2.348e-41 9.063e-36 9.871e-17 1.469e-14 7.507e-14 2.272e-13 2.217e-14
80
+ 7.30 1.779e-41 1.165e-41 8.683e-42 1.226e-41 1.177e-41 6.412e-42 2.911e-36 5.282e-17 7.745e-15 3.970e-14 1.186e-13 1.337e-14
81
+ 7.40 4.884e-42 3.199e-42 2.384e-42 3.365e-42 3.230e-42 1.760e-42 9.388e-37 2.828e-17 4.079e-15 2.095e-14 6.174e-14 8.058e-15
82
+ 7.50 1.347e-42 8.825e-43 6.576e-43 9.282e-43 8.912e-43 4.856e-43 3.041e-37 1.514e-17 2.146e-15 1.104e-14 3.205e-14 4.859e-15
83
+ 7.60 3.734e-43 2.446e-43 1.823e-43 2.573e-43 2.470e-43 1.346e-43 9.888e-38 8.109e-18 1.127e-15 5.808e-15 1.659e-14 2.931e-15
84
+ 7.70 1.040e-43 6.811e-44 5.076e-44 7.164e-44 6.878e-44 3.748e-44 3.228e-38 4.345e-18 5.916e-16 3.050e-15 8.566e-15 1.768e-15
85
+ 7.80 2.909e-44 1.905e-44 1.420e-44 2.004e-44 1.924e-44 1.048e-44 1.058e-38 2.328e-18 3.101e-16 1.599e-15 4.411e-15 1.067e-15
86
+ 7.90 8.172e-45 5.353e-45 3.989e-45 5.630e-45 5.405e-45 2.945e-45 3.481e-39 1.248e-18 1.624e-16 8.370e-16 2.266e-15 6.437e-16
87
+ 8.00 2.306e-45 1.510e-45 1.125e-45 1.588e-45 1.525e-45 8.310e-46 1.149e-39 6.691e-19 8.492e-17 4.374e-16 1.161e-15 3.885e-16
@@ -0,0 +1,71 @@
1
+ * De conditionele overschrijdingskans van de zeewaterstand gegeven de windrichting
2
+ * voor een 12-uursperiode te West-Terschelling, gelegen op locatie:
3
+ * 143870, 597420
4
+ *
5
+ * De getallen zijn afkomstig uit het spreadsheet Afleiding_zeewaterstandstatistiek.xls,
6
+ * tabblad OvKans_Zeewaterstand.
7
+ * Speadsheet gemaakt door Matthijs Duits van HKV lijn in water op 2 mei 2013
8
+ *
9
+ * De parameters voor de Weibullverdelingen (geldig voor een winterhalfjaar), die de basis vormen van
10
+ * onderstaande conditionele overschrijdingskansen, zijn ontleend aan:
11
+ * Hydra-K, versie 3.6.5. Bestand: tsw_A.e30
12
+ *
13
+ * Onderstaand is m de zeewaterstand en r de windrichting
14
+ *
15
+ *m \ r 30 60 90 120 150 180 210 240 270 300 330 360
16
+ 0.89 1.000E+00 1.000E+00 1.000E+00 1.000E+00 1.000E+00 1.000E+00 1.000E+00 1.000E+00 1.000E+00 1.000E+00 1.000E+00 1.000E+00
17
+ 0.99 1.000E+00 1.000E+00 1.000E+00 1.000E+00 1.000E+00 1.000E+00 1.000E+00 4.301E-01 4.940E-01 4.741E-01 3.253E-01 2.418E-01
18
+ 1.09 1.000E+00 1.000E+00 1.000E+00 1.000E+00 1.000E+00 1.000E+00 1.000E+00 1.850E-01 2.440E-01 2.248E-01 1.058E-01 5.846E-02
19
+ 1.19 1.000E+00 1.000E+00 1.000E+00 1.000E+00 1.000E+00 1.000E+00 1.000E+00 7.958E-02 1.205E-01 1.066E-01 3.443E-02 1.413E-02
20
+ 1.29 7.046E-01 5.665E-01 6.145E-01 8.139E-01 6.530E-01 4.651E-01 5.836E-01 6.061E-02 1.050E-01 9.587E-02 3.225E-02 1.117E-02
21
+ 1.39 1.954E-01 1.571E-01 1.705E-01 2.257E-01 1.811E-01 1.290E-01 1.922E-01 4.532E-02 9.007E-02 8.515E-02 2.991E-02 8.708E-03
22
+ 1.49 5.167E-02 4.154E-02 4.506E-02 5.968E-02 4.788E-02 3.411E-02 6.088E-02 3.327E-02 7.613E-02 7.463E-02 2.745E-02 6.694E-03
23
+ 1.59 1.304E-02 1.049E-02 1.137E-02 1.506E-02 1.209E-02 8.609E-03 1.857E-02 2.400E-02 6.337E-02 6.453E-02 2.492E-02 5.076E-03
24
+ 1.69 3.147E-03 2.530E-03 2.745E-03 3.635E-03 2.917E-03 2.077E-03 5.462E-03 1.700E-02 5.193E-02 5.501E-02 2.236E-02 3.798E-03
25
+ 1.79 7.271E-04 5.846E-04 6.342E-04 8.399E-04 6.739E-04 4.800E-04 1.551E-03 1.184E-02 4.189E-02 4.622E-02 1.982E-02 2.805E-03
26
+ 1.89 1.610E-04 1.295E-04 1.404E-04 1.860E-04 1.492E-04 1.063E-04 4.256E-04 8.100E-03 3.324E-02 3.826E-02 1.734E-02 2.045E-03
27
+ 1.99 3.422E-05 2.751E-05 2.984E-05 3.952E-05 3.171E-05 2.259E-05 1.129E-04 5.447E-03 2.595E-02 3.119E-02 1.498E-02 1.471E-03
28
+ 2.09 6.984E-06 5.616E-06 6.092E-06 8.068E-06 6.473E-06 4.611E-06 2.902E-05 3.601E-03 1.992E-02 2.503E-02 1.276E-02 1.046E-03
29
+ 2.19 1.371E-06 1.102E-06 1.196E-06 1.583E-06 1.270E-06 9.049E-07 7.225E-06 2.341E-03 1.504E-02 1.977E-02 1.071E-02 7.338E-04
30
+ 2.29 2.589E-07 2.082E-07 2.258E-07 2.991E-07 2.400E-07 1.709E-07 1.744E-06 1.496E-03 1.116E-02 1.536E-02 8.855E-03 5.087E-04
31
+ 2.39 4.710E-08 3.787E-08 4.108E-08 5.441E-08 4.365E-08 3.109E-08 4.085E-07 9.401E-04 8.133E-03 1.174E-02 7.210E-03 3.484E-04
32
+ 2.49 8.259E-09 6.641E-09 7.204E-09 9.541E-09 7.655E-09 5.452E-09 9.291E-08 5.811E-04 5.826E-03 8.817E-03 5.777E-03 2.357E-04
33
+ 2.59 1.397E-09 1.123E-09 1.219E-09 1.614E-09 1.295E-09 9.222E-10 2.053E-08 3.533E-04 4.099E-03 6.508E-03 4.552E-03 1.576E-04
34
+ 2.69 2.281E-10 1.834E-10 1.990E-10 2.635E-10 2.114E-10 1.506E-10 4.411E-09 2.113E-04 2.833E-03 4.720E-03 3.526E-03 1.041E-04
35
+ 2.79 3.597E-11 2.892E-11 3.138E-11 4.155E-11 3.334E-11 2.375E-11 9.216E-10 1.244E-04 1.922E-03 3.362E-03 2.684E-03 6.798E-05
36
+ 2.89 5.483E-12 4.408E-12 4.782E-12 6.333E-12 5.082E-12 3.619E-12 1.874E-10 7.201E-05 1.280E-03 2.351E-03 2.006E-03 4.388E-05
37
+ 2.99 8.082E-13 6.498E-13 7.049E-13 9.335E-13 7.490E-13 5.335E-13 3.711E-11 4.103E-05 8.367E-04 1.614E-03 1.471E-03 2.800E-05
38
+ 3.09 1.153E-13 9.268E-14 1.005E-13 1.331E-13 1.068E-13 7.609E-14 7.157E-12 2.300E-05 5.367E-04 1.087E-03 1.059E-03 1.766E-05
39
+ 3.19 1.591E-14 1.280E-14 1.388E-14 1.838E-14 1.475E-14 1.051E-14 1.345E-12 1.269E-05 3.378E-04 7.179E-04 7.467E-04 1.102E-05
40
+ 3.29 2.128E-15 1.711E-15 1.856E-15 2.459E-15 1.973E-15 1.405E-15 2.466E-13 6.894E-06 2.085E-04 4.650E-04 5.162E-04 6.794E-06
41
+ 3.39 2.758E-16 2.218E-16 2.406E-16 3.186E-16 2.557E-16 1.821E-16 4.407E-14 3.686E-06 1.262E-04 2.954E-04 3.495E-04 4.143E-06
42
+ 3.49 3.466E-17 2.787E-17 3.023E-17 4.003E-17 3.212E-17 2.288E-17 7.687E-15 1.940E-06 7.495E-05 1.838E-04 2.317E-04 2.499E-06
43
+ 3.59 4.224E-18 3.396E-18 3.684E-18 4.879E-18 3.915E-18 2.788E-18 1.309E-15 1.005E-06 4.362E-05 1.121E-04 1.503E-04 1.491E-06
44
+ 3.69 4.995E-19 4.016E-19 4.356E-19 5.769E-19 4.629E-19 3.297E-19 2.176E-16 5.126E-07 2.489E-05 6.698E-05 9.532E-05 8.800E-07
45
+ 3.79 5.733E-20 4.610E-20 5.001E-20 6.623E-20 5.314E-20 3.785E-20 3.533E-17 2.575E-07 1.392E-05 3.919E-05 5.910E-05 5.137E-07
46
+ 3.89 6.391E-21 5.139E-21 5.574E-21 7.382E-21 5.923E-21 4.219E-21 5.605E-18 1.273E-07 7.626E-06 2.244E-05 3.580E-05 2.967E-07
47
+ 3.99 6.921E-22 5.564E-22 6.036E-22 7.994E-22 6.414E-22 4.569E-22 8.692E-19 6.202E-08 4.094E-06 1.258E-05 2.118E-05 1.695E-07
48
+ 4.09 7.283E-23 5.856E-23 6.353E-23 8.413E-23 6.750E-23 4.808E-23 1.318E-19 2.975E-08 2.153E-06 6.902E-06 1.223E-05 9.585E-08
49
+ 4.19 7.451E-24 5.991E-24 6.499E-24 8.607E-24 6.906E-24 4.919E-24 1.954E-20 1.405E-08 1.109E-06 3.704E-06 6.889E-06 5.362E-08
50
+ 4.29 7.413E-25 5.960E-25 6.466E-25 8.563E-25 6.870E-25 4.893E-25 2.834E-21 6.537E-09 5.594E-07 1.944E-06 3.784E-06 2.968E-08
51
+ 4.39 7.174E-26 5.768E-26 6.258E-26 8.287E-26 6.649E-26 4.736E-26 4.023E-22 2.996E-09 2.763E-07 9.975E-07 2.026E-06 1.626E-08
52
+ 4.49 6.756E-27 5.432E-27 5.893E-27 7.804E-27 6.262E-27 4.460E-27 5.588E-23 1.352E-09 1.336E-07 5.004E-07 1.057E-06 8.818E-09
53
+ 4.59 6.193E-28 4.980E-28 5.402E-28 7.154E-28 5.740E-28 4.088E-28 7.600E-24 6.014E-10 6.326E-08 2.453E-07 5.366E-07 4.732E-09
54
+ 4.69 5.528E-29 4.444E-29 4.821E-29 6.385E-29 5.123E-29 3.649E-29 1.012E-24 2.634E-10 2.931E-08 1.175E-07 2.652E-07 2.513E-09
55
+ 4.79 4.805E-30 3.863E-30 4.191E-30 5.550E-30 4.453E-30 3.172E-30 1.320E-25 1.137E-10 1.329E-08 5.498E-08 1.275E-07 1.321E-09
56
+ 4.89 4.069E-31 3.271E-31 3.549E-31 4.700E-31 3.771E-31 2.686E-31 1.687E-26 4.835E-11 5.895E-09 2.512E-08 5.963E-08 6.878E-10
57
+ 4.99 3.357E-32 2.700E-32 2.928E-32 3.878E-32 3.112E-32 2.216E-32 2.113E-27 2.026E-11 2.558E-09 1.121E-08 2.710E-08 3.544E-10
58
+ 5.09 2.700E-33 2.171E-33 2.355E-33 3.119E-33 2.503E-33 1.783E-33 2.594E-28 8.362E-12 1.086E-09 4.882E-09 1.196E-08 1.808E-10
59
+ 5.19 2.117E-34 1.703E-34 1.847E-34 2.446E-34 1.962E-34 1.398E-34 3.121E-29 3.402E-12 4.511E-10 2.075E-09 5.127E-09 9.129E-11
60
+ 5.29 1.619E-35 1.302E-35 1.412E-35 1.870E-35 1.501E-35 1.069E-35 3.682E-30 1.364E-12 1.832E-10 8.607E-10 2.133E-09 4.564E-11
61
+ 5.39 1.208E-36 9.710E-37 1.053E-36 1.395E-36 1.119E-36 7.972E-37 4.260E-31 5.387E-13 7.274E-11 3.482E-10 8.607E-10 2.260E-11
62
+ 5.49 8.788E-38 7.066E-38 7.665E-38 1.015E-37 8.145E-38 5.801E-38 4.835E-32 2.097E-13 2.824E-11 1.374E-10 3.368E-10 1.108E-11
63
+ 5.59 6.240E-39 5.017E-39 5.443E-39 7.208E-39 5.783E-39 4.119E-39 5.383E-33 8.047E-14 1.072E-11 5.287E-11 1.277E-10 5.378E-12
64
+ 5.69 4.325E-40 3.477E-40 3.772E-40 4.996E-40 4.008E-40 2.855E-40 5.881E-34 3.043E-14 3.977E-12 1.983E-11 4.694E-11 2.586E-12
65
+ 5.79 2.926E-41 2.353E-41 2.552E-41 3.380E-41 2.712E-41 1.932E-41 6.306E-35 1.134E-14 1.442E-12 7.249E-12 1.670E-11 1.231E-12
66
+ 5.89 1.933E-42 1.555E-42 1.686E-42 2.233E-42 1.792E-42 1.276E-42 6.637E-36 4.167E-15 5.109E-13 2.582E-12 5.751E-12 5.804E-13
67
+ 5.99 1.248E-43 1.003E-43 1.088E-43 1.441E-43 1.156E-43 8.236E-44 6.858E-37 1.509E-15 1.769E-13 8.963E-13 1.916E-12 2.710E-13
68
+ 6.09 7.864E-45 6.323E-45 6.859E-45 9.084E-45 7.288E-45 5.191E-45 6.958E-38 5.388E-16 5.984E-14 3.030E-13 6.172E-13 1.254E-13
69
+ 6.19 4.843E-46 3.894E-46 4.224E-46 5.594E-46 4.488E-46 3.197E-46 6.933E-39 1.896E-16 1.977E-14 9.975E-14 1.922E-13 5.743E-14
70
+ 6.29 2.914E-47 2.343E-47 2.542E-47 3.367E-47 2.701E-47 1.924E-47 6.785E-40 6.579E-17 6.382E-15 3.197E-14 5.783E-14 2.606E-14
71
+ 6.39 1.714E-48 1.378E-48 1.495E-48 1.980E-48 1.589E-48 1.132E-48 6.523E-41 2.250E-17 2.012E-15 9.977E-15 1.680E-14 1.172E-14
File without changes
@@ -0,0 +1,177 @@
1
+ from typing import List
2
+
3
+ from ..common.enum import WaterSystem
4
+ from ..io.database_hr import DatabaseHR
5
+ from ..location.location import Location
6
+ from ..location.settings.settings import Settings
7
+
8
+
9
+ class HRDatabase:
10
+ """
11
+ HRDatabase class
12
+
13
+ Attributes
14
+ ----------
15
+ watersystem, WaterSystem
16
+ Water system of the dike trajectory
17
+ locations, list
18
+ List with all locations in the database
19
+ """
20
+
21
+ def __init__(self, database_path: str) -> None:
22
+ # Connect to the database
23
+ self.database_path = database_path
24
+
25
+ # Obtain water system and locations
26
+ with DatabaseHR(database_path) as database:
27
+ self.watersystem = database.get_water_system()
28
+ self.locationnames = database.get_hrdlocations_names()
29
+
30
+ # Empty locations
31
+ self.locations = {}
32
+
33
+ def __len__(self) -> int:
34
+ """
35
+ Return the number of locations
36
+
37
+ Returns
38
+ -------
39
+ int
40
+ Number of parts
41
+ """
42
+ return len(self.locationnames)
43
+
44
+ def __iter__(self):
45
+ """
46
+ Dunder to allow iterating through the locations
47
+ """
48
+ self.__iterindex = -1
49
+ return self
50
+
51
+ def __next__(self):
52
+ """
53
+ Dunder to allow iterating through the locations
54
+ """
55
+ self.__iterindex += 1
56
+ if self.__iterindex < len(self.locationnames):
57
+ return self.locationnames[self.__iterindex]
58
+ else:
59
+ raise StopIteration
60
+
61
+ def get_settings(self, hrdlocation: str) -> Settings:
62
+ """
63
+ Returns the Settings class of a hrdlocation
64
+ Useful for when you manually want to adjust the settings
65
+ To create a location using the settings use the function 'create_location(settings)'
66
+
67
+ Parameters
68
+ ----------
69
+ hrdlocation : str
70
+ The hrdlocation (uitvoerpunt)
71
+
72
+ Returns
73
+ -------
74
+ Settings
75
+ The Settings object for the hrdlocation
76
+ """
77
+ # Check if the hrdlocation exists
78
+ if self.check_location(hrdlocation):
79
+ # Return the settings
80
+ return Settings(hrdlocation, self.database_path)
81
+
82
+ # Otherwise, raise an exception
83
+ else:
84
+ raise ValueError(
85
+ f"[ERROR] HRDLocation '{hrdlocation}' not found in the database."
86
+ )
87
+
88
+ def create_location(self, settings: Settings) -> Location:
89
+ """
90
+ Creates a location based upon the Settings object
91
+
92
+ Parameters
93
+ ----------
94
+ settings : Settings
95
+ The Settings object of a location
96
+
97
+ Returns
98
+ -------
99
+ Location
100
+ The Location object for the given settings
101
+ """
102
+ # Create the location and save it in the cache
103
+ self.locations[settings.location] = Location(settings)
104
+
105
+ # Return location
106
+ return self.locations[settings.location]
107
+
108
+ def check_location(self, hrdlocation: str) -> bool:
109
+ """
110
+ Check if a hrdlocation exists within the database
111
+
112
+ Parameters
113
+ ----------
114
+ hrdlocation : str
115
+ The hrdlocation (uitvoerpunt)
116
+
117
+ Returns
118
+ -------
119
+ bool
120
+ Whether the hrdlocation is in the database
121
+ """
122
+ return hrdlocation in self.locationnames
123
+
124
+ def get_location(self, hrdlocation: str) -> Location:
125
+ """
126
+ Returns the Location class of a hrdlocation.
127
+ Uses the default set of parameters.
128
+
129
+ Parameters
130
+ ----------
131
+ hrdlocation : str
132
+ The hrdlocation (uitvoerpunt)
133
+
134
+ Returns
135
+ -------
136
+ Location
137
+ The Location object for the hrdlocation
138
+ """
139
+ # Check if the hrdlocation exists
140
+ if self.check_location(hrdlocation):
141
+ # If the location is not cached, create the location
142
+ if hrdlocation not in self.locations:
143
+ # Default settings and create location
144
+ settings = self.get_settings(hrdlocation)
145
+ return self.create_location(settings)
146
+
147
+ # Return the cached location
148
+ else:
149
+ return self.locations[hrdlocation]
150
+
151
+ # Otherwise, raise an exception
152
+ else:
153
+ raise ValueError(
154
+ f"[ERROR] HRDLocation '{hrdlocation}' not found in the database."
155
+ )
156
+
157
+ def get_location_names(self) -> List[str]:
158
+ """
159
+ Return a list of all hrdlocations in the database
160
+
161
+ Returns
162
+ -------
163
+ list[str]
164
+ List with all hrdlocation names
165
+ """
166
+ return self.locationnames
167
+
168
+ def get_water_system(self) -> WaterSystem:
169
+ """
170
+ A method that returns the water system corresponding to the trajectory.
171
+
172
+ Returns
173
+ -------
174
+ WaterSystem
175
+ Water system of the trajectory
176
+ """
177
+ return self.watersystem
File without changes