Skip to content

Commit 5c64523

Browse files
authored
PT-6002 Add upsampling-ns-sentinel process template (#758)
* add: UpsamplingNSSentinel job template * bump: sdk version * adapt: to newest version * fix: extra space * fix: changelog based on PR notes
1 parent bbe0a49 commit 5c64523

File tree

4 files changed

+12
-1
lines changed

4 files changed

+12
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,11 @@ You can check your current version with the following command:
3030

3131
For more information, see [UP42 Python package description](https://pypi.org/project/up42-py/).
3232

33+
34+
### 2.5.0a2
35+
**July 25, 2025**
36+
- Added a new processing job template: `UpsamplingNSSentinel`.
37+
3338
### 2.5.0a1
3439
**July 22, 2025**
3540
- Removed `rgb` and `ned` parameters from the `UpsamplingNS` job template.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "up42-py"
3-
version = "2.5.0a1"
3+
version = "2.5.0a2"
44
description = "Python SDK for UP42, the geospatial marketplace and developer platform."
55
authors = ["UP42 GmbH <[email protected]>"]
66
license = "https://github.com/up42/up42-py/blob/master/LICENSE"

tests/test_processing_templates.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ class TestParameterlessTemplates:
4242
templates.DetectionAircraftOI,
4343
templates.DetectionTrucksOI,
4444
templates.UpsamplingNS,
45+
templates.UpsamplingNSSentinel,
4546
],
4647
)
4748
def test_should_construct_single_item_job_templates(self, template_class):

up42/processing_templates.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,11 @@ class UpsamplingNS(WorkspaceIdSingleItemTemplate):
6767
process_id = "upsampling-ns"
6868

6969

70+
@dataclasses.dataclass
71+
class UpsamplingNSSentinel(WorkspaceIdSingleItemTemplate):
72+
process_id = "upsampling-ns-sentinel"
73+
74+
7075
@dataclasses.dataclass
7176
class DetectionChangeSpacept(WorkspaceIdMultiItemTemplate):
7277
process_id = "detection-change-spacept"

0 commit comments

Comments
 (0)