Skip to main content

A Python library for raster change detection and analysis

Project description

Farq - فَرْق

A Python library for raster change detection and analysis, specializing in water body detection and monitoring using satellite imagery. Farq (Arabic: فَرْق, meaning "difference") simplifies the process of identifying and analyzing changes between raster datasets over time, with a focus on remote sensing applications.

Features

Core Functions

  • Efficient raster data loading and handling
  • Change detection using multiple methods
  • Statistical analysis tools
  • Raster resampling and preprocessing
  • Memory-efficient operations
  • Robust error handling

Machine Learning

  • Supervised classification
  • Unsupervised clustering
  • Feature extraction
  • Model training and validation
  • Water body detection using ML
  • Change detection with ML algorithms

Water Analysis

  • Water body detection and delineation
  • Surface area calculations
  • Temporal change analysis
  • Individual water body statistics
  • Performance-optimized for large datasets

Spectral Indices

  • Water Indices:
    • NDWI (Normalized Difference Water Index)
    • MNDWI (Modified Normalized Difference Water Index)
  • Vegetation Indices:
    • NDVI (Normalized Difference Vegetation Index)
    • SAVI (Soil Adjusted Vegetation Index)
    • EVI (Enhanced Vegetation Index)
  • Urban Indices:
    • NDBI (Normalized Difference Built-up Index)

Visualization Tools

  • Single raster visualization
  • Side-by-side raster comparison
  • Change detection visualization
  • Distribution analysis
  • RGB composite visualization
  • Customizable colormaps and scaling
  • Interactive plotting capabilities

Installation

pip install farq

Quick Start

import farq

# Load raster bands
green, meta = farq.read("landsat_green.tif")
nir, _ = farq.read("landsat_nir.tif")

# Calculate NDWI
ndwi = farq.ndwi(green, nir)

# Create water mask and calculate statistics
water_mask = ndwi > 0
water_pixels = farq.sum(water_mask)
water_percentage = (water_pixels / water_mask.size) * 100

print(f"Water coverage: {water_percentage:.1f}%")

# Visualize results
farq.plot(ndwi, title="NDWI Analysis", cmap="RdYlBu", vmin=-1, vmax=1)
farq.plt.show()

Common Operations

Water Analysis

# Load and preprocess data
green_1, meta = farq.read("landsat_green_2020.tif")
nir_1, _ = farq.read("landsat_nir_2020.tif")
green_2, _ = farq.read("landsat_green_2024.tif")
nir_2, _ = farq.read("landsat_nir_2024.tif")

# Calculate NDWI for both periods
ndwi_1 = farq.ndwi(green_1, nir_1)
ndwi_2 = farq.ndwi(green_2, nir_2)

# Compare water coverage
farq.compare(ndwi_1, ndwi_2, 
    title1="NDWI 2020", 
    title2="NDWI 2024",
    cmap="RdYlBu",
    vmin=-1, vmax=1)
farq.plt.show()

Vegetation Analysis

# Load bands
bands = {
    'blue': farq.read("landsat_blue.tif")[0],
    'green': farq.read("landsat_green.tif")[0],
    'red': farq.read("landsat_red.tif")[0],
    'nir': farq.read("landsat_nir.tif")[0]
}

# Calculate indices
ndvi = farq.ndvi(bands['nir'], bands['red'])
evi = farq.evi(bands['red'], bands['nir'], bands['blue'])
savi = farq.savi(bands['nir'], bands['red'])

# Analyze vegetation coverage
veg_mask = ndvi > 0.2
veg_percentage = (farq.sum(veg_mask) / veg_mask.size) * 100
print(f"Vegetation coverage: {veg_percentage:.1f}%")

# Visualize indices
farq.plot(ndvi, title="NDVI Analysis", cmap="RdYlGn", vmin=-1, vmax=1)
farq.plt.show()

RGB Visualization

# Load RGB bands
red = farq.read("landsat_red.tif")[0]
green = farq.read("landsat_green.tif")[0]
blue = farq.read("landsat_blue.tif")[0]

# Create RGB composite
farq.plot_rgb(red, green, blue, title="RGB Composite")
farq.plt.show()

Documentation

Comprehensive documentation is available in the docs/ directory:

Performance

Farq is optimized for large raster datasets with:

  • Memory-efficient operations
  • Parallel processing capabilities
  • Vectorized computations
  • Optimized array operations
  • Robust error handling
  • Comprehensive input validation

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

farq-0.1.5.tar.gz (21.4 kB view details)

Uploaded Source

File details

Details for the file farq-0.1.5.tar.gz.

File metadata

  • Download URL: farq-0.1.5.tar.gz
  • Upload date:
  • Size: 21.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.11.3

File hashes

Hashes for farq-0.1.5.tar.gz
Algorithm Hash digest
SHA256 98e597a774cfdbca32067bc83966df15ab0906a6f65e84a151f00f82e7ed792f
MD5 b283f41f0c4feb91a684d4b810edd2bd
BLAKE2b-256 ca7da099377e11508d78924bd2c1cfb8703ddfec5ae76b4570a568ef11c16f79

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page