Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add dem_stitcher recipe #19470

Merged
merged 10 commits into from
Jul 22, 2022
65 changes: 65 additions & 0 deletions recipes/dem_stitcher/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
{% set name = "dem_stitcher" %}
{% set version = "2.3.0" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: e211e94e115e9c84fef7e2fb11f75b56076c940f31d04a2422be60c9db27e24c

build:
noarch: python
script: {{ PYTHON }} -m pip install . -vv
number: 0

requirements:
host:
- python >=3.7
- pip
- setuptools >=42
- setuptools_scm >=3.4
- wheel
run:
- python >=3.7
- affine
- boto3
- geopandas
- importlib_metadata
- numpy
- pyproj
- rasterio
- requests
- shapely
- tqdm

test:
imports:
- dem_stitcher
- dem_stitcher.stitcher
- dem_stitcher.datasets
requires:
- pip
commands:
- pip check

about:
home: https://github.com/ACCESS-Cloud-Based-InSAR/dem-stitcher
summary: 'Download and merge DEM tiles'
description: |
This tool aims to (a) provide a continuous raster of Digital Elevation Raster over an area of interest and (b) perform some standard transformations for processing. Such transformations include:
+ converting the vertical datum from a reference geoid to the WGS84 ellipsoidal
+ ensuring a coordinate reference system centered at either the upper-left corner (`Area` tag) or center of the pixel (`Point` tag).

We utilize the GIS formats from `rasterio`. This tool was developed to support cloud SAR processing using ISCE2 and various research. The early work of this repository was done by Charlie Marshak, David Bekaert, Michael Denbina, and Marc Simard.
license: Apache-2.0
license_family: Apache
license_file: LICENSE.txt
doc_url: https://github.com/ACCESS-Cloud-Based-InSAR/dem-stitcher
dev_url: https://github.com/ACCESS-Cloud-Based-InSAR/dem-stitcher

extra:
recipe-maintainers:
- cmarshak
- jhkennedy