Thanks to visit codestin.com
Credit goes to github.com

Skip to content

taraskiba/skiba

Repository files navigation

skiba

image image

A python package for foresters to query Google Earth Engine data

Streamlining the process to bring remotely sensed data to foresters

ForestSPOT

Walkthrough and Demonstration

Features

  • Access and retrieve pixel values from Google Earth Engine Images or ImageCollections and a desired time-period for a .CSV provided coordinates.
    • Results can be exported averaged over matching plot IDs or individual points.
  • Buffer sensitive coordinates:
    • Buffer to a singular point within a specified radius.
    • Buffer to n points within a specified radius.
  • Create a map with provided coordinates and built-in basemaps and geojson overlays.
  • Please understand the limitations of Google's confidentiality policy before use.

Installation

pip install skiba

Once installed, you need to authenticate your Google Earth Engine account. You can do this by running the following commands in Python:

import ee
# Initialize Earth Engine
ee.Authenticate()
ee.Initialize(project="ee-forestplotvariables")

To load widget boxes, run the following command in Python:

# For single point buffering
import skiba.buffer_coordinates as sbc
single = sbc.buffer_coordinates().vbox
single

# For multiple point buffering
import skiba.buffer_and_sample as sbs
multiple = sbs.buffer().vbox
multiple

# For non-aggregated point extraction
import skiba.point_extraction as spe
point = spe.PointExtraction().vbox
point

# For aggregated point extraction
import skiba.aggregated_point_extraction as sape
agg = sape.AggregatedPointExtraction().vbox
agg

# For the mapping tool
import skiba.interactive as map
m = map.Map()
m

Web App

For a non-python user, you can access the Streamlit app here: https://gskiba.streamlit.app/

Publication

pending

Logo Credit

About

A forester's python package for GEE point extractions

Topics

Resources

License

Contributing

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •