You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

porder

Package Overview
Dependencies
Maintainers
2
Versions
87
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

porder - pypi Package Compare versions

Comparing version
0.7.9
to
0.8.0
+10
-3
PKG-INFO
Metadata-Version: 2.1
Name: porder
Version: 0.7.9
Version: 0.8.0
Summary: Simple CLI for Planet Orders v2

@@ -381,3 +381,3 @@ Home-page: https://github.com/samapriya/porder

anchor | Anchor image id for coregistration
format | Delivery format choose from COG/PL_NITF to use for the format tool
format | Delivery format choose from COG/PL_NITF to use for the format tool
gee | provide gee-project,gee-collection

@@ -416,7 +416,10 @@

A simple setup with Top of Atmospher reflectance and a few indices along with email notification would be
A simple setup with Top of Atmosphere reflectance and a few indices along with email notification would be
![porder_indices](https://user-images.githubusercontent.com/6677629/61171621-48da3880-a548-11e9-8ab9-c3a3658c7d5b.png)
A simple setup with **Google Earth Engine Delivery** and a few indices along with email notification would be
![porder_gee](https://user-images.githubusercontent.com/6677629/105747304-3cd58200-5f06-11eb-8b50-b903035c4ad2.gif)
### reorder

@@ -539,2 +542,6 @@ This tool allows you to reorder an existing order with the same item ids and tools. This is trying to look into the overall structures of existing orders and maybe useful to reorder if an order fails for example.

### v0.8.0
- Added gee-integration example
- Updated readme site to include examples
### v0.7.9

@@ -541,0 +548,0 @@ - Added gee-integration tool to order

Metadata-Version: 2.1
Name: porder
Version: 0.7.9
Version: 0.8.0
Summary: Simple CLI for Planet Orders v2

@@ -381,3 +381,3 @@ Home-page: https://github.com/samapriya/porder

anchor | Anchor image id for coregistration
format | Delivery format choose from COG/PL_NITF to use for the format tool
format | Delivery format choose from COG/PL_NITF to use for the format tool
gee | provide gee-project,gee-collection

@@ -416,7 +416,10 @@

A simple setup with Top of Atmospher reflectance and a few indices along with email notification would be
A simple setup with Top of Atmosphere reflectance and a few indices along with email notification would be
![porder_indices](https://user-images.githubusercontent.com/6677629/61171621-48da3880-a548-11e9-8ab9-c3a3658c7d5b.png)
A simple setup with **Google Earth Engine Delivery** and a few indices along with email notification would be
![porder_gee](https://user-images.githubusercontent.com/6677629/105747304-3cd58200-5f06-11eb-8b50-b903035c4ad2.gif)
### reorder

@@ -539,2 +542,6 @@ This tool allows you to reorder an existing order with the same item ids and tools. This is trying to look into the overall structures of existing orders and maybe useful to reorder if an order fails for example.

### v0.8.0
- Added gee-integration example
- Updated readme site to include examples
### v0.7.9

@@ -541,0 +548,0 @@ - Added gee-integration tool to order

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

__email__ = "samapriya.roy@gmail.com"
__version__ = "0.7.9"
__version__ = "0.8.0"

@@ -0,0 +0,0 @@ {

@@ -0,0 +0,0 @@ __copyright__ = """

@@ -53,2 +53,7 @@ from __future__ import print_function

)
b = subprocess.call(
"{} -m pip install wheel".format(sys.executable),
shell=True,
stdout=subprocess.PIPE,
)
subprocess.call("pipwin refresh", shell=True)

@@ -531,7 +536,2 @@ """Check if the pipwin cache is old: useful if you are upgrading porder on windows

parser_version = subparsers.add_parser(
"version", help="Prints porder version and exists"
)
parser_version.set_defaults(func=version_from_parser)
parser_read = subparsers.add_parser(

@@ -757,3 +757,3 @@ "readme", help="Go the web based porder readme page"

nargs="+",
help="Add operations, delivery & notification clip|toar|harmonize|composite|zip|zipall|compression|projection|kernel|coreg|format|aws|azure|gcs|email <Choose indices from>: ndvi|gndvi|bndvi|ndwi|tvi|osavi|evi2|msavi2|sr",
help="Add operations, delivery & notification clip|toar|harmonize|composite|zip|zipall|compression|projection|kernel|coreg|format|aws|azure|gcs|gee|email <Choose indices from>: ndvi|gndvi|bndvi|ndwi|tvi|osavi|evi2|msavi2|sr",
default=None,

@@ -760,0 +760,0 @@ )

@@ -373,3 +373,3 @@ # porder: Simple CLI for Planet ordersV2 API &nbsp; [![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/intent/tweet?text=Use%20porder%20CLI%20with%20@planetlabs%20new%20ordersv2%20API&url=https://github.com/tyson-swetnam/porder)

anchor | Anchor image id for coregistration
format | Delivery format choose from COG/PL_NITF to use for the format tool
format | Delivery format choose from COG/PL_NITF to use for the format tool
gee | provide gee-project,gee-collection

@@ -408,7 +408,10 @@

A simple setup with Top of Atmospher reflectance and a few indices along with email notification would be
A simple setup with Top of Atmosphere reflectance and a few indices along with email notification would be
![porder_indices](https://user-images.githubusercontent.com/6677629/61171621-48da3880-a548-11e9-8ab9-c3a3658c7d5b.png)
A simple setup with **Google Earth Engine Delivery** and a few indices along with email notification would be
![porder_gee](https://user-images.githubusercontent.com/6677629/105747304-3cd58200-5f06-11eb-8b50-b903035c4ad2.gif)
### reorder

@@ -531,2 +534,6 @@ This tool allows you to reorder an existing order with the same item ids and tools. This is trying to look into the overall structures of existing orders and maybe useful to reorder if an order fails for example.

### v0.8.0
- Added gee-integration example
- Updated readme site to include examples
### v0.7.9

@@ -533,0 +540,0 @@ - Added gee-integration tool to order

@@ -23,3 +23,3 @@ import sys

name='porder',
version='0.7.9',
version='0.8.0',
packages=['porder'],

@@ -26,0 +26,0 @@ url='https://github.com/samapriya/porder',