|
31 | 31 | "source": [
|
32 | 32 | "## Reading Data\n",
|
33 | 33 | "\n",
|
34 |
| - "StormEurope was written under the presumption that you'd start out with [WISC](https://wisc.climate.copernicus.eu/wisc/#/help/products#footprint_section) storm footprint data in netCDF format. This notebook works with a demo dataset. If you would like to work with the real data: (1) Please follow the link and download the file C3S_WISC_FOOTPRINT_NETCDF_0100.tgz from the Copernicus Windstorm Information Service, (2) unzip it (3) uncomment the last two lines in the following codeblock and (4) adjust the variable \"WISC_files\".\n", |
| 34 | + "StormEurope was written under the presumption that you'd start out with [WISC](https://confluence.ecmwf.int/display/CKB/Synthetic+Windstorm+Events+for+Europe+from+1986+to+2011%3A+Product+User+Guide) storm footprint data in netCDF format. This notebook works with a demo dataset. If you would like to work with the real data: (1) Please follow the link and download the file C3S_WISC_FOOTPRINT_NETCDF_0100.tgz from the Copernicus Windstorm Information Service, (2) unzip it (3) uncomment the last two lines in the following codeblock and (4) adjust the variable \"WISC_files\".\n", |
35 | 35 | "\n",
|
36 | 36 | "We first construct an instance and then point the reader at a directory containing compatible `.nc` files. Since there are other files in there, we must be explicit and use a globbing pattern; supplying incompatible files will make the reader fail.\n",
|
37 | 37 | "\n",
|
|
42 | 42 | "cell_type": "code",
|
43 | 43 | "execution_count": 2,
|
44 | 44 | "metadata": {},
|
45 |
| - "outputs": [ |
46 |
| - { |
47 |
| - "name": "stderr", |
48 |
| - "output_type": "stream", |
49 |
| - "text": [ |
50 |
| - "$CLIMADA_SRC/climada/hazard/centroids/centr.py:822: UserWarning: Geometry is in a geographic CRS. Results from 'buffer' are likely incorrect. Use 'GeoSeries.to_crs()' to re-project geometries to a projected CRS before this operation.\n", |
51 |
| - "\n", |
52 |
| - " xy_pixels = self.geometry.buffer(res / 2).envelope\n" |
53 |
| - ] |
54 |
| - } |
55 |
| - ], |
| 45 | + "outputs": [], |
56 | 46 | "source": [
|
57 | 47 | "from climada.hazard import StormEurope\n",
|
58 | 48 | "from climada.util.constants import WS_DEMO_NC\n",
|
|
85 | 75 | "\u001b[0;31mFile:\u001b[0m ~/code/climada_python/climada/hazard/storm_europe.py\n",
|
86 | 76 | "\u001b[0;31mDocstring:\u001b[0m \n",
|
87 | 77 | "A hazard set containing european winter storm events. Historic storm\n",
|
88 |
| - "events can be downloaded at http://wisc.climate.copernicus.eu/ and read\n", |
| 78 | + "events can be downloaded at https://cds.climate.copernicus.eu/ and read\n", |
89 | 79 | "with `from_footprints`. Weather forecasts can be automatically downloaded from\n",
|
90 | 80 | "https://opendata.dwd.de/ and read with from_icon_grib(). Weather forecast\n",
|
91 |
| - "from the COSMO-Consortium http://www.cosmo-model.org/ can be read with\n", |
| 81 | + "from the COSMO-Consortium https://www.cosmo-model.org/ can be read with\n", |
92 | 82 | "from_cosmoe_file().\n",
|
93 | 83 | "\n",
|
94 | 84 | "Attributes\n",
|
|
0 commit comments