-
-
Notifications
You must be signed in to change notification settings - Fork 5.1k
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
Adding ARIA-tools #22370
Merged
Merged
Adding ARIA-tools #22370
Changes from 9 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
8bb7c6a
Create meta.yaml
dbekaert b44ac30
Update meta.yaml
dbekaert b213c92
Create build_base.sh
dbekaert 4bb8a25
Merge branch 'conda-forge:main' into main
dbekaert 9ff3c9e
Update meta.yaml
dbekaert e928de6
Update meta.yaml
dbekaert bc48a1e
Update recipes/ARIA-tools/meta.yaml
dbekaert 9e8ec21
Update recipes/ARIA-tools/meta.yaml
dbekaert 149a280
Update recipes/ARIA-tools/meta.yaml
dbekaert e40ef6d
Update recipes/ARIA-tools/meta.yaml
dbekaert 76773e7
Update recipes/ARIA-tools/meta.yaml
dbekaert 793fe27
Update recipes/ARIA-tools/meta.yaml
dbekaert f6a9b26
Update recipes/ARIA-tools/meta.yaml
dbekaert 9b6fb15
Update recipes/ARIA-tools/meta.yaml
cmarshak 23ffa2c
Update meta.yaml using correct subsection for entrypoints
cmarshak 35bcfa1
Comment out entrypoints until ARIA-Tools is updated
cmarshak 870fb60
Delete build_base.sh
cmarshak File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
export SETUPTOOLS_SCM_PRETEND_VERSION="$PKG_VERSION" | ||
$PYTHON -m pip install . -vv | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
{% set name = "ARIA-tools" %} | ||
{% set version = "1.1.5" %} | ||
|
||
|
||
package: | ||
name: {{ name|lower }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://github.com/aria-tools/{{ name }}/archive/refs/tags/v{{ version }}.tar.gz | ||
sha256: c544fee1c539f38e23897d27332a6af0f45d48874e651a096993dbd311cbbf48 | ||
|
||
build: | ||
script: | ||
- export SETUPTOOLS_SCM_PRETEND_VERSION={{ version }} | ||
- {{ PYTHON }} -m pip install . -vv | ||
number: 0 | ||
skip: true # [py<38 or win] | ||
cmarshak marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
requirements: | ||
build: | ||
- {{ compiler('c') }} | ||
- {{ compiler('cxx') }} | ||
- cmake | ||
host: | ||
- python | ||
- pip | ||
- pybind11 >=2.5.0 | ||
- setuptools >61.0 | ||
- setuptools_scm >6.2 | ||
- python-build | ||
- numpy | ||
- cython | ||
run: | ||
- python | ||
- asf_search | ||
- cartopy | ||
- gdal>=3.4.1 | ||
dbekaert marked this conversation as resolved.
Show resolved
Hide resolved
|
||
- h5py | ||
- joblib | ||
- matplotlib-base | ||
- netcdf4 | ||
- pandas | ||
- xarray | ||
- rasterio | ||
- rioxarray | ||
- pip | ||
- pyproj | ||
- requests | ||
- scipy<1.10 | ||
dbekaert marked this conversation as resolved.
Show resolved
Hide resolved
|
||
- mintpy | ||
- shapely | ||
|
||
test: | ||
imports: | ||
- ARIA-tools | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should be There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. When I install, I can do something like
dbekaert marked this conversation as resolved.
Show resolved
Hide resolved
|
||
requires: | ||
- pip | ||
commands: | ||
- pip check | ||
- ariaExtract.py -h | ||
- ariaDownload.py -h | ||
- ariaTSsetup.py -h | ||
- ariaPlot -h | ||
- ariaMisclosure.py -h | ||
- ariaAOIassist.py -h | ||
dbekaert marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
about: | ||
home: https://github.com/aria-tools/ARIA-tools | ||
summary: Advanced Rapid Imaging and Analysis Product Toolkit | ||
description: | | ||
ARIA-tools is an open-source package in Python which contains tools to | ||
manipulate ARIA standard InSAR products. Its development was funded under | ||
the NASA Sea-level Change Team (NSLCT) program and the Earth Surface | ||
and Interior (ESI) program. U.S. Government sponsorship acknowledged. | ||
license: Apache-2.0 | ||
license_family: Apache | ||
license_file: LICENSE | ||
doc_url: https://github.com/dbekaert/RAiDER-docs | ||
dev_url: https://github.com/aria-tools/ARIA-tools-docs | ||
|
||
extra: | ||
recipe-maintainers: | ||
- sssangha | ||
- cmarshak | ||
- jhkennedy | ||
- dbekaert |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You don't need this file with the script line in the recipe.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am interpreting the comment as requesting to remove
build.sh
. Is that correct? Or should I remove one of the lines?Thanks for your help with this.