Giter Site home page Giter Site logo

aster-spectral-indices's Introduction

aster-spectral-indices

A dictionary-like Python object to get band ratios with ASTER images

TODO

Add a real ASTER granule example and plots of output

Usage

  1. Instantiate the Indices object band_ratios = Indices(img)
  2. Print keys to the available indices print(band_ratios.keys())
  3. Call .get() with the desired key kaolinite = band_ratios.get("Kaolinite")
  4. The output of .get() is a 3D numpy array kaolinite.shape = (1, height, width)

Example

import numpy as np
import matplotlib.pyplot as plt
from multispectral import Indices

# Simulate a 9-layer ASTER image with 3 VNIR bands and 6 SWIR bands
img = np.random.randn(9, 1000, 1000) # (n_bands, height, width)

# Instantiate Indices dictionary
indices_dict = Indices(img)

# Get the Kaolinite index
kaolinite = indices_dict.get("Kaolinite")

# Plot the Kaolinite map
plt.imshow(kaolinite[0])

# The actual values in the dict are function objects
# A particular index can alternatively be computed by
# extracting the function from the dict and calling it
get_kaolinite_idx = indices_dict["Kaolinite"]
kaolinite = get_kaolinite_idx()

aster-spectral-indices's People

Contributors

clberube avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.