Workspace¶
The core element of a project is the Workspace
. A project Workspace holds core information about the author, version and all entities stored in the geoh5
file. It also knows how to create the core structure needed by Geoscience ANALYST for visualization.
Open and close¶
You can either open an existing project or create a new project by simply entering the desired file name.
[1]:
from geoh5py.workspace import Workspace
# Create a new project
workspace = Workspace("my_project.geoh5")
Et voila!
By default, the *.geoh5
file is accessed in “read-write” mode. In the eventuality that the file is already used by Geoscience ANALYST, the mode gets changed to “read-only”. This prevents users from modifying the file while used in an active session, but still allows them to extract data from the workspace. The same restriction does not apply to multiple python processes, as permitted by the Single Writer Multiple Reader (SWMR)
feature of HDF5.
[2]:
print(workspace.geoh5)
<HDF5 file "my_project.geoh5" (mode r+)>
After completing the read/write process, the workspace must be closed in order to release the file. Geoscience ANALYST does not allow reading on an opened file.
[3]:
workspace.close()
print(workspace._geoh5)
None
Context manager¶
Likewise, a workspace can be accessed via a context manager which will handle closing the file at the of a process.
[4]:
with Workspace("my_project.geoh5") as workspace:
print(workspace.geoh5)
print(workspace._geoh5)
<HDF5 file "my_project.geoh5" (mode r+)>
None