cross-cal-resourcesat


Namecross-cal-resourcesat JSON
Version 0.1.3 PyPI version JSON
download
home_pagehttps://github.com/akhi9661/cross_cal_resourcesat
SummaryA python package to cross calibrate ResourceSat 2 sensors like LISS III, AWiFS or LISS IV.
upload_time2023-04-15 21:26:07
maintainer
docs_urlNone
authorAkhilesh Kumar
requires_python>=3.7
licenseMIT license
keywords cross_cal_resourcesat
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # cross_cal_resourcesat


[![image](https://img.shields.io/pypi/v/cross_cal_resourcesat.svg)](https://pypi.python.org/pypi/cross_cal_resourcesat)
[![image](https://img.shields.io/conda/vn/conda-forge/cross_cal_resourcesat.svg)](https://anaconda.org/conda-forge/cross_cal_resourcesat)
[![Python Versions](https://img.shields.io/pypi/pyversions/cross_cal_resourcesat.svg)](https://pypi.org/project/cross_cal_resourcesat/)
[![License](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![image](https://github.com/akhi9661/cross_cal_resourcesat/workflows/docs/badge.svg)](https://github.com/akhi9661/cross_cal_resourcesat)
[![image](https://github.com/akhi9661/cross_cal_resourcesat/workflows/Linux%20build/badge.svg)](https://github.com/akhi9661/cross_cal_resourcesat/actions)

---

## Introduction

This package applies a cross calibrates LISS III and AWiFS with the help of a reference image like Landsat 8 and Sentinel 2.

Takes two inputs:
- `inpf_liss` = path to folder LISS III or AWiFS bands
- `inpf_ref` = path to folder containing reference image bands. Could be Landsat 8 or Sentinel 2.

Final output folder: 
- `inpf_liss\Reflectance\Calibration`

Four temporary images are also generated which are automatically deleted after the execution. These are two composite images,
one resampled image, and one clipped image

---


## Package information
A python package to cross calibrate ResourceSat 2 sensors like LISS III, AWiFS or LISS IV.


-   Github repo: https://github.com/akhi9661/cross_cal_resourcesat
-   PypI: https://pypi.org/project/cross-cal-resourcesat/
-   Free software: MIT license
-   Documentation: https://akhi9661.github.io/cross_cal_resourcesat


Note: At the moment, if `reference_sensor  = 'Landsat 8'`, path to reflectance images will have to provided in `inpf_ref`. 

---
## How to use

- Clone the repository in the desired folder.

```
git clone https://github.com/akhi9661/cross_cal_resourcesat.git
```

In case this fails, download the zip file and extract it in a folder. 

- Install the required dependencies.

```
pip install -r requirements.txt
```
If it throws up an error, create a new virtual environment and install the dependencies. Installation of `GDAL` and `rasterio` is complex and generally fails in the base environment or an already existing environment. Creating a new virtual environment generally resolves this.



---
## Credits

This package was created with [Cookiecutter](https://github.com/cookiecutter/cookiecutter) and the [giswqs/pypackage](https://github.com/giswqs/pypackage) project template.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/akhi9661/cross_cal_resourcesat",
    "name": "cross-cal-resourcesat",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "cross_cal_resourcesat",
    "author": "Akhilesh Kumar",
    "author_email": "akhiraj9661@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/a3/62/d5dab3a741781ebcb0f5a706cb2cedcb58ff219adee6672a95bf14ac1453/cross_cal_resourcesat-0.1.3.tar.gz",
    "platform": null,
    "description": "# cross_cal_resourcesat\n\n\n[![image](https://img.shields.io/pypi/v/cross_cal_resourcesat.svg)](https://pypi.python.org/pypi/cross_cal_resourcesat)\n[![image](https://img.shields.io/conda/vn/conda-forge/cross_cal_resourcesat.svg)](https://anaconda.org/conda-forge/cross_cal_resourcesat)\n[![Python Versions](https://img.shields.io/pypi/pyversions/cross_cal_resourcesat.svg)](https://pypi.org/project/cross_cal_resourcesat/)\n[![License](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n[![image](https://github.com/akhi9661/cross_cal_resourcesat/workflows/docs/badge.svg)](https://github.com/akhi9661/cross_cal_resourcesat)\n[![image](https://github.com/akhi9661/cross_cal_resourcesat/workflows/Linux%20build/badge.svg)](https://github.com/akhi9661/cross_cal_resourcesat/actions)\n\n---\n\n## Introduction\n\nThis package applies a cross calibrates LISS III and AWiFS with the help of a reference image like Landsat 8 and Sentinel 2.\n\nTakes two inputs:\n- `inpf_liss` = path to folder LISS III or AWiFS bands\n- `inpf_ref` = path to folder containing reference image bands. Could be Landsat 8 or Sentinel 2.\n\nFinal output folder: \n- `inpf_liss\\Reflectance\\Calibration`\n\nFour temporary images are also generated which are automatically deleted after the execution. These are two composite images,\none resampled image, and one clipped image\n\n---\n\n\n## Package information\nA python package to cross calibrate ResourceSat 2 sensors like LISS III, AWiFS or LISS IV.\n\n\n-   Github repo: https://github.com/akhi9661/cross_cal_resourcesat\n-   PypI: https://pypi.org/project/cross-cal-resourcesat/\n-   Free software: MIT license\n-   Documentation: https://akhi9661.github.io/cross_cal_resourcesat\n\n\nNote: At the moment, if `reference_sensor  = 'Landsat 8'`, path to reflectance images will have to provided in `inpf_ref`. \n\n---\n## How to use\n\n- Clone the repository in the desired folder.\n\n```\ngit clone https://github.com/akhi9661/cross_cal_resourcesat.git\n```\n\nIn case this fails, download the zip file and extract it in a folder. \n\n- Install the required dependencies.\n\n```\npip install -r requirements.txt\n```\nIf it throws up an error, create a new virtual environment and install the dependencies. Installation of `GDAL` and `rasterio` is complex and generally fails in the base environment or an already existing environment. Creating a new virtual environment generally resolves this.\n\n\n\n---\n## Credits\n\nThis package was created with [Cookiecutter](https://github.com/cookiecutter/cookiecutter) and the [giswqs/pypackage](https://github.com/giswqs/pypackage) project template.\n",
    "bugtrack_url": null,
    "license": "MIT license",
    "summary": "A python package to cross calibrate ResourceSat 2 sensors like LISS III, AWiFS or LISS IV.",
    "version": "0.1.3",
    "split_keywords": [
        "cross_cal_resourcesat"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "758c75565a3a6a25ad2e3353515be22b7e658727e366e086c68fa71a5c7fb8f0",
                "md5": "38c84c9977247a03094803b4719ab885",
                "sha256": "9031229e7a75f288e09011264128cb2c666900cc0412328151ef779fb1a73c26"
            },
            "downloads": -1,
            "filename": "cross_cal_resourcesat-0.1.3-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "38c84c9977247a03094803b4719ab885",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">=3.7",
            "size": 7731,
            "upload_time": "2023-04-15T21:26:06",
            "upload_time_iso_8601": "2023-04-15T21:26:06.252566Z",
            "url": "https://files.pythonhosted.org/packages/75/8c/75565a3a6a25ad2e3353515be22b7e658727e366e086c68fa71a5c7fb8f0/cross_cal_resourcesat-0.1.3-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a362d5dab3a741781ebcb0f5a706cb2cedcb58ff219adee6672a95bf14ac1453",
                "md5": "8c9f9d3779ee9c8806a176a55b5693d8",
                "sha256": "9f35a22f20443108713e954ad3b80a362f885e5b18329a7b11cedfa4eba47d90"
            },
            "downloads": -1,
            "filename": "cross_cal_resourcesat-0.1.3.tar.gz",
            "has_sig": false,
            "md5_digest": "8c9f9d3779ee9c8806a176a55b5693d8",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 6855,
            "upload_time": "2023-04-15T21:26:07",
            "upload_time_iso_8601": "2023-04-15T21:26:07.771241Z",
            "url": "https://files.pythonhosted.org/packages/a3/62/d5dab3a741781ebcb0f5a706cb2cedcb58ff219adee6672a95bf14ac1453/cross_cal_resourcesat-0.1.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-04-15 21:26:07",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "akhi9661",
    "github_project": "cross_cal_resourcesat",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "cross-cal-resourcesat"
}
        
Elapsed time: 0.13715s