معرفی شرکت ها


cbers4asat-0.6.8


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Biblioteca Python para consultar o catálogo e realizar operações com dados do CBERS4A
ویژگی مقدار
سیستم عامل -
نام فایل cbers4asat-0.6.8
نام cbers4asat
نسخه کتابخانه 0.6.8
نگهدارنده []
ایمیل نگهدارنده []
نویسنده -
ایمیل نویسنده Gabriel Russo <gabrielrusso@protonmail.com>
آدرس صفحه اصلی -
آدرس اینترنتی https://pypi.org/project/cbers4asat/
مجوز MIT License Copyright (c) 2022 Gabriel Russo Copyright (c) 2020 Sandro Klippel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
# Cbers4asat ## Descrição Biblioteca Python para consultar o catálogo e realizar operações com dados do CBERS4A e AMAZONIA1. A biblioteca `cbers4asat` surgiu da necessidade de automatizar a busca e manipulação de imagens do satélite sino-brasileiro CBERS-04A utilizando linguagens de programação. O design do projeto foi inspirado no [sentinelsat](https://github.com/sentinelsat/sentinelsat), onde é possível de forma intuitiva, pesquisar por imagens e realizar o download com poucas linhas de código, além de poder ser integrado com outras bibiliotecas como o geopandas. --- [![Latest Version](https://img.shields.io/pypi/v/cbers4asat?style=plastic)](https://pypi.python.org/pypi/cbers4asat/) [![Latest Version](https://img.shields.io/pypi/l/cbers4asat?style=plastic)](https://github.com/gabriel-russo/cbers4asat/blob/master/LICENSE) [![Latest Version](https://img.shields.io/pypi/pyversions/cbers4asat?style=plastic)](https://pypi.python.org/pypi/cbers4asat/) [![Latest Version](https://img.shields.io/pypi/dm/cbers4asat?style=plastic)](https://pypi.python.org/pypi/cbers4asat/) [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) [![Hatch project](https://img.shields.io/badge/%F0%9F%A5%9A-Hatch-4051b5.svg)](https://github.com/pypa/hatch) ![GitHub Workflow Status](https://github.com/gabriel-russo/cbers4asat/actions/workflows/build-cbers4asat.yml/badge.svg) ![GitHub Workflow Status](https://github.com/gabriel-russo/cbers4asat/actions/workflows/test-cbers4asat.yml/badge.svg) [![Documentation Status](https://readthedocs.org/projects/cbers4asat/badge/?version=latest)](https://cbers4asat.readthedocs.io/pt_BR/latest/?badge=latest) > [Read this README in english (old version of docs)](https://github.com/gabriel-russo/cbers4asat/blob/master/en-US_README.md) > 🇺🇸 ## Busque imagens com poucas linhas de código ```python from cbers4asat import Cbers4aAPI from datetime import date # Inicializando a biblioteca api = Cbers4aAPI('email@mail.com') # Área de interesse (bbox, path row ou polígono) path_row = (229, 124) # Buscando metadados produtos = api.query(location=path_row, initial_date=date(2021, 6, 1), end_date=date(2021, 7, 1), cloud=100, limit=10, collections=['AMAZONIA1_WFI_L2_DN', 'CBERS4A_WPM_L4_DN']) # Exibindo os resultados print(produtos) ``` ## Utilize a caixa de ferramenta para os trabalhos mais comuns ```python # Para ver todas as ferramentas disponíveis, verifique a documentação from cbers4asat.tools import rgbn_composite import rasterio as rio from rasterio.plot import show # Criando a composição cor verdadeira rgbn_composite(red='./CBERS4A_WPM22812420210704/CBERS_4A_WPM_20210704_228_124_L4_BAND3.tif', green='./CBERS4A_WPM22812420210704/CBERS_4A_WPM_20210704_228_124_L4_BAND2.tif', blue='./CBERS4A_WPM22812420210704/CBERS_4A_WPM_20210704_228_124_L4_BAND1.tif', nir='./CBERS4A_WPM22812420210704/CBERS_4A_WPM_20210704_228_124_L4_BAND4.tif', filename='CBERS4A_WPM22812420210704_TRUE_COLOR.tif', outdir='./STACK') # Plotando a imagem raster = rio.open("./STACK/CBERS4A_WPM22812420210704_TRUE_COLOR.tif") show(raster.read(), transform=raster.transform) ``` ## Download da biblioteca com pip `pip install cbers4asat` Instalação com a caixa de ferramentas `pip install cbers4asat[tools]` ## Documentação Você pode ler a documentação da biblioteca no link abaixo > https://cbers4asat.readthedocs.io/ ## Contribuição Convido qualquer pessoa a participar contribuindo com código, relatando bugs, escrevendo documentação, tutoriais e discutindo o futuro deste projeto. Para mais informações de como contribuir ao projeto, leia [ao manual de contribuição](https://github.com/gabriel-russo/cbers4asat/blob/master/CONTRIBUTING.md) ## Progresso do projeto Você pode acompanhar todo o progresso do desenvolvimento no [painel de projetos](https://github.com/gabriel-russo/cbers4asat/projects) # Licença Copyright (c) 2022 Gabriel Russo Copyright (c) 2020 Sandro Klippel O uso é fornecido sob a Licença do MIT. Veja em [LICENSE](https://github.com/gabriel-russo/cbers4asat/blob/master/LICENSE) para mais detalhes.


نیازمندی

مقدار نام
xtr hatch>=1.6.3;
xtr geojson>=3.0.1;
- geopandas>=0.9
- pandas>=1.3.5
- requests>=2.25.1
xtr geomet>=1.0.0;
xtr numpy>=1.24.2;
xtr rasterio>=1.3.6;
xtr scikit-image>=0.20.0;


زبان مورد نیاز

مقدار نام
>=3.8 Python


نحوه نصب


نصب پکیج whl cbers4asat-0.6.8:

    pip install cbers4asat-0.6.8.whl


نصب پکیج tar.gz cbers4asat-0.6.8:

    pip install cbers4asat-0.6.8.tar.gz