-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Major version improvements to performance and codebase - Added rename tool to allow file renaming to EE rules - Added natural sorting to sort filenames to be ingested - Added capability for image and table upload to check for both existing assets and assets in task queue before retrying - Added task check capability to avoid 3000 tasks in queue - Updated and optimized failure checks and logging - Added path and asset schema check for EE rulesets - Updated docs and readme
- Loading branch information
Showing
11 changed files
with
222 additions
and
117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# geeup Rename | ||
|
||
This tool is simply designed to rename filenames to confirm to GEE rules about path renaming including allowing for only hypens or underscores and letters and numbers with no spaces. The tool does do in replace replacement which means it will not create a copy but rename to the same location they are in so use with caution | ||
|
||
![geeup_rename](https://user-images.githubusercontent.com/6677629/169738141-b032f14b-7b26-441a-96bd-a4eadeaeba7a.gif) | ||
|
||
``` | ||
geeup rename -h | ||
usage: geeup rename [-h] --input INPUT | ||
optional arguments: | ||
-h, --help show this help message and exit | ||
Required named arguments.: | ||
--input INPUT Path to the input directory with all files to be | ||
uploaded | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
# Task status | ||
|
||
This script counts all currently running, cancelled, pending and failed tasks and requires no arguments. | ||
This tasks tool gives a direct read out of different Earth Engine tasks across different states currently running, cancelled, pending and failed tasks and requires no arguments. However you could pass the state and get stats like SUCCEEDED along with item description or path, number of attempts and time taken along with task ID as a JSON list. This could also simply be piped into a JSON file using ">" | ||
|
||
![geeup_tasks](https://user-images.githubusercontent.com/6677629/114294401-ff43b800-9a63-11eb-8b2b-50811fa371ef.gif) | ||
![geeup_tasks_enhanced](https://user-images.githubusercontent.com/6677629/169737348-abf13334-e360-487e-b4ce-d25aa677404c.gif) | ||
|
||
``` | ||
> geeup tasks -h | ||
usage: geeup tasks [-h] | ||
usage: geeup tasks [-h] [--state STATE] | ||
optional arguments: | ||
-h, --help show this help message and exit | ||
-h, --help show this help message and exit | ||
Optional named arguments: | ||
--state STATE Query by state type SUCCEEDED|PENDING|RUNNING|FAILED | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
|
||
__author__ = "Samapriya Roy" | ||
__email__ = "samapriya.roy@gmail.com" | ||
__version__ = "0.5.3" | ||
__version__ = "0.5.4" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.