├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── AUTHORS ├── CITATION ├── CONDUCT.md ├── CONTRIBUTING.md ├── Clustering.pdf ├── Dockerfile ├── LICENSE.md ├── Makefile ├── README.md ├── _config.yml ├── _episodes ├── .gitkeep ├── 01-intro.md ├── 02-formats.md ├── 03-crs_proj.md ├── 04-plotting.md ├── 05-scipy.md ├── 06-visualization.md └── 07-LargeFiles.md ├── _episodes_rmd ├── .gitkeep └── data │ └── .gitkeep ├── _extras ├── .gitkeep ├── about.md ├── discuss.md ├── figures.md └── guide.md ├── _includes ├── all_figures.html ├── all_keypoints.html ├── carpentries.html ├── dc │ ├── intro.html │ ├── schedule.html │ ├── syllabus.html │ └── who.html ├── episode_break.html ├── episode_keypoints.html ├── episode_navbar.html ├── episode_overview.html ├── episode_title.html ├── javascript.html ├── lc │ ├── intro.html │ ├── schedule.html │ ├── syllabys.html │ └── who.html ├── lesson_footer.html ├── links.md ├── main_title.html ├── navbar.html ├── sc │ ├── intro.html │ ├── schedule.html │ ├── syllabus.html │ └── who.html ├── syllabus.html ├── workshop_ad.html └── workshop_footer.html ├── _layouts ├── base.html ├── break.html ├── episode.html ├── lesson.html ├── page.html ├── reference.html └── workshop.html ├── aio.md ├── assets ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ └── lesson.scss ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── img │ ├── dc-icon-black.svg │ ├── lc-icon-black.png │ ├── lc-icon-black.svg │ ├── swc-icon-blue.svg │ ├── swc-logo-blue.png │ ├── swc-logo-blue.svg │ ├── swc-logo-white.png │ └── swc-logo-white.svg └── js │ ├── bootstrap.min.js │ ├── index.js │ ├── jquery.min.js │ ├── jquery.min.map │ └── lesson.js ├── bin ├── chunk-options.R ├── extract_figures.py ├── generate_md_episodes.R ├── knit_lessons.sh ├── lesson_check.py ├── lesson_initialize.py ├── markdown_ast.rb ├── repo_check.py ├── test_lesson_check.py ├── util.py └── workshop_check.py ├── code ├── .gitkeep ├── netcdf_orography_rd.py ├── netcdf_orography_rd_subset.py ├── netcdf_orography_rd_wr.ipynb ├── netcdf_orography_wr.py └── share_your_notebook_DC.ipynb ├── data ├── .gitkeep ├── AIRS.2002.08.30.227.L2.RetStd_H.v6.0.12.0.G14101125810.hdf ├── MISR_AM1_CGLS_MAY_2007_F04_0031.hdf ├── Norway_building │ ├── A-README.TXT │ ├── buildings.dbf │ ├── buildings.prj │ ├── buildings.shp │ └── buildings.shx ├── Norway_natural │ ├── A-README.TXT │ ├── natural.dbf │ ├── natural.prj │ ├── natural.shp │ └── natural.shx ├── Norway_places │ ├── A-README.TXT │ ├── places.dbf │ ├── places.prj │ ├── places.shp │ └── places.shx ├── Norway_railways │ ├── A-README.TXT │ ├── railways.dbf │ ├── railways.prj │ ├── railways.shp │ └── railways.shx ├── Norway_roads │ ├── A-README.TXT │ ├── roads.dbf │ ├── roads.prj │ ├── roads.shp │ └── roads.shx ├── Norway_waterways │ ├── A-README.TXT │ ├── waterways.dbf │ ├── waterways.prj │ ├── waterways.shp │ └── waterways.shx ├── OMI-Aura_L3-OMTO3e_2017m0105_v003-2017m0203t091906.he5 ├── Southern_Norway_and_Sweden.2017229.terra.1km.tif ├── la_city.geojson ├── no-all-all.geojson ├── sresa1b_ncar_ccsm3-example.nc ├── state.nc ├── t2m_EI_sp_timeseries.nc └── tracks_20010601.csv ├── environment.yml ├── favicon-dc.ico ├── favicon-lc.ico ├── favicon-swc.ico ├── fig ├── .gitkeep ├── AIRS_swaft_topog.png ├── EI_VO850hPa_2001060100.png ├── EI_VO850hPa_2001060100_global.png ├── EI_VO850hPa_MSLP_2001060100.png ├── EI_VO850hPa_MSLP_2001060100_tracks.png ├── EI_VO850hPa_MSLP_2001060100_zoom.png ├── LatLongfromGlobeCenter-ESRI.gif ├── NDVI_imshow.png ├── NOR_adm_shapefile.png ├── NOR_adm_shapefile_filled.png ├── NOR_adm_shapefile_filled_ogr.png ├── Norway_natural_shapefile.png ├── Norway_places_shapefile.png ├── Norway_railways_shapefile.png ├── Norway_railways_shapefile_red.png ├── OMI_ColumnAmountO3.png ├── Southern_Norway_and_Sweden.2017229.terra.1km.all.png ├── Southern_Norway_and_Sweden.2017229.terra.1km.bnd1.png ├── Southern_Norway_and_Sweden.2017229.terra.1km.png ├── add-lat-long-locations-1.png ├── add-robinson-locations-2.png ├── add-robinson-locations-reprojection-2.png ├── blog_rew_chunking.png ├── blog_rew_fig1.png ├── columbia_oli_2014183_clusters.png ├── compare_cyl_robin.png ├── contour_test.png ├── dask_h5_max.png ├── dask_nc_mean.png ├── dask_nc_solution.png ├── different_projections.jpg ├── figure_axes.png ├── figure_axes_customized.png ├── geotiff_plot_basemap.png ├── geotiff_plot_basemap_pcolormesh.png ├── geotiff_plot_basemap_reprojected.png ├── lat-long-example-1.png ├── matplotlib_terminology.png ├── multi-polygons.png ├── pnt_line_poly.png ├── polygons.png ├── raster_concept.png ├── robinson-example-2.png ├── sample_data_ts.png ├── sample_data_ts_customized.png ├── tpw_v07r01_200910_cluster5.png ├── tpw_v07r01_200910_cluster_biggest.png ├── tpw_v07r01_200910_clusters.png └── writer_ECMWF_EI_VO_850hPa_2001060100.mp4 ├── files └── .gitkeep ├── index.md ├── reference.md └── setup.md /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Anne Fouilloux (annefou@geo.uio.no) 2 | -------------------------------------------------------------------------------- /CITATION: -------------------------------------------------------------------------------- 1 | Introduction for new MetOs users 2 | -------------------------------------------------------------------------------- /CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Clustering.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/Clustering.pdf -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_config.yml -------------------------------------------------------------------------------- /_episodes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_episodes/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_episodes/01-intro.md -------------------------------------------------------------------------------- /_episodes/02-formats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_episodes/02-formats.md -------------------------------------------------------------------------------- /_episodes/03-crs_proj.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_episodes/03-crs_proj.md -------------------------------------------------------------------------------- /_episodes/04-plotting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_episodes/04-plotting.md -------------------------------------------------------------------------------- /_episodes/05-scipy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_episodes/05-scipy.md -------------------------------------------------------------------------------- /_episodes/06-visualization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_episodes/06-visualization.md -------------------------------------------------------------------------------- /_episodes/07-LargeFiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_episodes/07-LargeFiles.md -------------------------------------------------------------------------------- /_episodes_rmd/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_episodes_rmd/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_extras/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_extras/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_extras/about.md -------------------------------------------------------------------------------- /_extras/discuss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_extras/discuss.md -------------------------------------------------------------------------------- /_extras/figures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_extras/figures.md -------------------------------------------------------------------------------- /_extras/guide.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: "Instructor Notes" 4 | permalink: /guide/ 5 | --- 6 | FIXME 7 | -------------------------------------------------------------------------------- /_includes/all_figures.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_includes/all_keypoints.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_includes/all_keypoints.html -------------------------------------------------------------------------------- /_includes/carpentries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_includes/carpentries.html -------------------------------------------------------------------------------- /_includes/dc/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_includes/dc/intro.html -------------------------------------------------------------------------------- /_includes/dc/schedule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_includes/dc/schedule.html -------------------------------------------------------------------------------- /_includes/dc/syllabus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_includes/dc/syllabus.html -------------------------------------------------------------------------------- /_includes/dc/who.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_includes/dc/who.html -------------------------------------------------------------------------------- /_includes/episode_break.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_includes/episode_break.html -------------------------------------------------------------------------------- /_includes/episode_keypoints.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_includes/episode_keypoints.html -------------------------------------------------------------------------------- /_includes/episode_navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_includes/episode_navbar.html -------------------------------------------------------------------------------- /_includes/episode_overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_includes/episode_overview.html -------------------------------------------------------------------------------- /_includes/episode_title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_includes/episode_title.html -------------------------------------------------------------------------------- /_includes/javascript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_includes/javascript.html -------------------------------------------------------------------------------- /_includes/lc/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_includes/lc/intro.html -------------------------------------------------------------------------------- /_includes/lc/schedule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_includes/lc/schedule.html -------------------------------------------------------------------------------- /_includes/lc/syllabys.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_includes/lc/syllabys.html -------------------------------------------------------------------------------- /_includes/lc/who.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_includes/lc/who.html -------------------------------------------------------------------------------- /_includes/lesson_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_includes/lesson_footer.html -------------------------------------------------------------------------------- /_includes/links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_includes/links.md -------------------------------------------------------------------------------- /_includes/main_title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_includes/main_title.html -------------------------------------------------------------------------------- /_includes/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_includes/navbar.html -------------------------------------------------------------------------------- /_includes/sc/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_includes/sc/intro.html -------------------------------------------------------------------------------- /_includes/sc/schedule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_includes/sc/schedule.html -------------------------------------------------------------------------------- /_includes/sc/syllabus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_includes/sc/syllabus.html -------------------------------------------------------------------------------- /_includes/sc/who.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_includes/sc/who.html -------------------------------------------------------------------------------- /_includes/syllabus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_includes/syllabus.html -------------------------------------------------------------------------------- /_includes/workshop_ad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_includes/workshop_ad.html -------------------------------------------------------------------------------- /_includes/workshop_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_includes/workshop_footer.html -------------------------------------------------------------------------------- /_layouts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_layouts/base.html -------------------------------------------------------------------------------- /_layouts/break.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_layouts/break.html -------------------------------------------------------------------------------- /_layouts/episode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_layouts/episode.html -------------------------------------------------------------------------------- /_layouts/lesson.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_layouts/lesson.html -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: base 3 | --- 4 | {% include main_title.html %} 5 | {{content}} 6 | -------------------------------------------------------------------------------- /_layouts/reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_layouts/reference.html -------------------------------------------------------------------------------- /_layouts/workshop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/_layouts/workshop.html -------------------------------------------------------------------------------- /aio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/aio.md -------------------------------------------------------------------------------- /assets/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/assets/css/bootstrap-theme.css -------------------------------------------------------------------------------- /assets/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/assets/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /assets/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/assets/css/bootstrap.css -------------------------------------------------------------------------------- /assets/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/assets/css/bootstrap.css.map -------------------------------------------------------------------------------- /assets/css/lesson.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/assets/css/lesson.scss -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/assets/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/assets/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /assets/img/dc-icon-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/assets/img/dc-icon-black.svg -------------------------------------------------------------------------------- /assets/img/lc-icon-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/assets/img/lc-icon-black.png -------------------------------------------------------------------------------- /assets/img/lc-icon-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/assets/img/lc-icon-black.svg -------------------------------------------------------------------------------- /assets/img/swc-icon-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/assets/img/swc-icon-blue.svg -------------------------------------------------------------------------------- /assets/img/swc-logo-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/assets/img/swc-logo-blue.png -------------------------------------------------------------------------------- /assets/img/swc-logo-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/assets/img/swc-logo-blue.svg -------------------------------------------------------------------------------- /assets/img/swc-logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/assets/img/swc-logo-white.png -------------------------------------------------------------------------------- /assets/img/swc-logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/assets/img/swc-logo-white.svg -------------------------------------------------------------------------------- /assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/assets/js/bootstrap.min.js -------------------------------------------------------------------------------- /assets/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/assets/js/index.js -------------------------------------------------------------------------------- /assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/assets/js/jquery.min.js -------------------------------------------------------------------------------- /assets/js/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/assets/js/jquery.min.map -------------------------------------------------------------------------------- /assets/js/lesson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/assets/js/lesson.js -------------------------------------------------------------------------------- /bin/chunk-options.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/bin/chunk-options.R -------------------------------------------------------------------------------- /bin/extract_figures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/bin/extract_figures.py -------------------------------------------------------------------------------- /bin/generate_md_episodes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/bin/generate_md_episodes.R -------------------------------------------------------------------------------- /bin/knit_lessons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/bin/knit_lessons.sh -------------------------------------------------------------------------------- /bin/lesson_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/bin/lesson_check.py -------------------------------------------------------------------------------- /bin/lesson_initialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/bin/lesson_initialize.py -------------------------------------------------------------------------------- /bin/markdown_ast.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/bin/markdown_ast.rb -------------------------------------------------------------------------------- /bin/repo_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/bin/repo_check.py -------------------------------------------------------------------------------- /bin/test_lesson_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/bin/test_lesson_check.py -------------------------------------------------------------------------------- /bin/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/bin/util.py -------------------------------------------------------------------------------- /bin/workshop_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/bin/workshop_check.py -------------------------------------------------------------------------------- /code/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/netcdf_orography_rd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/code/netcdf_orography_rd.py -------------------------------------------------------------------------------- /code/netcdf_orography_rd_subset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/code/netcdf_orography_rd_subset.py -------------------------------------------------------------------------------- /code/netcdf_orography_rd_wr.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/code/netcdf_orography_rd_wr.ipynb -------------------------------------------------------------------------------- /code/netcdf_orography_wr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/code/netcdf_orography_wr.py -------------------------------------------------------------------------------- /code/share_your_notebook_DC.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/code/share_your_notebook_DC.ipynb -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/AIRS.2002.08.30.227.L2.RetStd_H.v6.0.12.0.G14101125810.hdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/AIRS.2002.08.30.227.L2.RetStd_H.v6.0.12.0.G14101125810.hdf -------------------------------------------------------------------------------- /data/MISR_AM1_CGLS_MAY_2007_F04_0031.hdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/MISR_AM1_CGLS_MAY_2007_F04_0031.hdf -------------------------------------------------------------------------------- /data/Norway_building/A-README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/Norway_building/A-README.TXT -------------------------------------------------------------------------------- /data/Norway_building/buildings.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/Norway_building/buildings.dbf -------------------------------------------------------------------------------- /data/Norway_building/buildings.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/Norway_building/buildings.prj -------------------------------------------------------------------------------- /data/Norway_building/buildings.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/Norway_building/buildings.shp -------------------------------------------------------------------------------- /data/Norway_building/buildings.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/Norway_building/buildings.shx -------------------------------------------------------------------------------- /data/Norway_natural/A-README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/Norway_natural/A-README.TXT -------------------------------------------------------------------------------- /data/Norway_natural/natural.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/Norway_natural/natural.dbf -------------------------------------------------------------------------------- /data/Norway_natural/natural.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/Norway_natural/natural.prj -------------------------------------------------------------------------------- /data/Norway_natural/natural.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/Norway_natural/natural.shp -------------------------------------------------------------------------------- /data/Norway_natural/natural.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/Norway_natural/natural.shx -------------------------------------------------------------------------------- /data/Norway_places/A-README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/Norway_places/A-README.TXT -------------------------------------------------------------------------------- /data/Norway_places/places.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/Norway_places/places.dbf -------------------------------------------------------------------------------- /data/Norway_places/places.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/Norway_places/places.prj -------------------------------------------------------------------------------- /data/Norway_places/places.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/Norway_places/places.shp -------------------------------------------------------------------------------- /data/Norway_places/places.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/Norway_places/places.shx -------------------------------------------------------------------------------- /data/Norway_railways/A-README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/Norway_railways/A-README.TXT -------------------------------------------------------------------------------- /data/Norway_railways/railways.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/Norway_railways/railways.dbf -------------------------------------------------------------------------------- /data/Norway_railways/railways.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/Norway_railways/railways.prj -------------------------------------------------------------------------------- /data/Norway_railways/railways.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/Norway_railways/railways.shp -------------------------------------------------------------------------------- /data/Norway_railways/railways.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/Norway_railways/railways.shx -------------------------------------------------------------------------------- /data/Norway_roads/A-README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/Norway_roads/A-README.TXT -------------------------------------------------------------------------------- /data/Norway_roads/roads.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/Norway_roads/roads.dbf -------------------------------------------------------------------------------- /data/Norway_roads/roads.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/Norway_roads/roads.prj -------------------------------------------------------------------------------- /data/Norway_roads/roads.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/Norway_roads/roads.shp -------------------------------------------------------------------------------- /data/Norway_roads/roads.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/Norway_roads/roads.shx -------------------------------------------------------------------------------- /data/Norway_waterways/A-README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/Norway_waterways/A-README.TXT -------------------------------------------------------------------------------- /data/Norway_waterways/waterways.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/Norway_waterways/waterways.dbf -------------------------------------------------------------------------------- /data/Norway_waterways/waterways.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/Norway_waterways/waterways.prj -------------------------------------------------------------------------------- /data/Norway_waterways/waterways.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/Norway_waterways/waterways.shp -------------------------------------------------------------------------------- /data/Norway_waterways/waterways.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/Norway_waterways/waterways.shx -------------------------------------------------------------------------------- /data/OMI-Aura_L3-OMTO3e_2017m0105_v003-2017m0203t091906.he5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/OMI-Aura_L3-OMTO3e_2017m0105_v003-2017m0203t091906.he5 -------------------------------------------------------------------------------- /data/Southern_Norway_and_Sweden.2017229.terra.1km.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/Southern_Norway_and_Sweden.2017229.terra.1km.tif -------------------------------------------------------------------------------- /data/la_city.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/la_city.geojson -------------------------------------------------------------------------------- /data/no-all-all.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/no-all-all.geojson -------------------------------------------------------------------------------- /data/sresa1b_ncar_ccsm3-example.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/sresa1b_ncar_ccsm3-example.nc -------------------------------------------------------------------------------- /data/state.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/state.nc -------------------------------------------------------------------------------- /data/t2m_EI_sp_timeseries.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/t2m_EI_sp_timeseries.nc -------------------------------------------------------------------------------- /data/tracks_20010601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/data/tracks_20010601.csv -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/environment.yml -------------------------------------------------------------------------------- /favicon-dc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/favicon-dc.ico -------------------------------------------------------------------------------- /favicon-lc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/favicon-lc.ico -------------------------------------------------------------------------------- /favicon-swc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/favicon-swc.ico -------------------------------------------------------------------------------- /fig/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fig/AIRS_swaft_topog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/AIRS_swaft_topog.png -------------------------------------------------------------------------------- /fig/EI_VO850hPa_2001060100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/EI_VO850hPa_2001060100.png -------------------------------------------------------------------------------- /fig/EI_VO850hPa_2001060100_global.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/EI_VO850hPa_2001060100_global.png -------------------------------------------------------------------------------- /fig/EI_VO850hPa_MSLP_2001060100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/EI_VO850hPa_MSLP_2001060100.png -------------------------------------------------------------------------------- /fig/EI_VO850hPa_MSLP_2001060100_tracks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/EI_VO850hPa_MSLP_2001060100_tracks.png -------------------------------------------------------------------------------- /fig/EI_VO850hPa_MSLP_2001060100_zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/EI_VO850hPa_MSLP_2001060100_zoom.png -------------------------------------------------------------------------------- /fig/LatLongfromGlobeCenter-ESRI.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/LatLongfromGlobeCenter-ESRI.gif -------------------------------------------------------------------------------- /fig/NDVI_imshow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/NDVI_imshow.png -------------------------------------------------------------------------------- /fig/NOR_adm_shapefile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/NOR_adm_shapefile.png -------------------------------------------------------------------------------- /fig/NOR_adm_shapefile_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/NOR_adm_shapefile_filled.png -------------------------------------------------------------------------------- /fig/NOR_adm_shapefile_filled_ogr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/NOR_adm_shapefile_filled_ogr.png -------------------------------------------------------------------------------- /fig/Norway_natural_shapefile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/Norway_natural_shapefile.png -------------------------------------------------------------------------------- /fig/Norway_places_shapefile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/Norway_places_shapefile.png -------------------------------------------------------------------------------- /fig/Norway_railways_shapefile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/Norway_railways_shapefile.png -------------------------------------------------------------------------------- /fig/Norway_railways_shapefile_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/Norway_railways_shapefile_red.png -------------------------------------------------------------------------------- /fig/OMI_ColumnAmountO3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/OMI_ColumnAmountO3.png -------------------------------------------------------------------------------- /fig/Southern_Norway_and_Sweden.2017229.terra.1km.all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/Southern_Norway_and_Sweden.2017229.terra.1km.all.png -------------------------------------------------------------------------------- /fig/Southern_Norway_and_Sweden.2017229.terra.1km.bnd1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/Southern_Norway_and_Sweden.2017229.terra.1km.bnd1.png -------------------------------------------------------------------------------- /fig/Southern_Norway_and_Sweden.2017229.terra.1km.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/Southern_Norway_and_Sweden.2017229.terra.1km.png -------------------------------------------------------------------------------- /fig/add-lat-long-locations-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/add-lat-long-locations-1.png -------------------------------------------------------------------------------- /fig/add-robinson-locations-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/add-robinson-locations-2.png -------------------------------------------------------------------------------- /fig/add-robinson-locations-reprojection-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/add-robinson-locations-reprojection-2.png -------------------------------------------------------------------------------- /fig/blog_rew_chunking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/blog_rew_chunking.png -------------------------------------------------------------------------------- /fig/blog_rew_fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/blog_rew_fig1.png -------------------------------------------------------------------------------- /fig/columbia_oli_2014183_clusters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/columbia_oli_2014183_clusters.png -------------------------------------------------------------------------------- /fig/compare_cyl_robin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/compare_cyl_robin.png -------------------------------------------------------------------------------- /fig/contour_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/contour_test.png -------------------------------------------------------------------------------- /fig/dask_h5_max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/dask_h5_max.png -------------------------------------------------------------------------------- /fig/dask_nc_mean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/dask_nc_mean.png -------------------------------------------------------------------------------- /fig/dask_nc_solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/dask_nc_solution.png -------------------------------------------------------------------------------- /fig/different_projections.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/different_projections.jpg -------------------------------------------------------------------------------- /fig/figure_axes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/figure_axes.png -------------------------------------------------------------------------------- /fig/figure_axes_customized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/figure_axes_customized.png -------------------------------------------------------------------------------- /fig/geotiff_plot_basemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/geotiff_plot_basemap.png -------------------------------------------------------------------------------- /fig/geotiff_plot_basemap_pcolormesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/geotiff_plot_basemap_pcolormesh.png -------------------------------------------------------------------------------- /fig/geotiff_plot_basemap_reprojected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/geotiff_plot_basemap_reprojected.png -------------------------------------------------------------------------------- /fig/lat-long-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/lat-long-example-1.png -------------------------------------------------------------------------------- /fig/matplotlib_terminology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/matplotlib_terminology.png -------------------------------------------------------------------------------- /fig/multi-polygons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/multi-polygons.png -------------------------------------------------------------------------------- /fig/pnt_line_poly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/pnt_line_poly.png -------------------------------------------------------------------------------- /fig/polygons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/polygons.png -------------------------------------------------------------------------------- /fig/raster_concept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/raster_concept.png -------------------------------------------------------------------------------- /fig/robinson-example-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/robinson-example-2.png -------------------------------------------------------------------------------- /fig/sample_data_ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/sample_data_ts.png -------------------------------------------------------------------------------- /fig/sample_data_ts_customized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/sample_data_ts_customized.png -------------------------------------------------------------------------------- /fig/tpw_v07r01_200910_cluster5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/tpw_v07r01_200910_cluster5.png -------------------------------------------------------------------------------- /fig/tpw_v07r01_200910_cluster_biggest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/tpw_v07r01_200910_cluster_biggest.png -------------------------------------------------------------------------------- /fig/tpw_v07r01_200910_clusters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/tpw_v07r01_200910_clusters.png -------------------------------------------------------------------------------- /fig/writer_ECMWF_EI_VO_850hPa_2001060100.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/fig/writer_ECMWF_EI_VO_850hPa_2001060100.mp4 -------------------------------------------------------------------------------- /files/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/index.md -------------------------------------------------------------------------------- /reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/reference.md -------------------------------------------------------------------------------- /setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annefou/metos_python/HEAD/setup.md --------------------------------------------------------------------------------