Skip to content

Commit 13f3b09

Browse files
committed
test
1 parent 2604b1d commit 13f3b09

2 files changed

Lines changed: 48 additions & 0 deletions

File tree

.github/workflows/workflow.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
on:
2+
push:
3+
branches:
4+
- mlucas/ogc
5+
jobs:
6+
build_app_pack:
7+
environment: DIT
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout repo content
11+
uses: actions/checkout@v4
12+
13+
- name: Use OGC App Pack Generator Action
14+
uses: MAAP-Project/ogc-app-pack-generator@feature/create-action
15+
with:
16+
# Specify action inputs
17+
workflow-configuration-path: nasa/workflow_configuration.yml
18+
dockerfile-path: get-dem/esa/Dockerfile

nasa/workflow_configuration.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Input params for OGC application package generator
2+
# The information provided in this file supports CWL and OGC best practices
3+
algorithm_description: This application is designed to process Synthetic Aperture Radar (SAR) data from Sentinel-1 GRD (Ground Range Detected) products using a Digital Elevation Model (DEM) obtained from Copernicus.
4+
algorithm_name: sardem-sarsen
5+
algorithm_version: mlucas/nasa_ogc
6+
keywords: ogc, sar
7+
code_repository: https://github.com/MAAP-Project/sardem-sarsen.git
8+
citation: https://github.com/MAAP-Project/sardem-sarsen.git
9+
author: arthurduf
10+
contributor: arthurduf
11+
license: https://github.com/MAAP-Project/sardem-sarsen/blob/main/LICENSE
12+
release_notes: None
13+
run_command: /app/sardem-sarsen/sardem-sarsen.sh
14+
ram_min: 5 # mebibytes
15+
cores_min: 1
16+
outdir_max: 20 # mebibytes
17+
18+
inputs:
19+
- name: bbox
20+
doc: Bounding box as 'LEFT BOTTOM RIGHT TOP'
21+
label: bounding box
22+
type: string
23+
- name: stac_catalog_folder
24+
doc: STAC catalog folder
25+
label: catalog folder
26+
type: Directory
27+
28+
outputs:
29+
- name: out
30+
type: Directory

0 commit comments

Comments
 (0)