generated from ProjectPythia/cookbook-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2727678
commit 82184fe
Showing
3 changed files
with
433 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
{ | ||
"cells": [ | ||
{ | ||
"cell_type": "markdown", | ||
"metadata": {}, | ||
"source": [ | ||
"---\n", | ||
"title: Classification\n", | ||
"author: Pikall Nikolas\n", | ||
"jupyter: \n", | ||
" kernelspec:\n", | ||
" name: \"01_classification\"\n", | ||
" language: \"python\"\n", | ||
" display_name: \"01_classification\"\n", | ||
"---" | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"metadata": {}, | ||
"source": [ | ||
"#| echo: true\n", | ||
"#| code-fold: true\n", | ||
"# Imports\n", | ||
"import os\n", | ||
"import xarray as xr\n", | ||
"import numpy as np\n", | ||
"import datetime as dt\n", | ||
"import cmcrameri as cmc\n", | ||
"import folium\n", | ||
"from dotenv import dotenv_values\n", | ||
"\n", | ||
"from eodag import EODataAccessGateway, SearchResult, setup_logging\n", | ||
"from rasterio.crs import CRS\n", | ||
"\n", | ||
"# Setup logging\n", | ||
"setup_logging(0)" | ||
], | ||
"execution_count": null, | ||
"outputs": [] | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"metadata": {}, | ||
"source": [ | ||
"Lorum ipsum" | ||
] | ||
} | ||
], | ||
"metadata": { | ||
"kernelspec": { | ||
"name": "01_classification", | ||
"language": "python", | ||
"display_name": "01_classification" | ||
} | ||
}, | ||
"nbformat": 4, | ||
"nbformat_minor": 4 | ||
} |
Oops, something went wrong.