Skip to content
Merged
Show file tree
Hide file tree
Changes from 12 commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
b261236
added ogc endpoints
grallewellyn Jul 29, 2025
6c60c72
added string casting and changed to list_processes wording
grallewellyn Jul 29, 2025
591d757
fixed typo jobs_ogc
grallewellyn Jul 30, 2025
4eec87b
added tests and updated testing instructions
grallewellyn Jul 30, 2025
2625e7c
edited changelog
grallewellyn Jul 30, 2025
664376b
camelcase and removed _ogc from naming conventions
grallewellyn Aug 21, 2025
77b88f7
Updated changelog and tests, tests are not very helpful but api is al…
grallewellyn Aug 21, 2025
d59f540
corrected list jobs function
grallewellyn Sep 24, 2025
d529a2b
commented out register_algorithm_from_cwl_file because its functional…
grallewellyn Oct 6, 2025
c5977d9
added functions for registering an algorithm from a cwl file
grallewellyn Nov 12, 2025
1cb8ca5
merged develop branch
grallewellyn Dec 31, 2025
dd66f0c
Merge branch 'develop' into add-ogc-endpoints
grallewellyn Jan 8, 2026
462b4dc
converted more function names to snakecase
grallewellyn Jan 8, 2026
75b6cf0
initial attempt to register alg from cwl file
grallewellyn Jan 13, 2026
890dc97
cwl_text is now a string
grallewellyn Jan 13, 2026
2a7c749
pass cwl as raw text to API
grallewellyn Jan 13, 2026
48b69d3
deleted unnecessary code and print statements
grallewellyn Jan 15, 2026
4762c16
deleted unnecessary packages and imports
grallewellyn Jan 15, 2026
5d23fa3
added replace algorithm from cwl function
grallewellyn Jan 15, 2026
24584ed
Merge pull request #121 from MAAP-Project/register-alg-cwl-file
grallewellyn Jan 15, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
(post 4.2.0 release)
### Added
- Support for new OGC endpoints
### Changed
### Deprecated
### Removed
- Removed functions calling old WPST endpoints
### Fixed
### Security

Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,5 +76,7 @@ lidarGranule = maap.searchGranule(instrument='lvis', site_name='lope')
## Test

```bash
python setup.py test
poetry install
poetry run pytest --cov=maap
poetry run pytest test/specific_test.py
```
3 changes: 3 additions & 0 deletions maap/config_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,9 @@ def __init__(self, maap_host):
self.algorithm_build = self._get_api_endpoint("algorithm_build")
self.mas_algo = self._get_api_endpoint("mas_algo")
self.dps_job = self._get_api_endpoint("dps_job")
self.processes_ogc = self._get_api_endpoint("processes_ogc")
self.deployment_jobs_ogc = self._get_api_endpoint("deployment_jobs_ogc")
self.jobs_ogc = self._get_api_endpoint("jobs_ogc")
self.member_dps_token = self._get_api_endpoint("member_dps_token")
self.requester_pays = self._get_api_endpoint("requester_pays")
self.edc_credentials = self._get_api_endpoint("edc_credentials")
Expand Down
Loading