geometry

module for direct georeferencing
Tip

This module can be imported using from openhsi.geometry import *

Warning

This is still under development. Stay tuned

proced_dc = GeorectifyDatacube(fname = "../may_trial_dataset_26th/2021_05_26-03_26_26_ELC.nc", 
                              DEM_path = None)

# add functions to a pipeline
identity = lambda x: x
proced_dc.load_next_tfms([identity])

# run the first line through the processing pipeline and put into output datacube buffer
proced_dc.put(proced_dc.get_img())
plt.imshow(proced_dc.dc.data[:,0,:])
Allocated 572.06 MB of RAM for the load buffer. There was 5107.05 MB available.
Allocated 572.06 MB of RAM. There was 4560.30 MB available.
identity applied