Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

geeup

Package Overview
Dependencies
Maintainers
1
Versions
66
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

geeup - npm Package Compare versions

Comparing version
0.6.3
to
0.6.4
+5
-1
geeup.egg-info/PKG-INFO
Metadata-Version: 2.1
Name: geeup
Version: 0.6.3
Version: 0.6.4
Summary: Simple Client for Earth Engine Uploads

@@ -273,2 +273,3 @@ Home-page: https://github.com/samapriya/geeup

--nodata NODATA The value to burn into the raster as NoData (missing data)
--mask MASK Binary to use last band for mask True or False
--pyramids PYRAMIDS Pyramiding Policy, MEAN, MODE, MIN, MAX, SAMPLE

@@ -351,2 +352,5 @@ ```

### 0.6.4
- Added masking option to use last band as mask
### 0.6.2

@@ -353,0 +357,0 @@ - Removed call to shell

+1
-1

@@ -5,2 +5,2 @@ # -*- coding: utf-8 -*-

__email__ = "samapriya.roy@gmail.com"
__version__ = "0.6.3"
__version__ = "0.6.4"

@@ -91,2 +91,3 @@ from __future__ import print_function

pyramiding,
mask,
destination_path,

@@ -220,2 +221,3 @@ metadata_path=None,

"missing_data": {"values": [nodata_value]},
"maskBands": {"bandIds": [], "tilesetId": ''}
}

@@ -232,3 +234,6 @@ if start is not None:

main_payload.pop("missing_data")
# print(json.dumps(main_payload))
if bool(mask) is False:
main_payload.pop("maskBands")
# print(json.dumps(main_payload, indent=2))
schema = {

@@ -235,0 +240,0 @@ "asset_path": {

@@ -306,2 +306,3 @@ from .batch_uploader import upload

nodata_value=args.nodata,
mask=args.mask,
pyramiding=args.pyramids,

@@ -567,2 +568,7 @@ overwrite=args.overwrite

optional_named.add_argument(
"--mask",
default=False,
help="Binary to use last band for mask True or False",
)
optional_named.add_argument(
"--pyramids",

@@ -569,0 +575,0 @@ help="Pyramiding Policy, MEAN, MODE, MIN, MAX, SAMPLE",

Metadata-Version: 2.1
Name: geeup
Version: 0.6.3
Version: 0.6.4
Summary: Simple Client for Earth Engine Uploads

@@ -273,2 +273,3 @@ Home-page: https://github.com/samapriya/geeup

--nodata NODATA The value to burn into the raster as NoData (missing data)
--mask MASK Binary to use last band for mask True or False
--pyramids PYRAMIDS Pyramiding Policy, MEAN, MODE, MIN, MAX, SAMPLE

@@ -351,2 +352,5 @@ ```

### 0.6.4
- Added masking option to use last band as mask
### 0.6.2

@@ -353,0 +357,0 @@ - Removed call to shell

@@ -265,2 +265,3 @@ # geeup: Simple CLI for Earth Engine Uploads

--nodata NODATA The value to burn into the raster as NoData (missing data)
--mask MASK Binary to use last band for mask True or False
--pyramids PYRAMIDS Pyramiding Policy, MEAN, MODE, MIN, MAX, SAMPLE

@@ -343,2 +344,5 @@ ```

### 0.6.4
- Added masking option to use last band as mask
### 0.6.2

@@ -345,0 +349,0 @@ - Removed call to shell

@@ -18,3 +18,3 @@ import os

name="geeup",
version="0.6.3",
version="0.6.4",
packages=find_packages(),

@@ -21,0 +21,0 @@ url="https://github.com/samapriya/geeup",