Skip to content

Commit

Permalink
v0.0.1-rc6
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasK committed Nov 10, 2023
1 parent 1bbb6c6 commit 9c000d3
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.0.1]

## [0.0.1-rc6] - 2023-11-10

### Fixed

- fix bug in `setup.py` using gh actions.

## [0.0.1-rc5] - 2023-11-10

Expand Down
2 changes: 1 addition & 1 deletion earthdaily/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from . import earthdatastore, datasets

__version__ = "0.0.1-rc5"
__version__ = "0.0.1-rc6"
4 changes: 2 additions & 2 deletions examples/field_evolution.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Field evolution and zonal stats
=================================================================
Using SCL data from L2A, zonal stats for evolution"""
Using Agriculture cloud mask from EarthDaily, and data from L2A, zonal stats for evolution"""

##############################################################################
# Import librairies
Expand Down Expand Up @@ -34,7 +34,7 @@
intersects=pivot,
datetime=["2022-08-01", "2022-08-09"],
assets=["red", "green", "blue"],
mask_with="ag_cloud_mask", # same as scl
mask_with="ag_cloud_mask",
# mask_statistics=True, # as you ask `clear_cover`it will force computing mask_statistics
clear_cover=50)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="earthdaily",
packages=['earthdaily'],
packages=find_packages(),
version=version,
description="earthdaily: easy authentication, search and retrieval of Earth Data Store collections data",
author="EarthDaily Agro",
Expand Down

0 comments on commit 9c000d3

Please sign in to comment.