Skip to content

Commit

Permalink
Merge branch 'main' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
dfguerrerom committed Dec 11, 2023
2 parents b602972 + 1aba3d8 commit f484195
Show file tree
Hide file tree
Showing 10 changed files with 344 additions and 225 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -128,3 +128,4 @@ dmypy.json

# Pyre type checker
.pyre/
.vscode/sftp.json
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
## 0.1.0 (2023-10-07)

### Feat

- versioning
- add a mamba environment
- deploy a github page

### Fix

- support python<3.9, by importing typing types
- add build-environment file
- display the mosaics in reverse order
- restore downloading
- control the colors
- load maps when mosaic is selected
- lint to planet api
- add AOi selector
- move to sepal-ui 2.16.2
- add planet to requirement

### Refactor

- remove useless notebooks
86 changes: 0 additions & 86 deletions about_ui.ipynb

This file was deleted.

40 changes: 0 additions & 40 deletions aoi_selector_ui.ipynb

This file was deleted.

6 changes: 1 addition & 5 deletions component/tile/down_control.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@


class DownView(sw.Tile):

grid = None
"the grod associated to the aoi"

Expand All @@ -20,7 +19,6 @@ def __init__(
planet_model: PlanetModel,
order_model: cmod.OrderModel,
):

# save models as members
self.aoi_model = aoi_model
self.planet_model = planet_model
Expand All @@ -36,9 +34,8 @@ def __init__(
self.btn.on_event("click", self.download_quads)
self.aoi_model.observe(lambda *args: setattr(self, "grid", None), "name")

@sd.loading_button(debug=True)
@sd.loading_button()
def download_quads(self, *args) -> None:

if not self.aoi_model.name:
raise Exception(cm.down_control.error.no_aoi)

Expand Down Expand Up @@ -66,7 +63,6 @@ def __init__(
order_model: cmod.OrderModel,
**kwargs
):

self.view = DownView(aoi_model, planet_model, order_model)

# create the control
Expand Down
63 changes: 0 additions & 63 deletions explorer_ui.ipynb

This file was deleted.

Loading

0 comments on commit f484195

Please sign in to comment.