You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@RoyThomsonMonash if the bounding box changes and mapdata is updated, it does not seem to update the region of interest. Do the shapefiles get loaded and then cropped or is a copy stored on the object so we could change the bounding box?
I think for the proj it would be good to have a @property for bounding box and trigger any updates when the object is set.
The text was updated successfully, but these errors were encountered:
The raw map data is stored before it is clipped so in theory you could set the dirtyflags on all maps to True:
proj.map_data.dirtyflags = [True] * len(Datatype)
and then set the datastate to LOADED:
proj.map_data.data_states = [Datastate.LOADED] * len(Datatype)
but this is untested as a change in the bounding box during runtime was not anticipated.
Bounding box is used by mapdata to crop the datasets, would be good if the bounding box could be changed without requiring a new project to be built.
@RoyThomsonMonash if the bounding box changes and mapdata is updated, it does not seem to update the region of interest. Do the shapefiles get loaded and then cropped or is a copy stored on the object so we could change the bounding box?
I think for the proj it would be good to have a
@property
for bounding box and trigger any updates when the object is set.The text was updated successfully, but these errors were encountered: