Skip to content

Releases: up42/up42-py

v0.13.0

18 Nov 11:54
9bca05f
Compare
Choose a tag to compare
  • New consistent use & documentation of the basic functionality:
    • All basic functions (e.g. up42.get_blocks) are accessible
      from the up42 import object. Now consistently documented in the up42
      object code reference.
    • The option to use this basic functionality from any lower level object will soon be
      removed (e.g. project.get_blocks, workflow.get_blocks). Now triggers a deprecation warning.
  • The plotting functionality of each object is now documented directly in that object's code reference.
  • Fix: Repair catalog search for sobloo.
  • Various improvements to docs & code reference.
  • Overhaul & simplify test fixtures.
  • Split off viztools module from tools module.

v0.12.0

14 Oct 15:12
f3875e9
Compare
Choose a tag to compare
  • Simplify object representation to just relevant information, also simplifies logger messages.
  • Add .info property to all objects to get the detialed object information, deprecation process for get_info.
  • Add status property to job, jobtask and jobcollection objects. Deprecation process for get_status.
  • Add selection of job mode for .get_jobs.
  • Add description of initialization of each object to code reference.
  • Move sdk documentation to custom subdomain "sdk.up42.com".
  • Unpin geopandas version.
  • Simplify mock tests & test fixtures
  • Fix: Use correct cutoff time 23:59:59 in default datetimes.
  • Fix: Download jobtasks to respective jobtask subfolders instead of the job folder.

v0.11.0

11 Sep 12:02
e9e0b91
Compare
Choose a tag to compare
  • Fix: Remove buffer 0 for fixing invalid geometry.
  • Add map_quicklooks method for visualising quicklooks interactively.
  • Add an example notebook for mapping quicklooks using map_quicklooks method.

v0.10.1

14 Aug 10:40
71f5b0f
Compare
Choose a tag to compare

Hotfix: Fixes usage of multiple features as the input geometry.

v0.10.0

07 Aug 10:24
2643b12
Compare
Choose a tag to compare

New features and improvements:

  • Add parallel jobs feature. Allows running jobs for multiple geometries, scene_ids or timeperiods in parallel.

    • Adds workflow.construct_parameters_parallel, workflow.test_job_parallel, workflow.run_job_parallel and the new JobCollection object.
    • Adjusts airports-parallel example notebook to use the parallel jobs feature.
  • Adjusts workflow.get_jobs and project.get_jobs to return JobCollections.

  • Adjusts flood mapping example notebook to use OSM block.

  • Adds option to not unpack results in job.download_results.

  • Now allows passing only scene_ids to workflow.construct_parameters.

  • Improves layout of image results plots for multiple results.

  • Added binder links.

  • Now truncates log messages > 2k characters.

  • Various small improvements & code refactorings.