Skip to main content

A Python library for RS fused operations

Project description

rs-fused-lib

一个用于遥感数据处理的Python库,提供UDF(用户定义函数)功能。

安装

pip install rs-fused-lib

使用方法

1. 使用UDF装饰器

from rs_fused_lib import udf

@udf(
    name="ndvi_calculator",
    description="计算NDVI指数",
    parameters={
        "red_band": {"type": "int", "description": "红波段索引"},
        "nir_band": {"type": "int", "description": "近红外波段索引"}
    }
)
def calculate_ndvi(data, red_band=3, nir_band=4):
    red = data[..., red_band]
    nir = data[..., nir_band]
    return (nir - red) / (nir + red)

2. 运行UDF函数

from rs_fused_lib import run

# 直接运行UDF函数
result = run(calculate_ndvi, data, red_band=3, nir_band=4)

# 或者通过函数名运行
result = run("calculate_ndvi", data, red_band=3, nir_band=4)

功能特点

  • 支持UDF函数装饰器
  • 支持通过函数名或函数对象运行UDF
  • 支持参数传递和验证
  • 支持元数据管理

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

rs_fused_lib-0.1.3.tar.gz (13.0 kB view details)

Uploaded Source

Built Distribution

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

rs_fused_lib-0.1.3-py3-none-any.whl (16.9 kB view details)

Uploaded Python 3

File details

Details for the file rs_fused_lib-0.1.3.tar.gz.

File metadata

  • Download URL: rs_fused_lib-0.1.3.tar.gz
  • Upload date:
  • Size: 13.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.16

File hashes

Hashes for rs_fused_lib-0.1.3.tar.gz
Algorithm Hash digest
SHA256 bde7630badfafb8b0860df3b1d48839d32e1402d018c28de5f1b9ee3b0fc1d26
MD5 0bb9970990373bda750944161d90e688
BLAKE2b-256 3dbbcafebee4961108f95ae4e72180a7a1670df44f672cce7e038c6122d8e630

See more details on using hashes here.

File details

Details for the file rs_fused_lib-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: rs_fused_lib-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 16.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.16

File hashes

Hashes for rs_fused_lib-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 5e9fed73fa8e0c408103218fd92bc0c05e4683b1e7995a948d184793e050b606
MD5 319faac4b5e85bf23d1e465cfd1e974b
BLAKE2b-256 43ef604dc8edcfda19816572d58147069f82f9041f3af995eb48edd40a43a83f

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