Skip to content

Client release v1.10.0

Compare
Choose a tag to compare
@osabahat1 osabahat1 released this 18 Jan 22:17
· 332 commits to master since this release

Python Versions Supported

  • Added support for Python 3.9.
  • Removed support for Python 3.6 which is now officially End Of Life.

Workflows

  • Added support for organizational sharing. You can now share using the Organization type:
    • workflows.add_reader(Organization("some_org"))

Discover

  • Added support for organizational sharing. You can now share using the Organization type:
    • asset.share(with_=Organization("some_org"), as_="Viewer")
  • Allow user to list their organization's namespace.
    • Discover().list_asset("asset/namespace/org:some_org")
  • Allow user to list their organization's users.
    • Discover().list_org_users()

Tables - Added

  • Added an alpha Tables client. The Tables module lets you organize, upload, and query tabular data and vector geometries. As an alpha release, we reserve the right to modify the Tables client API without any guarantees about backwards compatibility. See the Tables API and Tables Guide documentation for more details.

Scenes

  • Added the progress= parameter to the various rastering methods such as Scene.ndarray,
    Scene.download, SceneCollection.mosaic, SceneCollection.stack, SceneCollection.download
    and SceneCollection.download_mosaic. This can be used to enable or disable the display
    of progress bars.