Skip to content

Instantly share code, notes, and snippets.

View MrZombie69232's full-sized avatar
🎯
Focusing

Satyam Suman MrZombie69232

🎯
Focusing
View GitHub Profile
@ciskoh
ciskoh / download_dataset_gee.py
Last active March 30, 2021 11:47
function to download sentinel image ndvi and global land cover map for small areas
# -*- coding: utf-8 -*-
""""Functions to retrieve data from Google Earth Engine API
The main function to use is get_gee_data() that has 3 modes:
1_ sentinel_raw download cloud free sentinel image between given dates
and for given bands.
2_ global_land_cover download the Copernicus global land cover map at 100m resolution.
3_ ndvi downloads the monthly ndvi average between given period (still from sentinel, so only after 2017
You need to be registered with google earth engine to use it(Free and quick)
@darribas
darribas / contextily_labels.ipynb
Created February 4, 2021 12:21
Contextily labels examples
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@giswqs
giswqs / Velocity.ipynb
Created December 17, 2020 19:16
Velocity
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jennynottingham
jennynottingham / index.html
Last active October 7, 2022 12:35
Georeference a Static Image API
"""static.py
An example of fetching an image from the Mapbox Static Image API with a
matching "world file" for georeferencing the image.
"""
import os
import mercantile
import requests
@akatasonov
akatasonov / prepare_data.py
Created October 1, 2019 10:42
Sentinel 2A/2B band extraction and cropping using rasterio
import os
import glob
import pyproj
import shapely
import shapely.geometry
import shapely.ops
import fiona
import rasterio
import rasterio.mask
import rasterio.merge
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jqtrde
jqtrde / modern-geospatial-python.md
Last active August 1, 2023 14:50
Modern remote sensing image processing with Python