Currently build scripts are taking a region search produced ImageCollection, calculating the ebd WCS, creating the new ebd WorkUnit, and then reprojecting it to a common WCS.
Would be nice to just have a method like
ic = ImageCollection.read(ic_path)
reprojected_wu = ic.to_reprojected_work_unit(
search_config,
heliocentric_guess_dist,
point_on_earth,
common_wcs,
/*various reprojection args I may be forgetting*/)
Especially nice since this lets us avoid various intermediate WorkUnits all with different constructor arguments.
Currently build scripts are taking a region search produced ImageCollection, calculating the ebd WCS, creating the new ebd WorkUnit, and then reprojecting it to a common WCS.
Would be nice to just have a method like
Especially nice since this lets us avoid various intermediate
WorkUnits
all with different constructor arguments.