Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GEOPY-1219: Update tooltips #41

Merged
merged 3 commits into from
Oct 11, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 23 additions & 13 deletions plate_simulation-assets/uijson/plate_simulation.ui.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,79 +10,87 @@
"label": "TEM SimPEG Group",
"groupType": "{55ed3daf-c192-4d4b-a439-60fa987fe2b8}",
"value": "",
"enabled": true
"enabled": true,
"tooltip": "Forward modelling SimPEG group with at least the topogarphy and survey set. "
},
"name": {
"main": true,
"label": "Label",
"value": "simulation",
"enabled": true
"enabled": true,
"tooltip": "Provide the name for the result group."
},
"background": {
"main": true,
"group": "Basement",
"label": "Physical property (SI)",
"value": 2000.0,
"tooltip": "Value of resisitivity (ohm-m), density (g/cc) or susceptibility (SI)",
"tooltip": "Value of the basement resisitivity (ohm-m), density (g/cc) or susceptibility (SI)",
"enabled": true
},
"overburden": {
"main": true,
"group": "Overburden",
"label": "Physical property (SI)",
"value": 8000.0,
"tooltip": "Value of resisitivity (ohm-m), density (g/cc) or susceptibility (SI)",
"tooltip": "Value of the overburden resisitivity (ohm-m), density (g/cc) or susceptibility (SI)",
"enabled": true
},
"thickness": {
"main": true,
"group": "Overburden",
"label": "Thickness",
"value": 200.0,
"enabled": true
"enabled": true,
"tooltip": "Thickness of the overburden."
},
"number": {
"main": true,
"group": "Plate",
"label": "Number of plates",
"value": 1,
"enabled": true
"enabled": true,
"tooltip": "If more than one the plates will be parallel, equally spaced over the center of the model."
},
"spacing": {
"main": true,
"group": "Plate",
"label": "Spacing (m)",
"value": 0.0,
"enabled": true
"enabled": true,
"tooltip": "Spacing between plates."
},
"plate": {
"main": true,
"group": "Plate",
"label": "Physical property (SI)",
"value": 20.0,
"tooltip": "Value of resisitivity (ohm-m), density (g/cc) or susceptibility (SI)",
"tooltip": "Value of the plate resisitivity (ohm-m), density (g/cc) or susceptibility (SI)",
"enabled": true
},
"width": {
"label": "Thickness",
"group": "Plate",
"main": true,
"value": 90.0,
"enabled": true
"enabled": true,
"tooltip": "Thickness of the plate."
},
"strike_length": {
"label": "Strike Length",
"group": "Plate",
"main": true,
"value": 800.0,
"enabled": true
"enabled": true,
"tooltip": "Length of the plate along the strike direction."
},
"dip_length": {
"label": "Dip Length",
"group": "Plate",
"main": true,
"value": 800.0,
"enabled": true
"enabled": true,
"tooltip": "Length of the plate along the dip direction."
},
"dip": {
"label": "Dip",
Expand All @@ -91,7 +99,8 @@
"value": 60.0,
"enabled": true,
"min": 0.0,
"max": 90.0
"max": 90.0,
"tooltip": "Dip of the plate in degrees from horizontal."
},
"dip_direction": {
"label": "Dip Direction",
Expand All @@ -100,7 +109,8 @@
"value": 90.0,
"enabled": true,
"min": 0.0,
"max": 360.0
"max": 360.0,
"tooltip": "Direction of the dip vector in degrees from North."
},
"relative_locations": {
"label": "Relative locations",
Expand Down
2 changes: 1 addition & 1 deletion plate_simulation/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from pathlib import Path


__version__ = "0.1.0-beta.3"
__version__ = "0.2.0-alpha.1"
domfournier marked this conversation as resolved.
Show resolved Hide resolved


from geoapps_utils.utils.importing import assets_path as assets_path_impl
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "plate-simulation"
version = "0.1.0-beta.3"
version = "0.2.0-alpha.1"
license = "MIT"
description = "plate-simulation is a Python package"
authors = ["Mira Geoscience <[email protected]>"]
Expand Down
Loading