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
from glob import glob | |
import earthpy as et | |
import earthpy.spatial as es | |
import earthpy.plot as ep | |
import rasterio as rio | |
from rasterio.plot import plotting_extent | |
from rasterio.plot import show | |
from rasterio.plot import reshape_as_raster, reshape_as_image | |
import matplotlib.pyplot as plt | |
import numpy as np | |
from matplotlib.colors import ListedColormap | |
import plotly.graph_objects as go | |
np.seterr(divide='ignore', invalid='ignore') | |
S_sentinel_bands = glob("/content/drive/MyDrive/Satellite_data/sundarbans_data/*B?*.tiff") | |
S_sentinel_bands.sort() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment