Skip to content

Commit 42099e0

Browse files
authored
Merge pull request #60 from OPERA-Cal-Val/dev
v0.0.14
2 parents a4fcecf + bd11241 commit 42099e0

13 files changed

Lines changed: 1038 additions & 227 deletions

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ jobs:
2121
with:
2222
local_package_name: tile_mate
2323
python_versions: >-
24-
["3.9", "3.10", "3.11", "3.12"]
24+
["3.9", "3.10", "3.11", "3.12", "3.13"]

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [PEP 440](https://www.python.org/dev/peps/pep-0440/)
77
and uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
88

9+
## [0.0.14] - 2025-07-06
10+
11+
### Removed
12+
- Suppport for `cop_100_lulc_discrete` - see https://github.com/OPERA-Cal-Val/tile-mate/issues/57 for how to obtain data efficiently
13+
14+
### Added
15+
- `umd_ocean_mask` available at google storage: https://console.cloud.google.com/storage/browser/earthenginepartners-hansen/OceanMask
16+
- Python 3.13 support.
17+
18+
### Fixed
19+
- `sentinel-1` coherence examples in `Basic_Demo.ipynb`
20+
921
## [0.0.13] - 2025-06-09
1022

1123
### Changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ Out[2]: 'pekel_water_occ_2021',
7979
'hansen_gain',
8080
'hansen_treecover_2000',
8181
's1_coherence_2020',
82-
'cop_100_lulc_discrete',
8382
'radd_deforestation_alerts_2022',
8483
'hand',
8584
'glad_landcover',
@@ -92,7 +91,6 @@ More information about these datasets can be found below
9291
+ S1 Coherence from December 2019 - Nov 2020: https://aws.amazon.com/marketplace/pp/prodview-iz6lnjbdlgcwa#resources
9392
+ Include all temporal baselines and seasons for VV coherence
9493
+ Include `rho`, `tau` and `rmse` seasonal decay modeling parameters
95-
+ The copernicus 100 m LULC dataset from 2015 - 2019: https://land.copernicus.eu/global/content/annual-100m-global-land-cover-maps-available
9694
+ Height above nearest drainage (distributed and generated by ASF) in 2021 derived from Copernicus Global DEM: https://github.com/asjohnston-asf/agu-2022-notebooks/blob/main/hand-notebook.ipynb (and their [tool](https://github.com/HydroSAR/HydroSAR/blob/develop/src/hydrosar/hand/prepare.py) to do the exact same thing)
9795
+ RADD Deforestation alerts (ongoing): https://data.globalforestwatch.org/datasets/gfw::deforestation-alerts-radd/about
9896
+ Glad landcover maps (2000, 2005, 2010, 2015, 2020) and change map (2020 changes when compared to 2000): https://storage.googleapis.com/earthenginepartners-hansen/GLCLU2000-2020/v2/download.html

notebooks/Basic_Demo.ipynb

Lines changed: 202 additions & 200 deletions
Large diffs are not rendered by default.

notebooks/tile_creation/2_Peckel_Water_Mask.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@
330330
"name": "python",
331331
"nbconvert_exporter": "python",
332332
"pygments_lexer": "ipython3",
333-
"version": "3.12.0"
333+
"version": "3.13.3"
334334
}
335335
},
336336
"nbformat": 4,

notebooks/tile_creation/3_s1_2020_vv_coherence.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -722,7 +722,7 @@
722722
"name": "python",
723723
"nbconvert_exporter": "python",
724724
"pygments_lexer": "ipython3",
725-
"version": "3.12.0"
725+
"version": "3.13.3"
726726
}
727727
},
728728
"nbformat": 4,

notebooks/tile_creation/4_100m_Copernicus_landcover.ipynb

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@
77
"source": [
88
"The best resource for seeing the tiles and available files is this: https://lcviewer.vito.be/download\n",
99
"\n",
10-
"There are additional resources easily searchable via the interweb: https://land.copernicus.eu/global/content/annual-100m-global-land-cover-maps-available"
10+
"There are additional resources easily searchable via the interweb: https://land.copernicus.eu/global/content/annual-100m-global-land-cover-maps-available\n",
11+
"\n",
12+
"These tiles are NO LONGER AVAILABLE - https://land.copernicus.eu/en/products/global-dynamic-land-cover/copernicus-global-land-service-land-cover-100m-collection-3-epoch-2019-globe#download\n",
13+
"\n",
14+
"Best to just read subset of large tif files on zenodo."
1115
]
1216
},
1317
{
@@ -711,7 +715,7 @@
711715
"name": "python",
712716
"nbconvert_exporter": "python",
713717
"pygments_lexer": "ipython3",
714-
"version": "3.12.0"
718+
"version": "3.13.3"
715719
}
716720
},
717721
"nbformat": 4,

notebooks/tile_creation/8_UMD_Ocean_Mask.ipynb

Lines changed: 257 additions & 0 deletions
Large diffs are not rendered by default.

notebooks/tile_creation/umd_ocean_mask_tiles.txt

Lines changed: 540 additions & 0 deletions
Large diffs are not rendered by default.

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ classifiers = [
1919
'Programming Language :: Python :: 3.10',
2020
'Programming Language :: Python :: 3.11',
2121
'Programming Language :: Python :: 3.12',
22+
'Programming Language :: Python :: 3.13',
2223
]
2324

2425
dynamic = ['version', 'readme']

0 commit comments

Comments
 (0)