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

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
  • Customizable colormaps and scaling

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()

Spectral Indices

# 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['red'], bands['nir'])
ndwi = farq.ndwi(bands['green'], bands['nir'])
evi = farq.evi(bands['red'], bands['nir'], bands['blue'])

# 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}%")

Visualization

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

# Compare two time periods
farq.compare(ndwi_1, ndwi_2, 
    title1="Before", title2="After",
    cmap="RdYlBu", vmin=-1, vmax=1)
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

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.1.tar.gz (20.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

farq-0.1.1-py3-none-any.whl (12.5 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: farq-0.1.1.tar.gz
  • Upload date:
  • Size: 20.2 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.1.tar.gz
Algorithm Hash digest
SHA256 61f821dd72dee99b13206fee79aff77571a90b8f2956c56bde571bfb8cd7169e
MD5 62cf74cf81bec2beb7f9994da50548a8
BLAKE2b-256 2a52305c67f0098a140213cdeef7f52c04a884871ab3bf4695a4a642bc8008e1

See more details on using hashes here.

File details

Details for the file farq-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: farq-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 12.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.11.3

File hashes

Hashes for farq-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 bc28de6909dbf7549e8e850207e5dbfea58196f050081daf3665b9dfa9bf70e6
MD5 f4aa43a015f314e9fb99180b43bd2d03
BLAKE2b-256 0ac383b240e6739a688accb2e416f79162e62ca187873e792f14114c2e112212

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