{
"cells": [
{
"cell_type": "markdown",
"id": "5a91974a",
"metadata": {},
"source": [
"# Gravity and Magnetic 3D Inversion\n",
"\n",
"
\n",
"\n",
"This application provides an interface to the open-source [SimPEG](https://simpeg.xyz/) package for the inversion of gravity and magnetic data (fields and tensor components). The application handles:\n",
"\n",
" - Gravity inversion for the recovery of residual density (g/cc).\n",
" - Scalar magnetic inversion (MAG) for the recovery of susceptibility (SI).\n",
" - Vector magnetic inversion (MVI) for the recovery of 3-component magnetization (effective susceptibility and angles).\n",
"\n",
"All inversions are performed on a 3D octree mesh.\n",
"\n",
"New user? Visit the [**Getting Started**](https://mirageoscience-geoapps.readthedocs-hosted.com/en/latest/content/installation.html) page."
]
},
{
"cell_type": "markdown",
"id": "unnecessary-nerve",
"metadata": {},
"source": [
"## Application\n",
"The following sections provide details on the different parameters controlling the application. Interactive widgets shown below are for demonstration purposes only."
]
},
{
"cell_type": "code",
"execution_count": 1,
"id": "collect-motel",
"metadata": {
"scrolled": false
},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "39ad1df193734b2ba832baafbbcd883f",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"VBox(children=(VBox(children=(Label(value='Workspace', style=DescriptionStyle(description_width='initial')), H…"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"from geoapps.inversion.potential_fields.application import InversionApp\n",
"\n",
"app = InversionApp(geoh5=r\"../../../assets/FlinFlon.geoh5\")\n",
"app()"
]
},
{
"cell_type": "markdown",
"id": "adolescent-found",
"metadata": {},
"source": [
"## Project Selection\n",
"\n",
"Select and connect to an existing **geoh5** project file containing data\n",
"\n",
"OR \n",
"\n",
"Select a `*.ui.json` input file to re-load parameters from. See the [Input ui.json](#Input-ui.json) section for details."
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "forbidden-newark",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "b95d1e3f15ab43b2af6d2007329dfff4",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"VBox(children=(Label(value='Workspace', style=DescriptionStyle(description_width='initial')), HBox(children=(F…"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"app.project_panel"
]
},
{
"cell_type": "markdown",
"id": "comprehensive-revelation",
"metadata": {},
"source": [
"See the [Project Panel](base_application.ipynb#Project-Panel) page for more details."
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "d470b85c",
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "markdown",
"id": "specialized-visit",
"metadata": {},
"source": [
"## Survey Selection\n",
"\n",
"### Object\n",
"\n",
"List of objects available containing geophysical data to be inverted. Currently supports objects of type `Points`, `Curve`, `Surface` and `Grid2D`."
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "contrary-english",
"metadata": {
"scrolled": true
},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "5b51e988d7ff4a55a6f1a38c8e0a80ce",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Dropdown(description='Object:', index=7, options=(['', None], ['Labels/Label3', UUID('39b2d390-6063-4463-a454-…"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"app.objects"
]
},
{
"cell_type": "markdown",
"id": "ruled-characteristic",
"metadata": {},
"source": [
"### Inversion Type\n",
"\n",
"List of available inversion types. \n",
"\n",
"- **gravity**: Invert bouguer corrected (mGal) or tensor (Etvos) data for the recovery of residual density (g/cc).\n",
"- **magnetic scalar**: Invert magnetic data for the recovery of scalar susceptibility (SI).\n",
"- **magnetic vector**: Invert magnetic data for the recovery of 3-component magnetization (effective susceptibility + angles)."
]
},
{
"cell_type": "code",
"execution_count": 4,
"id": "activated-retirement",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "05265d62537744149f7e6ad602e03c59",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(Dropdown(description='inversion Type:', options=('magnetic vector', 'magnetic scalar', 'gravity…"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"app.survey_type_panel"
]
},
{
"cell_type": "markdown",
"id": "accomplished-voice",
"metadata": {},
"source": [
"#### Inducing field parameters\n",
"\n",
"For magnetic data only, set the inducing field parameters:"
]
},
{
"cell_type": "markdown",
"id": "angry-origin",
"metadata": {},
"source": [
"## Data Channel Options\n",
"\n",
"Define the geophysical data to be inverted."
]
},
{
"cell_type": "markdown",
"id": "final-seeker",
"metadata": {},
"source": [
"### Channel Options\n",
"\n",
"Set parameters to invividual channels."
]
},
{
"cell_type": "code",
"execution_count": 5,
"id": "baking-running",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "4cc3c97af62248b486ece794865e5965",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"VBox(children=(Checkbox(value=True, description='Active', indent=False, style=DescriptionStyle(description_wid…"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"app.data_channel_choices.data_channel_options['tmi']"
]
},
{
"cell_type": "markdown",
"id": "5181737f",
"metadata": {},
"source": [
"#### Active\n",
"\n",
"Checked if the channel is to be used in the inversion\n",
"\n",
"#### Channel:\n",
"\n",
"Association between the \"data channel\" and one of the expected \"system channel\".\n",
"\n",
"#### Uncertainty floor\n",
"\n",
"Estimated data uncertainty floor (constant) value associated with the data channel. \n",
"\n",
"#### Uncertainty channel\n",
"\n",
"Optionally, use a data channel to assign point-based uncertainties. Uncertainty floor value is ignored if a channel of uncertainties is selected."
]
},
{
"cell_type": "markdown",
"id": "defined-princeton",
"metadata": {},
"source": [
"## Window Selection\n",
"\n",
"Manual selection of an area of interest and data resolution."
]
},
{
"cell_type": "code",
"execution_count": 6,
"id": "opponent-canada",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "3bfd68ba6b13452cbf32f15ca1e380ee",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"VBox(children=(VBox(children=(FloatText(value=50.0, description='Grid Resolution (m)', style=DescriptionStyle(…"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"app.window_selection"
]
},
{
"cell_type": "markdown",
"id": "surface-rider",
"metadata": {},
"source": [
"See the [Map View Selection](view_selection.ipynb#Map-View-Selection) page for more details."
]
},
{
"cell_type": "markdown",
"id": "artificial-madness",
"metadata": {},
"source": [
"## Spatial information"
]
},
{
"cell_type": "markdown",
"id": "earlier-verse",
"metadata": {},
"source": [
"### Topography\n",
"\n",
"Set the air/ground interface of the inversion model."
]
},
{
"cell_type": "code",
"execution_count": 7,
"id": "robust-prior",
"metadata": {
"scrolled": true
},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "0f053aba21644a5e9dce126fb42103a6",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"VBox(children=(RadioButtons(description='Define by:', index=1, options=('None', 'Object', 'Relative to Sensor'…"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"app.topography_group()"
]
},
{
"cell_type": "markdown",
"id": "atmospheric-globe",
"metadata": {},
"source": [
"#### Object\n",
"\n",
"Set the topography based on an object stored in the target `geoh5` project. The Z value of the cells/vertices can be assigned based on a chosen `Data` field.\n",
"\n",
"#### Relative to Sensor\n",
"\n",
"Topography is defined by a fixed vertical offset from a selected object position (vertices or centroids), also referred to as a \"draped height\".\n",
"\n",
"#### Constant\n",
"\n",
"Topography is defined as a flat surface with constant elevation."
]
},
{
"cell_type": "markdown",
"id": "governing-emperor",
"metadata": {},
"source": [
"### Sensor Location\n",
"\n",
"Defines the sensors position in 3D space. The vertical position can be referenced to:\n",
"- **sensor location**: Use the target [object](#Object) vertices or centroids z-locations\n",
"- **topo + radar**: Interpolate the topography to set the elevation. Typically used for gridded\n",
" data with constant draped height or for airborne survey with inaccurate GPS\n",
" elevation (see [radar channel](#Radar-channel-(optional)))."
]
},
{
"cell_type": "code",
"execution_count": 8,
"id": "threatened-athens",
"metadata": {
"scrolled": true
},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "2d1804bac8df47b68873ba2c7c5b31f4",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"VBox(children=(Checkbox(value=True, description='Set Z from topo + offsets', style=DescriptionStyle(descriptio…"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"app.sensor()"
]
},
{
"cell_type": "markdown",
"id": "817f66fd",
"metadata": {},
"source": [
"#### Constant offsets (dx, dy, dz)\n",
"\n",
"Sensor position shifted by a constant offset from the vertices of the selected\n",
"object. Typically used for towed systems where the GPS receiver is on the\n",
"aircraft.\n",
"\n",
"- dx: East(+) or West(-) offset.\n",
"- dy: North(+) or South(-) offset\n",
"- dz: Up(+) or Down(-) offset\n",
"\n",
"#### Radar channel (optional)\n",
"\n",
"Channel defining the ground clearance (radar) of each data point."
]
},
{
"cell_type": "markdown",
"id": "victorian-tiffany",
"metadata": {},
"source": [
"## Inversion Options\n",
"\n",
"List of parameters controlling the inversion."
]
},
{
"cell_type": "code",
"execution_count": 9,
"id": "incorrect-bidding",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "cbd6beda1c6b4f8da911bd5bc7c3b616",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Dropdown(options=('starting model', 'mesh', 'reference model', 'regularization', 'upper-lower bounds', 'detren…"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"app.option_choices"
]
},
{
"cell_type": "markdown",
"id": "traditional-latino",
"metadata": {},
"source": [
"### Starting Model\n",
"\n",
"Initial model used to begin the inversion.\n"
]
},
{
"cell_type": "code",
"execution_count": 10,
"id": "attractive-canvas",
"metadata": {
"scrolled": true
},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "4a34e96070d34371815a0c288062636a",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"VBox(children=(Label(value='Starting effective susceptibility', style=DescriptionStyle(description_width='init…"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"app._starting_model_group()"
]
},
{
"cell_type": "markdown",
"id": "authentic-payroll",
"metadata": {},
"source": [
"#### Model\n",
"\n",
"Model object and values selected from any `Points`, `Curve`, `Surface`, `BlockModel` or `Octree` object.\n",
"Values are interpolated onto the inversion mesh using a nearest neighbor approach.\n",
"\n",
"#### Constant\n",
"\n",
"Constant background half-space value."
]
},
{
"cell_type": "markdown",
"id": "spiritual-coating",
"metadata": {},
"source": [
"## Mesh\n",
"\n",
"Select an existing `Octree` mesh object from the target geoh5."
]
},
{
"cell_type": "code",
"execution_count": 11,
"id": "committed-genealogy",
"metadata": {
"scrolled": false
},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "db2151d0c1f3408899559a06d2aa794d",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Dropdown(description='Object:', index=1, options=(['', None], ['Workspace/Octree Mesh', UUID('a8f3b369-10bd-4c…"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"app._mesh_octree.objects"
]
},
{
"cell_type": "markdown",
"id": "handed-journalism",
"metadata": {},
"source": [
"## Regularization Panel\n",
"\n",
"Parameters controlling the regularization function."
]
},
{
"cell_type": "code",
"execution_count": 12,
"id": "linear-climb",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "22753e23ff754145ac23866661829d8d",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(VBox(children=(Label(value='Scaling (alphas)'), FloatText(value=1.0, description='Reference Mod…"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"app.inversion_options['regularization']"
]
},
{
"cell_type": "markdown",
"id": "russian-evidence",
"metadata": {},
"source": [
"### Reference model\n",
"\n",
"Reference model values used to constrain the inversion."
]
},
{
"cell_type": "code",
"execution_count": 13,
"id": "2ba7940b",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "9dc06ef88d14476097a8362ad1852697",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"VBox(children=(Label(value='Reference effective susceptibility', style=DescriptionStyle(description_width='ini…"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"app._reference_model_group()"
]
},
{
"cell_type": "markdown",
"id": "obvious-advertiser",
"metadata": {},
"source": [
"#### None\n",
"\n",
"No reference model used. This is equivalent as setting the [Alphas](#Scaling-(alpha)-parameters) `s` parameter to zero.\n",
"\n",
"\n",
"#### Model\n",
"\n",
"Reference model selected from any `Points`, `Curve`, `Surface`, `BlockModel` or `Octree` object.\n",
"Values are interpolated onto the inversion mesh using a nearest neighbor approach.\n",
"\n",
"#### Constant\n",
"\n",
"Constant reference half-space value."
]
},
{
"cell_type": "markdown",
"id": "differential-fifth",
"metadata": {},
"source": [
"### Scaling (alpha) parameters"
]
},
{
"cell_type": "code",
"execution_count": 14,
"id": "metric-southwest",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "e0a823d792254b428df583487c03810c",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"VBox(children=(Label(value='Scaling (alphas)'), FloatText(value=1.0, description='Reference Model (s)', style=…"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"app._alphas"
]
},
{
"cell_type": "markdown",
"id": "empty-meeting",
"metadata": {},
"source": [
"Scaling between the components of the regularization function.\n",
"\n",
"See the [SimPEG.API](https://docs.simpeg.xyz/content/api_core/api_Regularization.html#SimPEG.regularization.Simple) for technical details."
]
},
{
"cell_type": "markdown",
"id": "intimate-fisher",
"metadata": {},
"source": [
"### $l_p$-norms\n",
"\n",
"Approximated norms applied to the components of the regularization."
]
},
{
"cell_type": "code",
"execution_count": 15,
"id": "potential-fifth",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "a0ef0355fa4549b0bf7a862607fa9589",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"VBox(children=(Label(value='Lp-norms'), FloatText(value=0.0, style=DescriptionStyle(description_width='initial…"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"app._norms"
]
},
{
"cell_type": "markdown",
"id": "middle-sweet",
"metadata": {},
"source": [
"See notes on [Sparse and Blocky Norms](https://giftoolscookbook.readthedocs.io/en/latest/content/fundamentals/Norms.html#sparse-and-blocky-norms) for technical details."
]
},
{
"cell_type": "markdown",
"id": "pacific-realtor",
"metadata": {},
"source": [
"### Upper-Lower Bounds\n",
"\n",
"Upper and lower bound constraints applied on physical property model."
]
},
{
"cell_type": "code",
"execution_count": 16,
"id": "liable-license",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "0583bf4807b9424583df8af9f94ae19c",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(VBox(children=(Label(value='Lower Bounds'), VBox(children=(Label(value='', style=DescriptionSty…"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"app.bound_panel"
]
},
{
"cell_type": "markdown",
"id": "amber-migration",
"metadata": {},
"source": [
"Bounds can be defined as either:\n",
"- Model: Values defined on a cell-by-cell basis. The values are projected onto the inversion mesh using a nearest neighour interpolation. \n",
"- Constant: Constant value defining the bounds.\n",
"- None: The inversion uses [$-\\infty$, $\\infty$] as physical property bounds."
]
},
{
"cell_type": "markdown",
"id": "73052aee",
"metadata": {},
"source": [
"### Detrend (optional)\n",
"\n",
"Remove a polynomial trend from the selected data channels."
]
},
{
"cell_type": "code",
"execution_count": 17,
"id": "ab495d1d",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
""
]
},
"execution_count": 17,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"app.workspace\n"
]
},
{
"cell_type": "code",
"execution_count": 18,
"id": "3932cae2",
"metadata": {
"nbsphinx": "hidden"
},
"outputs": [],
"source": [
"app.detrend_type.value = \"all\""
]
},
{
"cell_type": "code",
"execution_count": 19,
"id": "256b9331",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "80e0651f979840babca1188a45113742",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"VBox(children=(Dropdown(description='Method', index=1, options=('', 'all', 'perimeter'), style=DescriptionStyl…"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"app._detrend_panel"
]
},
{
"cell_type": "markdown",
"id": "9fccc8a5",
"metadata": {},
"source": [
"#### Order\n",
"\n",
"Order [0, 1 or 2] of the polynomial defining the trend. The 0th order trend corresponds to removing the mean value.\n",
"\n",
"#### Method\n",
"\n",
"- all: Use all data points to compute the trend\n",
"- perimeter: Use only the edge points to compute the trend."
]
},
{
"cell_type": "markdown",
"id": "preliminary-element",
"metadata": {},
"source": [
"### Ignore Values"
]
},
{
"cell_type": "code",
"execution_count": 20,
"id": "lesbian-crawford",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "e4476a0a32df42819477ccc5a64ec03f",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Text(value='', description=\"Value (i.e. '<0' for no negatives)\", style=DescriptionStyle(description_width='ini…"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"app.ignore_values"
]
},
{
"cell_type": "markdown",
"id": "b82c2cb8",
"metadata": {},
"source": [
"Flag value ignored by the inversion by assigning $\\infty$ uncertainties on the data points."
]
},
{
"cell_type": "markdown",
"id": "flying-style",
"metadata": {},
"source": [
"### Optimization\n",
"\n",
"Parameters controlling various aspects of the projected Gauss-Newton inversion algorithm."
]
},
{
"cell_type": "code",
"execution_count": 21,
"id": "junior-devices",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "67c2d4a24d8d4048bd0093e63d138616",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"VBox(children=(IntText(value=25, description='Max beta iterations', style=DescriptionStyle(description_width='…"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"app.optimization"
]
},
{
"cell_type": "markdown",
"id": "pleased-respondent",
"metadata": {},
"source": [
"#### Max beta Iterations\n",
"\n",
"Maximum number of $\\beta$-iterations allowed.\n",
"Note that when applying sparse norms, the inversion may require $>20$ iterations to converge.\n",
"\n",
"\n",
"#### Target misfit\n",
"\n",
"Target data misfit where $\\chi=1$ corresponds to $\\phi_d=N$ (number of data). (See documentation on [Data Misfit and Uncertainties](https://giftoolscookbook.readthedocs.io/en/latest/content/fundamentals/Uncertainties.html#data-misfit-and-uncertainties) for mathematical details)\n",
"\n",
"\n",
"#### Starting trade-off ($\\beta$)\n",
"\n",
"**ratio**: Factor multiplying the initial $\\beta$ defined by the ratio between the initial misfit and regularization:\n",
"\n",
"\\begin{equation}\n",
"\\beta_0 = \\gamma * \\frac{\\phi_d}{ \\phi_m}\n",
"\\end{equation}\n",
"\n",
"**value**: Fixed $\\beta$ value specified by the user.\n",
"\n",
"#### Max CG Iterations\n",
"\n",
"Maximum number of Conjugate Gradient (CG) iterations per Gauss-Newton solve.\n",
"\n",
"\n",
"#### CG Tolerance\n",
"\n",
"Threshold on the minimum Conjugate Gradient (CG) step to end the Gauss-Newton solve.\n",
"\n",
"\n",
"#### Max CPUs\n",
"\n",
"Maximum number of threads used for the parallelization. Defaults to half the system thread count.\n",
"\n",
"\n",
"#### Storage device\n",
"\n",
"Option to store the sensitivities in memory (RAM) or in chunks on a solid-state drive (disk). The **RAM** execution will be faster but limits the problem size to the available memory. The **disk** option will be slower as it depends on the read-write speed of the SSD, but the memory requirement is reduced (2-3 times the chunk size times the number of threads). This option permits much larger inversions than the amount RAM available on a machine.\n",
"\n",
"\n",
"#### Number of tiles\n",
"\n",
"Number of data tiles used by the mesh decoupling algorithm. Nested sensitivities for each data blocks are interpolated to the global inversion mesh with a volumetric weighted averaging scheme."
]
},
{
"cell_type": "markdown",
"id": "smart-notebook",
"metadata": {},
"source": [
"## Output panel\n",
"\n",
"Setup the inversion and launch the process."
]
},
{
"cell_type": "markdown",
"id": "executive-revolution",
"metadata": {},
"source": [
"### Output Name"
]
},
{
"cell_type": "code",
"execution_count": 22,
"id": "referenced-buffalo",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "990e146dc4194925b67ae1f648289b0c",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Text(value='MagneticVectorInversion', description='Save as:', style=DescriptionStyle(description_width='initia…"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"app.ga_group_name"
]
},
{
"cell_type": "markdown",
"id": "359adb87",
"metadata": {},
"source": [
"Name given to the inversion group added to the Geoscience ANALYST project."
]
},
{
"cell_type": "markdown",
"id": "fbc59fa0",
"metadata": {},
"source": [
"### Working directory"
]
},
{
"cell_type": "code",
"execution_count": 23,
"id": "3fa0113e",
"metadata": {
"scrolled": true
},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "92f9c15294f2488c82dac1087907a6df",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"FileChooser(path='C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\docs\\content\\applications', filename='', titl…"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"app.export_directory"
]
},
{
"cell_type": "markdown",
"id": "5d23ac07",
"metadata": {},
"source": [
"Specify the working directory where the inversion occurs. \n",
"\n",
"**It is highly recommended to chose a location on a solid-state drive (SSD) to fully take advantage of the `Dask` parallelization.**"
]
},
{
"cell_type": "markdown",
"id": "af703f0a",
"metadata": {},
"source": [
"### Write input"
]
},
{
"cell_type": "code",
"execution_count": 24,
"id": "43a2716d",
"metadata": {
"scrolled": true
},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "2624498a112e479da5d338350d899c4e",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Button(button_style='warning', description='Write input', icon='check', style=ButtonStyle())"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"app.write"
]
},
{
"cell_type": "markdown",
"id": "341c1ed4",
"metadata": {},
"source": [
"\n",
"Click to write the input parameters to a `*.json` file and a workspace (.geoh5) with all required entities. "
]
},
{
"cell_type": "markdown",
"id": "ff5ce976",
"metadata": {},
"source": [
"### Run Inversion: "
]
},
{
"cell_type": "code",
"execution_count": 25,
"id": "a7ae6328",
"metadata": {
"scrolled": true
},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "3f2f53f9f0344b88b48b9466ecb4f453",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Button(button_style='danger', description='Compute', icon='check', style=ButtonStyle(), tooltip='Run computati…"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"app.trigger"
]
},
{
"cell_type": "markdown",
"id": "08216fba",
"metadata": {},
"source": [
"Launch the inversion routine. Results will be written directly to the target `geoh5` project."
]
},
{
"cell_type": "markdown",
"id": "2cfe2258",
"metadata": {},
"source": [
"## Input ui.json \n",
"\n",
"This application relies on a [structured json](https://github.com/MiraGeoscience/geoapps/tree/main/assets/uijson) file to store the parameters and run the program.\n",
"The `ui.json` can be used to re-load the parameters from a previous run by selecting the `ui.json` file from the [Project Selection](#Project-Selection) widget, instead of a `geoh5` file. \n",
"\n",
"\n",
"### Command line execution\n",
"\n",
"The same input `ui.json` file can be used to run the program from command line:\n",
"\n",
"```\n",
"activate geoapps\n",
"python -m geoapps.inversion.driver [Name].ui.json\n",
"```\n",
"\n",
"This assumes that the geoapps have been installed and that the reference `*.ui.json` and `*.geoh5` project are accessible in the current directory."
]
},
{
"cell_type": "markdown",
"id": "db791f15",
"metadata": {},
"source": [
"### Geoscience ANALYST Pro v3.4\n",
"\n",
"Geoscience ANALYST Pro users (v3.4) can execute this application directly from an active session with a drag & drop of a `*.ui.json` file to the `Viewport`. \n",
"\n",
""
]
},
{
"cell_type": "code",
"execution_count": 26,
"id": "hairy-seeking",
"metadata": {
"nbsphinx": "hidden"
},
"outputs": [],
"source": [
"import matplotlib.pyplot as plt\n",
"app.figure.savefig(\"images/inversion_thumbnail.png\", dpi=300, bbox_inches=\"tight\")"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.10.9"
},
"widgets": {
"application/vnd.jupyter.widget-state+json": {
"state": {
"000ae017aac44bdd9b685c4e98b8978e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 .."
],
"index": null,
"layout": "IPY_MODEL_053b8928f24a44eba93a35f4d09a0b0d",
"rows": 8,
"style": "IPY_MODEL_36e9bfad44d341d5bc8f8a169d0c0784"
}
},
"0020c82bb26d4ecbb09c09c3be0a4bdf": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"002472d710924341a6962425908a829b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"005d8f68eb584f1ea3d21e636624f490": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"border": "solid"
}
},
"006c444052954f2ca8bc19ab2f7b4b02": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"006debb07a264b709074a0c6ce925a6f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"007964c69f4e45888050d4e66424b6ab": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_1ad7d2c9d67847e58de0e7ceabfd2312",
"IPY_MODEL_b3b902b4b1c743bcb28e9e33e11cadf8",
"IPY_MODEL_e77f0ea86a934ceba09b81972c552143"
],
"layout": "IPY_MODEL_4c3d9b1884f640df87251b24ae8ebf62"
}
},
"007c5278a287482686bb9ca2c7d67882": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"00824e6968ef4629abafc43dde377fbc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"0088346e89f74934ba510e02ee62d615": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"00884a804ee443bba4d74f17cc5c4861": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"0089c6a48f064345b3aefe328f7561b6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"0089fbf658fe4c2fb0a957b5cfd393f0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_c41a95dcbdf040cfb9ad045348de413d",
"IPY_MODEL_777d9edcbb2449ba8dd0f47632bc6054",
"IPY_MODEL_42270ae4a1224325a3b1b326cd9d0e60"
],
"layout": "IPY_MODEL_2ded96b474f0462290b47dd42bc9c773"
}
},
"008d2e3c7cce47a6b16c907c2e92e265": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_cbf52377f4184d459dba133ecb7beab4",
"IPY_MODEL_ca9c5f4e12e8422bb348e7cc30d3f549",
"IPY_MODEL_f8b0ee9f68cc48b78ff4a0685f401b8b"
],
"layout": "IPY_MODEL_6f2c562170c540529fe66ab3d460296e"
}
},
"008e8bfe35e2489790016c7076668d34": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"00928bb7972743b48f4fc7b01a244589": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"0095111e07044913a11cae7ec558c20a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"00a60c5197964f84b0b1e2dcc3a9dcc4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"00a87a2614634e4c82a7a02cb47d9d48": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"00adfbf09aaf47f2b2c8e40c01d7d95d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"00bfae836efd48d69e037faf5d25ffba": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"00c484e941a740158452d453f20b558b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_b53a8f84e30c4e669987bf4046755668",
"style": "IPY_MODEL_7cca73f91047454f8ec348e9e68d185e"
}
},
"00c5f6dfbe34487095234eca0853959e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_1b88bd034d204380aacaa7f889b459b8",
"style": "IPY_MODEL_23f3cb5a85344573bc4c5ddce85749ae"
}
},
"00de60a855a242d79aa37167e6fa4047": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"00dec8f0674948acb90275ca3af3387c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_104bb9089385481e9256a7c1f8c1661e"
],
"layout": "IPY_MODEL_438804579b294b79ae0d33842c725f4b"
}
},
"00e05df3d0dd496e98457021e0ce152b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_530dd10b7f8042ca978d1f1c86c877b5",
"style": "IPY_MODEL_24a4bd61546e42e4a067ba93a1fcd0be",
"value": "Save to:"
}
},
"00e54bc18f2d414799b3933ac9289f76": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_1674bca5c39d4c788a3d30cd100310ec",
"IPY_MODEL_92e47d715e46490eb73195ccba16908b"
],
"layout": "IPY_MODEL_b45df2b80c674899aeb47aa5b3e2a811"
}
},
"00e54fb2ab914fbf9e059ae360f1c776": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_b9d62b014f8d4875946006e1464d8bf9",
"style": "IPY_MODEL_6950d9bf9f114e29800ad1ffeea2fc14",
"value": "Uncertainties"
}
},
"00e7c6d9a68e47f18911cc78a1773214": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"00f0d22eb4d74d759bd7253325fc0db3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"010ac4c67c1c49c8a7ba55286d6bdaab": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"010adb5f47a84c22ab09cf39c53752ee": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_98fab007263146bea678c8a59ec89049",
"style": "IPY_MODEL_7b4e7783a7254e83acffda50be39550b"
}
},
"011577028b7c405dbf94a5b8c9a800b3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0115be1076644014b431c3b39fdb7f68": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"011804b01a5e4b6a910db472764bacfa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"011a20895ae74b03b5f87acb58091c49": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_e358b2ea2e3b429c8539c792138a09fd",
"IPY_MODEL_a2ad56813c614793b657662e2f767698",
"IPY_MODEL_2283edd1b86f42c2946de80cff8ba95e"
],
"layout": "IPY_MODEL_24a2f51b403f4950b0c01e4b047d1730"
}
},
"011f3f53e1f84b7bb5b9b1616ab84864": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0142b88fc4e44ca79fc19ff14e78b6ab": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"014a653bbf274da6add5872903c201fc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"014a7f175c314d2581416c8a8ae15117": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_3dd963b83c74448581b004776a08f820",
"IPY_MODEL_1077510d8c2148bb82f5ee9fc352b59a"
],
"layout": "IPY_MODEL_4c87515e50c8486797d0db89cdf10b14"
}
},
"014eb10ef82149e4a9280024ef2b4931": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_14b7a06946e649258201c190e3a46b04",
"IPY_MODEL_522f96ca83864bf9a33b76153d9571cf",
"IPY_MODEL_46679427a1844211adea4a412d4916eb"
],
"layout": "IPY_MODEL_e5a898cba8fe4d17b3b9ffe50b51de8e"
}
},
"015dce7c1d2f489280c4075238198f4c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Values",
"index": null,
"layout": "IPY_MODEL_4bd5af57d1cb483bb22d902cd0f2e7bd",
"style": "IPY_MODEL_bc9d4737f3fa4935a8a24e2918fc4841"
}
},
"0167b29eaced44f9ac72cb8564a11ac9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"017af77345f1416fb61ff290f9167792": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"018367cb36fe4939ba033667e6249313": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_d2b42c5b6eb34f06bcac06afe2504636",
"IPY_MODEL_d61b4654b76d4313981e2e25c3e859ab",
"IPY_MODEL_f3f78195a81b4f8087e5832c9b97eb18"
],
"layout": "IPY_MODEL_6946cec642c048439bb873a054b03991"
}
},
"0197f7f6796d405eb4a9195d61827735": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Maximum distance (m)",
"layout": "IPY_MODEL_46d57995550543fab065fa2dbe1a799c",
"step": null,
"style": "IPY_MODEL_6dc785d3067d4e61bee621f6bebdf638",
"value": 5000
}
},
"01a3e253e4844f77b9478c70c554e581": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"01b3f583672c42468c1658c2dddc21d9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_7a203d1fae89454eb0f6f84f9ea57a2a",
"IPY_MODEL_d42eafb286f448c58ed9b2840697992f"
],
"layout": "IPY_MODEL_2a4bf1d96cb941a0979048aacfb8135a"
}
},
"01b60773b6e740f093ce29ef8fdefe65": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_fdaa38dc4cd840c4a7f519d5211bf7b9",
"IPY_MODEL_bc36b7260f2640b69430c369d2bc356f"
],
"layout": "IPY_MODEL_1977d4ab2ad94c6199708f359c994a5f"
}
},
"01ba40974b4949e6a13f4de1d9e70ec9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_c2f10d28a5e5479b91e3a02e8f2b8919",
"IPY_MODEL_6a689417b2f04eba8a41caf5a4623e41"
],
"layout": "IPY_MODEL_e0a8dd67c15f40d3be61cc0718844c3c"
}
},
"01cb6101b9534218a0144686766dbcc0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"01d174f3a3b94915b2d3bd47e1b4533b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"01d42885c6b04b19ba4d39d30975979f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"01d7be0b8acf466f82476de6077413db": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"01d98a1cca964060bf3f7929d85db48b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"01d9abe842144eb5b4058305c9d041e6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"01eb974b1fa549fd88adc80c6dd4c9d7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_295c7a6a35f54e4b8c0a3d3ddaa628c0",
"placeholder": "output filename",
"style": "IPY_MODEL_ca873f85b84b49ef8549c5a49c2d5185"
}
},
"01edcd85527c460aa2381d495aa142b6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"01f6e723fde24fb3bda6c4d1e9e2f14a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"01fa33fd57794efc895a271b2875a66b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"020537f2d1564000b51777227fd6de3d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0207059a86d241d49f98392246d2e634": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"020aca3491934c2bbcc1a43daeb95789": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"020bf9f7512b43c8a81d8a32e9be0520": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_cd278d8647484e93b961f6aba1e4b4ef",
"placeholder": "",
"style": "IPY_MODEL_d390ba2490274c34a1eedfbb2cd10e61",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"020e3249a4a5461591045486594dd851": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0213e45dc152483d9bb76b8d5c68fc4a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_12f47ad7533d4e398ac6e8b6b236354a",
"IPY_MODEL_648d9e58efde426882d32247fd663218"
],
"layout": "IPY_MODEL_3ff6d1d6dbe043e09d2354cee2af3300"
}
},
"0215fd6e31f8473090c75e47361875a0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_91a86a70c6c14d58a4d76de997e08548",
"IPY_MODEL_34f7ef7d6ea444e1b055a4a12d606b6e",
"IPY_MODEL_9c4b456e0afb4a798360995368c2d1d1"
],
"layout": "IPY_MODEL_b6345bf68f7a4b2fab2c90dcc35b2a9d"
}
},
"02190d014bd745a6a7e2c92feecea0f5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"0221cac79ae24b2ea886731145e5b5a3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Bxx",
"Airborne_Bxy",
"Airborne_Bxz",
"Airborne_Byy",
"Airborne_Byz",
"Airborne_Bzz",
"Airborne_Guv",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_32779388debd46bfa725b72e0fa1ea02",
"style": "IPY_MODEL_b2690f28cf384d86b7013b7e699ca442"
}
},
"02298b9bc9dc4b1eb0a4596cb5bb616b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"02312683842b468a991eeb1355a7a9f2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"023804b5c09a4c17a70d71e8d105bc0e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"0238dc183df347f09fb184d7766f0b5e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"023df751e1cd49ff96455190cc11588b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"0252227f69864868ada203157225cb65": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"026793e9f1f841c895da4d4251342b37": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"026e8ebe60104de5967fd0ff212201d6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"028482559b7d4a64b4f72d9946cb0d0b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_9f057373f20a4e1a9bd8973783e0b514",
"placeholder": "output filename",
"style": "IPY_MODEL_d4ab91dafddc4cd482442e887e080fe8",
"value": "FlinFlon.geoh5"
}
},
"02973e3299d34148884127b6c2a981d8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"02a44593045c4aea8a44e10e06ba4c72": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"02a579ca5f9b4efda6812ce91438aaea": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"02aed942b70a4474a2c54c90d53c06b1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"border": "solid"
}
},
"02b0c6a2edc0451d89c1234d55640362": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"02b1e772df124fedbe39c6536da7d1a6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_2117c62ac7e94dbf94398f8f706b5c44",
"style": "IPY_MODEL_b1441e2e38fc41f8acadd376e0490e4c",
"value": "Sensor Location"
}
},
"02b8103bcaed4ddbb7cf59a1f8c936de": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"02bd22258aff4e319cf253d3f01c800c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"02c18b12e86b4466bbbfce526e984e9f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_175270cfeafa4548a201369e69d1c1c0",
"style": "IPY_MODEL_ede75b47a3134797848ca181967ef470",
"value": "Scaling (alphas)"
}
},
"02d3b614c2e347bda35829c6fb27f3f2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_dc81bf00cd7c4890bbda9e5450c4826f",
"IPY_MODEL_1de6183924214fd0b1bdf2e54a274f33",
"IPY_MODEL_b1266ecbaaf145bf921ab075a44cdefe"
],
"layout": "IPY_MODEL_25d246111d134e709838fed478d05a7b"
}
},
"02d4967f183c489b9d73025cb5a25ad4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_6d461dd78fa74862a7f4c7b7d937da92",
"IPY_MODEL_7b62c606cc6641939d520c90cdf83d5d"
],
"layout": "IPY_MODEL_183611eb72654b32aa59ce35afdc7e72"
}
},
"02e3034171994bc4a1ff1cd722e7ab90": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_3bd5a0ab75bc452aa4040bd3d913f8b8",
"style": "IPY_MODEL_5602fad9646c449aad85b3ae5ab10946"
}
},
"02ed537cb5564c6fbd59612a553b0181": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_50699000bba445dfa2dfe8de7b38387f",
"IPY_MODEL_d99304fa198b4df2926031c890e06b5c"
],
"layout": "IPY_MODEL_e5b408576a294652a0cd76bd8834e11f"
}
},
"02fea98d5c1d4a8f9a5c494a07b69640": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"030f3a976b9e46828b8956ff3998bf70": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"03117fea1044492e9a4ba4c9be56217e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"031b5dcbcf1f4d54bf3457f76e2e2566": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_d39a2415f965431bbfc3544d015d7c92",
"style": "IPY_MODEL_1bfeec929a4c46dfb8e9315e0ddf2bfb",
"tooltip": "Run computation"
}
},
"0325b5e3a95241fbbfacec1b5978d440": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"0326e192b3334ae8970726a627875d04": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"032851c8850246a59d5f47021b7f6fab": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"032f3fd9d9094fbaa0b9eb3595a6af24": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_7cd2deadf9ab41788fdcce8d64a7ec2a",
"step": null,
"style": "IPY_MODEL_feadc04725ac4d1ea7a898ed5167c7a3",
"value": 1
}
},
"033350eee2b148888173268eb63ed7eb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_e30155a97b7a492a8a3d9619a18eef16",
"step": null,
"style": "IPY_MODEL_bae1c32240404b4cb9202accd889898a",
"value": 1
}
},
"03443c2bcc964aedb68a4ed8aebb40e8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"--- Channels ---",
"elevation"
],
"description": "Data: ",
"index": 2,
"layout": "IPY_MODEL_002472d710924341a6962425908a829b",
"style": "IPY_MODEL_349113eab6f74a258d7169391f0e4851"
}
},
"034e84be8fe84c03afa40660aef7e689": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_e666e768813645e794c2e55a3b6071d8",
"IPY_MODEL_8cb33f5a46df40f3a649658c1501b746",
"IPY_MODEL_571e9cfafd084e5fa3cbef293c9730e6"
],
"layout": "IPY_MODEL_c89f9b6cc8f14a1ab601233ddb2a72bf"
}
},
"0354ab92d5ec485192784869f8603d8d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"03557caeb0c644ee96891ef10f59f1c9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"0372a72c5c2b46e8b64642aafb7a9760": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"layout": "IPY_MODEL_0f7c24e87ccf4c52b1f00828bb440175",
"step": null,
"style": "IPY_MODEL_7e6740d23e5143a4b425e5d95857f58e",
"value": 25
}
},
"0378361e4f844fd199d240dd0f8206b8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"037cd98bfe3e425aabf82d16d4175bcf": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"037d3a6b934142548624d9deadbd2c5e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"037edaedbe004d86b59bb9d146782dfe": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"03840360349549a29323d9f1fbb2dd08": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"038bbd775ec840599894c42e6a5ef8cf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"038db524e0234870a278b12acd9ddf52": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"03930c23b46946cfa73d79a599bb3a3e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"03998f129d6e4e05891d7d0a6a4c5cfe": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"039fe55e88d240f3a6abe61fbb084151": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Declination (d.dd)",
"layout": "IPY_MODEL_9985a3aaee124d12ba427872b290ecc3",
"step": null,
"style": "IPY_MODEL_fd530bdcd9a043e786502755813e0251",
"value": 11
}
},
"03b812ded04348e9b3bdeb2b85787320": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"03be6b2f48434b05b9bd406b356cd5c2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"03bff5bca897487f8036be5df99a72af": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_410007cb577644f3a9259ecec049e75f"
],
"layout": "IPY_MODEL_6d795643a1d8473c920f8898963bbe5c"
}
},
"03cb9e632bed40e680dc4a853f9ff346": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"03cf3a8254794ab0b9c576a4956788d4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"03cfd651a6b2499eb47271b8142d79a2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"G:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"D:\\"
],
"index": 0,
"layout": "IPY_MODEL_3f8785218d3f42bba36dc322e915acab",
"style": "IPY_MODEL_c2a9acbb33c74183bc613b258e950347"
}
},
"03cff2b3952c472b9b11fbcee48317a3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "EW-gradient (x)",
"layout": "IPY_MODEL_96401cec6171425bb394956802e48636",
"step": null,
"style": "IPY_MODEL_5ee7e5f4a6e3466ab671f633f099cf0e",
"value": 1
}
},
"03d06607c7e74fe7933fceb82353237c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Reference Model (s)",
"layout": "IPY_MODEL_d5aa7edea13e4724ab04eb7f19086ffc",
"step": null,
"style": "IPY_MODEL_853f5f873afc4132bbc9234e87ba3fb1",
"value": 1
}
},
"03d42526a85947a6815524cf26bf0844": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"03dc0086ab0f45789be392463b1ba85d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"03de53185b9442eda857cdf123d9f3eb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_17cc9a8804e44d978b0b5eb46096002d",
"style": "IPY_MODEL_732d6957aac94f478a8af100f4b21829"
}
},
"03ececc368cf45fd9d241a3b5322781c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"03f198064f58463e8a9ae9b80b9cee08": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"040cc8816c9344bb9967e68aae36b884": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"040e18512bfc4f5295310f458166cfed": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"040f4ec36ce64e749cabeeb97cfe02be": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_8c14f71fe9814415b5803ca60cdc35d5",
"style": "IPY_MODEL_4a4699f144ab4f0ca4f1fd132113c096"
}
},
"041cc6057cfd4575bd3cc9b724ac9c12": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"041d70a109164f648d28b1c8de6a32f2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"04264b6d82994743b4103929571448b4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"042c8c2f085049aaa505f6b480bf80ae": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"042e4839e8a44fd1a9654c1bececa651": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_f03cf64b0ec44e11b25a51e1a78547d4",
"IPY_MODEL_70a88381fb9d4e00ac9d907a17456bc3",
"IPY_MODEL_e478d4fa10e2483ea8db7fdc1762aacd"
],
"layout": "IPY_MODEL_b6345bf68f7a4b2fab2c90dcc35b2a9d"
}
},
"042f271d7e6b4cfe9db438b84b593afc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_691fe6913e834a77ab1d656e2604fa77",
"IPY_MODEL_9641adb3d66f4cecbb83f79aa73cf058",
"IPY_MODEL_7f7ad5e919ac4f2291af65a27f224b3e"
],
"layout": "IPY_MODEL_cba53efbd12c4ad28ef70e00ed9e4651"
}
},
"0437b66eb4594a4287f67820630bf08c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0442610c8b5745db932e81bd8c14c5bc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"04492eb1096642c39cb515e235bd9d16": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"0449cd4507fc48cea81a9f9afc83342d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"04529bc946bc4ae4b882443ae2db1b66": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"0453921f2c86450588dc065c2bef2c86": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"04611f62efe44de0adb316ac4a3a8116": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"04661605cd854fa8b9e16c833aa2e5e9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"046a20993301490f83c95d5482edbd9f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"046c1ba2a179455caf5f8ae96122c78f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"046f83f007504888a85144fe25a6d072": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"0472986c017f4c2ea2425063f09e11e2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_9a56f1dc47f84a84976541e8bf9599b4",
"style": "IPY_MODEL_604d857174dc4cc488d5798dd8e4de29"
}
},
"04758342eadf472b97f7c5651f29a1af": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Labels/Label3",
"Labels/Label1",
"Ore/39_Ore_Callinan",
"Ore/38_Ore_Dan_Owens",
"Ore/40_Ore_FlinFlon",
"Workspace/Inversion_VTEM_Model",
"Workspace/Gravity_Magnetics_drape60m",
"Workspace/CDI_VTEM_model",
"Workspace/Data_FEM_pseudo3D",
"Workspace/O2O_Interp_25m",
"Workspace/geochem",
"Workspace/Inversion_DIGHEM_Model",
"Workspace/Topography",
"Workspace/Data_TEM_pseudo3D",
"Workspace/Data_ZTEM",
"Workspace/Mesh"
],
"description": "Object:",
"index": 0,
"layout": "IPY_MODEL_839ac879a2444b2da8b1cb435961a2a1",
"style": "IPY_MODEL_99f1a62776c8484ba98b1660a1024a85"
}
},
"0478926c8626439f8ca21af243921b34": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"0478db12112747b9806196ce8ee4cf05": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_ed5bffb9045944cb83bef24a149bc172",
"style": "IPY_MODEL_e7966b5a2d484c14a3d46caf82c024ae"
}
},
"048394c91024424ca658e964ef7eb245": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"048519f9dcb9409cb5d1ffb0394428f4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_e20d7658dbc540bfa5110f0e76b3ec46",
"IPY_MODEL_4c12f5e83e7a459f8450b3a54e16e85a",
"IPY_MODEL_f04cd2ad5d19479e84c692d8e8e41774"
],
"layout": "IPY_MODEL_2ded96b474f0462290b47dd42bc9c773"
}
},
"049326b0976e4053af5be11553252eae": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"04a66b73973448c8bd24a27f66622902": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_0088346e89f74934ba510e02ee62d615",
"style": "IPY_MODEL_a58916e50ade488faecdbe0dc8906888",
"value": true
}
},
"04a9b6964d7b4660836c41c442b8884e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_eb78f86937a44bb899f83c312bc239fc",
"IPY_MODEL_0e56a2170a27459d8af138f3e3b80110",
"IPY_MODEL_0c3cb85b7ce1421fb5f6021d920bd5dc",
"IPY_MODEL_a50777cbf24c41d4bd66801539471084",
"IPY_MODEL_0a03c46ee3c74bc2b96d1980dd994561",
"IPY_MODEL_65a13414798742bd8c22bc973e4b6214"
],
"layout": "IPY_MODEL_5a0d4a5a1c9b4a59914387cde48eeb3f"
}
},
"04abc0b90813406c8f2b7e33d2be452c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_84e90663fe304208a129e8f969742e90",
"style": "IPY_MODEL_75ce9d0c907c4f97bce465a692166b8d"
}
},
"04b2179c40a449b8979a344b9fe99438": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_5e119fb749234421b0fde82ff44583aa",
"IPY_MODEL_b0d1ca9646204aa4ad221f2cda6b1d1a",
"IPY_MODEL_17b9d94d6bca4db9967bf18db03ea986",
"IPY_MODEL_185729d72a164651a37e78017e7165fd",
"IPY_MODEL_403555f6662e43e8bbc3baad7b5baaee",
"IPY_MODEL_a252ea0afe224fbb9b44b4c60b9f8cc7",
"IPY_MODEL_cda8a7a486294b109d6e24845f241796"
],
"layout": "IPY_MODEL_ff5f2197d6ef4c11bfd2f995fb1cc797"
}
},
"04c19c5ef6304676adc1d71bc76549c1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"04c2a46c242541588dbe0f032808df38": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"04c8444f460d4e748cbbd3290a6eb7d3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"04d8247e9f8845b8bea246275967b901": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"04e3822850634870aee9307977a27f73": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"04f07b728682493e88cb5f38712d00a3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"04f7158c946c4d1681068edff31d558f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_47f4ddbe73854f4b9f33608a3f365228",
"IPY_MODEL_963bae06cd5f448a8191d96da57bc435"
],
"layout": "IPY_MODEL_598d3b97f78a44c6887692f851ff5266"
}
},
"04f934aa9fad4017841bda11122593e7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"04fca2609f884c319a0c12e3112f2438": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"050974503f2b40d6a965910b643e8680": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"050d2ef361674baabf48324c436a7835": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"050d7a1b4243471db4a89907ea262d74": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"050e333dcfba4e488e26b4090c8795cf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_e29e0ef2fef04fbd9aef36a5503b4140",
"IPY_MODEL_06a05f5685414ab1892a74c0bd44c635"
],
"layout": "IPY_MODEL_fd1c3a2badc94bf581cbe52249e878e0"
}
},
"051126720a034e2dbcf82fdd6790fdff": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"0513e2637f46454a8fd9f891037527c6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_8540134e0ec546a5979f7713b6ab9ca6",
"IPY_MODEL_bfc49dacef874747ad0954f67b2526d2",
"IPY_MODEL_394217b315214d71bc6542d68d0229a2"
],
"layout": "IPY_MODEL_fe025d308c2c49d1b08b565abcab332d"
}
},
"0519013b0a164f699ab9dde451669596": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"05251909e545480d9fa929db20a47c46": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"05265d62537744149f7e6ad602e03c59": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_5b6dd98a5c504ad29e42602ad74aecf4",
"IPY_MODEL_d8e66f13db6a4fada8449cf356baea11"
],
"layout": "IPY_MODEL_ebdc591179fe4215b310d514684171b4"
}
},
"052dd97f150642e28a04eb48e7e21c98": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Values",
"index": null,
"layout": "IPY_MODEL_d5f46da03d294b258b1e246929cf5a0b",
"style": "IPY_MODEL_0089c6a48f064345b3aefe328f7561b6"
}
},
"052fc32bb9fb4632a6453a0f27b68ef7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"053547b880b540318a3c36c4fc1881e6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_993249c2cd35443aa4af6d3d48afdaec",
"style": "IPY_MODEL_9eefe57b76294ec4b259c199374d0ec6"
}
},
"053b8928f24a44eba93a35f4d09a0b0d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"053d196905cd45dc92fde58d5a6b5ec1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_0a8b14a4ac3641999fe10fe30a96070a",
"IPY_MODEL_d13fa25a079846c9b01b6354c68914f8",
"IPY_MODEL_5dc7f74576e6407489616cd076beb3eb",
"IPY_MODEL_cf5514c1ea724f6196128ca52f16fe20"
],
"layout": "IPY_MODEL_8b68bc96acd548c7b83471e23bbcf740"
}
},
"0543545c6f72422b97ab763e05739489": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"054c79da26f24442ac1dbf9eaec400b7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_eaf02356fdf74b8d870fd70912567fac",
"IPY_MODEL_530837ef6fa74ea6b172f205943383f5"
],
"layout": "IPY_MODEL_ee14faa19ef949f28c20275eb579ac37"
}
},
"054e3aba3d0d478f8b5005d9a5ff59c8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"055464b1b27a49c88a15b1d2ec17885d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0556ec8c82b443b0b2a9c5608b66d5b2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_3e4926d8528143569465030aa24e954d",
"style": "IPY_MODEL_d118aabf233943eb9f875801ceac8374"
}
},
"055991dcb043453eb7eee635d1efc59b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0561d566a8c94af8989d16bc4aef3fbc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"056a8dd722d4485e83b279b2889d3009": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"0578fc9e4b0c444ca2cc5bba2aba5498": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"057a2b7a28f14f1b9e2388741be187e4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"057ad0ce140a4236a97b062848ee7115": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"057fc7f9ed284513a5788a9711f0e057": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"0581eb4d25844b7099c195f45448659a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0583bf4807b9424583df8af9f94ae19c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_724d9827d30a4acc8e93b4dc24685a50",
"IPY_MODEL_61235172bf694f1b8b37dabfec66466e"
],
"layout": "IPY_MODEL_f4963cfc033344d8a6e392514df95810"
}
},
"058e624a4eb949feb70c60f8238b3453": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"05903bc7472a47b09c66824eb349c912": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0590cc6f6f9b46f2bc4ae1f94576a3e6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_a879b7511da747658851a7f35000f5b3",
"style": "IPY_MODEL_4f553e5a9eb24bf4bc42162ad9201ff8",
"value": "Save to:"
}
},
"05a006b4b2aa4d48bf5c55cbed050b21": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_7056d5f68dc14a5aaef83829214543a9"
],
"layout": "IPY_MODEL_fb55590ac6494384bf922b2a371954d3"
}
},
"05a669c9cf644aafaeca21b81ea4fd04": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"05ae573a7b444dbd8dbdb15d4426fe64": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"05b43e3b5216477585ae8f87faf8aa94": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_ddb0ad3e541749f39af1f5358fcd99fd",
"IPY_MODEL_1b7113f6ac3e43ce897bc78d38645ef3",
"IPY_MODEL_b49f220a477a4a488e16367e7edf95f1"
],
"layout": "IPY_MODEL_169dafb581d94c649ad40d8f55092803"
}
},
"05bdd4dd540d44dcbbac66e07f069497": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"05c8d5a88ef54f06a8cef9f76a9b592b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"05c9c0fd69254cc5993988072fa93c90": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"05e2a8ef47dd43928c652d4c81669b09": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"05e9e4d6dee642d2b0cd625453990a49": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_63ee301e7f1a4184a453f246a6d11d15",
"style": "IPY_MODEL_6cfa5a50297f4cb5aa7f9ed2bf7d281d"
}
},
"05ec25b0ff2b4b23b3d745a80d02c644": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"05ecaab2b17643f989da93037d6e78a8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"05ff304ffbd743f08f776ebf38c19ea6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"border": "solid"
}
},
"0601505acec04934af8de45cc4eb15c1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0603deba3a9f4f04ac41943a73bee6df": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatSliderModel",
"state": {
"continuous_update": false,
"description": "Easting",
"layout": "IPY_MODEL_fe7b8cf21c4644658b596804ca50e3f9",
"max": 319967.7557301139,
"min": 311165.14860383794,
"step": 10,
"style": "IPY_MODEL_e236b779eb84464c9c8c4b5bf763e497",
"value": 314600
}
},
"06044d333a674c298fbcffc2b4cb1df0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Contours",
"layout": "IPY_MODEL_e348b90314fe43bd95d3b1dc60e90dd8",
"style": "IPY_MODEL_d82d3f0d00754483a02a1e3f1e34f795"
}
},
"0607fe53e45d4861be3a78690dd3904f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_76d25a5b679646dc9abc287ac068cac6",
"step": null,
"style": "IPY_MODEL_60aa82a3968d4a90a5ea84210c9932aa",
"value": 1
}
},
"0611da0958604f59a3b9a5515779a98c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"061f3341dd6045e6b4a3dad41cee83c4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_e974a9fe36e749d6ac2fcdfb413eeb45",
"IPY_MODEL_9275f8ffc09245688a83f1aad87a7773"
],
"layout": "IPY_MODEL_da420691afbc44dcacaaf0814b6f35f9"
}
},
"0622cdb24a8b4af8a3005ca79e142d3d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"0627a92e62af45ae8f4741d5701a8036": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0637617274ca4fa980b4f5076de9396b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"0639f7f88009481d8db1749752f794b8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 Temp",
"📁 monitored",
"📁 uijson",
"FlinFlon - Copy.geoh5",
"FlinFlon.geoh5",
"FlinFlon.omf",
"FlinFlon_dcip.geoh5",
"FlinFlon_natural_sources.geoh5",
"FlinFlon_tem.geoh5",
"FlinFlon_test.geoh5",
"MtDore_TMI.geoh5",
"bug_mre.geoh5",
"geoh5_to_omf.py",
"new_data - Copy.geoh5",
"new_data.geoh5",
"omf_to_geoh5.py",
"test_file_2.omf"
],
"index": 5,
"layout": "IPY_MODEL_81873c2a61a14ce9817b9141fbe24192",
"rows": 8,
"style": "IPY_MODEL_737c3925aa5b4e1987ab2376034962c5"
}
},
"06468ded15e940039fc82ad80a599997": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_6d373953afc543c394cd76f31254ccdb",
"style": "IPY_MODEL_fe8c4745ea654767a111a9d647bf45e0"
}
},
"064b06d0111f43f6a24680ccfebd9687": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"0650d04e092b4e72a1afd54a8996ef9a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_9ffcef2dec984d75a8cbb7d0dda3d6bb",
"IPY_MODEL_32b488f5fcf74a3784b096d8d70bdb1c"
],
"layout": "IPY_MODEL_f1e33bfd6e5e4ee0a9a3c86fe1fe77e4"
}
},
"06672468d07a4fc3a96fa47041b670b8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_c8562f0d8e0549ffb10c0c99bf8d2b24"
],
"layout": "IPY_MODEL_fadcaaf225ff45f0a6e14f59508d50dd"
}
},
"067155a90ef8481b810df01088588554": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"067e0099d5ca43bbaddd5352657b9672": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_1eaa63ab69c4486eac682fb9bdef6d1b",
"IPY_MODEL_62f114fab944451db5a8f8938ff8780c"
],
"layout": "IPY_MODEL_f937a002faf2454aa89537384316abc0"
}
},
"06880bd94d4444a7bee1b91090b751f4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"06a05f5685414ab1892a74c0bd44c635": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_6dedd44a64bd40879b659150bc882609",
"style": "IPY_MODEL_1af766e634f043d99008608cd192b646"
}
},
"06a67525b2ac4120baa7cf85d1325805": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_82fa522f6cc14271b2564947b3fe4c19",
"style": "IPY_MODEL_8379d33cc85b436d8c8aed70340833cd"
}
},
"06a94427bd9647ecbbdef0c5192e3cef": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_945b7aa7468543c98587c110d005143e",
"style": "IPY_MODEL_dce3fcc769d843aba8e7606279407673"
}
},
"06aad44a32484fd48349de9084442974": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"06ab15285d8a4ca3b6706c7260d2b9ec": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"06b5fd494ccb410fab8fea86a8b450bf": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"06b82b41c35f4afca7d28af95151cf1d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_4c33b3c70b9a464385efad0dbf597eb0",
"style": "IPY_MODEL_c20237579b5944258a1e517a7baee93d",
"value": "Uncertainties"
}
},
"06bb6ad2d9394723a254e1e65ca6a326": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_10ea59bc5ee74dceac1bb5cfba35b407",
"style": "IPY_MODEL_71f95ed35f164ea8acf5c50a1b3da307",
"value": false
}
},
"06c2b6f0479943f49dfa7b5e6f229fdc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"06d06c7c33da46c2858049dc1878bcbe": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"06d797b11dfe45f8bc6e6032ba6e840a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_b33b43c353fa451ab7833744dbe587e1",
"IPY_MODEL_dca439bcdf0e42aea95b5e332e35aa2a"
],
"layout": "IPY_MODEL_2eaea9f3c4f145f7b453c4fc15c58980"
}
},
"06e12727542147e7855785f2fe9b0610": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"06e2f1d012aa4fcdabe7fd16357cb270": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_9e5e4c8d75c94fcdb9561ccc6d8721f0",
"IPY_MODEL_c3996070e66740648d9f7e10e84f752f",
"IPY_MODEL_1d9635454b2542528d5a46ce7bcee65d",
"IPY_MODEL_a8cb965d91964d50bc3184caf8760103"
],
"layout": "IPY_MODEL_6e475b682738488191afe115ffe81389"
}
},
"06e5c28ab9684b86aa5a3f8a9090cccf": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"06e891f22de74cf18c0d38847a28dfef": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"06f7b2ab1027412da1f5c6ae1fe10f21": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"070dc511dd5a44fd933f34f594fc899f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0711cb923aaf44bda53e0ba9bb8651ed": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"071bed5a408248939bfffb8f426192e9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"0723fd4e5137430287168bb08f94f089": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 .."
],
"index": null,
"layout": "IPY_MODEL_d937d2e4dc8f43bfaae5af5792227bc2",
"rows": 8,
"style": "IPY_MODEL_4cd6c657a2ae4a438b4eace21cfce23a"
}
},
"072d6f59873d43afb415ed724ffca3aa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_98ec928b811f4e45ae246a5041c1cab8",
"style": "IPY_MODEL_daf4415522fb4d289fdb9c57aa6eea1b"
}
},
"0739c5ea06f349ddb9ef81d5d6a2f796": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_ddaa289c286c4b0e8b135eea72adfbae",
"style": "IPY_MODEL_ea919d0351734d7d8c4ce90cde1dda20"
}
},
"073e27e4b12242b7818fb38be21b4b08": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"0761096737cd42398409dd423e04a0ca": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"076ef3b1b7274b399fb153241ac6cfed": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_9d8a24da01bc403abc3b7cfe6adad469",
"style": "IPY_MODEL_cca3e9e9a6bc4e21800bfa9d3a4e8ae4"
}
},
"077f0195400e4ce6ac9e48fae1d9595b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_daea71361fd24820824d55da912db0ad",
"IPY_MODEL_877c76b0b1e0479dbf1795bdc1aa78ab"
],
"layout": "IPY_MODEL_a20b0f1a6d8b484bb50c182a10d813c9"
}
},
"077fcb99058c48b3b6de039618b87e91": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"07857bc5580146ffb3afde49e710dfe4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_af7bab61a58b4da0bf39a18f162de8cb"
],
"layout": "IPY_MODEL_4913352250444b4996c0aad101bc15ae"
}
},
"078b3c874f5940498f283304a187b5d5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"078f74f6b71a475e8a2d9d7d6dd5e97a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"07a73941b9f141baa2650380d2ec1538": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"07ac7b1c97b24226be475a8dcd971d9f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_b5d3d339b7b14fb9a179463e0042fafb",
"style": "IPY_MODEL_b62d8c7c4b634a75a7e503909bf72ec3"
}
},
"07dbbbca4144437f9ff6c32398b6de3d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_1b9ef0bcd711417080a51ac15ea9b9a3",
"IPY_MODEL_e0b23e7b4b714db88485520200d85330"
],
"layout": "IPY_MODEL_efa14c81368040e497f0a7bc9dd487a6"
}
},
"07ec362b3e9e48ee9e41e82bfa8e56f6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectMultipleModel",
"state": {
"_options_labels": [
"",
"--- Channels ---",
"Airborne_Bxx",
"Airborne_Bxy",
"Airborne_Bxz",
"Airborne_Byy",
"Airborne_Byz",
"Airborne_Bzz",
"Airborne_Guv",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz",
"X",
"Y",
"Z"
],
"description": "Data: ",
"index": [],
"layout": "IPY_MODEL_ad53df788cb8415fa634ed7364fc3e55",
"rows": 5,
"style": "IPY_MODEL_876c61d80c0546a6a791f89867d32486"
}
},
"07f6da90f3064254a7a3770498a4135c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_cd1e1602c9c340b7a6078eb4e0e6a5b3",
"style": "IPY_MODEL_ab00b504997240f2a446ea4acd82b32a",
"value": "Save to:"
}
},
"080ab9f045494e9dbd15ba0df36da401": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_1e348b761b6548b9b1aa4c55b7ca2a74",
"style": "IPY_MODEL_7ca24754621845c789d5cd10ef1b7b41"
}
},
"080e56469b734ad3b5dadbf3d5a618e9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_ad4e4597afe844d087538db880b177b8",
"IPY_MODEL_ff77a0c8e01d497391aa15eb87c392ac",
"IPY_MODEL_0d4b43788d444432a66fbe923f824742"
],
"layout": "IPY_MODEL_380981b3c4954b0a8b811a4d09ec6734"
}
},
"081f15a2867d47f7a5da758c54106c27": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_2ddcc1e67ddc40e091e7960ad578a7da",
"IPY_MODEL_75e59f1a1dd74fa0b9e7f34cc41d8f07"
],
"layout": "IPY_MODEL_82aa27d39a0b4c6090d75c4ed00d5b0c"
}
},
"081fad7bba9e448888c718fea3ae141f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_ffd93e2b23dd413cbe4d341227fd761a",
"IPY_MODEL_6ffa3f7071f448d28e86c70ad65aee13"
],
"layout": "IPY_MODEL_882aeccd884541008696e95aaa782927"
}
},
"082a0c78db6c48a8a53d8f4dbcaf0b6d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_342a49edf67e40c0836acc39ebf096d8",
"IPY_MODEL_5ce55855a21d48089fce0ed1e33811f0"
],
"layout": "IPY_MODEL_4184a78caacc4ed9a5e6368f299585a7"
}
},
"082ff4637a394d088a6b6ac422d55e8f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"083b60b108454b95b7b268d0be5f5485": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"083cf08027614326b771339cba8876cb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_c523eb3cca2c409d84869db0c5f142f4",
"placeholder": "output filename",
"style": "IPY_MODEL_9a0c2634292f49d2a6b793a5d70f13ef"
}
},
"0841d623fc014610811311168867b389": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_037cd98bfe3e425aabf82d16d4175bcf",
"placeholder": "",
"style": "IPY_MODEL_ad55f2f8e1a346168f7cf2420126cd42",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"0841fc59a84240feb3de04c9422ca02c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"0850fac84b3245408e35a9e20377e841": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"0856e8c3a7ce4b2e8f21f7a60e6d8e65": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"0885e5b0d18748808a8ee6dd411fcbbb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"088618fb2b78453cb33fe05e1719b5e1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_57972b11377d4310beac7d8320f3516d",
"placeholder": "",
"style": "IPY_MODEL_aef2c4b3d93b431dbbf282eb378aa9e3",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"088bf49cd2df42928587594ca3de4805": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"088e2c7b7ab34a84990619cb2652cc28": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"089a455912974ce597d1a4ba4e90d13a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_8f40e6d7446a4421b9ae137ffce99483",
"IPY_MODEL_177feb4f982949f0a0935e68653cae64"
],
"layout": "IPY_MODEL_1734dbdf17b94c8289a84fc46e421cd0"
}
},
"08bcef382a0a4c709d47f92c6aef38fd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"08bd2252a5c84bd69492115a25cebd9a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"08cbe2f89a34416d84cdde4785ff566e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"08d22fe0a89d4e048431079e2138de72": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"08d23857cfc6485f88e776590fa71bab": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"08e273caa0f549639b9d69ba5ab16df7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 0,
"layout": "IPY_MODEL_6f7ce94fb4454b408ab6d53be4e026a9",
"style": "IPY_MODEL_249e667622c64437ac7ba64207f5b404"
}
},
"08eda58d48d941e998a81bbd7f38d9ae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"08f6e893ea5e493ca0a8919249595212": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_5a061686253f4fde8f6e4e5bcde1aa93",
"IPY_MODEL_f3d8190dfa8242be99bd3b4020e6b8d8",
"IPY_MODEL_98fe6979bcef487bb3f80e3339239589"
],
"layout": "IPY_MODEL_e461748c761f46038e137c475062b100"
}
},
"08f8bcc98490450998efb23713750220": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"090dafb6bc404073be054ccdd8087f52": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"description": "# Cells below topography",
"layout": "IPY_MODEL_cdb4373226424b06a106a9a928134af3",
"style": "IPY_MODEL_714029b9416646b3afea0b7e7afecc11",
"value": "0, 0, 0, 2"
}
},
"0918cb292bf646609c05cca99f7a470f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_604f4d4d8a8847628bcd3fe3968879ec",
"placeholder": "output filename",
"style": "IPY_MODEL_0c2b380a40524444a90d333dae858057",
"value": "FlinFlon.geoh5"
}
},
"0921b590b8ea4e0bad0a60272102cb2a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"0928ab2219c54ed6a39240d7a97e8246": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"0940b1eefb17456795f5e1a54848293b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0948f5f09fb248f5befe761e50ec5a7c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_4c7549494b644019bd56545e4e421303",
"style": "IPY_MODEL_540c0217faa049f9a8c0373081261d13"
}
},
"0957c0d639bf45c78ba11e72d07554cf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"096338e795ec438692ffbe1f2b6e9157": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"096b5012c5c14195a5112384bfe9f525": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_2f57bb6650fc4c1a95ee7dcf57265e9c",
"style": "IPY_MODEL_a7d81842ee0642a6b7eb68b2e1668e60"
}
},
"098a6233fd6b41228125b8a734e19429": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 Temp",
"📁 uijson",
"FlinFlon.geoh5",
"FlinFlon_dcip.geoh5",
"FlinFlon_dcip_v4.geoh5",
"FlinFlon_natural_sources.geoh5",
"FlinFlon_natural_sources_v4.geoh5",
"MtDore_TMI.geoh5"
],
"index": 3,
"layout": "IPY_MODEL_43cba9ad4e61417cabd38f85d09795c1",
"rows": 8,
"style": "IPY_MODEL_8e74741813a34f978660671ab1f3b208"
}
},
"099ba880d3af4b5e987913f0f84e6dbc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"099e954f5d674f2289d0f1c2a7f35b68": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_63953eded41449be94635fb2062668fb"
],
"layout": "IPY_MODEL_c0309ed5d7cc42ed87f92fa43efa8727"
}
},
"09a2f6c2cd794d73b247fae2011d3cf0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"09a5ee978de34f6895f865341bf15ac0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"09a8edb583e44ed6b6f4ded0f5f0abc9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_bad0e7d5fe9746028ede3aeeb9ac500c",
"IPY_MODEL_9a0f351da03040b48c528923fe979bd1",
"IPY_MODEL_06672468d07a4fc3a96fa47041b670b8"
],
"layout": "IPY_MODEL_f67a5aa2fb524281aa47a03079c536d4"
}
},
"09acc75c9f5345be92dfdc3f767d4c48": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"09b83d5b1bd04377bc62273d0dea76eb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"09bd5cb4e7db4423a9efa07ab1a1ff70": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"09bd852a6f254beebe8286bde586c1c5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"09c608a09add4ae5b0e14c9e47f0d202": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"09c86d4c6408419d80ba3f705a3bf51a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_625aadba39c5499bb3df229289c7c98c",
"style": "IPY_MODEL_a336181f8b2541efa3b7ed0ae4d70704",
"value": "Save to:"
}
},
"09d32d7fe6c442039d01cc9b79eb255b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_5ab6ea1a56774f81a99ab80eee917215",
"IPY_MODEL_9f0dd80a695448e89d84cfb9dbb67dd6"
],
"layout": "IPY_MODEL_41326e86be8649fb9f46dcc4391b361f"
}
},
"09e5ba22f1ab47d09412165515a8178d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 Temp",
"📁 uijson",
"FlinFlon.geoh5",
"FlinFlon_dcip.geoh5",
"FlinFlon_dcip_v4.geoh5",
"FlinFlon_natural_sources.geoh5",
"FlinFlon_natural_sources_v4.geoh5",
"MtDore_TMI.geoh5"
],
"index": 3,
"layout": "IPY_MODEL_8751b512abe942339de845f4d730f778",
"rows": 8,
"style": "IPY_MODEL_e1b1a0ade3c84d08b0f63aeeead1c419"
}
},
"09efe454a37a48c09dd18659612ac385": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_f319b8a41901442e9bda21d78af05dd6",
"style": "IPY_MODEL_68e30f61e2564a0db4dd8188897c59b7",
"value": "Save to:"
}
},
"09f009c831bf41c98e0ab9e675c153ed": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"09f76c5f23ec4ce89d3b5767272a8f48": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_df47793f4b1f4af8bf6b6e0a48020983",
"placeholder": "output filename",
"style": "IPY_MODEL_4f786eda6e784c5e839459742f3af3f5",
"value": "FlinFlon.geoh5"
}
},
"0a03c46ee3c74bc2b96d1980dd994561": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_dc9491973d8d4d71a53994c2ee02091f",
"IPY_MODEL_ba797465ffb94523a1d6b91cf44022f5",
"IPY_MODEL_4fa1a9a6225943e7ab9c5866ed90ab22"
],
"layout": "IPY_MODEL_02aed942b70a4474a2c54c90d53c06b1"
}
},
"0a2bcdfbe3ee4cee9229905633c23f5a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0a2d93a24b9244f28684d60f22c8da8f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_3e7d71fdd2754bc88bd2bd19b5f079c9",
"style": "IPY_MODEL_f0b6f9531dcc4603980bb9541fcb8db8",
"tooltip": "Run computation"
}
},
"0a3aef84269e4f2ea72fd18d29f130ef": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"0a3e263ee77c4556bdb2d38237f2a44f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_14dfdda4866a473885f1be12b3d78d79",
"style": "IPY_MODEL_112e28739299458a8d25dc2ee8b1b660",
"value": "Monitoring folder"
}
},
"0a3ff27562644ebba68b2ab33bc14e89": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"0a586557db0841649c9ca6a395bf9ec1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"0a6af98faf20489295c4a85b7d64a5a9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"0a84f53be25643d8b3510c780f137645": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0a87a53ca45d40689bc757aab78e218e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"border": "solid"
}
},
"0a88d236d15e4a74a436148af571dfc8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatSliderModel",
"state": {
"continuous_update": false,
"description": "Azimuth",
"layout": "IPY_MODEL_ec799a7f13c347b59fb457028a668196",
"max": 90,
"min": -90,
"step": 5,
"style": "IPY_MODEL_26dba5ec3351453dbfec488e599bdebd"
}
},
"0a8b14a4ac3641999fe10fe30a96070a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_2325f74e1a0b4beca4ec44df6d96bcb4",
"style": "IPY_MODEL_8484c5b598754c98be26329c2c86a0c5",
"value": false
}
},
"0a8de3f6735041ccad9f9acfc78851ac": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"0aab58f643db4cf8b21471f81413d861": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"0ab09e71b1bb42b8900cac8044e40991": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_15f62e2913e6418881e17ed4a17e2ba7",
"IPY_MODEL_8078304a83dd4f958ceece326855cbea",
"IPY_MODEL_2da6a0ab905140c9bb733e04de2b3dd5"
],
"layout": "IPY_MODEL_b6345bf68f7a4b2fab2c90dcc35b2a9d"
}
},
"0ac5962361ba4f8ca3dfe69dc498ad93": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0ac734b6fd1746c3961294ffa9d94899": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_cc0249fddbec4ebaa2623ae0579be9d7",
"style": "IPY_MODEL_8b4643d64c69452797aac85c28088876"
}
},
"0ac9e159370d42b58337da6340899c98": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"0accdd70e61d4e80834bc8c65c36664d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"0ad8964fe4a74dc3aeda142ec8aac7d6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"0adc1aa5ee8a4537a31637781cf3e82c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_17903671173d474f9b30bbcb3ec5c118",
"IPY_MODEL_a286866db9ce4fadb049bc899f4969a8"
],
"layout": "IPY_MODEL_71e75309f76e48408cc1f93a5ce5c79d"
}
},
"0add51315f7a497d8f3922db6c049555": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"0ae25df45ea0411a9da0f9f23b1560c6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"0aecc02972b141db9dc4ae4aaed7c058": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"0b0607af9604406b89108fc152ead5b3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"0b1022b819564f689c29cc1d1089e0ca": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0b142fb8d9e3475fbf97c573e7b069e5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0b23bd2bc49347dc96eae93cfd8052f2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"0b289f3b41e54fbe8d5ac36300054b93": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_361eb680bd6f4952a85525f22cfaa04f",
"style": "IPY_MODEL_7b097dbf7ccf47d888cbf43b3ec78115",
"value": "Workspace"
}
},
"0b2df5a8bcfd4ebf88ff1b74d95e67c1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_fa722ed6eff844388a9a3511986d6280",
"IPY_MODEL_37b5ffed87e741a98397288e5249973c"
],
"layout": "IPY_MODEL_e301f41b9b6c42fcb58d0a044b583245"
}
},
"0b2ee529099a466ba135f73360a5bf49": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_10451b31c1fe440f9b8e10aa81d06795",
"IPY_MODEL_454716c8a0434babac254a8df10efd3a"
],
"layout": "IPY_MODEL_77b21b2237f840b487d5daa44fa4bb8b"
}
},
"0b3d4210bfbb4148b8c6d7d4d2075684": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"0b4ea22851164b53a06ac47c1a495d0b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Values",
"index": null,
"layout": "IPY_MODEL_921862f13c764bf7b90c66022617145f",
"style": "IPY_MODEL_c3aa9ec53ea24778b02cf73d2ccf11de"
}
},
"0b540edd14ef42cbad76a49a65efe627": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_5fda443c9a974bef936e5d8c49e5c815",
"style": "IPY_MODEL_b2c914d5480a4295b8a0e8e508c79fc3"
}
},
"0b5ed4698fd94d87add9bf8e3d9c340e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"0b6d566a986c4929bb3441b4e0e6c207": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"0b755c608dac4486a5b026aec786177b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"0b781dab6b7e4978b37c90c95cc2640b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"0b79b898ee824c24bdcfe8f7cc28850b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0b7fe960a78140cda83a96385aab7ff4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_f81f2a26b45e4a95befd73e88b94f1e0",
"IPY_MODEL_3c6fb4633b1e4c81aca8cc97d18a12b2"
],
"layout": "IPY_MODEL_ad0a0fd09c5d4288a21a580616395eaa"
}
},
"0b82c51c3b754c798dab17e8c7d1e34e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"0b96a6ea4cad46a48affd8acd8765026": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0bb1cf948b8a477386a74a64eb30048b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_36a44483dcc34cb2b3363253a0e48299",
"style": "IPY_MODEL_3f78983b5ecd4b8785e7e8911b731c01"
}
},
"0bb30e732c954b4cb0c29cc5ea467ec9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_111d07f14e3d4d029b888812717e9f6b",
"IPY_MODEL_e3c2dafdc53f42f58beff77fb94e7375",
"IPY_MODEL_a3bfd54da116476ca5eef9df1b732097"
],
"layout": "IPY_MODEL_71063b4c2c3941298832fc6ee0384347"
}
},
"0bbef640976e48c5a586590708272485": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0bc0edf5480b4a87bd70803de89b6356": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 Temp",
"📁 uijson",
"FlinFlon.geoh5",
"FlinFlon_dcip.geoh5",
"FlinFlon_dcip_v4.geoh5",
"FlinFlon_natural_sources.geoh5",
"FlinFlon_natural_sources_v4.geoh5",
"MtDore_TMI.geoh5"
],
"index": 3,
"layout": "IPY_MODEL_f799e4317c2145beb8b08376c9c9d91a",
"rows": 8,
"style": "IPY_MODEL_5ef82d969f7f4b1098bb586c4b0443b9"
}
},
"0bc811e83e47406989a042e9845043f5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0bcddd4d910b413b91e378f923e4b97e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_6b0bacede304408a89fff55ea6015f45",
"style": "IPY_MODEL_9b641611b60442faaeb525b395a81284",
"value": false
}
},
"0bd023f5f5244e9bb80439f1f1ca8b09": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_9d9639ab6d444a6ea94266732f1b2c23",
"style": "IPY_MODEL_06ab15285d8a4ca3b6706c7260d2b9ec"
}
},
"0bd3c410a7374d849a567327e5f63ad9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 SimPEG_PFInversion"
],
"index": null,
"layout": "IPY_MODEL_c948fac2f0f44b519a65ee46c7721d4f",
"rows": 8,
"style": "IPY_MODEL_9bed9ec8aa614b5da6788fd11fa610d8"
}
},
"0bda5d1df0054176872e280270b77624": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"0be174e4c08f4475bd2243e708d07992": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"0bf5c0f3664e4b6a9882ed71c12976ff": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0c0e4c4eca9b496a9e7947a41ab61c64": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"0c0ea0d12082455a95e4dca2fe8f4ed1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"0c294d4af5bd422ca0d450920285f56b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"all",
"perimeter"
],
"description": "Method",
"index": 1,
"layout": "IPY_MODEL_fa484e9dfc0c483eb7c4973bceb8ec4d",
"style": "IPY_MODEL_7a67a830214e43c1b0ab1d685474a38d"
}
},
"0c2b380a40524444a90d333dae858057": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"0c333cbf7eaf42a9831f9cb985b91511": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"0c3cb85b7ce1421fb5f6021d920bd5dc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_4c41fb28a6244cf08648d1203d939508",
"IPY_MODEL_284bf48b21d14597abfa54377f06cc88"
],
"layout": "IPY_MODEL_e00c0a269cd146388a8813e0fe67f7a2"
}
},
"0c3d01c17c46417188e4111326cd9a66": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_4d7c430396744d4bab7d4308783eb6a9",
"placeholder": "output filename",
"style": "IPY_MODEL_b5f66bdb1c9749dfa4b0cfd76b8d0536"
}
},
"0c400c0773924f208c6a5914e3001ddc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_552c31b94f77401cb479dc48bbb8c06e",
"IPY_MODEL_3eb1bc18e3d3402383f95883210c254f",
"IPY_MODEL_1a96f6dd25644cd88a62ac4a35f2995c"
],
"layout": "IPY_MODEL_1a660a7d767f434b9ba92c1f5a9eccdd"
}
},
"0c457efc7e0c432085a0de597e2bc523": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0c75c7aebd0b4c77ab9425cc772dbc65": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"0c805ed805e4450ab6d5587292d8f9cb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0c8fdbc630c34a828246dea4e1346aef": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"0c9af69472f94792b6c9952ea37d48c9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0cbafd260ee146a494de4fed14c56438": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0ccb01d647e14a6fb230d70ef378e74f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"0ccb0229a5c24b02900cd03ba2b1a2a1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_7c00f210a36a480f9207b8988956c7af",
"IPY_MODEL_bb34c3d5c63e4e79ba0b434f0eed987f",
"IPY_MODEL_1be57f58bd724b899342ff8915c89a91",
"IPY_MODEL_5e29910ad5b24fd28ca213bd2bd164f2",
"IPY_MODEL_544a47e365564281ae5939218c492535"
],
"layout": "IPY_MODEL_fcc324bca3d945349f9c944485e8af7b"
}
},
"0ccbd1ae7dd543e4bee67d5d8c7cf6ba": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_90ab35fd4f864b1787e9d726f6f13dda",
"placeholder": "",
"style": "IPY_MODEL_1fe0a63fcfcb4975a05e5e74afa2c61f",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"0cd1e4d21a534fdda355b5072e57767f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0cd320c08a5c4f3289704a6a3428260d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_7223333d5c544284b7dd92f6bff33236",
"IPY_MODEL_909789300a814ac181d5bbd188ac659b",
"IPY_MODEL_0fcbac950ae54d01884c1ffe72ed0bb5",
"IPY_MODEL_94b1de7eaeaf4e838029ffc76b5319f4"
],
"layout": "IPY_MODEL_34471c9e43d741978bce0f887b375f8f"
}
},
"0cd53c523d434cc082349ed342a825e1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"0cda8d03f168456c9638040bab72bfa6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"0ce8cf31d2234ead80d09e566cafcfed": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"0cec8ba41e1c464ebbfe6e59cd49062a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"0cf263b646ac4d91bff10e8e89041d9c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"Constant",
"Model"
],
"index": 0,
"layout": "IPY_MODEL_c6cbd2d35e8347bf85097f76696843d6",
"style": "IPY_MODEL_e91e377b4a05479baba18b1c230f5002"
}
},
"0cf4fd24232d4038ace7e3f402b7e8ec": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_c83ea9a982824b27852c761861ac17c2",
"style": "IPY_MODEL_72ce5e20fc65491eaeff14d1340b3091",
"tooltip": "Run computation"
}
},
"0cfbf8f640a7406db1c637a7022c074e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"0d0f31396e4b4e59a19ab4e109940616": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"0d1451bda68c46cb9c3aa2add81cbfce": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"0d154cdb1a2049b48b158526912c417c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"0d1c865bf48844bcb4370b456eb1edb8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0d1e7c00696a4066adb89a11b12d386f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_2e3f4d8b52ae47ea960645eff9648f1e",
"IPY_MODEL_c89ebd0c460e49f98b45ba99913f7269",
"IPY_MODEL_79c3b81dd8d64fd6b2f1306a49592e8e"
],
"layout": "IPY_MODEL_2ded96b474f0462290b47dd42bc9c773"
}
},
"0d22a3a1dcc644fab67c419dfd7ef07c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0d39340af29d4809bcea7d124518cee3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0d3cfcbaf4d044eba616b4811f0976a1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_a01d0b2bb5314271a6986944a8acfd0d",
"style": "IPY_MODEL_743fabe711db46c2ac55c69a9a65083e",
"value": false
}
},
"0d3d276ae33243ba9da366157fdb58bd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_30434632bf0b46ee8237e1e3e91d1239"
],
"layout": "IPY_MODEL_1556c029ee784277b712c741c2730a6d"
}
},
"0d470cca4b3940e6a38dfb0cc4971e48": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 Temp",
"📁 monitored",
"📁 uijson",
"FlinFlon - Copy.geoh5",
"FlinFlon.geoh5",
"FlinFlon.omf",
"FlinFlon_dcip.geoh5",
"FlinFlon_natural_sources.geoh5",
"FlinFlon_tem.geoh5",
"FlinFlon_test.geoh5",
"MtDore_TMI.geoh5",
"bug_mre.geoh5",
"geoh5_to_omf.py",
"new_data - Copy.geoh5",
"new_data.geoh5",
"omf_to_geoh5.py",
"test_file_2.omf"
],
"index": 5,
"layout": "IPY_MODEL_b815bd7c49644d969b41d175b11c376a",
"rows": 8,
"style": "IPY_MODEL_f26f41c934de45dfb8d532a65a8a08a3"
}
},
"0d4b43788d444432a66fbe923f824742": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_a4c3b291a9414e1c99f0f3c0dc220ba4"
],
"layout": "IPY_MODEL_503a758aabe74de5a8090a970a169cf9"
}
},
"0d51408952b44e48b2e093a2f7e87357": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0d524a5321ac47e3a487c46b2b114cf2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"0d57a7306c904e2591cf7e0f2ef4e213": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0d5e2bb308a14e1b92692aa3465d662c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"0d5f1b2b39f6494c9a714713ce911caf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_6c40bee334c54db7acfaf10ca3a87413",
"style": "IPY_MODEL_aef15f3e2f254f6281afedf3c70b0dd9",
"value": "Starting effective susceptibility"
}
},
"0d62cca0e5374256b1aab72d0548ec78": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Set Z from topo + offsets",
"disabled": false,
"layout": "IPY_MODEL_6a9f25ff806542f680ec2c81b9f57004",
"style": "IPY_MODEL_88de2591b7bd4a6090a8fc1b7978b0c6",
"value": true
}
},
"0d6d13a639004bfeb351bebc0da53d8b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"0d6ef2c5007a479ea2651a96e2e87d88": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"Model",
"Constant",
"None"
],
"index": 1,
"layout": "IPY_MODEL_21601ac834a8492e8ca2896a8e0b3863",
"style": "IPY_MODEL_590f9e3692a64137acec166c7ac64fee"
}
},
"0d753409db0b44969a567264da0cbe4d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0d86e789bb5c498daf60f19669862442": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_713a07ccda3d41088a2f8496030d78cd",
"IPY_MODEL_b76ce6164f5841b3ac9d8ec6e9e9c13c",
"IPY_MODEL_998435366d7642d89dd0713a07f99df9",
"IPY_MODEL_0b2df5a8bcfd4ebf88ff1b74d95e67c1"
],
"layout": "IPY_MODEL_0326e192b3334ae8970726a627875d04"
}
},
"0d89d6fb48bd4933bc64075c30f7c58b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"0d8af902f302447faeb93bef3fa57eb0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"0d97086f4e58476c936463ba442a82c1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"0d9ee005ff2041b38f1cfbe04a5f4d2b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_ceba0559096645dbb394a0321cf0d784",
"placeholder": "output filename",
"style": "IPY_MODEL_1d3dfb15fef74f06ac7c4108272c4b39",
"value": "FlinFlon.geoh5"
}
},
"0dcbd4a3c7434134bc1c070cf808421f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"0dcc68b72c0845c19a42b22c1f8efc9f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"0dcd1c2daccd4f65aeb5c84343bddf29": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Object",
"index": null,
"layout": "IPY_MODEL_b5ef4ec1d1ba42649237172bf6f0cb0b",
"style": "IPY_MODEL_584d72f8607d4e1c8a747f8fd4965f30"
}
},
"0dcdeead126a478eb16d880e10c68ca3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"0ddccfd8c8bf4fd792baa92521ee7457": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_5cee2f2d0bb54bbaa24dec1fe091899f",
"style": "IPY_MODEL_9901a8b07fa9407ba37f6797908750f9"
}
},
"0de3e68e65ce4af183ad7eb4a29e8b70": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0df3362d848e41718d208e14c34d2a0e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"0e00a2a5e51e47e0b2e914de5277fe96": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_e839c708836c474ca79ff9bd88e0cc94",
"IPY_MODEL_d963479674ca4e6ba70e42f9b3eb05cc"
],
"layout": "IPY_MODEL_179a36e30d71411bbdcbfb0781fee46c"
}
},
"0e11add96351459c877affef61d5ed1b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"0e1264a0f4b34e6da49758025d310c23": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0e138a8ee1c0425780f3450fd0f7a204": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"0e1820d363624e86acf586fe1be2e411": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0e226e769d2b45c896c3ee8e440eea4a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_cf5ce559a33043eea27e30e2f2c432b1",
"IPY_MODEL_e1b50678ccd3447a9d36bd2f74a9b6e1"
],
"layout": "IPY_MODEL_facc9470447a44bd9dee2560a80fe471"
}
},
"0e23fedcd5374052b891d6bd539188f1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"0e2849f96fe940d78e731ed0ec3b286e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0e312cd54c8a4cab9d892c03f99abce4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"0e332d9a8dab4b238f78d3c0067e8825": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0e3ac5e69f254331bb3832e52e538521": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"0e3b62ef053f4bd38640e49e4288f371": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"0e3d82013e5649c08506a2b0a8c2f72b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_7efa7c75cabd4c1a8e434910cfee119c",
"IPY_MODEL_82369235884b479db7bdc4a444558a6c"
],
"layout": "IPY_MODEL_ceff662a53824d1ea98d51c9131e60e1"
}
},
"0e3dc7bdb5e249969892a3fa87c4ab6a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_c88c6093ebd14b83a0c6128547cb9588",
"style": "IPY_MODEL_c7b4a97845e740a2afdd38e0a72a1ecd"
}
},
"0e4593abb34a4130a01f05ba60029e7c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_dd2e0cd7361d4a2a988d3eb4817086a0",
"IPY_MODEL_bf1cddb6a31641b2873b89584f6a486b",
"IPY_MODEL_2fb89c2d30064a50bf39adc9955da692"
],
"layout": "IPY_MODEL_940b4cbc64994bf48040adc444a0340c"
}
},
"0e4b39bc10974d43b17b0a27cfb15bb6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"0e55dd7e62d84296bdb5ba953fb83603": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"0e56a2170a27459d8af138f3e3b80110": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_34d5da43815148d78c4f33337ab56895",
"IPY_MODEL_bc4b5cfeee164b24b89dc6517a2058e8"
],
"layout": "IPY_MODEL_d60504bb27644c8ea6130343166b0062"
}
},
"0e5a1900bee44b4fb832ea5c190b922e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"0e5c72f9f6e14f0f82578552be3be5df": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"0e5e3252bc044efaa8e8400b66f98326": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"Constant",
"Model"
],
"index": 0,
"layout": "IPY_MODEL_a792b7b59df549f2994254dd848b600b",
"style": "IPY_MODEL_58344b009efe45c59c2e853567cacb6a"
}
},
"0e74b43bf55c4a25913a985daf99ee4c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"0e79841935f143ab810c62a9e91c0183": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_1b09a3925a3d498da57a2c2588835f08",
"style": "IPY_MODEL_88995fa7ff1c441681116847b68ee1e9",
"value": "Lower Bounds"
}
},
"0ea0cc7ca8fe4183a396c278c9aa6c84": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0ea265a1bb1d47b2850b4c75539a9d81": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"0ea40c64b6ba4fde8f88f0efab1a6572": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"0ebbb2b170f7442583d24b04809eea89": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_fc758e4417a94efd853f8bd3519554f2",
"style": "IPY_MODEL_13e36753a03c471e855abf5e97b590da"
}
},
"0ed384ae33d54a258ebb3b01a11f5e36": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_40ec9c55a0af4dac93c50a92d392f6a4",
"IPY_MODEL_f348b67bb7984463a57211539580e7c0",
"IPY_MODEL_67ff18256218442e804a9796dbff52a7",
"IPY_MODEL_5161a870e59f4d49a561501e13c8674d"
],
"layout": "IPY_MODEL_b9d502349d1c4e9b9fcd79e9addb0bca"
}
},
"0edf3cca6c5c449dbbce4d0e212e08b7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 .."
],
"index": null,
"layout": "IPY_MODEL_be8b97e36b3b4d5dbe6aa1906d03c327",
"rows": 8,
"style": "IPY_MODEL_5bd2e7ae77ec478682e43b9770da7f46"
}
},
"0eec0edcab35482084827fe72ec28bb7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0eecd408842f45168ab620edc912b9fe": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"0f0152371fe24e42bc7fc7efe0cd8cb3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0f053aba21644a5e9dce126fb42103a6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_20f38092e8f54426a00f911ff245f4bf",
"IPY_MODEL_d8ca03cf253e4af59e372356ca1e0a89"
],
"layout": "IPY_MODEL_7e9ccac2ffde4517abf57427e5044ec2"
}
},
"0f05cd084adc40939c0b7b86d1ecad95": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"0f10dd265f1e4286873b5556c7fb7588": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"0f16ae0f0b3c4265adba20344a2cf9cf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_e742e30a8e47405987787e614fe4e0d5",
"style": "IPY_MODEL_d27a31234b044d24b0bf9e7a4980c17d"
}
},
"0f23aa12143a440aaf0096d9eb5dc1b2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_9c5c2e2833e440edbf575c286d63b650",
"IPY_MODEL_59e4109b31bf455b84fcd5b919ecf050"
],
"layout": "IPY_MODEL_a300960c585244418ef95aa77fd2aaeb"
}
},
"0f25a11c8d7f4e45b4d33c641d733495": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_15d3e417bf3645abaa847199f69f6925",
"IPY_MODEL_3a40cfb32a064e92aff76d1cb4c1fc39",
"IPY_MODEL_099e954f5d674f2289d0f1c2a7f35b68"
],
"layout": "IPY_MODEL_f75b1ff6a2dd4665ade9ea6850aa8e5f"
}
},
"0f26ea3988d74bba96ecb3cacfa52987": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_d88b3b283d4e42e092afdba7109c209c",
"style": "IPY_MODEL_6a3d2cc186be4208843d92aa518f42fd"
}
},
"0f38e9a4988942ff9367b1caab66b2fa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_0c805ed805e4450ab6d5587292d8f9cb",
"style": "IPY_MODEL_5e93576a5c244d719706f562bf05ae21",
"value": "Monitoring folder"
}
},
"0f4b5add9ce34708bbd340fc50366d8a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"0f4d6a8ccfe14c05b5ca229c92248f86": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0f58ab9ffb4a40feb229a061c6370c0c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"0f58ec13cecf444bb065a3e9785be691": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_375129dd694d44a99270d1570e030fb9",
"IPY_MODEL_551aac6d23a147bdac73be4cca895c84"
],
"layout": "IPY_MODEL_2a6595cfe8f54c858685b483468fae1e"
}
},
"0f59ef078f984bacaec3b7519c6b55fa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_37ad827aefa44b1ebcdb45f2a173dbf5",
"placeholder": "output filename",
"style": "IPY_MODEL_eac1e5eb3df941eda221d868dabef887",
"value": "FlinFlon.geoh5"
}
},
"0f634d00bdb34e5094ebc2a7d8f04c1b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"0f7c24e87ccf4c52b1f00828bb440175": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0f8517b999f3414eb7f5bf48726c4e52": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_32092aaa8bb14430ab60b464d16b1c47",
"style": "IPY_MODEL_4151eb6ea3d44355a73908e7c5031b2a",
"value": false
}
},
"0f8e474db9904d1fb712c3fe1f705a04": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"--- Channels ---",
"elevation"
],
"description": "Data: ",
"index": 2,
"layout": "IPY_MODEL_d63e2241a4d94cf19e9e697c9c76cfeb",
"style": "IPY_MODEL_ea62ee1cbe004c0c80f4b4a8fa338b34"
}
},
"0f90a5c839974f8b8f8f074bb72888e3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"0f912cf98ef0450b83f5a4fc9402c6b8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Values",
"index": null,
"layout": "IPY_MODEL_f1b2ee50cac7408eb8dad947c84b3245",
"style": "IPY_MODEL_b69d524bbe154eeca2250e4bc3f5bf35"
}
},
"0f9e1ba367f249229203cdb68ccf7cb3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"0f9f200f7da4416c85df85d26457ebf7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_7ebf90bebf834bd3a63d26e95a863fb5",
"style": "IPY_MODEL_7b6bb6bd08cb4e0f9411b0808417f70b",
"value": "Refinement Layers"
}
},
"0f9f3468623a4c97aa1adb920b57ef01": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"0fa7dd49ce5e481780c23bfe29d6baa7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"0fb869f7aa9c44f0bdf2851267570f21": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_2c56d179f29f4464a40ed380aa0239c4",
"IPY_MODEL_c73e00ff7f614811a9847f4ddc26e18f"
],
"layout": "IPY_MODEL_a915281991634da9ad857deaa6c05915"
}
},
"0fc37e23bc754438bad445790d7aadd7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"0fc661e338d9474eabc32c488655947e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_97a6faf1d780409592f27195606974ec"
],
"layout": "IPY_MODEL_3750a78113cd44a591d1e6657e99496c"
}
},
"0fcbac950ae54d01884c1ffe72ed0bb5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_2728689f580d4d74862ca6234cc0be7a",
"style": "IPY_MODEL_5ac3f5c7ce5846e4875d58ebc8e02c93",
"value": "Uncertainties"
}
},
"0fcd6378e10a47078c07f1a087345e89": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_c7ac5120cf17475585075fef0093ea19",
"IPY_MODEL_cf560e2710714094a3c998b690b71846"
],
"layout": "IPY_MODEL_0e332d9a8dab4b238f78d3c0067e8825"
}
},
"0fd5116a6cc544b1bdfa4631d29c2b73": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"0fe2ed99627f4f7da1a5b5ddfa1774b4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0ff46c41d293487d98c7c45a9aedd7d1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_9f38adf9db7c4dafb46429b76ae1bddb",
"placeholder": "",
"style": "IPY_MODEL_7155dce33bfd40f4a367ce698cb4ecea",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"1002e28eeca54398ae7e9acba6f7a707": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"10055127878e4b3b89970a6032cd15cf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_842f64d82688402ebe035378b49e81ea",
"style": "IPY_MODEL_0f634d00bdb34e5094ebc2a7d8f04c1b"
}
},
"100cb6df062e4a47b8f482a6279887da": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"100e1be62f844a329ae793fe79a685ef": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_ad90556e43ed46afb86431328818b66d",
"IPY_MODEL_0c3d01c17c46417188e4111326cd9a66",
"IPY_MODEL_270862153af54fbcb5e04d40b14e8fe8"
],
"layout": "IPY_MODEL_8da305970f3c4cd787f2cb9298aef420"
}
},
"1010c9305fb344b18aa1f9ab06430a49": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_830d7b1650924f28aa9773fa080bdb2c"
],
"layout": "IPY_MODEL_cf76939e563042dab1531e4961e29b7a"
}
},
"10451b31c1fe440f9b8e10aa81d06795": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Ore/39_Ore_Callinan",
"Ore/38_Ore_Dan_Owens",
"Ore/40_Ore_FlinFlon",
"Workspace/Inversion_VTEM_Model",
"Workspace/CDI_VTEM_model",
"Workspace/Data_FEM_pseudo3D",
"Workspace/O2O_Interp_25m",
"Workspace/geochem",
"Workspace/Inversion_DIGHEM_Model",
"Workspace/Topography",
"Workspace/Data_TEM_pseudo3D",
"Workspace/Data_ZTEM",
"Workspace/Mesh"
],
"description": "Object",
"index": 0,
"layout": "IPY_MODEL_7b853e669bf74a7bb1dfa958d554ecca",
"style": "IPY_MODEL_2df6010b1a8e4ebbaeb913f678254c78"
}
},
"104bb9089385481e9256a7c1f8c1661e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_7fc73235441c45daa788927df9c62f55",
"placeholder": "",
"style": "IPY_MODEL_67f2a13c7a06496f9ac0a8d407e323ad",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"105a1018d5bb48419ef7b88e9e216b58": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"105e22e9390d4cdd834dc18fdb9b4193": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_47f867c098e2463aad9b6a756d0c9b13",
"style": "IPY_MODEL_6d7aadd0016f453aada86f25985764d8"
}
},
"106621696c344535a3e0f20ec2ad2a16": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"10685432b86641adbcb40f4f75ea59fe": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_df0cabaef03c4304ac61c4c8f10f0fc9",
"style": "IPY_MODEL_6eab25b017d9445fae2f01807e79f98e"
}
},
"106a59cc85924abdad56c07a1a26ca46": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1077510d8c2148bb82f5ee9fc352b59a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_2e4b54df3fb84f8fa9266453663fea6d"
],
"layout": "IPY_MODEL_70dc3ca5d65746ba9e69385f3a02d4aa"
}
},
"107e8e68077c458787b9d1176e68fa99": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_105e22e9390d4cdd834dc18fdb9b4193",
"IPY_MODEL_f92f6330a3d14ff59a32b886aa142a76",
"IPY_MODEL_9e2f167addaa4fd196ae249d6b26348b"
],
"layout": "IPY_MODEL_b6345bf68f7a4b2fab2c90dcc35b2a9d"
}
},
"1086b202ad9540c28ca311a7c68f3020": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"108a063c4c7e4e40afcba91b87d3825c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1096aa7eeaca4f408558a387f5182a0f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"109dfc0ff64646aa9bdd93032e4709e4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_09efe454a37a48c09dd18659612ac385",
"IPY_MODEL_367c1462607b4069bba6ab1c53970564"
],
"layout": "IPY_MODEL_725ac92695ca4a75924c4427efb46843"
}
},
"109e083c0ab641e6a1a3a6d474719c02": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_0cd1e4d21a534fdda355b5072e57767f",
"step": null,
"style": "IPY_MODEL_73343b2f6721465a903e0f6a6c18d897",
"value": 1
}
},
"10a1f884cd6a4228901b9a30c593b12b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"10a33e3346d3406bafea2b7326a6e67d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"10a8ddb6f4624f178015e82b7fd999b8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"10adf5b1becf403f8d8f78e82c2e5dbc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"10b69da6fae64565995a5993f96d95a5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"10d324e746854767a70069ed2ae3d509": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"10d4c91edeba4b528225439bebbc07de": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"10d8e8a42cc84bc0ad5bb89e59376a3b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_2c66e60f173e49d3881ced656a2c913a",
"style": "IPY_MODEL_c750ac21ed034d19baf3e009e23a5c61",
"value": "Upper Bounds"
}
},
"10db589bb2ad45458d1c09d976b78009": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_7f2f59cdce8346dba9016fbf996c44ae",
"IPY_MODEL_ba2b1661093b42c296aed0186ac95282"
],
"layout": "IPY_MODEL_fe426f3e2eb0484abad6aa6a99cdeea8"
}
},
"10dcf99fc0cc4f3ca85d0ea6760f034a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"10e1354821f6426286365a20bff559e4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"10e48595da5249de9b623583876cd6e1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"10ea59bc5ee74dceac1bb5cfba35b407": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"10f2215b0d234d5ea3aca545660b112c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_1871433586c9496a8638ef210584b380",
"style": "IPY_MODEL_8030c6cf0e0c456ca0803df0e8f833f9",
"tooltip": "Run computation"
}
},
"10f578a789af43a380971cdf0cb1f839": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"1104a6a545f6444a8d5cd85fd314638c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"1109080289704f779ac4df5d35407fe8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_2a8a05b63848452da5a9abd82ebc7a7b",
"style": "IPY_MODEL_1333b231653b4410b718bacf4f4a808c"
}
},
"111764515f7549939037f86da6dcb2bc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Minimum depth (m)",
"layout": "IPY_MODEL_48aa9195d77342f8a4c8dfe33aa88a1e",
"step": null,
"style": "IPY_MODEL_fae4c044312444f69dd79b9a3daebc92",
"value": 500
}
},
"111bec1eaa0d47c4a01b2618d39a4f48": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"111d07f14e3d4d029b888812717e9f6b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_c7278bf78c434593b2c91a1c9634f4b8",
"style": "IPY_MODEL_f396d9fff4134258b61a3a688c3a1452"
}
},
"111ddabcb65441f4914b25c56d20d6a2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_be0f7f2ac0d44ee589ca36897edc1a19",
"style": "IPY_MODEL_c3788a1cd0b34593b133a16a40198ac1"
}
},
"1121081b4c5649b1a34f2f65a9b7405b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_b2aaec5a524e450f8ceabc1f37974900",
"style": "IPY_MODEL_4286427ba55648f6870f95b0a67dae63"
}
},
"11261d2b3928426cbad0e97694a09548": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"112b1ce9cbc54b598fd02e6abb8f1460": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_b7b4f0de13ca4a708cba98e683b7d7da",
"style": "IPY_MODEL_56c39c47f401417e813f888bf6b5bbc2"
}
},
"112e28739299458a8d25dc2ee8b1b660": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"112e2a1cc5654e25a9282877ebc31a51": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1136ff4f9d474c2fb0f5a89407bd4017": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_32ad4f7d1c98496e8c2294c98dc9574c",
"style": "IPY_MODEL_b6d00d9214ef42f99d5f4bc1d19262df"
}
},
"11388bdfe4e54041b830273ab2e1e4e9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1140793c5abd4e80be6cd10314f1d3d4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"114e36ea3efe40348e869c49884f8d5f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1154df7172724ba8bd1f8c08c294bf21": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1159314092584b24a35b570189be0f0f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_5ee87be1805142c595d8c5eae446ac50",
"style": "IPY_MODEL_1ef0896659f540888ffda32d20b5b50e",
"value": false
}
},
"1166762e2e994bb294775e878d3b5b4f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"116d0e979d6440d7bc6aa98b97622a2f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"1170bf5ce16d431bbe21e8fea942af82": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"11798fe7bd1b4b48b3e3a7b75f04f45f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1182d6aad0c5420bad2da78509f601f7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "dz (+ve up)",
"layout": "IPY_MODEL_9b6c1e51bba044a2815e00354ad87056",
"step": null,
"style": "IPY_MODEL_b4691e4f1ad54205827a656703353839",
"value": 60
}
},
"11882a70299742ef9b235e3aa6966de3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"118bc86ec0a24048802b0f1489f60bd4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"118c5ceab5a64ab6b3ea35f26d8b7698": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatSliderModel",
"state": {
"continuous_update": false,
"description": "Northing",
"layout": "IPY_MODEL_2c9db897d4ee4672ae5f9c3a6fe1ab3c",
"max": 6077578.83861151,
"min": 6063956.600608527,
"orientation": "vertical",
"step": 10,
"style": "IPY_MODEL_dcf63b1b1bde464e985bd239ae9532c1",
"value": 6072300
}
},
"119735bc5ab848769b8d4f16ba4aa3aa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"11a5f55bdd74410dbf30fa6ca52e6ec8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_907f398ab18640efb72843b727fce84e",
"IPY_MODEL_f6486f2d53b74e79827da55e8d83508c",
"IPY_MODEL_5ed21c937f7b43748b89ca685a895dfe"
],
"layout": "IPY_MODEL_2ded96b474f0462290b47dd42bc9c773"
}
},
"11b32ce9479d4e3e9e054c9b7c9dd22f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"11c0eae88105405cb979d5bfb1fbeb5e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"11c81ae229d641b4ab1b44ea28fb83af": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_85c7f6c9aa9244c3a4bc3fa5ce356ae1",
"IPY_MODEL_fba819a065794c6ca3141c9ac8c98238",
"IPY_MODEL_cdf41eb61dc449ffbb0fde5c2e628dc3"
],
"layout": "IPY_MODEL_9ec37b9444ab4c3cadb38eea8d5bd5bf"
}
},
"11cc388176f64f1cb14aa8b76fc25422": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"11cf676d16f6452e9efdd91afcf7a6ae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_c95ea054cdf54bddbec294298052f652",
"style": "IPY_MODEL_5ec5b36991ae42c59c34057a728fa408"
}
},
"11dbd8f55a874f6d950c629b0496e587": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"11df7d9e3d4a41b2899bc88060ac32c4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"border": "solid"
}
},
"11e2f5dce9d94aa2b3237f879b4e52a2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"11f3c8022c37498681657edb9f14944f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_403c17e1b0bc4d33ab7b9b6348bb7c0b"
],
"layout": "IPY_MODEL_67e56d29813849a9ad446dec8d026725"
}
},
"11f8cb6814854d05af50df275a606e67": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"120478a06d1441e190a3368c9e8af09f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1207bef2644a4fc5a6bbfd071f6c9c02": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"120ff982dea047e4952bc54e5e287965": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"122f4996bdc2446a84fb44057b8d2343": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1235bc4ce44b42fda172269985abdedf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"124390c3528d4818aebcbb27e9c591c3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_42d51145b9ca43ca803f92ff7656a08c",
"IPY_MODEL_912794629785486fb254e8daa68579c9"
],
"layout": "IPY_MODEL_0bf5c0f3664e4b6a9882ed71c12976ff"
}
},
"1246753ae889443ba486a05b9f41a612": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"124b52d1cd1b42909d0c4dec7f39a430": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_4abd53873d5941e7be7f0c718572eda1",
"IPY_MODEL_424187e1574445c393e67388ec74833a"
],
"layout": "IPY_MODEL_daedff73a42948eb8ec971521b866850"
}
},
"124c8654ab9047d8a94987b14558dcf8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1255fa65d6674d84bcd8d177050ddf31": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Bxx",
"Airborne_Bxy",
"Airborne_Bxz",
"Airborne_Byy",
"Airborne_Byz",
"Airborne_Bzz",
"Airborne_Guv",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_3bd6e4a84c4b4481a8c2622733fc09c3",
"style": "IPY_MODEL_2e881f795066466ea3dfce8c430a9506"
}
},
"1267fc7a5023462bbd8d2cc6bd734741": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"12691e7218854fc4b2f375062705e4c9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1285349074dc403d9fac3351d1919c18": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_3baf82b373f6499da9a6fa372c6be153",
"style": "IPY_MODEL_74445146460740a187240db575e5249d"
}
},
"12883641a9064b65b575761be439be27": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"1295291757b4419287b882da4731fa6f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_487119b98be240a38c2c9a6a86fe37b9",
"placeholder": "",
"style": "IPY_MODEL_a3a1b559571341598f3af56e1ecc0aae",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"129eb03be77c4b7485f37efa70bad30e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectMultipleModel",
"state": {
"_options_labels": [
"",
"--- Channels ---",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz",
"X",
"Y",
"Z"
],
"description": "Data: ",
"index": [],
"layout": "IPY_MODEL_a5f2e187f4454d94a40c93b230285101",
"rows": 5,
"style": "IPY_MODEL_daeea7582787473fb8c684a542d967d7"
}
},
"12ac621a520549429200a1f777be0783": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"12b2656292dc477dbc244794a441710f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_026793e9f1f841c895da4d4251342b37",
"style": "IPY_MODEL_c13d69e95b944503b1e44a3b01da6280",
"value": false
}
},
"12ba52793e714e41aa8032588abebead": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_316cf62f95124af6854894e5bbcf172a",
"style": "IPY_MODEL_edb6316a79b04d0a87feb3ebe04d246a"
}
},
"12dd8dcc2da1465ba6eea67d7c6afbe6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"12e151330e554e89be70f38c0acdbd72": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"12e4946b1445401e977e549c27b71b38": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"12e4e8ed793643d391cb9c5bdeb354d2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"12e5d59a236e4b079c22830eb7ea497a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"12e7ca31e8fe4be88b66cc4b8badf480": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_c7e561dd5e7647fc9b075b25add7ebdd",
"style": "IPY_MODEL_e47212d77aa94e26a412757509edd581"
}
},
"12e9f07651fd4a2ead5bbd312417d008": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"12ee60f6e7804e46bc9a7f4d852a77c7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"12f47ad7533d4e398ac6e8b6b236354a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_f93a6a1b671f4aaa8058636b935b5c67",
"style": "IPY_MODEL_8a74b3ade6a34123a49a57c8bee9021a",
"value": "Workspace"
}
},
"130863b87ccf442f80d4436b331c17b8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1324799407ef44c2aae7ca7147f2e253": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_e8e90f92a6b94e5388b5d0f46931bca4"
],
"layout": "IPY_MODEL_f284e282967742cc890f7f1691347567"
}
},
"132e941a40a1403c9e7ebc2dc74492db": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_73f3709687fc42f1a13fb182d50ec04d",
"style": "IPY_MODEL_0e3ac5e69f254331bb3832e52e538521",
"value": "Monitoring folder"
}
},
"1333b231653b4410b718bacf4f4a808c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"13360b0c879143608607b5e851108eeb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_216ccce4f4544e93b6426cc35c9ec700",
"IPY_MODEL_effbd7b6bfa9485786e42e68e47b270c",
"IPY_MODEL_753c91d8ea694078a7a25bf1d2f2a302"
],
"layout": "IPY_MODEL_767c6227aef94be296f00313be472f98"
}
},
"13481127e0e640868df22df2e770cbc4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"13486703f3484ad6b0c65e300324c58c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_2c7392b4c1484ff0b56caa40498fee4b",
"style": "IPY_MODEL_881b4405e5d241d1b7e5b40364615426"
}
},
"134e6a350f3e44f4a862271579036e6c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"134f133643814227b1b89cf67a1f0d7b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_170ffe5dc2854faeb0daf1896da45a2a"
],
"layout": "IPY_MODEL_f57822acc51349ce9416cbe56483a3fe"
}
},
"1351ad3025ec44c39beb7ed697048867": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_d591460e7140462cb47f29a4d5267269",
"style": "IPY_MODEL_5166309e8d4a43a9b0e58f3194b149a2"
}
},
"13582ac702ef42e5ae079ae4f7bcf9ff": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"135ddb00f42344f7ae8467e1cc85d641": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_b0b2749b033a45249b02fd686fec8e42",
"style": "IPY_MODEL_5eadf52c41284779b4c0e27ebfa31a02"
}
},
"1369e9aa0c6f4fe88a5aedf5e892d8cb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_8b0dfa0629dd4b2c9f8cf34873838fa7",
"IPY_MODEL_a63fb3a2bd0d4682ad288f4ec404e090"
],
"layout": "IPY_MODEL_7a1c5e0f02f04230899574cd92b6ea8c"
}
},
"136e63c58ebb4baf9be45a1603f20d68": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"1377d357a6a94203bc36ce2c26bbcdcc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_7c65915734304dc098465c1e7583efa1",
"IPY_MODEL_1efdea5e5dfe4e2fb2b5638c5758b5d8",
"IPY_MODEL_fda55d3f561e41aaa4e2dfb3d63cd440"
],
"layout": "IPY_MODEL_064b06d0111f43f6a24680ccfebd9687"
}
},
"13790e1d96114ab98bf68b69af23b82b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"138112097552464ebacd2cd2aa0e8a58": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1384e9ba8e984c199e4f3651b0d295bb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"13861f5c1cea4b719ce90fb1f5729d26": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"Model",
"Constant",
"None"
],
"index": 2,
"layout": "IPY_MODEL_444a13b9eb474315b080815a2fb2de65",
"style": "IPY_MODEL_71096043a2384bafa1f5d2a24be92924"
}
},
"138d77fd4fce4c81b77ce68692193133": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_cf66f4d8443b4ff3a47fc674aeb0e9cd",
"style": "IPY_MODEL_15f8bd8b071342b198320f362f60ad31",
"value": "Workspace"
}
},
"138f7401dfb64d42943717dd76100151": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"13a34f35df35417bab139da5c9f43ef8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"13a73177973e48aa8a29e469a3cf10a1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"13b73437095d4ef7a8cf498cee440dd0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"13b7dbb6b0d640c3b24c484e90546f99": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"13c3c6f153b644d3b95aefd1cd412cdf": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"13cb4c6e248842428235f55a0ab41c4c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_202fa2931b3343e79b3f6453d77b998f",
"IPY_MODEL_3f88e2c0fd6549a698dd03a189c1de6e"
],
"layout": "IPY_MODEL_49a190bea46e4d4487b84509d5eeee50"
}
},
"13e36753a03c471e855abf5e97b590da": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"13e6ba4d9f2143a98fe4ffa13475c094": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"13eb821c1a9a4fa0a6957afc7d880a63": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"13ee70ed9c9f442fbf2e6e5dd14875e8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"141014511ca64bc3ba14f5aaea2cf7dc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"141e53264d694cf691f29bf9a2e4d84c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_dec88c17196c422ab9294acac94a706f",
"placeholder": "output filename",
"style": "IPY_MODEL_a137dc7e7a664ac1bc248b8e6a062f9b",
"value": "FlinFlon.geoh5"
}
},
"14297cdd97e344b3935ef70aea972a0e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_61d8fbd64f5e4f0ea3bee1d2b44edb79",
"style": "IPY_MODEL_10adf5b1becf403f8d8f78e82c2e5dbc"
}
},
"1438959149bb4b8182d68c03e5360e89": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"143dbda8d7e34096b4dad6d00fc24ec9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"144fcba67b5f406dbcb8bdc3b1991d1d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1460bc2463d9412498ff63956238a11e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_51a61c877b9f4a9784e9348b8ee78aae",
"IPY_MODEL_0ccb0229a5c24b02900cd03ba2b1a2a1"
],
"layout": "IPY_MODEL_f9ff448abb7d4e15a1ae286cd678eb9c"
}
},
"1463761cf4e94be9bd050e6ac3bd5c9a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"14795bf300584dee9bfee4c656dde689": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"1488076b0c9446558208b2a11c28099a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"148e536dae1246aba13ef1b4eb1b4ed2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"14a53051c7f7423faee40ef37467c620": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_0b1022b819564f689c29cc1d1089e0ca",
"step": null,
"style": "IPY_MODEL_83fc71e596ce4bf4a62ef48674b81d72",
"value": 1
}
},
"14a6a731698e4c84bdee7d7f1c03c190": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_978a978427d84779b45eb68c91f3bef1",
"style": "IPY_MODEL_ec3d82b7d35b4777945895c244d08c3a"
}
},
"14a8162c05f9459a8cbf3858675221a8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_c0041e88dc4649a492c752469e9a39e3",
"IPY_MODEL_ab5d95370b2c4155ae8a05caf55ee882",
"IPY_MODEL_5817ca7fd9eb4d7790ecccf2ed235445"
],
"layout": "IPY_MODEL_2ded96b474f0462290b47dd42bc9c773"
}
},
"14b39c459aac49a79d3eb3dff23cafe7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"14b7a06946e649258201c190e3a46b04": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_2cbc44c7ae394bf0996a494d6ac4408f",
"style": "IPY_MODEL_866c507e7cd147309ab398fc4d808835"
}
},
"14b82ab6a26c48e7b254c6cdca5a66df": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"14c57165504442ec8c23cf82016485e5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"14c871756b8b401188d52602ab86c619": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"14cbea95a4f74441977ca143e96063ab": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"14d5c2fe3e1d4e70932e4b04df84fafc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"14d8fd77d96c412fb09032956ae813f6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_553e645ca0e348c4a058faeee9eeb566",
"IPY_MODEL_9248cef83002432db44d5324134432ab",
"IPY_MODEL_298d8db88237405794523b48b2715292",
"IPY_MODEL_01ba40974b4949e6a13f4de1d9e70ec9"
],
"layout": "IPY_MODEL_61d2a81c8d804029ac0d4a7c04b2d51b"
}
},
"14db09552a524caabbccd0e0635422a0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"14dfdda4866a473885f1be12b3d78d79": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"14e1ae0b197e436fbc1772b7c806142a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"14e59036db6c4d138611d21127905ce8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"14f554f605b942839d1be9602bbdf711": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_11f8cb6814854d05af50df275a606e67",
"style": "IPY_MODEL_00bfae836efd48d69e037faf5d25ffba"
}
},
"14faabcde14741d694e1a1c88d43d714": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_87a699766de843cea108071b8b5eb508",
"style": "IPY_MODEL_815c4248411742dfac83adffc27c5274"
}
},
"15024ecbab9e4e47b7c9c1e12a91b1e1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"150a1e6fb581453383080222d0eec3c1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"150e0224eb3e4c819592d93761f63125": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"152affdb5fee488d84d7d015a1f8a451": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"152e92c4e4a0487ea4dbb4051b885c4b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1530648d0bcb4361bb4e16b0d06bafbd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"153b896a9ce747f197d9028603111a7d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_3b887196cdae4f02a06ef9831105f1b7"
],
"layout": "IPY_MODEL_de33f052493d40babeeb1c785c03cf71"
}
},
"154778bc09b84a8da78ead70b26b4a09": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1547af8dd5f348ffa0020623b425a227": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"1549db32d2b74e8cb92b04538cf34fbd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"154f3a16b9ab427c8d1de608f887dcd4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1556c029ee784277b712c741c2730a6d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"155bb3f68c694e0e84dc3a836d7051e3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"155bd82afcee4dc9a10e6754554a0858": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_b3940d57d504457e8abdbdc8834ca8f1"
],
"layout": "IPY_MODEL_da67e6e50ba1437aa14424f0065ffc35"
}
},
"1570c83367be41278e629f83f70aab65": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"158d2af82d92496cb2c7332db5e00071": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"15915d7778844414bab1ae4e1393ad9b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"1595383145c84d46b54cc1c0b6576e9b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"15b1dacbcc4f410486303ded51b04b17": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"15b78f91cad442a69852dde330009d59": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"15c63ebb84734885a10868dcb0edf90c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"15d3e417bf3645abaa847199f69f6925": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_2fea5edda9fe4e9d9cb6062cef4dda6b",
"style": "IPY_MODEL_fccc9ac8165d41ebbe80c92aa26cd6e2"
}
},
"15d544074f6349abbd8a54a9983fcab9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"15d749878121487e9c1b8791a6377902": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Values",
"index": null,
"layout": "IPY_MODEL_782bce26d36442d591ef0d9777f98d85",
"style": "IPY_MODEL_57f90008965a4b199c682c70002963d6"
}
},
"15db68eb22b64b9e9de32cc535d26767": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_73c4a75757fe4d10b39b72495a514acc",
"placeholder": "",
"style": "IPY_MODEL_ad72e2d8457f417da2a55bcb8cb345a8",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"15e4b793689845c1bc4ef27a8c5fcf94": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"15e7b2ab99474180a0f16979c9bb5b52": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"15f62e2913e6418881e17ed4a17e2ba7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_a480835e2c804dbaad9db4e05a4453d9",
"style": "IPY_MODEL_21cb29f110e548bdaac81dd3b6d032b3"
}
},
"15f8bd8b071342b198320f362f60ad31": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"15f90e0802034671a68bbf7bcaa6bc3d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1604e92e5b634455a2da5fac35cd05a4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Vertical-gradient (z)",
"layout": "IPY_MODEL_a632d69f8c4243d08bc63bfdbdf8d836",
"step": null,
"style": "IPY_MODEL_306dbe5c683f4fa095e2fa90259f3eee",
"value": 1
}
},
"1613034318df48a7aa578769c2413673": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1623791ca0b64c7eb72b8790edcfde31": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"16286fa1a55a441385a5dcc92e51953a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"1628cc9e04b640b2aefe26c407e93d53": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"162b240498d34405a4f7d336f80eb8b2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"162df591ee9749ef8db9f7cf79e9e15a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"162efe84ebd54cfc8793bab163a16f5a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1639652d6be44b3aae8897e18da9cf9b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"16441b5839fc4c99abe0ec228d2dbfb1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1648734380c34c8a96838b44d85bd383": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_28ca550f26f64003867f05eed87b94bf",
"IPY_MODEL_f029b7f8bc2f47e2b61620d1ac415a35",
"IPY_MODEL_228cfb2e1fd74feca48e6d9a4d68a98a",
"IPY_MODEL_6424f40885f348f0a4898f4d12c7b88d"
],
"layout": "IPY_MODEL_d597ffe23f72462f8b88c831162d86fb"
}
},
"1649a0b08c2247dd841105346ac8444a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"165490a2e0b144d59dedc60bacba00bb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"1674bca5c39d4c788a3d30cd100310ec": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"Constant",
"Model"
],
"index": 0,
"layout": "IPY_MODEL_baa753b5c2cd45dc8867b5c304ce660d",
"style": "IPY_MODEL_42fb945e596d4177bbd3c202349731ba"
}
},
"167a30c1becd4c89ba7b87d775b82925": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"16812e47074d4faf814bde1d8be9bc4c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"all",
"perimeter"
],
"description": "Method",
"index": 1,
"layout": "IPY_MODEL_c49bf00fed4f47c182e3af4df896a835",
"style": "IPY_MODEL_dd7619823db24a3596f35c1c2ce9133a"
}
},
"168c1656984c43568a5d447a3321d1bc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"1692a13634304074bcb8383a1e5fb95a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"169902b40fdc461098886575eef42310": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"169c1242564445858c3e51ff9f8a3357": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"169dafb581d94c649ad40d8f55092803": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"16a2490b2e184b7d804b468b5cf70697": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"16a3c0a4e0e1426ab7c8242a53f0c5cd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"16a5fa60fd5f43ce99f781969b596060": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"16a926418d4e403dae76e9df82b9d556": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Labels/Label3",
"Labels/Label1",
"Ore/39_Ore_Callinan",
"Ore/38_Ore_Dan_Owens",
"Ore/40_Ore_FlinFlon",
"Workspace/Inversion_VTEM_Model",
"Workspace/Gravity_Magnetics_drape60m",
"Workspace/CDI_VTEM_model",
"Workspace/Data_FEM_pseudo3D",
"Workspace/O2O_Interp_25m",
"Workspace/geochem",
"Workspace/Inversion_DIGHEM_Model",
"Workspace/Topography",
"Workspace/Data_TEM_pseudo3D",
"Workspace/Data_ZTEM",
"Workspace/Mesh"
],
"description": "Object:",
"index": 7,
"layout": "IPY_MODEL_3f0ddf6b1a50427184933b0c7cdcfe1a",
"style": "IPY_MODEL_ab023672f4ad4592b7ec8e9251a50e77"
}
},
"16abb95659b84c50ac0c6bc46e27827e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_eb4a214e58674dd6ab6e3b997cc44126",
"IPY_MODEL_792b6ffee27a445d9ad312fce7017d9e",
"IPY_MODEL_682b369ca6f9416bb74037f93c8d69b4"
],
"layout": "IPY_MODEL_77c5daa23dba411d972969bf98be6205"
}
},
"16af47e1e16649fd8fae2dad6fd8f6c8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"16b485cb8b9b4bf294c024a22ce2c676": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"16bbf1052a544b60ac347b019f2d2301": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"16c45683319a49ec9b67f43bca461327": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_830e980fc8f44724a56d1b7ff2042edf",
"IPY_MODEL_369c63e3a5714b429edd934558e2ca02",
"IPY_MODEL_7e2a139260834c129acdbb3820c16bec"
],
"layout": "IPY_MODEL_78819384698d48cbace6bf22a6da23b8"
}
},
"16e49e0bc5b248aa8a4f3f6addbc8435": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"16f91704f83345e391e3700350b0040e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"16fb47aacfc947dc97290456f7c57ef2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1703034fc48e408b8732982f0d687cf5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1707660c573b4d5ca6fd0b01fc127ac6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 0,
"layout": "IPY_MODEL_664d0cef3ed64833aee56e97de4da1eb",
"style": "IPY_MODEL_659cf6e66b6a4167afb79efad49a167f"
}
},
"170ffe5dc2854faeb0daf1896da45a2a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_d84569cefa5c431ba8788d11f66e27f4",
"placeholder": "",
"style": "IPY_MODEL_84fa77905016480d8b35e25236497e69",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"1711ce5f4e0e43e782257f0075bfa7db": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"171c98caf3e74279bf89d59fe180e10f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"171deb221fa643a9be2af22e6c0aea3b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"17263d39bd214d6a8f28a6adf72c119c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_4ef503b8b0e844abb211f8460f46b889",
"IPY_MODEL_3027089234624f6faeb41f2c210c3a2f"
],
"layout": "IPY_MODEL_35146f52642b45bd93ce199b6858e4bf"
}
},
"1728c71a1e5345abb514d43202ec35de": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"172a0eef71c74db78a621bb238683aef": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"172fcdc9f6eb48fab15b7de6b7025dc6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1734dbdf17b94c8289a84fc46e421cd0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"17379063000c433eb8acb736ab1895b0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_8b08a72a8a7c4e6b896cb6cabac3624b",
"style": "IPY_MODEL_6687c623ed3240bf820958c82d866ce4"
}
},
"174bed7dc0204a1a9e1c3704f064ad47": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Amplitude (nT)",
"layout": "IPY_MODEL_f566cd4054f94c68adfd48108bc9e374",
"step": null,
"style": "IPY_MODEL_b25a9c6d7bf44537aef712fb0213c6c6",
"value": 60000
}
},
"1751c25600ac435591a2190c75c19b76": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"175270cfeafa4548a201369e69d1c1c0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"17546d0d42474b708c654d07ee536846": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"176252a1a9e14a32baf4f15452c9163d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"177797cb21d84058bdd7cc8566d76dc7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"177feb4f982949f0a0935e68653cae64": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Values",
"index": null,
"layout": "IPY_MODEL_252405dc3e6d463bb8dcf1c33a3779ee",
"style": "IPY_MODEL_b0d19e729849443885754e431dfe9898"
}
},
"17903671173d474f9b30bbcb3ec5c118": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_beec7cf35f0149869d1ad98ae68293de",
"IPY_MODEL_042f271d7e6b4cfe9db438b84b593afc",
"IPY_MODEL_b65995f05a844974bee2444eaf27172e"
],
"layout": "IPY_MODEL_6946cec642c048439bb873a054b03991"
}
},
"179a36e30d71411bbdcbfb0781fee46c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"179b22125f1146f38aabf7ab71b06f51": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_2eb656711bf94d4cb033879adb2985b4",
"IPY_MODEL_1c8321b4ddf546a0bb161db744bfc520"
],
"layout": "IPY_MODEL_0fe2ed99627f4f7da1a5b5ddfa1774b4"
}
},
"179b6f993e094c5f8f2bd94eb9c7a275": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"179f131d49b545cc8e502adc676c3a08": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"179f6b536abd4c9fb6f0e0877507058f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_393678545b3745b9ac34c4417241d180",
"IPY_MODEL_82a036ec96ed4e44abe655a6abef90c0"
],
"layout": "IPY_MODEL_5f92066bced548fba7ac6a46dc232a90"
}
},
"17b9d94d6bca4db9967bf18db03ea986": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_cbcbec73aa494b38b8d12fd213ed71ef"
],
"layout": "IPY_MODEL_c055699b93934562bc34a70ab4d8aea9"
}
},
"17bf271b00b24672a0874ee292a787b8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"17c22f7d6f464b2180fff1e8918975e9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"17cc9a8804e44d978b0b5eb46096002d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"17cd9a28920744638a3a8f5ef85cf526": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"17cf52fcc64041ffab2a678163c40e51": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"17e1afb4ca61445bbdf6da96abedc995": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"17fadfc029ab4555bb8c74c466405667": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 .."
],
"index": null,
"layout": "IPY_MODEL_903ce2c52e3f4591816286592ff279ed",
"rows": 8,
"style": "IPY_MODEL_eb906e4b070c4a5dbeb506c1a89c4b02"
}
},
"17fc4ec5ee9a4a2d9abd42b1c7cef7d6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"18040c383277420798eba656a1ce8ed0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"180586af85484564a802be0dd3784141": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"18154ab54dbb4ff8969c112a2cdcb0e7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1826b9f97831454dbbff09b8355cae47": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1826bf59f1cd47599ccef9b2bb309124": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"183611eb72654b32aa59ce35afdc7e72": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"183c39347a9e41b0a909b1045977d2d1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_12e5d59a236e4b079c22830eb7ea497a",
"style": "IPY_MODEL_f7d41e1d7a784d7dbba2f64d3b2d01ae"
}
},
"1844bb348f634364ae02c7a78c537171": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_e4ec2deac8314b5d8dc94d6063aef45b",
"IPY_MODEL_083cf08027614326b771339cba8876cb",
"IPY_MODEL_83403e8140a44ffaabc356474c17b3f0"
],
"layout": "IPY_MODEL_ac25d3c0087947e4bc9e361d0de9d135"
}
},
"184b61516efc40c78ce41801bb11e732": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"184dca5face84c6f81abb9fc8605c229": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1850bd9f1e9b4462b560680077640b95": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Colorbar",
"disabled": false,
"layout": "IPY_MODEL_fb6cc02f203c4a57a5cda9d4b752537d",
"style": "IPY_MODEL_12e4946b1445401e977e549c27b71b38",
"value": false
}
},
"1852e471ac7c46d9a67f77bbdc98f9a8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"185418fecf3e4b99852201f7bb2d52e1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"185729d72a164651a37e78017e7165fd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "IntTextModel",
"state": {
"description": "Max CG Iterations",
"layout": "IPY_MODEL_e114fa2ec0ae4fffbb0bdf50ea845a82",
"step": 1,
"style": "IPY_MODEL_ca78c386c50547cf9cc07b4114bb3ef1",
"value": 30
}
},
"186753441e9d41058ef87e338f7a3e46": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"1870c2d4491f463d8ca51fc881e64a1a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1871433586c9496a8638ef210584b380": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"187734f02b9f4539b26bbc05a00d20ea": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_5c8c0bb7901f4b77a79f610563ec2ceb",
"IPY_MODEL_bbb959f4c30d4c889f9dc190d835313b",
"IPY_MODEL_0d470cca4b3940e6a38dfb0cc4971e48"
],
"layout": "IPY_MODEL_04529bc946bc4ae4b882443ae2db1b66"
}
},
"1885e7aa00364b168d1ab07faa5d1e60": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"188a8e9cf57c43608091727b17cf9062": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"18a0d6ff88444529af26f38794d16a1d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_24a21d2da1f642359f0051d7bd5dfe7d",
"style": "IPY_MODEL_2d8d7fe60e59456c950f0d45a318b9a8",
"value": "Workspace"
}
},
"18a1b41e3d1d42899822986b1e50150a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"18a5f8f4ee2f436186d79beeefd27c65": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_db116092fc1f4b92be09b45a6784582a",
"style": "IPY_MODEL_5bb34dc2f1e24029960396abf4600331"
}
},
"18a6ebc3b6a34edb86e106eea376456f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_2c94d1f4b5f540b890bd0431213a32f5",
"style": "IPY_MODEL_dca827d855c1453ba0ad2b876650bf06",
"value": "Workspace"
}
},
"18ad5d76068649b4b8783c7985bc8843": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"18c28828c61b4abfbfa1991d13b359bd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_891fcd1aa57b447c81af76cb5ddeb9a0",
"IPY_MODEL_ad17c61fbb794a648aa8244601bd265a",
"IPY_MODEL_2140c98e1ee84cdba243df408b1677d8"
],
"layout": "IPY_MODEL_158d2af82d92496cb2c7332db5e00071"
}
},
"18cd6d0dfa814fc09fd942834424125c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"18d25b572d2643a68130ff050d949faa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"18e6a1bdc94f4cc29dc3b812f8d2103f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"18f2b9d19be747c58e02742e2caa66ae": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"18f2d2eab21942f2b3bbb19622559132": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 Temp",
"📁 uijson",
"FlinFlon.geoh5",
"FlinFlon_dcip.geoh5",
"FlinFlon_dcip_v4.geoh5",
"FlinFlon_natural_sources.geoh5",
"FlinFlon_natural_sources_v4.geoh5",
"MtDore_TMI.geoh5"
],
"index": 3,
"layout": "IPY_MODEL_96f43e66c60b4714aba8acc35601b09c",
"rows": 8,
"style": "IPY_MODEL_0252227f69864868ada203157225cb65"
}
},
"18f2dc050dd8463fb4a0dd06e0633a60": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"18f8a8e6381b45ad87c11d0894d28dce": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"19017090b4f44d3c8d479a51a8d519f6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"1905ccafe3be40d0a00db8756e73e35f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"190c01b357be439eb82180cd72823a06": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"19163eeb75764a3ca4467ed63d9c2e7b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"191a1769aeb243c796cd72243c06dc2f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"191e34b650b24e3eb93d12b1df78893f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"193bdb3c4e0a419b805372d7bf841f0e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"196033581c3f4beb87f3ca77190b3263": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"19611ad0bb3943e5b34073067a47f86d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"196ac0971fff4ba1a34d47a23a98b1c1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_aa52a30f851944c5a8f4fbfdab2b1ee8",
"style": "IPY_MODEL_94196bbe37e04ec090e54a55e65f6829",
"value": "Save to:"
}
},
"196df46f932643b5998a2fbe969d908c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"1977d4ab2ad94c6199708f359c994a5f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"198b4b83d61c4023bd240278d50a4607": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"199e54c26d1e4a3c88333f7890a5a5e1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"199eda46c3b2430aaec5a2d6275c8eac": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_fd81b268f514466db9f2a3d55d5cd854",
"IPY_MODEL_628bfc98d8fa4e3aaf0e0459016ace53",
"IPY_MODEL_0edf3cca6c5c449dbbce4d0e212e08b7"
],
"layout": "IPY_MODEL_b70af40cc01e4fa287f207bf0c09cf37"
}
},
"19b047631d3144a59aa6bc9869242f8a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"19b80bf7859f42a1a35654e07e41694d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"19b82da26ba44c2e9cb3865f567817c6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"19c78c32b0cf4a4790dc182a56ce3c93": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"19da3388486047ecb29adcd62c6ee216": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"19e26fc6dbc34fa2bbb59b84d6cde843": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"19f056e73bcb4abdb6d7ba6fce0e1b52": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"19fa3901077344598de88e4b3fcd99a4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_9733d1410d3d4b7b8250293efba2c25d",
"IPY_MODEL_2208a15b14ab42dca3e355e6659bc32a",
"IPY_MODEL_ea2c55d9f4cb4fcb927b206e0b8367eb"
],
"layout": "IPY_MODEL_6946cec642c048439bb873a054b03991"
}
},
"19fbaca3eb834db1ba4f8cd6947d4e3f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"19fccddbcb0e4e8dbde7be64203ca36e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_037d3a6b934142548624d9deadbd2c5e",
"style": "IPY_MODEL_a35b12208f98480d9f19e95ccb4352bf",
"value": false
}
},
"1a0600f5655c44668e19fef5de94ee7c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Target misfit",
"layout": "IPY_MODEL_84ef11c9a4f4446bb7a3b5da4f715e47",
"step": null,
"style": "IPY_MODEL_871b966de41e48ebb3003a0db56a9dea",
"value": 1
}
},
"1a13bca08d6f4d26970bb547525a3217": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1a17c9f345684f5ebc0825b0ace85fdf": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1a2473678dfe45a1a14651a30b9f69e2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"1a280c0629be481889cd3761782a4b2d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_8c24b7630e4c4b638a6cd56889ec00c1",
"IPY_MODEL_85cb68349e274ae8b02ccf050c5f3774"
],
"layout": "IPY_MODEL_3d636eae582148fb99d4dddcae949a41"
}
},
"1a4a5271ca384011a754f72fa911a297": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"1a4eaa7693884343b4c315b246d110fe": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_a12774a99eca4b24985f43210713d2fd",
"IPY_MODEL_d3365943038842d987360221769bb0da"
],
"layout": "IPY_MODEL_1f9a74a328984f488a1131aa8b3b13ba"
}
},
"1a61556063964e5794e174d63773d781": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"1a660a7d767f434b9ba92c1f5a9eccdd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"1a7b4a8ed1d648d6a7ed5785c13b18a6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_8f219593161745658ec3ba881daa7ae8",
"IPY_MODEL_06d797b11dfe45f8bc6e6032ba6e840a"
],
"layout": "IPY_MODEL_0e1820d363624e86acf586fe1be2e411"
}
},
"1a942b1c0f904e4fa04d8fbe2e2fcd53": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_5b80b8c7e1ae48e89aed7edaa8bb8857",
"style": "IPY_MODEL_b8c52ef4e5524eeb8a4e427da3863f7a"
}
},
"1a9644ac95c0469ca1fa9cf454e97f4d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_3f9d87ccaa1c478a9532264bddf6dbc6",
"style": "IPY_MODEL_24c7fa677f93411fa58b9e6387983aeb",
"value": "Topography"
}
},
"1a96f6dd25644cd88a62ac4a35f2995c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_77eb9267d51b48ef8f71e902cc5fa4f7"
],
"layout": "IPY_MODEL_2331de0dca3a48aa9105271b56bde1ab"
}
},
"1a9a774a48eb4ba38593249faab16634": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"1a9d9b90e47d4799934c515ac172ff6e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"1a9edd5c74d14d798c73701182b89d66": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1aa18253a5dc43a4bcc6941ccd915518": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1aaf2a013fbb404da96aa37992bad271": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"1ac346df88e14b7288c407795c0c8353": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_c309fc1f6c8640d0a79c4784de69082d",
"style": "IPY_MODEL_f1f3af79e9a945018fd4be6fd731d2c7"
}
},
"1aca1b64ad29463b85bb5db64e9dce89": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_9e8daae1b9704a03bbdd627608d08d74",
"placeholder": "output filename",
"style": "IPY_MODEL_bd37d2e117a349d6a10901aa859ae99d"
}
},
"1ad7d2c9d67847e58de0e7ceabfd2312": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_0df3362d848e41718d208e14c34d2a0e",
"style": "IPY_MODEL_27c8b96c753d4432ac7f1c45cc14f0e7"
}
},
"1adb4e5fec1544b5b27617b17b3e0404": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_8bd83f2a4d1a409b8b579a4274870580"
],
"layout": "IPY_MODEL_09b83d5b1bd04377bc62273d0dea76eb"
}
},
"1adc0804993e4943b6e8247371b85dc1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_3ea1d7f50b2b4f4c90e6ac3ae5529878"
],
"layout": "IPY_MODEL_051126720a034e2dbcf82fdd6790fdff"
}
},
"1ade39a01982413d97920958c15c1e5a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"1ae66c5b653c4287a8840fdc832469a0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_659da161bef9483ea448bc73c1977bc7",
"IPY_MODEL_9b8a4cfc42e74fcf99f03da5152d21ca"
],
"layout": "IPY_MODEL_425d18afe550461390d3e18dcad14d4b"
}
},
"1aee21169f5a4915a7c161a666de17f0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1af1ca1dd6e94b63ba45fb4600d63d39": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"align_items": "center"
}
},
"1af2bd96f3a04460afec32c383e4e431": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 0,
"layout": "IPY_MODEL_7670d9ade4fd4bf7aac056c62c77f12a",
"style": "IPY_MODEL_616264ab382d4351b8f27850ce5551ee"
}
},
"1af766e634f043d99008608cd192b646": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"1b00d1c056dd4528b89582dd9d5d52d9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"1b09a3925a3d498da57a2c2588835f08": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1b0a1cf2906b4c6cb1c38e9e3e01d2a4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1b0c51ed41af40a29146c52cdaecc4e5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1b200d284b574699aaa08252fb67a77d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1b2caca1aca541caae1a68bb70217de0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1b32c7ffc37e49c18c0edacd09e9f392": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_4506bcfc92a94baa9e20976a2c3d3cae",
"style": "IPY_MODEL_3d6ed929523e445e918c5ef2f010721e"
}
},
"1b34672b9d2f4214b9bb81b1f3a4c47f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1b3dba4bf6574a48bd5d831fee5b9057": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1b3dbcfb75474096bb42924a6116fa14": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1b48e8d97540408987a8a28947d9b465": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"1b4fd6510e3243fd966ff68bf40cc1df": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_b15ede626216444ab310508f0f68424e",
"style": "IPY_MODEL_841c72c0b93544c0b17fec93ac4b42f1",
"value": "Lp-norms"
}
},
"1b54cb63aec04a628c867cd0eefb35bb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"1b5a56760c644d97879bb5326b28f9dc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1b5b37f65bff4048baae6465119812d2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_9903c29e0c714a52922c8b867668b313",
"style": "IPY_MODEL_d08ef3db29a64975be8fd009e0c5168b",
"value": "Lower Bounds"
}
},
"1b5dc4d6317e4fcd80046934876f92b0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_30e6741877e640c3b6f4611d544ac987",
"IPY_MODEL_1a4eaa7693884343b4c315b246d110fe",
"IPY_MODEL_a9cd892fb4284f95a37a65718e28925b"
],
"layout": "IPY_MODEL_ffd578dfce8f472c953ed6bac0818b26"
}
},
"1b6dd728865d4e16835d61374319320b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"Model",
"Constant",
"None"
],
"index": 2,
"layout": "IPY_MODEL_f5ec2da933064dca89fcaf3953ba3fff",
"style": "IPY_MODEL_326e9e5f09144776b717fe68a2d852b1"
}
},
"1b7113f6ac3e43ce897bc78d38645ef3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_df70308072ad41e4b75e3e44d519ab0f",
"style": "IPY_MODEL_6e0917370fbe4c98b47b703324ef8fb9"
}
},
"1b764c2e4a22409e9ef5f9083ce4fc4f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1b81a8885f6b42d898ab360fe21b59f1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"1b88bd034d204380aacaa7f889b459b8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"1b8a85d27de24aa99bf58790dc51146a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "IntTextModel",
"state": {
"description": "Max beta Iterations",
"layout": "IPY_MODEL_5dc80cb3c6e54c508f138e2460f2a0c7",
"step": 1,
"style": "IPY_MODEL_a27268be459e4083a0e05f6c249a0748",
"value": 25
}
},
"1b9c971951cd44eba0ddb7c732456316": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1b9e1e35590b46ccab61fc24062508c4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1b9ef0bcd711417080a51ac15ea9b9a3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_c7b16192c18f48e39e1fbf4c86aba79e",
"style": "IPY_MODEL_d6d393662486486bad2b1d11781d5466",
"value": "Workspace"
}
},
"1ba1aa58ab9c437385a6f61a1afb0a00": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1bac95a5c2a64d7bbaf8b077c538f561": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"1bc06833c12d460aabc37b3575dce912": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_bcc240478f5b485ab5e30e7148c58d95",
"style": "IPY_MODEL_5e9412fb55cf4a02828633260e77c71e"
}
},
"1bcb06e346684a29b6e6793828bf38cf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1bcc8e9899a6459bb2de4ae5dfa682f6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1bcd0a0d4057407c8ff4a333fc971fee": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_bca4415ff5674aa0a7b4811412f384c4",
"placeholder": "",
"style": "IPY_MODEL_f8939da1b95f45e5afebb56c0c61cef0",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"1bce8e6026e34c7ba84e59dcec1e0a33": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1bd45a03481b432999ad10ef6b1e3424": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_f4bdadb3a19340d7852d0b64095f6309"
],
"layout": "IPY_MODEL_d881d454a8a14113b94150e6d644e020"
}
},
"1bdbc3c626834f85aa56558f6813844f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1be57f58bd724b899342ff8915c89a91": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"layout": "IPY_MODEL_2e8f04b82a7643cd9b7bc06844ae5a00",
"step": null,
"style": "IPY_MODEL_41296c387dcf4f54b0a7edddc5786166",
"value": 2
}
},
"1bf59df635cb47409426e1b05634452e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"1bfeec929a4c46dfb8e9315e0ddf2bfb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"1bff364dc1df448bab912c8be492462b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Values",
"index": null,
"layout": "IPY_MODEL_aaf85fcedf5f4a3a8c9c125b7772c032",
"style": "IPY_MODEL_4b459532c99a44e3812b1bccc4de3f44"
}
},
"1c0eb024d2c343a5a8036daaacc74156": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1c11d3b377584b16ba8955cce1c5806b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1c12b5412561497c87892271b9db126a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1c137c3f23124ceba7d8f15b0c2cd1e3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"visibility": "hidden"
}
},
"1c139e43c3cd44429494601653df1a4b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"1c1efeaecea2480bb72858600b1c6717": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1c375389aedb4e97a88ab01c2de8a239": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"1c39541a67a54f30823b0829aa95c573": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"1c40afc035a14d68a0ef9d7c82e4e027": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_74992ff8e38a45eb97d5302713111be7",
"style": "IPY_MODEL_dc75af810b324be1ad7b59d4c86651ff",
"value": "Core cell size (u, v, z)"
}
},
"1c45b089f7d0457a996f48d72d1330d9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_b8cec5caaa21450cb595c0ad840486e0",
"style": "IPY_MODEL_73b53171916c42e3b52c08cd488ebbc9",
"value": "Refinement Layers"
}
},
"1c532b989b8f4e629d61427f0bf226be": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1c5cb80f622147c0a300fcaf7bd1b2be": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"1c5e31827cc24acf835c05f388fb0006": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"1c68aa03e25a4d8fb0cce38e43c41541": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1c6ef155a3774d4dab5237ed3f8495b9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"align_items": "center"
}
},
"1c70911b609d49a59137aca7cfc34118": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1c77ffabc8a146f88e76ec228591dc70": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"1c8321b4ddf546a0bb161db744bfc520": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_8c9c005920e947d98cb5c670ddcd3787",
"IPY_MODEL_c4b992dd8630426aa4c5236495093ae3",
"IPY_MODEL_716bbbf72164478b9dfddbbdc7c42adb"
],
"layout": "IPY_MODEL_811440521af14a3987148f5cff84d2d2"
}
},
"1c870a94ec8c49038641e64707339dc2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1c8f2a0201354d6f88ecef59019df77d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1c9ab90e1c7e4a7cbbf9119685f1bbec": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"visibility": "hidden"
}
},
"1ca18da6649940389cfafc1e8a8a6838": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_3bd01018c557432bbadb4ba9a6e87d94",
"IPY_MODEL_df9b2e70e3d2481db3e79cdf322e3ec6"
],
"layout": "IPY_MODEL_eeb594d725414ef992ad57a4b6780dc5"
}
},
"1ca728e276e0419cb2f905e0a808257a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1cab13f61df344db86090d17ff49c7b8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"1cace8bc98e24ddf8f18b94d0cd96213": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1cafde087fbd4501b835ed7be4ee3b29": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1cb340ecada84a81a66714d1f1285391": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1cbfa7e8760d43568aa597d04b34499b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1cc30e5afac749108a00e85b1a36a359": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_4893e8a32a654dd5bba490ca362ff142",
"style": "IPY_MODEL_7275f66150c14eba8be4f5d6b9b8c896"
}
},
"1cc8742fc8cf4a05a682b6d2db4f52e4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_87bb3b790fe04c86b93f03e00bdd18bf",
"style": "IPY_MODEL_86c6921a38a5491f8bd6ecdd9c7b46aa",
"value": false
}
},
"1ccfd49821a347acbe130086a35c4bd5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1cd9cd070f704ffdaf9cc076a76f30d9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1cf472ea98b242baac666bcd69e33b65": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1d042d72e9114d7681018bd5dfea6de1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"1d09137275b14adbbe08879981589d67": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1d249860104e46ffa8baeb9a0ac7d3ba": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1d27f12bdcac4b15b283327cf5462547": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1d2a53f5b5684a9f9cdfcf8b123e3d6d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_b0d63a8b76c849009042be1e0b6e5b1b",
"style": "IPY_MODEL_ad45d5538aaa494188a4212aff58f34d"
}
},
"1d2bbbac5d0245e1a0c9ed7ed2a17be5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1d39ca1355bd4e9cb0436a3fc1cb00c3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"1d3dfb15fef74f06ac7c4108272c4b39": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1d4329ef10f0494d9672c8cc9a54a12d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1d450f21666c48e49184ac441fff4aef": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1d4fadd6b1a14d099a8bfdbe82ae7f07": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1d51a59960ae429eaa8195be132b293b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1d55e243433e419bbb6c2fecada11dc7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_cb23cdb101264f1c9e131ee88c7f5969",
"IPY_MODEL_4732cec64e1447c28ea614b457714ef9",
"IPY_MODEL_080e56469b734ad3b5dadbf3d5a618e9"
],
"layout": "IPY_MODEL_2ded96b474f0462290b47dd42bc9c773"
}
},
"1d56e5308e864c5eaf84cb347f9c1052": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_612ce0b9e0d64323beed7aecf8a6619f",
"IPY_MODEL_1dceb3187d044cf195444290edfff346"
],
"layout": "IPY_MODEL_34af795d5a464b8f8229194c88c1c620"
}
},
"1d6c7275bfe6429b94a1a745cf5925dc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_f8ea9726a3e347f49318e70721f11e45",
"style": "IPY_MODEL_2c9ab1dafa9143d1ae387bbd6b0c001f"
}
},
"1d701a3187574f6d9b14b156df48f34f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"1d75178d28304748bfd88f9863e27f55": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_960c87406c5e4eeeaa74071ce3934bd3",
"style": "IPY_MODEL_2f2340820d444eb9b39085c0ec450cca"
}
},
"1d768a8885944c048cd732ac63363145": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1d7be73de3cf4c7c8385cd4cf3495bf7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1d8cc6c331c148938d5fa015f0c48c80": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1d8ef5c2f6344c9ebea6163cd4acd361": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1d8fd25b084c464db82ae190ab036db7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_fc48d2a385e141f99a4f7b5083882529",
"placeholder": "output filename",
"style": "IPY_MODEL_893fa29c99ac4196a8f24cb62e0e7352",
"value": "FlinFlon.geoh5"
}
},
"1d954e10e0c24db6945d2710a57b0a65": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_e7272625e9594bab93c3b6935474afbd",
"style": "IPY_MODEL_52bb81a43e3945c1999ea613c3b30856"
}
},
"1d9635454b2542528d5a46ce7bcee65d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_e589b5ccbb8d48b38e63ece7d519f220",
"style": "IPY_MODEL_61590203844947d3bd258bf6a9961356",
"value": "Uncertainties"
}
},
"1da3f11073974dd4835cd210f6827f1a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"1dab4f518eeb4f5cb0f7b450943ab23b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"1daba7e319be451794845779384b4c19": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1dad2d96279e46728241f90efa2e871c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_40b14cf5761a484f8b132f2de98e9a2d",
"IPY_MODEL_92d1395d246e4de49921ea2876fd20ba"
],
"layout": "IPY_MODEL_b299279f8be64e46acb8aa50878cecec"
}
},
"1dbad2e4612644198b6faae02996dc17": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1dc06e7def0f4adabeb187f3eafaa4c9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1dc10b92ad494a4eb686f7369be010d9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1dc56e7f7cb641648de8ce3388010638": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"1dcc6040edce4d7681e318054561211e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1dceb3187d044cf195444290edfff346": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_cf8b429d8df340ce8c3b99e41f359f96",
"IPY_MODEL_f9a9d2b8cc454a61b2c7507c28bc826c"
],
"layout": "IPY_MODEL_5d5112c6d2e249418abfbc290b55c562"
}
},
"1dd4ae34e8884b4b98bcdf4c5872b5ad": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"1de6183924214fd0b1bdf2e54a274f33": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_65e4cbfc3f34482192050ac258d6a836",
"style": "IPY_MODEL_77357158003644cdbdc07e2d695b7bb5"
}
},
"1de6a9cda5c641df9262884ed1571719": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_7dd6ab7c4bf84c50b4fa24d66601ccfe",
"style": "IPY_MODEL_ac9180c50025460c889be59f98b26f9c"
}
},
"1e02d15004d943189885e09057d10e6e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1e0bf2726d5b42c8868b84096d75a712": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1e2127a70d294579a3f9cc6bbc0723f3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1e348b761b6548b9b1aa4c55b7ca2a74": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"1e3a036e6325488e93f30d2fb2f71e49": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1e42175f692946f7b835c180cf123041": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1e464cc11b324755856d88799798e8c1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_75d1228ebc9b4d64bb8ab8dcd7a4450a",
"step": null,
"style": "IPY_MODEL_cf06cc76f88141439ce863c2b368f051",
"value": 1
}
},
"1e4c9164bca34a86bb9824c876084580": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1e596c6d2bc3479db5ed784d378e8e22": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_7fb35a5bc53e4de1b6b928dcd0f1e20c",
"style": "IPY_MODEL_991a5d3ebd1144a2b054b1a9cb3f708a"
}
},
"1e5b071fa31f47218101e16a8bbab30a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1e5d1fce99794938a0b61eb52fbc197e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"1e60e7668ea043a295558c4bc5cef9dc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_e240cbe28f724966997747e651603030",
"style": "IPY_MODEL_6b432bea8d9f4a7c91eec5c1828d9c7b",
"value": "Save to:"
}
},
"1e979b9790b24f64a87f8d0a892b6665": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_3156aa576cf74a60a64bb1c31e6a257d",
"IPY_MODEL_c46506bf7f51491aab401e9904e6394d",
"IPY_MODEL_7c690a3db1f344289d1e9693ea9dd0fd",
"IPY_MODEL_3c8f07a23184492385d027984ccefb9a",
"IPY_MODEL_92580d81cee3405bb26a1bdef2788ee5"
],
"layout": "IPY_MODEL_ccc5f01d491145eabc9f9cfc2e633d55"
}
},
"1e9e06a5a769403ea5bebe7e19e0e8cd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"1ea72bc962f545eda699543130c84363": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_7cbdca572de34d5ba7d18738e300a6db",
"IPY_MODEL_a1a1edcaada74856b7a0a09f2828af00",
"IPY_MODEL_af37412282f1420892bde15b14016cb6"
],
"layout": "IPY_MODEL_7d01ddb62f5d42d396bbab65fd0961d1"
}
},
"1eaa63ab69c4486eac682fb9bdef6d1b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_93180cc7cfc84ed4ba00ab3494657533",
"style": "IPY_MODEL_799caf53aa434837814eded5df7f0ba7",
"value": "Reference Inclination"
}
},
"1eb6156da5264ee4b3d0dc199e18a9f4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1ec613f1844c4fc784df0241d338b6a9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_54700d78fb9447bd917188b5ac224aac",
"style": "IPY_MODEL_e12defbec8b54a38813aa322ee5d01b1",
"value": "Workspace"
}
},
"1ecb552a4f4146999ba855606dca3073": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1ed1336f33e14319ae4e0c008dd71a53": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1ed31683c74d4514aa1a1d860f1975c6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_10d324e746854767a70069ed2ae3d509",
"style": "IPY_MODEL_94f36fbc7c004b3b8404e4403be68ca1"
}
},
"1ed604b4d7b6471f9f0f9a6d993a0715": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1eda5449a19943b881979d0f398b633d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1edb59d88efe47f3b120843c75b3a8ef": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"1edc7216a84f4076991046b7a29cbab3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_a627c464cb3640638e350bed2eddc11a",
"IPY_MODEL_ef7612a16b10471eab0990d5995085b1"
],
"layout": "IPY_MODEL_65748db0a01d48e4b8f35b1f4ec84220"
}
},
"1ee4024767fa402e82cbe237ee24449b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_36077461081d47288d8c56c4cc1bff55",
"IPY_MODEL_efb44239fa3f46fa9f5581c2d50152fb"
],
"layout": "IPY_MODEL_e6ae913623c74fdeaed6e49a2af28a60"
}
},
"1ee631e7788545f092dcca198e1b7cf3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"1ef0896659f540888ffda32d20b5b50e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1ef23875f4704e059edb6fbaf91f168e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Values",
"index": null,
"layout": "IPY_MODEL_0a2bcdfbe3ee4cee9229905633c23f5a",
"style": "IPY_MODEL_90bc191977fe4e6fa9f0fe890ddd31d7"
}
},
"1ef30c258ac341a689063104000005b5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_d9d8554aff3e472093974bdda2abffed",
"style": "IPY_MODEL_3c6a444c53c240f79e1fb215dc74d66b",
"value": false
}
},
"1efdea5e5dfe4e2fb2b5638c5758b5d8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_ce5da5a8cf6946c7aef965b9282fa65d",
"placeholder": "output filename",
"style": "IPY_MODEL_98f4437459ea48a890bf1adcc7bd5f01"
}
},
"1f019f86be4e42f6aa812d84ed598d53": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_0bbef640976e48c5a586590708272485",
"style": "IPY_MODEL_13b73437095d4ef7a8cf498cee440dd0",
"value": "Workspace"
}
},
"1f05a711b30d445bb1f2b928e2889102": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_e7572e9953a2412cbbfcd26ce6e9db84",
"placeholder": "",
"style": "IPY_MODEL_e0394c9102af4219b1a22719ba4e156a",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"1f082c27378543388cc7403fa011eef3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1f0b0863c9604d2e9a6f9384ea0c3cea": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1f13da8c532b4ea6953bfdfff80a15a7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_2126a072bcf94396816993a68c46761f",
"IPY_MODEL_1a0600f5655c44668e19fef5de94ee7c",
"IPY_MODEL_e07cb601d8684cd08a21b3f86d540a94",
"IPY_MODEL_9934dccf7a6b4d82a36dcc61f4cca023",
"IPY_MODEL_8f4c76012f9d4e19ba92a67c7e73faf4",
"IPY_MODEL_4040e69f7ae44f8891314070964c6a0b",
"IPY_MODEL_5597d8fb78564b64975a65ff9d2bb5f3"
],
"layout": "IPY_MODEL_e299dccbc9dc4b1ab1a8071d4a1ea4a5"
}
},
"1f22a491eeb44006b0848a1863ebe09f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1f27c16fb2db46a29bd85d504ccd0a45": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1f28045613a441f8b7d54e793fc9ec49": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1f2a7c48e9e5469685f4d6461ec49add": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_b3a253055ea54fe683f1518cc96f8aef",
"IPY_MODEL_2a34b30ce2e14c1d9ff8dfce43bcff9c",
"IPY_MODEL_2add7e5a9a554bce830c88298e76dc5b",
"IPY_MODEL_c2a0d24f78fe421f80cd05e13d2f12f9"
],
"layout": "IPY_MODEL_446052f1b12e49babebbca49255a622b"
}
},
"1f2c2553bf4e426498062c199355f373": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_362493f8dbb8433595fc32e899dff1de",
"style": "IPY_MODEL_94c8e33360934c0687d41f7d85004fdc"
}
},
"1f2c7f7a28e74739b45d82d902b820f8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1f30fd70535c457c89dcfae323bba6a7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"1f3a772a0b644441bb0541b9fc1ff1e1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1f41f52efb2d40c88d0ffecc24d250f7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1f42e98dfe26497f9c83b8544d709929": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_926a07d96176401aa9ab0262ac6c0d77",
"IPY_MODEL_13360b0c879143608607b5e851108eeb",
"IPY_MODEL_9399c25bb068487c8dea6d4cb5041b26"
],
"layout": "IPY_MODEL_2ded96b474f0462290b47dd42bc9c773"
}
},
"1f50e05750d8413796b5ae353be07886": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"1f512b18f6a44f61a2fdc03009f1c99e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_bcca7effbe2746e1b75442e7f12473ff",
"IPY_MODEL_7f3c1ccaea9d4e02a6b8192c23c02d9a"
],
"layout": "IPY_MODEL_40c5dab562f3428491b39bce4d296764"
}
},
"1f51304fd6314c09b0b6666ccc858a1e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_eb123ae081804e65947601f5f9c458f9",
"IPY_MODEL_83e9dc12b3344750a69ce14dffd69760",
"IPY_MODEL_2ddfa37e48fb4ddfa914aa46afb796c4",
"IPY_MODEL_c0c922c73953481e88d0fae5d5ee4ed0"
],
"layout": "IPY_MODEL_87c3af6cb9dc4d68849e0dc41b82066a"
}
},
"1f51ade9c95a481fa06c781061467fc6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 SimPEG_PFInversion",
"📁 Temp"
],
"index": null,
"layout": "IPY_MODEL_5a9b713f5f1f44039211c3ca6ae4c5fd",
"rows": 8,
"style": "IPY_MODEL_06e12727542147e7855785f2fe9b0610"
}
},
"1f5479ac8e004d03818f370d7a2b46d7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1f580d97511348f38c92396e99bdd38c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1f64b06936fa499a8a2d2ebca6f08443": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1f9a74a328984f488a1131aa8b3b13ba": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1f9b2978c507463fa8ceb244c0cc233d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_25d1f8d2e55d4c22b54b38237946c2fd",
"style": "IPY_MODEL_e4b5e06a08a44316b04904954412b771",
"value": false
}
},
"1fa11e122d834cb0a714e4324d65c38b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_0cf263b646ac4d91bff10e8e89041d9c",
"IPY_MODEL_ae1952fec2294a30ab0a666163f9898f"
],
"layout": "IPY_MODEL_914e01de524c4b50ade3f79e78eba18d"
}
},
"1fa6f6692eb84fd9a0b6adbb19fbfc6d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1fafc176179c45ca9c20b49f864ad2fa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"1fb0ea2245ee4aa2847cd56c213d9487": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1fbefc91d0f3484495c5759f117149fc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_d9694364bcf44db194008af5959a9816",
"placeholder": "",
"style": "IPY_MODEL_038db524e0234870a278b12acd9ddf52",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"1fcb85b5c57c40ceab8894d7e9f244fc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1fd18450be294ee0aa759c4bdc35a2e0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"1fd31f656448425f949ee7828977d948": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_fa9f3b9854614f788ff7e427185929f1",
"style": "IPY_MODEL_5f4c8167306d4066b91345f4a0b273fd",
"tooltip": "Run computation"
}
},
"1fd6ae7da6674f94873f003074e37065": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"--- Channels ---",
"Airborne_Bxx",
"Airborne_Bxy",
"Airborne_Bxz",
"Airborne_Byy",
"Airborne_Byz",
"Airborne_Bzz",
"Airborne_Guv",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Radar (Optional):",
"index": 0,
"layout": "IPY_MODEL_169902b40fdc461098886575eef42310",
"style": "IPY_MODEL_aa8da0241ff840a7a01eb6019839a34a"
}
},
"1fe042cc587b41f9be56abd48cf5aaf3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1fe0a63fcfcb4975a05e5e74afa2c61f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"2004d7ad42914e4b8f761a3508104226": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"201731583fa643f7976ee7c353f9b096": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"201d9ffc85e54d459a45c1efb2db1dbc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_a5258a5a35d34287bebf540eb2418f06",
"style": "IPY_MODEL_7037649efdfa4689807e78d608161cfc"
}
},
"2020a931c3ea444789e908d59eb9560b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"2027e99fd60041118b35f391a3cf1a75": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"202b3b731dbe405d9d5ab0525dbce95a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"202fa2931b3343e79b3f6453d77b998f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_dc76e5316c4a4ffd90b422cb22375776",
"style": "IPY_MODEL_44cfe04de77c4becb8dbd192842cd39f",
"value": "Sensor Location"
}
},
"203b9530373d4183988fedeaf9ad79fd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"203f85621bdd4994a8eb938c9744a6b8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"204777be27294ad79d54163731738b07": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"20478c72576c40679a0a20bcd5ccb616": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"2053e452a808442da49d1b4cdc55f07b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"20599bdb842c4c23a770a72868e25898": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_2cca6310f5ff4deeb848ce3d7256eac0",
"style": "IPY_MODEL_a3f7c8469f1944618f3ddf8613b7962d"
}
},
"20635ae11ad7425b8a134340058f0536": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"20718f92ba9b458e9d81fc5b991f1ee1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"2076dd4dc015463094e7331d745e8080": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_27e2eb13a48c4068bb643237c445e417",
"IPY_MODEL_ddb7eaa44fed43ba963fe279a0fdf11b",
"IPY_MODEL_a6ec087e7eee44679e3faeb695226369"
],
"layout": "IPY_MODEL_7ba7a18b39b744c69d79822e003f5b03"
}
},
"207a7661656c4419829d7406dd304405": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2081d309798d45c790d1a1bde2b10287": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"208d540c0b8a458f8eba5d23b46e76b8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_ffa031df428244c6b7820d4c74eb877b"
],
"layout": "IPY_MODEL_a100ac0da9324d7183e02a5027b4d573"
}
},
"2091733191974aa18b96318c346a7169": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2091fc3c6738499f951397581e64a57c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2095650dbb174234b7714c8038ffa4c2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"209f9fc73dc84296a07ce5aecdf23df6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"20aa074a0e604bf397d0329f6e709e52": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_9297fc30ab75421bbf4dc7ce05e46f1b",
"style": "IPY_MODEL_eff42ee696a14c179b0e8ced58e3e84e",
"value": false
}
},
"20b05ad18fc949969b38f48c99a82332": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_f3a06ffec7d344c19ab5296a848e291d",
"style": "IPY_MODEL_e873d793cfb143e799278d6f5d28f003",
"value": "Save to:"
}
},
"20bbfc1e11df4494952090198d35dc2e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"20c4ea6cb4bf4e239c15cccc71fed072": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"layout": "IPY_MODEL_dcf8ad576f1c4408851e25a49c025dda",
"step": null,
"style": "IPY_MODEL_63e47fb4231b42e89be2d6009d2a3be8",
"value": 2
}
},
"20d430499ce0403f9a3c32b933cc1834": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"20d83cd531d44ad89d3febb4cbd70bae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_efb599f3491f4f3fa16eeeff1af3c93e",
"IPY_MODEL_333384d7b61c423d807950bcf9f943a9"
],
"layout": "IPY_MODEL_6ae2319a2e70415dbb514c51246ac2c5"
}
},
"20de4ecd1aea4d269dd9d9f5889d5eb0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"20e52552435e4b7a8f36f86d760232a7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"20f38092e8f54426a00f911ff245f4bf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"None",
"Object",
"Relative to Sensor",
"Constant"
],
"description": "Define by:",
"index": 1,
"layout": "IPY_MODEL_d6d49ff13afb4253b68eb3dde19c00ab",
"style": "IPY_MODEL_da15f3c1ce9e4d4881fe3ec6b8f7b568"
}
},
"20f7b32963d848c483046bee4c0f6393": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_dd3f909f817b4d8e8a39facb65647e21",
"style": "IPY_MODEL_3a3318cac64c46f3988d1c8c2b3628ea"
}
},
"20fa4af2c4b143ae8106065531bfeaab": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"20fb2b2a0e7c466f8600c1ef0ba797fb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_55bb7252853e40ad9e6c98ec1853b0e9",
"IPY_MODEL_3bfd68ba6b13452cbf32f15ca1e380ee"
],
"layout": "IPY_MODEL_b1915f882e0f481e9479d3fbdd234024"
}
},
"210d4475e25841b8bb73a5a170bac48e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"2117c62ac7e94dbf94398f8f706b5c44": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2117f4042a664881b4c3e1e44d03270c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"211a346517a24c369cb4b591f6e92432": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2126a072bcf94396816993a68c46761f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "IntTextModel",
"state": {
"description": "Max beta Iterations",
"layout": "IPY_MODEL_c02b75f40d5f45c4bf5d724d40aaf178",
"step": 1,
"style": "IPY_MODEL_9e8edaafa4d8463bbde99fc97d031a1c",
"value": 25
}
},
"2140c98e1ee84cdba243df408b1677d8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 SimPEG_PFInversion"
],
"index": null,
"layout": "IPY_MODEL_2977ea4c6e7f4d5bbb30194fea3a6906",
"rows": 8,
"style": "IPY_MODEL_aebfe4493aac4a1ea5488932def20854"
}
},
"2143eae56e2641dbbfd65eb4c31cb725": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"2145406d5c324c2194e7a52c334e4b11": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"2154873dcbeb49f1aed503c0ce90ddd0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"21601ac834a8492e8ca2896a8e0b3863": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"216218762409467cb609e43aeb3751e7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2164972ad1aa41a6887fbf7097d8dac8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "SI",
"layout": "IPY_MODEL_c7cf51ac53d94602acc2c6d9187379b5",
"step": null,
"style": "IPY_MODEL_114e36ea3efe40348e869c49884f8d5f",
"value": 0.0001
}
},
"21679e56fa164e5e81226d74e59ab0ed": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"2168a98c91b04bda8740f4b33f5518c7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_118c5ceab5a64ab6b3ea35f26d8b7698",
"IPY_MODEL_626c1878706343d594baed5e460b2df6",
"IPY_MODEL_5952ca8f7bf84568a7672e56aff1a113"
],
"layout": "IPY_MODEL_1c6ef155a3774d4dab5237ed3f8495b9"
}
},
"2169fcff878c42b6bfccb31ed70a9214": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_39e7c12cb8ad4ccf9a9b8e68ee0448f9",
"style": "IPY_MODEL_1628cc9e04b640b2aefe26c407e93d53"
}
},
"216ccce4f4544e93b6426cc35c9ec700": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"G:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"D:\\"
],
"index": 0,
"layout": "IPY_MODEL_7dc667fac7704e6182e458ee779af5fe",
"style": "IPY_MODEL_9708c115757b40ec90f4618a2edc5c7c"
}
},
"2171289ccbf0409e9758c36c044bf8a2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"2175f57be6254696b51d060a65b77af5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"21842db7b7ae4c8eb6c1f50a7e81442a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"218aee5e22ff4364886b80955f1b1503": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"218ec796ec924d80ae80ee3b45a85b88": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"218ee5ee92b04d1080ff2ba5df14bda9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"21912c05977f4f9fa8026360ffc954b0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"layout": "IPY_MODEL_6310c10407ec4bc2b6bc8de2d1b5d2aa",
"step": null,
"style": "IPY_MODEL_0207059a86d241d49f98392246d2e634",
"value": 25
}
},
"21bf3e59f7b841ab9024029f1cb0688d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"21c1fb8a79784afd83bd607bf45b7656": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Inclination (d.dd)",
"layout": "IPY_MODEL_c2ffe80aecda488db902a2f171f91480",
"step": null,
"style": "IPY_MODEL_f45e067910d746cebe1dca13eb62440b",
"value": 79
}
},
"21c738ab1df84767b00c4d8a5adf2752": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"21c7abacf5ff40fc840860d10837cd8d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"21cb29f110e548bdaac81dd3b6d032b3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"21d0bc1cf55c46e3aaf9ec0cc8c6916d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_046f83f007504888a85144fe25a6d072",
"placeholder": "",
"style": "IPY_MODEL_2e241b1cc5184a6e88c3f2aeab5d9b1c",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"21d3ced4454941978f8e5f62d5bb9f0a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"visibility": "hidden"
}
},
"21ec60439b434cc88753ffc3535f57c5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"21fac90712074a7c8723eb5e6aff0109": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"21ffce96396545399f32953e51357ce4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_364def651b7c43a98b80178de0d03286",
"style": "IPY_MODEL_1cace8bc98e24ddf8f18b94d0cd96213"
}
},
"220718202e9c49258aef479f95c09b89": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_1b32c7ffc37e49c18c0edacd09e9f392",
"IPY_MODEL_9226d2a8c33b4bc49f3fa734626fdeb7",
"IPY_MODEL_000ae017aac44bdd9b685c4e98b8978e"
],
"layout": "IPY_MODEL_90e41b584d51442185710495067adb9b"
}
},
"2208a15b14ab42dca3e355e6659bc32a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_2a04ecce9edb412ab550eb69b491057a",
"IPY_MODEL_e4c8fdd93c974fe0a0f12cbc24875d2a",
"IPY_MODEL_972df282463a479a9276d71577906d5d"
],
"layout": "IPY_MODEL_b931d230d4904d139904b9b41b885e42"
}
},
"22196cc7dee54c399bce4833dc006ba6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_7798c388ca224618beddaf684d151614",
"placeholder": "",
"style": "IPY_MODEL_cb73a844380748bd9cdd1837652c6187",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"2225fc263c6a4d82a010b52253c730f0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"222ff4045cef459a94f6095f1a9b2e7a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2235f9ec560a4600becd3c746ccd02bb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"223f442898534ddf8cd4f1baba6d6597": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"224695a182804638a3d0d7b2dd03f896": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"224b7285574440839e19f0095f8fea13": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2257235934084ce686148475a50cbd44": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"22685728d3994ae1b9b9be0de1529533": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"226ef355206d4cd79b34fa8cb679b30b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_50012141afde4c33b47fbf8b4117212c",
"style": "IPY_MODEL_eeb393ce7f1b4912b56151f14e5561e4",
"value": "Workspace"
}
},
"22753e23ff754145ac23866661829d8d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_e0a823d792254b428df583487c03810c",
"IPY_MODEL_a0ef0355fa4549b0bf7a862607fa9589"
],
"layout": "IPY_MODEL_dfb8778626aa42a9af84217d6d6dbdb4"
}
},
"22764ff0c82640838c1f46203ea98342": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"227793c71ae24127a2cfce4baab23e3d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"227a465794ae4575b750fa6d8acee29a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"2283edd1b86f42c2946de80cff8ba95e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_0948f5f09fb248f5befe761e50ec5a7c",
"IPY_MODEL_06468ded15e940039fc82ad80a599997",
"IPY_MODEL_d58fdbe72bb84147a5708cdd66977d3c"
],
"layout": "IPY_MODEL_162b240498d34405a4f7d336f80eb8b2"
}
},
"228cfb2e1fd74feca48e6d9a4d68a98a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_8abb1714f2a945c687ffc942cc02f546",
"style": "IPY_MODEL_9cc2995d93974348ac397ea4fb8e6197",
"value": "Uncertainties"
}
},
"228ee294ad524e368349da113a6b715d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"22921659a3a3424a895bcab77a881c06": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_c411310172eb4601880fc556cfaf1a64"
],
"layout": "IPY_MODEL_8776831bfab348178908651028409570"
}
},
"2296baa83d5940f1bc042e119b6846c2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"229b6cfc68ac4c2a9820469f9527db32": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"22a705df2ac8459dace22d29b61c6aef": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"22aaa2409bb04d8890cd0d4591a300df": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"22ac67ffe5464f399036910384d66685": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"22ad37d01d504987ba5ae6e79be8823f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_f04c314942294c8a97b69da5ef3919df"
],
"layout": "IPY_MODEL_2db4b22d1d61405ca6bf00cdaa15e03b"
}
},
"22af25102c4b48e0ad02abe2700b6c3e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_b998b826e0534136aa4333e614555c0a",
"style": "IPY_MODEL_8af7325cd2cd4a4ca62cf73535551420",
"value": "Reference Inclination"
}
},
"22af3df03a2c4847bfb8c11feedf2e43": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_d4ac254a0b9347e6a7cf2a3c57349d29",
"IPY_MODEL_052dd97f150642e28a04eb48e7e21c98"
],
"layout": "IPY_MODEL_824f1d61edef428ba9b6078836a1c2cb"
}
},
"22c9d166a7a943f8925d256fab7acf5b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"22cdfb1a17294347b1861c07795a592a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"22d11b754a154349b3f1379fc4928d83": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"22eb9a5a30384124a38641beffa5af7a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectMultipleModel",
"state": {
"_options_labels": [
"",
"--- Channels ---",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz",
"X",
"Y",
"Z"
],
"description": "Data: ",
"index": [],
"layout": "IPY_MODEL_8788edb296f045f48919f1795d223b5b",
"rows": 5,
"style": "IPY_MODEL_9f42641ae0cf4db5808f48ef5eba38eb"
}
},
"22ecc81f6c8d4c0199957cdc515bae50": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_929451662c984c4e8f5b90ecc376d452",
"IPY_MODEL_db8cfbf2f01a4c91a8c713e78bda254a",
"IPY_MODEL_1e979b9790b24f64a87f8d0a892b6665"
],
"layout": "IPY_MODEL_1af1ca1dd6e94b63ba45fb4600d63d39"
}
},
"22ed23a57cbc4bccad0b4b8c945d855a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"22f2e0328ff946c4ad9cd54e24ed3d4a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_fb04b80ac9ff4486ae74341793276919",
"IPY_MODEL_e61bb6018dff4074aed67d08307a90f4"
],
"layout": "IPY_MODEL_819b47c7578a48668525dec23072179f"
}
},
"23000f7cab444786894f102b4213a079": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"2307d256b53c43c180a0e5d5456a9184": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"230c13e5500f40899d8a6b4f824e35c1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"2317fc5bcda24e08be280ddacb845569": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"23230901a9b848b6acbb9f10a2355da5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2325f74e1a0b4beca4ec44df6d96bcb4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"232a44ec08e8421eb8a6d3551c8edb0e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"2331de0dca3a48aa9105271b56bde1ab": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"23328ae28c814cb6970a5a13f58593b1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_2b49ba538ffc404a91672cce792e2fcd",
"style": "IPY_MODEL_1b34672b9d2f4214b9bb81b1f3a4c47f",
"value": "Scaling (alphas)"
}
},
"233ccba72cd34d46b0e8cc6316cf81c5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"233de55fbeb14741aa9a13a14108628c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"234248645d6f4a66bf698acc98f3379e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"234992f21bd9402cbaf3e6da1f8438a5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2357fa6ac53440e6a22025e4de0c4323": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"235f0a7d10c34b0c919b879ef3f75212": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_4b1d0d507de34ef386cd86043998d14a",
"placeholder": "",
"style": "IPY_MODEL_ab802c672d3a4cea9c8a65508b6d2215",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"23656ed7a63b4829ae7b36561326d3ae": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"23659ec017a14a46851b3205d2319604": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"23783babfb3a49219bd3640f82fd6c34": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_ae4a9a0a35f14f0889d3f42c3b50bacf",
"style": "IPY_MODEL_c80a8b757d8d430d9f4a0d5e1cc9a28b"
}
},
"2389645564f445c4bbdfdf402603c14d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"2395ec42331d4160955a2a71658a6d20": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"239da1cadef64a0cb30e4d1a8ac371ca": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"23adb650b4794c0195ee657f1edc0bbb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"23aff953100e4a12b45531faddaf0356": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Elevation (m)",
"layout": "IPY_MODEL_58a7d5a38e9b4fe2b653a12404854f0c",
"step": null,
"style": "IPY_MODEL_28884251c36c4aaab449181129c68690"
}
},
"23b5e3a2cd1048b6abe6785bacb04e79": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"23bc91b53e134c4389289c241386e101": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_3f37bc7386b84d14826a052d18407dbb",
"IPY_MODEL_5ec15fc0dd56463ea7c8b16f3411e6de"
],
"layout": "IPY_MODEL_2fa6554a4981469d8408cc29ab748e75"
}
},
"23bf8df94504441cad9368df0ff82ac3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_738ba36093e24e5fb664c0f810321cd0",
"style": "IPY_MODEL_458579d7092b48eb82ec2f7218b2a586"
}
},
"23e0fe5e4be541a3b6961410a15970aa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"23e58611892348e3b792d533730f4e09": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_0d6d13a639004bfeb351bebc0da53d8b",
"style": "IPY_MODEL_ce7d5026b1b840a0978bab69661cd3c3"
}
},
"23f3cb5a85344573bc4c5ddce85749ae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"23f8d2b4fc62490998feacd8bcca1836": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2404f2cdbd464a21b6a16d1d45dc84fb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_3b90fc788e9243b08eac701b33ee876a",
"placeholder": "output filename",
"style": "IPY_MODEL_0354ab92d5ec485192784869f8603d8d"
}
},
"2406ae29739c4e438ad8af22a931fb90": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_ae0926e7c5f94b8293872c150904fcb1",
"style": "IPY_MODEL_2aee6b69c5ac4d4c901c371493f0c769",
"value": false
}
},
"2407965f0fbd49ef9b9be7bb64c0a949": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"240c7d97ad7e483ca2b99bea2b9d8e35": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"241266f9db8f4347aa10afdb82dfcb1c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_037edaedbe004d86b59bb9d146782dfe",
"style": "IPY_MODEL_b01056bf2e7e4469a701eaa99287afe0"
}
},
"242a4563b16b477081b0df4cd69b7890": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"242caf1c3d4c47aba2a1dc6e40a81f85": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"24388a5522624241be15324c0d0492f7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_887010c2c6b547378ddb1caad2ccfdb1",
"style": "IPY_MODEL_e023fb618afc405abe60d47945bce8b9"
}
},
"2443a2e8949d44a19f95c70056893391": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"244c9a30b2c14e1ea6b55f4763abc701": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"244d10cf7dce47d69db6903851a78894": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_09f009c831bf41c98e0ab9e675c153ed",
"style": "IPY_MODEL_e18b2a2251334a178513a3718ecbc2ac"
}
},
"2457d0657d434b0e816e0f47d406a65c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_ee8afc8598614bfc8c6fe3ecc906de25",
"IPY_MODEL_1af2bd96f3a04460afec32c383e4e431",
"IPY_MODEL_78b3b8f3ccc14fb795c2e378f388b703",
"IPY_MODEL_53d43199e52d4d1b9a6832f05b5e00ff"
],
"layout": "IPY_MODEL_8de744d3fdbd410a9ac07b8fb66be217"
}
},
"245a8f2fb6304d759b9514d053b4e447": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2466a1d9fb9d40528fd94fc8fee522f1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"246f0f946ec643db86d71cf3d37043c8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"24830f90f6c24de2af8c80755a80a340": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"248692fffdc243bb97aa02fcc7029b84": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"248eff9a1f934c0aa068a3ab6aeb50c0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_2091fc3c6738499f951397581e64a57c",
"style": "IPY_MODEL_f678c50d4d7948c2bad750613129a8cb",
"tooltip": "Run computation"
}
},
"249a860984c349a293688104253c93bb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"249e667622c64437ac7ba64207f5b404": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"24a21d2da1f642359f0051d7bd5dfe7d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"24a2f51b403f4950b0c01e4b047d1730": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "500px"
}
},
"24a4bd61546e42e4a067ba93a1fcd0be": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"24a77b0ee09e417ea05798ae94bf3aea": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_65020fa5a3ca4fc09b5cca7a88fdee74",
"IPY_MODEL_fcd173f6eb8243108115c30a03c41fbe"
],
"layout": "IPY_MODEL_25536b05e61d4e7693ee29a87b103be8"
}
},
"24c7fa677f93411fa58b9e6387983aeb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"24cabaf041b34d25ad47d2e385ceeffe": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"Model",
"Constant",
"None"
],
"index": 2,
"layout": "IPY_MODEL_65944b9616ca4e5db29c7241d56faeff",
"style": "IPY_MODEL_1b0c51ed41af40a29146c52cdaecc4e5"
}
},
"24cf633c520943c48bd94ee120a6aa41": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"24d96d7001c34ef38564b188af0b3009": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"24df895c6b6843c0ae599a05bc49e26f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"24e3fa1a5b844b61a8c192ce42b5d450": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"24e5707f0d384d36b3ce2efb8f22b882": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"24f0e1d4ffb84f72a4f8f44123b40c23": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_ddf1396694244ff29123c2c02ad869ed",
"IPY_MODEL_1d8fd25b084c464db82ae190ab036db7",
"IPY_MODEL_a6896984f57044469c74cf1d67e155ba"
],
"layout": "IPY_MODEL_27c9825c06ff41138c08036fb6145fd1"
}
},
"24fc237283ba4b529704a8981ec0c0cb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"251ec9d481f34dec9549092d7b563b92": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"25222d61fcba4084b50c8fe5b556f51b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_fe051bda25bc4f7fba0236f419738df8",
"IPY_MODEL_cb9b61fe5e68434f8af9671e785d8f3f"
],
"layout": "IPY_MODEL_1cd9cd070f704ffdaf9cc076a76f30d9"
}
},
"252405dc3e6d463bb8dcf1c33a3779ee": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"25255e18861c4413a7b2194fd42b1f89": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_b27f4f92f1ae4713bbdde91ca56f5bf4",
"IPY_MODEL_435d99e6ffd545a18f30ab07f8c0f167",
"IPY_MODEL_cadde8548d4542368440d139e3f096f4"
],
"layout": "IPY_MODEL_b6345bf68f7a4b2fab2c90dcc35b2a9d"
}
},
"253079c6dde847439edbe573bc05b4e1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"25321a1a708440c8a462f501ba8944ef": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"25339b3aea8948948f94597673b4f49d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"253e5ca01c9e4f51bdbbc6c985281ff5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_6e28e7926274495d992cefd7f7b047c1",
"style": "IPY_MODEL_84ff9d7b6a6a4a5d9fe2a20c5d9c44e4",
"value": "Save to:"
}
},
"253ff3fa41954d0dad42ae70357776ea": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_edd71e6482c64d3490a6566cfaa41d18",
"style": "IPY_MODEL_b4f4259ad24346219d8b982492d825ea",
"value": "Save to:"
}
},
"25437404f0b446fbb1248e1f5419e6fd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_735744acec87454f891879ed18d7f62e",
"IPY_MODEL_8e0518ea856b45bd8c73cfa785301397"
],
"layout": "IPY_MODEL_8823dbb83228427ca218846e77c47c72"
}
},
"2546effb42124afa861d406eb16deaac": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_3433267c1de74f958d0fc8d6758f0be5",
"style": "IPY_MODEL_42679039afde4af089db910078d71370"
}
},
"254d05da2d6d4ec2a38fee0fc4a9d689": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"layout": "IPY_MODEL_cb98124632614ba2b1907043830cc052",
"step": null,
"style": "IPY_MODEL_041cc6057cfd4575bd3cc9b724ac9c12",
"value": 25
}
},
"254ff1fb3f724a0599c01729c9323dc4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"25536b05e61d4e7693ee29a87b103be8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2554b2c84b77463c98d28d968309582b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"255f24df4dec406abd0cef809807c508": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"2572cf1fd97e426d9ae61a593b745d70": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"257d1f273ecf49aab4b8adf89dd455d3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_845fff7023114b719ff8ab86ded6fb2c",
"IPY_MODEL_042e4839e8a44fd1a9654c1bececa651"
],
"layout": "IPY_MODEL_15024ecbab9e4e47b7c9c1e12a91b1e1"
}
},
"2592e018e5a84317b772e1ca4220fd32": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_9d511d3466b94964bab929b8cdbe5587",
"style": "IPY_MODEL_1fe042cc587b41f9be56abd48cf5aaf3"
}
},
"2593e14858084ea09dfe5b4fa9169d30": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_2c0966517f0e4eb2a5a7a8bedd8c8a4c",
"style": "IPY_MODEL_741ba2925d2f437392bc3fb8a54a327d"
}
},
"25afe584a80d45ac8bcb5a3313b6dfe1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_fca420dd85044b458c653f684c91130f",
"IPY_MODEL_734cd32adf5845e1a874fa68eee21da9"
],
"layout": "IPY_MODEL_fc558fd654754242ab66c436b1616ff3"
}
},
"25b54324263e4dd1a9275eccad085ead": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_fe58581669a945b4b505544414d0032d",
"style": "IPY_MODEL_ea1d5a7cfc794e76a3869a12dc838881",
"value": "Workspace"
}
},
"25b5b337ca044460a82a26e7a800d460": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"25b947aaa260483a9e3637a213a8287d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"25c07841427942249ffb7580f5e61863": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_1bac95a5c2a64d7bbaf8b077c538f561",
"style": "IPY_MODEL_90703bca3a794e778348e575169e4758"
}
},
"25c13f17f4af47b293412476b4663a4d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"25c52b7a33df43c6a5f0e117804a8d75": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"25c9124e77384063bc7165d12a375821": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_1fbefc91d0f3484495c5759f117149fc"
],
"layout": "IPY_MODEL_ec2c8bdc1e6f435ba78ee2f39bf6afbf"
}
},
"25cda8b3b0ce491bbc1a38eab2382628": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"25d1f8d2e55d4c22b54b38237946c2fd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"25d246111d134e709838fed478d05a7b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"25d94cfad2aa45c4a9491418ce0df9a5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"25fc8a51fdab4b1ca9ce1387430d300c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"2603b232a01e4fde824de65897a18cdc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 0,
"layout": "IPY_MODEL_36027c8a20d54b6886d8d8dee14968e0",
"style": "IPY_MODEL_d2bd6fe767ec4d0cb88ba31e095cdfb9"
}
},
"260588313581475e9341db0f251dad83": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"261c39bacf154dfbb02b1799c39496f6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 SimPEG_PFInversion",
"📁 Temp"
],
"index": null,
"layout": "IPY_MODEL_fed10d2db3724ecea0ddcd981898538b",
"rows": 8,
"style": "IPY_MODEL_a8da717945ab4df2898bd6ae0363c99a"
}
},
"261e27469792454096220c257827f202": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 .."
],
"index": null,
"layout": "IPY_MODEL_d54bf3189a2f4ba395c8e2517f36c8bb",
"rows": 8,
"style": "IPY_MODEL_b48e5695435a447f99a625c7b33a78ad"
}
},
"2624498a112e479da5d338350d899c4e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "warning",
"description": "Write input",
"icon": "check",
"layout": "IPY_MODEL_9941571c0dda40f29fd1c2b8f4944364",
"style": "IPY_MODEL_3498efde861e4953841d1d0a719726f8"
}
},
"2625322c421e4dca924059bbf7acbc4b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"26264d5787c440c99fd5b13bd3411335": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"2631ff0819be425c83cdc45f143b28f2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_f745ced319454dbc852ae710ef6237fc",
"IPY_MODEL_f921f0b9a8d24e229782fcfbaaea8334",
"IPY_MODEL_00dec8f0674948acb90275ca3af3387c"
],
"layout": "IPY_MODEL_d891fdaea9dc4b469289b9f269450dc0"
}
},
"2638d02c6cf54a3d8be67593d1c4403d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"26424ab400414e4194abe35fbf7829d1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2643354d06b040a99dc54c660c407ccf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_1136ff4f9d474c2fb0f5a89407bd4017",
"IPY_MODEL_0e4593abb34a4130a01f05ba60029e7c",
"IPY_MODEL_aa1068896c3e440f8f12ef70d590bd40"
],
"layout": "IPY_MODEL_24a2f51b403f4950b0c01e4b047d1730"
}
},
"26678c19d992413c821f14ba788de82d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"266fc45ad8d745e38d997ba2cc7dfd13": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_6cb4143e178c48b5bd699ba5510a58b6",
"style": "IPY_MODEL_547aac6c399e4324a95d770edc5e7937",
"value": false
}
},
"267bf8adddaf459091e9988fd9555194": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"26826364f1d44e61820ecfbb60dbefa1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"268b7b1b6f9b46f3b696e65d9eadd540": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"26952e88ee914c8fbb7ee475cb777aa5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"26bd5ba404494f9ebd58a341b6323485": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_48f7efceca304b53a8dc1cec99c738f5",
"style": "IPY_MODEL_790bc4c13c4d44ca9cbed96109b0711a"
}
},
"26c10eb83fe943fbb8210b16a4ea4224": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"26c681c64f8441f4bd0ba7c7bf1166e1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"26ca0d7dca5446a8840fcc1dfe71ede5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"26dba5ec3351453dbfec488e599bdebd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"26e9d35e7939455db2acad11ea3801c9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"26ee726e601e4eebb357a5cd226d9833": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"26f1e43407d9497abff3d7863285e0b6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 SimPEG_PFInversion",
"📁 Temp"
],
"index": null,
"layout": "IPY_MODEL_f8824fc231594e70a18c3a5224006c4f",
"rows": 8,
"style": "IPY_MODEL_909ee4bb4ea448d5ba7100f10499ccf8"
}
},
"27061fb14a0f4fd79e5a2adf026a5234": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"270862153af54fbcb5e04d40b14e8fe8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 .."
],
"index": null,
"layout": "IPY_MODEL_b8f20895c4304e20b61baca881dae0d3",
"rows": 8,
"style": "IPY_MODEL_5c381981dc514ff5b71e0508a7dbfe54"
}
},
"27095c3b9268443394bcc41783472ebb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 .."
],
"index": null,
"layout": "IPY_MODEL_e2a0e92f68434da0a5e88f1c9e9bc804",
"rows": 8,
"style": "IPY_MODEL_0ea40c64b6ba4fde8f88f0efab1a6572"
}
},
"2713c479107f426f9844833d28a2a248": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"2715894a8a2d4efeb4f943bd8b00f7ad": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"271de0195d904de09ab64ce3be3f902d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"2720d721df6a4353bbceee538b12e9b2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"G:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"D:\\"
],
"index": 0,
"layout": "IPY_MODEL_294cba6898344b9cb51e8fcccad9f55d",
"style": "IPY_MODEL_83d53150b0d94b96b30de40dbb6a0719"
}
},
"2728689f580d4d74862ca6234cc0be7a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"27328a6217e348109ae4fcdfd635c71e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Units",
"layout": "IPY_MODEL_f203f43d6e1841fdbc572b6e5fb111fe",
"step": null,
"style": "IPY_MODEL_70a24057868647abab80f553ce27fde4"
}
},
"2742bca0b0834a7497792663f42dbb00": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"274ce537fd8a45668769d90aea46b03d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"274e389ee868477495c8a5ce119cd7ec": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"275455be993b4401a0f8f880cd0f6897": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"275bd50aa02c4627b9903d87c0fa82e3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"2770785af0a549489d17835b858a498f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"27765a108b6d4942b12cbb67ff69abd3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2777c6523c5f47838a5743225e6b576d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"278d894e518e4c50a0c4b6723ef16f7b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2799b4c256ce4dc5b95cbedd312cbc65": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"27a5a7e831e54d4191bc1b2c6cb381dc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"27a7a7e10c5b4efc9a3c0a0c950a223f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"border": "solid"
}
},
"27b32d88e21b4e599decaa72a137a746": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"27b42bf3305d4d09a16b1803cdbb9211": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"27be1110561349aaab4b7476c2b162b4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_b1795a604566469e95fb3bce0209e7dd",
"placeholder": "",
"style": "IPY_MODEL_69a4267d7a4b48e5ac86931159b53a04",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"27c534325d6940b3824363d9a76c9c47": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_196ac0971fff4ba1a34d47a23a98b1c1",
"IPY_MODEL_ff4fa0eeafb44a42b02027aff83ed162"
],
"layout": "IPY_MODEL_5fecb852a4d34fe5bc5ccc2627e41f71"
}
},
"27c857996a2343c585f6e7e4a2a7e32a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"27c8b96c753d4432ac7f1c45cc14f0e7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"27c9825c06ff41138c08036fb6145fd1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"27cb763f6f9246fbbc9d479709df91d3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"27d36a906c834acfb861ec5d42111c1a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"G:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"D:\\"
],
"index": 0,
"layout": "IPY_MODEL_1c375389aedb4e97a88ab01c2de8a239",
"style": "IPY_MODEL_33b77681fe334485b16d94f0e534595c"
}
},
"27e2eb13a48c4068bb643237c445e417": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_bf06f1a501f74e03bb30aee30fd6b11c",
"style": "IPY_MODEL_77325e579a04488b9b17d527c35314e6"
}
},
"27e71ec56a9740299b74627fac99a038": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_927e9142b123400fb528a1d020b659ba",
"style": "IPY_MODEL_8ab645b173b945f1b81f85d4bfa27227"
}
},
"27f9cfad76594cf9bebaa33e343ebc7c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"27ffe4dddaac42b6bf59b551a7b721da": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"281b07d0223947d1afc6f7d7e5f484b5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"281b442fe66e4a92afb7a47455a05de9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"282ec30710df46d09d80676d826fc527": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"2833e0eaec894f9ebf8e0505c314126b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"283f0047461c4e1aae4c46df534a6205": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"284413c044ab4adf942ad26826771d19": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_c3d857eb253647e490a5a5a01c27d35c",
"IPY_MODEL_b088dc4a262d49a8a44310565d2d3221",
"IPY_MODEL_323a43614b544cfc8fb24582fe671c47"
],
"layout": "IPY_MODEL_a455cf787c0d435c8db30ee2676c5945"
}
},
"284bf48b21d14597abfa54377f06cc88": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_b32838505de64627897397db69a13e53",
"IPY_MODEL_e2b0f21582224555be1d63b222c816a4"
],
"layout": "IPY_MODEL_5e011ae7efa94a66ab0a996c580999a9"
}
},
"284d66a4d9954b8cbb88d8894c997b7c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_0f4d6a8ccfe14c05b5ca229c92248f86",
"style": "IPY_MODEL_7c555694d2ce4acd95484d8b0e8d8e2e"
}
},
"2850ffe9ce7048118b328e949f114480": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_e8e39cfad4384137bdd99cba41708cdd",
"IPY_MODEL_7b614bba27c94661baf682719170f73e",
"IPY_MODEL_e9eb9d3a96fa43fb98b5477d5b0dfd0f"
],
"layout": "IPY_MODEL_16a3c0a4e0e1426ab7c8242a53f0c5cd"
}
},
"28523fca9eb045baa45ad16f4342f317": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"285fa01cadf948f69996a36e708b2445": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_d38f41e06f974b29a3f43f388a26f6df",
"IPY_MODEL_bca5cedeacf94a0784f4a9221430c6a1"
],
"layout": "IPY_MODEL_11388bdfe4e54041b830273ab2e1e4e9"
}
},
"286f6c248f524c5689ffbd326627456a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2872ed5b3cf6420c94975fab7e476a5c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"287ace88c20f4c1a8fa5bbde0fd29b78": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"28884251c36c4aaab449181129c68690": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2890cd726b1b49f38ec141f5ab0de8eb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 SimPEG_PFInversion",
"📁 Temp",
"📁 uijson",
"FlinFlon.geoh5",
"FlinFlon_dcip.geoh5",
"FlinFlon_natural_sources.geoh5",
"MtDore_TMI.geoh5",
"tem.geoh5",
"test_forward.ui.geoh5",
"test_forward.ui.json"
],
"index": 4,
"layout": "IPY_MODEL_1c39541a67a54f30823b0829aa95c573",
"rows": 8,
"style": "IPY_MODEL_6bbe1b358ac541d890d4df2a2d018479"
}
},
"2893f6d6f20e456ba0deb8e0a5882171": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"289a64679adc47e9b8ca257f695d205f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"28af15f44e364667a546c36999dc8f66": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"28b10f22a5e64b38b2b09d73953bab21": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"28b40a382fc442a1be218fd0e2e8525f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_429c0497051348c18d9d973ebc276b0b",
"style": "IPY_MODEL_5507930b4af7457db3772e0a88aa5950"
}
},
"28ca550f26f64003867f05eed87b94bf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_7c17975c60d0434db2a61eda381b11c9",
"style": "IPY_MODEL_55c4a737945c4aeea530aeb2f4108938",
"value": false
}
},
"28cbf9ada2e44ea893f0ce356a1f0f0f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"28d149adba0840b59a278808c8d0c963": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_48cf063b1c274880a87c541cf0def66f",
"style": "IPY_MODEL_49cd205370c349fe81493d8c65d34ba5"
}
},
"28e6d5e5c8c841a6bfa0bafa5300c076": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"28e9ee7b31dc41ee8b1675e13cf42dcf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"28ee58e094cc48f989764e52e9390575": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"28f14afdb89442ea88e4dfc41dbd8e28": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"28facb2a6eda4b69aa593549d62ae111": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2905981855f54749a91b566bcd289731": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"29090ffd4675487db32d66be0f7348fb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_a2ceac028b884225bdf9a79b0eb72e38",
"IPY_MODEL_1369e9aa0c6f4fe88a5aedf5e892d8cb"
],
"layout": "IPY_MODEL_3220de4331794065be1b68fb35a37511"
}
},
"293328bf60634de38a51703867615cf2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"293462884c5b44298a355e186f055708": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_f992d4283cb34948b2352997c9d549b8",
"style": "IPY_MODEL_cd64c1c691cb4c44b204cf9d96eeeba5"
}
},
"29374ef24e7546edbd7fa98bb77c842a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"29388ff0a8d749ffb8e5fa17851087d3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"293b53caeae04a68af7d43e8f401c49f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"293c605dc52341ea8ee2be6a080c85ea": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"294cba6898344b9cb51e8fcccad9f55d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"295abb438f7b46d6b8d5458b1c3b4472": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_bda504f3b5a94ef482deba0dc721029b",
"IPY_MODEL_bf43d2f5386c4cc7bdfea38d4e0abf17"
],
"layout": "IPY_MODEL_e07915d330694d07a53f9968689a1e4d"
}
},
"295abc8863574333b5aa281a56b8489b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"295c7a6a35f54e4b8c0a3d3ddaa628c0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"2960626c7f6a42ab8d00d5329e3d0829": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"296fcf1f1e4e41acac3f89f69ef8a811": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"2977ea4c6e7f4d5bbb30194fea3a6906": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"297b1ee9f8764e59bb3007f90dd67b27": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_88689e8ab46e469e907e2262baa52508",
"IPY_MODEL_f3795475bf0543138301987e50949cfe",
"IPY_MODEL_3fc6742d10ec4319906f94f06cf1c70b"
],
"layout": "IPY_MODEL_5e71f488ef884a4d8ab16c65f3443ff8"
}
},
"298d8db88237405794523b48b2715292": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_13e6ba4d9f2143a98fe4ffa13475c094",
"style": "IPY_MODEL_f9ce9f18fed04d2088182a1b830f7363",
"value": "Uncertainties"
}
},
"2998b8fe865c4e53a1ffbaff62eea800": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"299c114a492640f9b24c4dc60149b0e8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"29a1a75339564742a36c1826ba1f33fa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_4af471c69dee446f94d1e234f8912564",
"IPY_MODEL_511929fc62cc440c83e9ebe6229671de"
],
"layout": "IPY_MODEL_9860b079b8684b86a595caed8165d793"
}
},
"29aa5f73b9af437ab28ff78d15d92ad5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"29cc948ddc944c5088832325638b2e00": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"29d0dd9954d5479598ccf908b9cb31a8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_99d2e897f78244aa89c2efbd50a4ea2c",
"style": "IPY_MODEL_ebcd1c20392040eaa841f2081741426f"
}
},
"29d6d5d6d0a24c85a939089b8cda6be2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_02b0c6a2edc0451d89c1234d55640362",
"placeholder": "output filename",
"style": "IPY_MODEL_1fcb85b5c57c40ceab8894d7e9f244fc"
}
},
"29d8ffbe6f124f58a7fb0951533784fc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_e0d2bd5fad5544ac832461613b1202ab",
"IPY_MODEL_e247d69f700e4259853b22f4d34c767b"
],
"layout": "IPY_MODEL_a7d193f6981f483ea48bb0aa78fadadb"
}
},
"29f40800681e483b9557bb27ada4ad01": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"29f7da131e4644adb0cbe0cf80d9a1cc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 0,
"layout": "IPY_MODEL_f748d962bb0d403e973d3ae7978f9a61",
"style": "IPY_MODEL_66ba65b897cb465dba9c3e09b0b0b320"
}
},
"29f826b2956d45bf848c347972346979": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"2a002fcca06b4ab9ad63a27fa35f964e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"2a0371361cee41dd8d454d8856b32aa5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"2a043ea920d44fbaa575d6e11e97c162": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"2a04ecce9edb412ab550eb69b491057a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_f0ce8897773c495e8835cf0e664f3d46",
"style": "IPY_MODEL_87c58f9b8ad14902bd8707a1632fc7c6"
}
},
"2a27c74cf94f456780939b77f4f6d206": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_f0b4bbb707294db8a8ec7fc4cc17d62f",
"IPY_MODEL_950ba2cb8e204f3cb35c56e160d3472d",
"IPY_MODEL_fab0a792a1484061ae3a705c7fd0724b"
],
"layout": "IPY_MODEL_7146ee4452ae4e5eb145b4858800b3b5"
}
},
"2a34b30ce2e14c1d9ff8dfce43bcff9c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 8,
"layout": "IPY_MODEL_ed829c4bc4da4961930c7d71d5cdf613",
"style": "IPY_MODEL_10a8ddb6f4624f178015e82b7fd999b8"
}
},
"2a44eab5ed354e279f424d5cc2e1c218": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_84a6d245d73f4a53a71fc9ff7f23a62a",
"IPY_MODEL_621640c3673f45e382d750a3bbc7af2a",
"IPY_MODEL_931b3f6dfc9c40cb9de97d3f05045a43"
],
"layout": "IPY_MODEL_2ded96b474f0462290b47dd42bc9c773"
}
},
"2a4bf1d96cb941a0979048aacfb8135a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2a51b68844484fb9bbee7daeb891d6ec": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"2a58e276fb424a95b5196abd03416dc4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_778475827a88486d9794bb6bc01ccfc7",
"IPY_MODEL_e2a70693bfad44ccbd42a9394a099995"
],
"layout": "IPY_MODEL_2e7f68dea8104de2993782daeb23dffa"
}
},
"2a5c811515b74e0e9438dacf002cfacc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"2a6595cfe8f54c858685b483468fae1e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2a6841da47bc4b40a6819da276f07463": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"2a69e771d9424c7d818df6c36ea7025a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2a6b92d2dbac4dbf87a066049c16de85": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_6d3b2deb342948f9ba6e3b672b100d71",
"IPY_MODEL_2e92d807c81346e2a56b159815cedcae",
"IPY_MODEL_a8cee4e93098459eb980edab85595c03"
],
"layout": "IPY_MODEL_2ded96b474f0462290b47dd42bc9c773"
}
},
"2a74842d57814c2096ba9106ab665985": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"2a8101d1749847d69b73ffdec3d3bd60": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_ab982a202b194b48acfa044e178a8bdb",
"style": "IPY_MODEL_14cbea95a4f74441977ca143e96063ab"
}
},
"2a86a217beea44639e09a72ac0dd9d2a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"2a8a05b63848452da5a9abd82ebc7a7b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"2a97fa574bf847c9be491f0f10d7eb01": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2aa2f16f225748dcb2f57766a25560d9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"2aa4a169f4ea4f4d9642b72d7b0f84ad": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"2abd075aba62442a948b3040fb0e0efc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2abee2847be84deeb803dd14038418b2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2ac7de9ae78a46989eabf265633d6450": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2acaee977a3f4170b2344fdb39f0e15a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2accba61e2224276b931c04574c6604c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"2acdd9d5a07e4dbc9afa9e44cd95166a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2adc350c268d46a68de41deeb2528165": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"2add7e5a9a554bce830c88298e76dc5b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_f58d908af49c43d6b434307f28384702",
"style": "IPY_MODEL_2053e452a808442da49d1b4cdc55f07b",
"value": "Uncertainties"
}
},
"2ade0d31593342839d3433aaf484585d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2ae1cbff801e4dea8e995017b60d4d86": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2ae61b8fc59f4fa885703bcf1c9f059e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_f7533bc46db7497e8ae6943da6c6e99f",
"style": "IPY_MODEL_2fd3f8ad2e124e159703b59eb909aee7"
}
},
"2aee6b69c5ac4d4c901c371493f0c769": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2b039edae4d34e8fb58d1e5b00a39884": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"2b06fbb67fd24e3eae1793d3d1b734c1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2b076c4571fa4f41b0f7b385e3cc6154": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2b0b9f7b5c0346bcbb96019d00d2477f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"2b0e4b2007624d14acaff7055907b0d5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"2b16d007fdfe4ebbaa911ef913d4d929": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_1d042d72e9114d7681018bd5dfea6de1",
"placeholder": "",
"style": "IPY_MODEL_8ec12a601b1c491f9bd11b1c0df7ffa9",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"2b2b2b2fab77449da7884547266c7c67": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"2b38f1903bdf451ab45581a0932ec03a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2b44ce5ecd114c60a62f747c0b6c0d4d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_f3ecf06cf37245e5862c31128f0ae433",
"style": "IPY_MODEL_49e6513e2b17419cb5b21d00c34d1403"
}
},
"2b4598ef951446b88b7f32b44e3231dd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_3f2f53f9f0344b88b48b9466ecb4f453",
"IPY_MODEL_990e146dc4194925b67ae1f648289b0c"
],
"layout": "IPY_MODEL_321fe86701f44fdd9993623c8157d922"
}
},
"2b49ba538ffc404a91672cce792e2fcd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2b4e0cc4cc1a4f06bb0ab027069db29a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"2b52432f4e744554bc663876e1ce1814": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"2b6bca6f5def4a3aa26d9de924ab7fbd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_880f227413504349a9074228ead42187",
"style": "IPY_MODEL_7b98f8fcbdc646689ede7f5e9c1047da",
"value": false
}
},
"2b72bb146b7e4c2cadef1b66ba364863": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_3304a8e795a14413a06d0aa61ab51a98",
"style": "IPY_MODEL_c4f1c6887c564b5793f8349140acb47c",
"tooltip": "Run computation"
}
},
"2baae891ba574d1882f2cf5c19272e87": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_d1bc7c34a09747e1996b4453b72e8eff",
"style": "IPY_MODEL_6e491322650641d39bd44d34d4c155ea",
"tooltip": "Run computation"
}
},
"2bacce3ba44f4542b77d749e53e47a96": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2bb63259ddd64ad68c2f8e9be4d535f2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"2bba3390ba73428c95e0888d31ef80a6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2bbbe392971c491b876b242e17772e56": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"2bbc4a5d1dcc4f588108aaeadad8e708": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"2bbf881b7ee04e49b52c6759a6a8d01e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"2be28907fa4441aabff7575048bc0689": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Object",
"index": null,
"layout": "IPY_MODEL_c14240fd90004da39b87bfc23daf4504",
"style": "IPY_MODEL_fa7b289b6cb347cb92b6dd03e3dc1983"
}
},
"2c0300ace4d443c2a05a4b59b3034443": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2c0966517f0e4eb2a5a7a8bedd8c8a4c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"2c1aff698e024476badbd70b0fce01fb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Vertical-gradient (z)",
"layout": "IPY_MODEL_8a1fcb165150404aab1242a499e8e411",
"step": null,
"style": "IPY_MODEL_6ce67e3c6b4c4fc9b425fe1b2a5fd84f",
"value": 1
}
},
"2c1dff44bc214239a1f785cd61b2b9bc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2c23d489e168482db5d8756055bd4a82": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2c24680317424b4ab499bfed11ff870c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2c56d179f29f4464a40ed380aa0239c4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_ab75b98474024504bb09c5f414b963e9",
"IPY_MODEL_e91200ddb4f34de6aa067725e713e9fd"
],
"layout": "IPY_MODEL_8dd56729c98e477480782d5cad8d4443"
}
},
"2c641e19a2e34bbc9a9da02bfac520da": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2c66e60f173e49d3881ced656a2c913a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2c71e73aaa924fae9058477f41ea7f42": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_e4ee64d271be4f14b66195e7bff44b33",
"style": "IPY_MODEL_c8171a87dd28458daeeeb6ccc0e78f3b"
}
},
"2c7392b4c1484ff0b56caa40498fee4b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"2c9058f40dab4382bb2b6a9ff1a262ce": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2c9289c84a7d40469ecc9b06471114bb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"2c94d1f4b5f540b890bd0431213a32f5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2c9ab1dafa9143d1ae387bbd6b0c001f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"2c9db897d4ee4672ae5f9c3a6fe1ab3c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2cbc44c7ae394bf0996a494d6ac4408f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"2cca6310f5ff4deeb848ce3d7256eac0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"2cce3c3967b74868b588b59d0ebbc035": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2ce2b6c6761c45ae98cc8aec4fa762fa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2ce3cd1eb4574669ac7139f67f54cb55": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2ce767069e384eb88f49bd8f47edb367": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2ce7e2959a0640869f3bdf43fc5f93fe": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2cf6abfd3291489387242c5f9a413d3b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2cfb8550ec9e4b13a22670c828cb4ffc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_96ca87ce4f744a65a8d93dc27d371a1b",
"style": "IPY_MODEL_6a56ae804c3242cebced2319b6cc3c2f",
"value": "Workspace"
}
},
"2cfcdd8e85dc49fbad98b5161e4805f0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2cfe884778424ea2b879b17f4b90d779": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"2d11a4d344984de0a97e8f797dd76801": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_0b755c608dac4486a5b026aec786177b",
"style": "IPY_MODEL_3dddbb439ce449e093cf18bb0a25df61"
}
},
"2d13f132cc174fff8044f0704a6b1557": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2d1804bac8df47b68873ba2c7c5b31f4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_9dfadb8a9910467d80f988a984481895",
"IPY_MODEL_e9242c69533f45fe8b631ba7434b53d1",
"IPY_MODEL_1182d6aad0c5420bad2da78509f601f7",
"IPY_MODEL_1fd6ae7da6674f94873f003074e37065"
],
"layout": "IPY_MODEL_dddb99e7a60b4fd5ae2ee689e1023567"
}
},
"2d1cc7895c664e2891e6e398032172bd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"--- Channels ---",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Radar (Optional):",
"index": 0,
"layout": "IPY_MODEL_3849e087214341aea7f3259f8018a2ad",
"style": "IPY_MODEL_be7f24606e5e40f383e9e1b7d92d36c3"
}
},
"2d200c1fdbad48bf94e252cfc923efe3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2d2537256d934ac28d57cdd982cba218": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2d27c0a20825457eb18c829c9cbf3fd7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"2d30609592ca40d3b745f214d4a026b9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_cee34393711f4a4486b3f2ad14f25817",
"IPY_MODEL_54061ef12fa648dfa8c67761bf7a248d",
"IPY_MODEL_a5b0d95a52e2410a9b9d72c12dd26e68"
],
"layout": "IPY_MODEL_2a51b68844484fb9bbee7daeb891d6ec"
}
},
"2d33d12eaed34c91b5c79d7cad0d4653": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_71b66f2c56a343018635afd913a6f4b7",
"style": "IPY_MODEL_6bc98e87b6084adc9ddaadae1f8ede55"
}
},
"2d41c0974e794718af6dcdec37aaeb70": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"2d428418fd75433f89d777731796a7a7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2d49d640ac50449993afb7ccf5eebbf9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_d118d02e7bfd4e9d845f28f994de25d5",
"IPY_MODEL_4270779f224c417790d228b4cb3fc427"
],
"layout": "IPY_MODEL_482e1a0cc72e46ce86cd49f27ae66133"
}
},
"2d5305d978b84f82ad9e3314a4eb3ec4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_5c361a63e5184d058b478949b35c6bd7",
"IPY_MODEL_54ca8576d4d94cdfaa422f5b88880f6d",
"IPY_MODEL_0639f7f88009481d8db1749752f794b8"
],
"layout": "IPY_MODEL_1c77ffabc8a146f88e76ec228591dc70"
}
},
"2d5ca2eba5a34c4f84fc4cfc701f4d18": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_3cde436b5da541d68c008da796a3afd2",
"IPY_MODEL_ca4fcbaa2e644f89aa03c95d1ff9ce0b"
],
"layout": "IPY_MODEL_22764ff0c82640838c1f46203ea98342"
}
},
"2d5f1d07a9fd464d88c827a1fdfba962": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2d609fde71214a2ba4fcc99099a05705": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_109e083c0ab641e6a1a3a6d474719c02",
"IPY_MODEL_cff65d38346f460ab17c51c846ee80f3"
],
"layout": "IPY_MODEL_9a6f508ddcc44781b9453aefe4212a34"
}
},
"2d62e119dff247b1b1a1c25a989b4658": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2d6dcd47ee1944f7bccc8235a4de4d5c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2d71fb96ec0a47ec9eaf3d9b046d0415": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_f9f30d533a9d4ca791d9d4a1b958494b",
"IPY_MODEL_cbece31416024b9e855bf25650b1af17"
],
"layout": "IPY_MODEL_9d671cd21ab14a76837a3671e719e599"
}
},
"2d794bb460c949938bb43f8e015cfc71": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_38073662e7ad4c3caa441ac51218a92a",
"style": "IPY_MODEL_eb7ce59c62a14ecda984c7793f21cc4a",
"tooltip": "Run computation"
}
},
"2d7f3f03d68d4694b8a55970a446a508": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_b56abf0e8fc34b7d9352593847eb66d1",
"style": "IPY_MODEL_191e34b650b24e3eb93d12b1df78893f"
}
},
"2d80d565362c4d3e8d5f5bee5f640f98": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"2d8d7fe60e59456c950f0d45a318b9a8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2d97fd028c5c442495757e7b405ccdad": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"2da23a9f60fa4a0c80bd34e4365c0f8d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2da52b3d566a40eda4b98efb602db3e6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"2da6a0ab905140c9bb733e04de2b3dd5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_a674f8fddbe84d84abba73d8f5d7a9ce",
"IPY_MODEL_053547b880b540318a3c36c4fc1881e6",
"IPY_MODEL_22ad37d01d504987ba5ae6e79be8823f"
],
"layout": "IPY_MODEL_99ed184676c34aefa31d946ff22569fe"
}
},
"2db04c177dac4b909d87469887b5f4a8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2db4b22d1d61405ca6bf00cdaa15e03b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"2db4c08023744231ab3d7070d8d75d4c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2dcf080fa89b44699d4b6fd0d8e156c6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_845538a87e024be6a5a701795ed40eb6",
"style": "IPY_MODEL_622606f5a9004e0eb4deb069f6213bd4"
}
},
"2dd7795d679840eabaed1dedeb67e61f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"2ddcc1e67ddc40e091e7960ad578a7da": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"Model",
"Constant",
"None"
],
"index": 2,
"layout": "IPY_MODEL_bd9e24092db642bca5785b64b974fc28",
"style": "IPY_MODEL_65714b2391394de48fedc1a8c3752d5b"
}
},
"2dde5e2f64d4419891ffaa604cc22eda": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"2ddfa37e48fb4ddfa914aa46afb796c4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_45dae85a1c3043c69e9988c1fe90862c",
"style": "IPY_MODEL_ad834789c51441378ae6646acf79923a",
"value": "Uncertainties"
}
},
"2de3861db474464cb7ba411831608f72": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_8f136991d30a48b2a857eca9daf51f4e",
"IPY_MODEL_e837d8adb9b247919b9d880e1cda5c2c",
"IPY_MODEL_d5b9fd35dc6441f5a8d7c12a51f1c23d"
],
"layout": "IPY_MODEL_9fb548db3837458698161518422d34c5"
}
},
"2de79e5180be4050aee13b657f9a0d38": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2ded96b474f0462290b47dd42bc9c773": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "500px"
}
},
"2df2fb4eee6340ee85b18d9ba1eb8dbe": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_9cbb7c1d90a74fc19864b84d73e0ecc0",
"style": "IPY_MODEL_a15e353e446a4e8797e10f8bd112bf96"
}
},
"2df6010b1a8e4ebbaeb913f678254c78": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2dfcec1c2b1e46938e7576166a2f3320": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_ed7f39503ddf400899df51e8cf687a82",
"style": "IPY_MODEL_239da1cadef64a0cb30e4d1a8ac371ca",
"value": "Uncertainties"
}
},
"2e074cc661634d959db7e9c6ed621264": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2e0b36e79b574ecdae6efe155dcd88eb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2e0c7210a9d4446abe539ed107df6c5c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2e0f67dd6c9d45569a6efcdc648f9a37": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"2e13424d3c0f40f38ce4284db7caf642": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_ab708a1ede4b4a9d865ba8b099a2fdf2",
"IPY_MODEL_323c050aef4f4583acaed9904ac33fec"
],
"layout": "IPY_MODEL_d7dece0a87f94d8a984a392abd957f47"
}
},
"2e19a41b5aae4b07bb7b4a7ac2279c3f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"--- Channels ---",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Radar (Optional):",
"index": 0,
"layout": "IPY_MODEL_545fc7d315e04ca08fe1e6a0c254d99e",
"style": "IPY_MODEL_1ccfd49821a347acbe130086a35c4bd5"
}
},
"2e1f8417f29749ad8dad440b941c8550": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2e241b1cc5184a6e88c3f2aeab5d9b1c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"2e25a130579449d1b5dbc9c434097470": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"2e281bc509714a2799c887dc11affc19": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2e32e518406249f2a5d2298231cc81ef": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2e3f4d8b52ae47ea960645eff9648f1e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_f12bf736951f410a98ba506478dafaa8",
"style": "IPY_MODEL_1f082c27378543388cc7403fa011eef3"
}
},
"2e445de78d804883a4ce21906163f8a0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_e4476a0a32df42819477ccc5a64ec03f"
],
"layout": "IPY_MODEL_1166762e2e994bb294775e878d3b5b4f"
}
},
"2e4b54df3fb84f8fa9266453663fea6d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_d2b4bcebc41241afa7daca7d49bf3cc5",
"style": "IPY_MODEL_fe776a9ff5fe4a54ad56e8f1c2277c9a",
"value": false
}
},
"2e5e2785a7be4775b0987cb477ba7518": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_808fec4ad4854472a50689214bd3dc76",
"placeholder": "output filename",
"style": "IPY_MODEL_9cc9174cbb484b3d856ea63374693a1e",
"value": "FlinFlon.geoh5"
}
},
"2e5e591ff27d4abba877c858454d19c1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2e67a5e8242347acb98feef2428cdf12": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2e7f68dea8104de2993782daeb23dffa": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2e80124e076d4d72a4a8433b52787fe6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2e82925701734693a1ae19e9242deb60": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"2e881f795066466ea3dfce8c430a9506": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2e8f04b82a7643cd9b7bc06844ae5a00": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2e92d807c81346e2a56b159815cedcae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_490262a058f24ad3afd20d7d288c5706",
"IPY_MODEL_c2de8645d1ea49388ff6b0ef57588c41",
"IPY_MODEL_45eb55df1d4745d3857c9857f88134ea"
],
"layout": "IPY_MODEL_a6908f2586194f89ab326957565fd674"
}
},
"2e9636190a5d4358bfc0f46aa7050e6f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"2ea5c011bf4e497b99228239886077aa": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2eadf084602e4b0f91c19edb92ef6e96": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"2eaea9f3c4f145f7b453c4fc15c58980": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2eb656711bf94d4cb033879adb2985b4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_dbe3635221ca40f4bdc75529dbd7f33f",
"IPY_MODEL_c600acdd254447caabcf5ee5651fc0e2"
],
"layout": "IPY_MODEL_0e2849f96fe940d78e731ed0ec3b286e"
}
},
"2ebf0bbbdb314e9093f94d5b4568f2a1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_0d57a7306c904e2591cf7e0f2ef4e213",
"style": "IPY_MODEL_77ffb15df2c5432c8fe2e442e75807ec",
"value": "Monitoring folder"
}
},
"2ed04077651d49cfaaa24affe9315d4f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"2ed1128cfd7f4546a3741cc95ece22df": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"2ed188eecaa642629a100aa647c78386": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_18a0d6ff88444529af26f38794d16a1d",
"IPY_MODEL_0f23aa12143a440aaf0096d9eb5dc1b2"
],
"layout": "IPY_MODEL_708b6b3637a54b52ba6f1312304b7661"
}
},
"2ed99e0a5189494ab4ef26c6d1ef06cf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2ee6ef32d5244fe2862a00f76b349e43": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"2ee8091aa8254b30abb83d9251010d29": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2ef7343f544d40978f6c3b99a6ceef9e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"2f014398c61441dd932f8a216650383c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"2f1ba6dd095e4fc1a1970f5d8544157d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2f1be6593d9d4016add70fd3fb280029": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_b808d65fcc9942c5a78d4ab101d09331",
"step": null,
"style": "IPY_MODEL_5f6b212ef8744669bd7d4661d4df6643",
"value": 1
}
},
"2f2207a5245d4666935582b7a9217803": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_b19c98b0d8f7402383ea27a0129a08ef",
"IPY_MODEL_f13ec1905fbd4a9884c257aa481a937b"
],
"layout": "IPY_MODEL_9b44d75456f14376bf26328c0b810b7c"
}
},
"2f2340820d444eb9b39085c0ec450cca": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"2f38389733d541f9b43874bdda08c56a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2f57bb6650fc4c1a95ee7dcf57265e9c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2f5e2a0db1bc466ba1cbb9661d049f6b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_f1ba456768cd4be6a7ce09e152014fdb",
"IPY_MODEL_68e062e81b9b4921bc36e7d038f20b69",
"IPY_MODEL_8437ae42e3f44fcd99dfc4044ae52186",
"IPY_MODEL_a0c9b1cb0f3d4d0289ffcfb060e6a88f"
],
"layout": "IPY_MODEL_1140793c5abd4e80be6cd10314f1d3d4"
}
},
"2f60137cf3744fc6b52de67117dcb7a9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_4fc2a97f51364650bd38e53ba6005aab",
"style": "IPY_MODEL_5a11c12727224e51a8e0fddfe3985041"
}
},
"2f6209fc385a4c6fb14418c6dd8ad666": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2f64efc6d05d4cdaa52cde717fbf43f4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_c0d223e248f540e6819b043c6d9aa264",
"placeholder": "",
"style": "IPY_MODEL_eecfb6875c314b9d8f98111056c2d724",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"2f672edf7b964bb189483497e3a37ddc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"2f6a9212f48b47a5be91063c485d81ce": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2f916069d7a84e81b5962cd8dac92b4e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_6d3d5d4690f44958a6c374a1e6ca3944",
"style": "IPY_MODEL_73f29830adae4cbea8b99f382158eb22"
}
},
"2f95fafd74714a50b9b3df943e1f418e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"2f9d28b4bb5740de85a5cfac807d3c80": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"2fa0aa817acb48af8fb23268d46e6587": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2fa6554a4981469d8408cc29ab748e75": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2fb235ea7e824dbeb1f4a8aa57a1238e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Ore/39_Ore_Callinan",
"Ore/38_Ore_Dan_Owens",
"Ore/40_Ore_FlinFlon",
"Workspace/Inversion_VTEM_Model",
"Workspace/CDI_VTEM_model",
"Workspace/Data_FEM_pseudo3D",
"Workspace/O2O_Interp_25m",
"Workspace/geochem",
"Workspace/Inversion_DIGHEM_Model",
"Workspace/Topography",
"Workspace/Data_TEM_pseudo3D",
"Workspace/Data_ZTEM",
"Workspace/Mesh"
],
"description": "Object",
"index": 0,
"layout": "IPY_MODEL_a517fb72c49e47b1b1e8d94ba657de44",
"style": "IPY_MODEL_dced7e30f35745f7ba9c9fab122606c3"
}
},
"2fb799e2af8747c9bcf338bbb6536061": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_6b369b99cae643a691a6a099811f510b",
"IPY_MODEL_f972d71b43b1411da1fe2c37e50dd32a"
],
"layout": "IPY_MODEL_c58c0f09c5144a399f57e37cda9a106c"
}
},
"2fb89c2d30064a50bf39adc9955da692": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 Temp",
"📁 monitored",
"📁 uijson",
"FlinFlon - Copy.geoh5",
"FlinFlon.geoh5",
"FlinFlon.omf",
"FlinFlon_dcip.geoh5",
"FlinFlon_natural_sources.geoh5",
"FlinFlon_tem.geoh5",
"FlinFlon_test.geoh5",
"MtDore_TMI.geoh5",
"bug_mre.geoh5",
"geoh5_to_omf.py",
"new_data - Copy.geoh5",
"new_data.geoh5",
"omf_to_geoh5.py",
"test_file_2.omf"
],
"index": 5,
"layout": "IPY_MODEL_93d117b1c1ea4d129c348fe57fa1b54f",
"rows": 8,
"style": "IPY_MODEL_fcdc2a82b0124aca97daf5e9dfc123e2"
}
},
"2fbce7785cbf4917b2ea1a6a09f252b5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_37d4b93362794af096f93a0fabd50883",
"IPY_MODEL_9d621103d3e24d668ea972d4c813f445"
],
"layout": "IPY_MODEL_f2388283e4904502a0d9ff929213fa2d"
}
},
"2fc10456468d4c008acf1ca38fe3da1e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Vertical offset (+ve up)",
"layout": "IPY_MODEL_361b1aa102d44fffaa1a207a5128ebf8",
"step": null,
"style": "IPY_MODEL_6c2d7e63ef58417bb48bfd46e0b29428"
}
},
"2fc48186cd89484491e456e5f6e4f9c5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"2fc4e083f0f345c1832985d618780852": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"2fcebbab7e634d078d71cc8e5f24f8cd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_42d4adf14170447fb5de61657cced64d",
"IPY_MODEL_ec90099ec0f7443bb76781495faecab8",
"IPY_MODEL_441e2412c95d4157a67b5b7c0239bb8e"
],
"layout": "IPY_MODEL_8e6881e07b514f68bbadb7bfdbd77c64"
}
},
"2fd3f8ad2e124e159703b59eb909aee7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2fd5941829a24535bb2c5045fd7ae119": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"2fd860354d9b4456ac66a36ee88e61dc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2fde6a3c43d947b5bada21134b4212e1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_de236ffbfecf4ca78136583a09c45425",
"IPY_MODEL_0f59ef078f984bacaec3b7519c6b55fa",
"IPY_MODEL_0bc0edf5480b4a87bd70803de89b6356"
],
"layout": "IPY_MODEL_e9ce895cbec7451f8538b80b991c0bfc"
}
},
"2fe4edaadd6440ef9436e95297775f84": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"2fe5a05cde2d477bb3773e5499f878e5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_1c40afc035a14d68a0ef9d7c82e4e027",
"IPY_MODEL_21912c05977f4f9fa8026360ffc954b0",
"IPY_MODEL_849fd1c380c54b6dbc543dbbdd30cbb0",
"IPY_MODEL_47a8e739f0db43cc86d4d43b84f23453",
"IPY_MODEL_f91f3efef8da4fca9a511450801921f3",
"IPY_MODEL_090dafb6bc404073be054ccdd8087f52",
"IPY_MODEL_a221c08938c44b8cb4600b13f2894765",
"IPY_MODEL_0197f7f6796d405eb4a9195d61827735",
"IPY_MODEL_65644c52bddc426297f25b73e1056004",
"IPY_MODEL_38e3c42a095f41e8a652364d83c2a400",
"IPY_MODEL_66762326b0b84912910003a9be6a7ea6",
"IPY_MODEL_848fdea614474c5b90c86409c79fa6fc"
],
"layout": "IPY_MODEL_fa190946ec0547e5b164cfa4b5249096"
}
},
"2fe703b205ca4e5ca528a73ed7a299d3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_22aaa2409bb04d8890cd0d4591a300df",
"style": "IPY_MODEL_70e83ca55079483b8eb60429d37e97e3"
}
},
"2fea5edda9fe4e9d9cb6062cef4dda6b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"2ffdcd7e28724a0f972e20767f153c28": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_a7bb01ddc06041baa146c4c12389dff2",
"IPY_MODEL_257d1f273ecf49aab4b8adf89dd455d3"
],
"layout": "IPY_MODEL_6930c616f59a4317945165d156d6a934"
}
},
"300da78168694ec7b62f5ac01902f70b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3027089234624f6faeb41f2c210c3a2f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_fd9441c68faf46169aa767a0442a2b5b",
"IPY_MODEL_0ac734b6fd1746c3961294ffa9d94899"
],
"layout": "IPY_MODEL_32f389624adb43308695ac4278f636be"
}
},
"302ad63fff4143d9bdeb57da1d56a12a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_827f51a263134541854e35bab29efc40",
"style": "IPY_MODEL_3b712cb445d34c3fb9050cf4554b356f"
}
},
"303db651ee864dbf94ca287c80fb7f08": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"30434632bf0b46ee8237e1e3e91d1239": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_7def0c40d39c49ea90bb7ba0de82f6ce",
"placeholder": "",
"style": "IPY_MODEL_f1ca67dac33242ee991dc1233e2a245d",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"3043554537394b5d8895614c8e4270bb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"304dc38a0b124aa6a1b48c0e86f300ee": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"305c091a7b3f4735afac2cb7c374ac8a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"305e923b62204a58844284371072626b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_91105df1e37d4b61b345b8528a7b2137",
"step": null,
"style": "IPY_MODEL_e40d592d36434db0806d8f26ddac1c96",
"value": 1
}
},
"306309eddd1845aa832b80fde450ba3e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"30646beba430429ca9309480d8cdf716": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"306dbe5c683f4fa095e2fa90259f3eee": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"307797d4ad354f928bde7478e2a6a630": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"307b4f92122245fbaa707276006492bb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3082d317ec4c4f37a35311b323c9ddd4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"30a5579ee42844aebbc4d366c3419ef7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"30ab8c1949e543b3ba9865667150a443": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"30ae156fe46643c2a4f269d359e4d296": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"30c1ca03131b49cc83df41231e8de449": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"30cb074ac7a943e68794fabe56d1f3bf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"30cb53bc3811443bb4c0538d53966d61": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"align_items": "center"
}
},
"30ce68aec59647c39fc41c1d27fdd324": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"30e6741877e640c3b6f4611d544ac987": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_7429323e63f642e7bada543a48d55aeb",
"IPY_MODEL_a43aa015527f48a9b1745c2c6c1895bb"
],
"layout": "IPY_MODEL_ed9fe4435a7144b4a58370979e6562e5"
}
},
"30e9d4c07ab94b6a8e51f57d1ac30eec": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"310619d45a0b42158d9826d10d679c57": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3106471d4a8f4d52b54e802ead46c0a1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3108e6b0f28e492287c73f90ab471dc3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"310a72fbdf75490191f0e8f058c35164": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"Model",
"Constant",
"None"
],
"index": 1,
"layout": "IPY_MODEL_bacbe58bcac146c5a096e943395b13c8",
"style": "IPY_MODEL_0957c0d639bf45c78ba11e72d07554cf"
}
},
"31218dce20414e228abc8cdb47bcfdfa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"312f35388cd5488b822a4ed89da84626": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"31461c0c20bb41f3823bccf059dec538": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"314c9944c0de4ad2ba7f767fb99d7104": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3156aa576cf74a60a64bb1c31e6a257d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatSliderModel",
"state": {
"continuous_update": false,
"description": "Width",
"layout": "IPY_MODEL_c0b0e08c5c12413f9b6a8bfa366acb7f",
"max": 8802.607126275985,
"step": 10,
"style": "IPY_MODEL_c0f1e6682fd345cbae7e2af85f51f8dd",
"value": 1000
}
},
"3157c3e7beda43c0ba59b7b73a9698dc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"315cf1810bba419aad062dbd00d4ec41": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"31627e901dd441659b87891ec54594e6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3166d86c628f4f64bbd8afa369f3658c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"316cf62f95124af6854894e5bbcf172a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"317a2207081e49ca928a39aeeacd77e3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"317ba641ae5c43cc9d9842bd34b5d245": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"318211d0a1c3424eb77c36014657eda4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"Model",
"Constant",
"None"
],
"index": 2,
"layout": "IPY_MODEL_430b1979379f462684d7ed3120744f68",
"style": "IPY_MODEL_443b216e4b7743ecb6baf96ec0388853"
}
},
"3196b61c96644d3ab33cd4972bf3f855": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"31972012ad1a402d915e556f43b5b846": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_0a3e263ee77c4556bdb2d38237f2a44f",
"IPY_MODEL_94cd83a04cbe40a38dab1551b0831d12"
],
"layout": "IPY_MODEL_9b4c5d3efd4c4d739bf6136007e79b66"
}
},
"3197349de5144dba887d080b841447f0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_6d40d60a239547a6927b537c7a236421",
"style": "IPY_MODEL_e7fc82034f074cae93da49ae68fe1cd4"
}
},
"31a6f68635444e039b6b4545e94b7afc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"31a8ab8c094144f4bd1b31388b5fb32f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"31bcefb6c3bf4e0f871974215986faab": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_2643354d06b040a99dc54c660c407ccf",
"IPY_MODEL_26bd5ba404494f9ebd58a341b6323485"
],
"layout": "IPY_MODEL_05c8d5a88ef54f06a8cef9f76a9b592b"
}
},
"31c85fed08d040c0b182ad0b5f7e2f54": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"31cdd56a92df4f1cb722780e1bd5bc65": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_8964ad28fcdc402e8f66e13622212cca",
"IPY_MODEL_0ed384ae33d54a258ebb3b01a11f5e36"
],
"layout": "IPY_MODEL_67a9a3a6bb044a65837ac8e4e245aefd"
}
},
"31d9291d464148df9e27bde274c8aa25": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"31e08c15fa8d46be9b31c1a9678da810": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_0f58ab9ffb4a40feb229a061c6370c0c",
"placeholder": "",
"style": "IPY_MODEL_ace6338cc53a49438de122b726f498eb",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"31e44274fdc744d992188017d6844455": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"31e48a948c3c4d1fb489b46299f665c8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"31eb08570aa74d88943366e153b2bb8a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_82814ba27a7449fc9391318c4c83c49a",
"IPY_MODEL_b8af190dc13747e5a9a49da9c7595cae"
],
"layout": "IPY_MODEL_8f958229f70f4734ab608e4c352e265b"
}
},
"31f79166ceba458fbb3dfdf5abe5cf62": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"31fdc0f719d243018000c2bc3f56f1fe": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3201b5bc2afb4adf89429ad4bd1c65a4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"3206f11dc5a34267b3107ab6d6474db1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"32092aaa8bb14430ab60b464d16b1c47": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"320c92fd7aa64c268ee50bf7914bbcab": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"321713322a91435e9fba2f8f69a98527": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"321fe86701f44fdd9993623c8157d922": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3220de4331794065be1b68fb35a37511": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"32225432a18a439694c90e6d449798e4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"322fee660a4b42c890d8164addd6ec2d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"323a43614b544cfc8fb24582fe671c47": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_27be1110561349aaab4b7476c2b162b4"
],
"layout": "IPY_MODEL_9fe79440945246a882d1f8af29a92dc7"
}
},
"323c050aef4f4583acaed9904ac33fec": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_09bd852a6f254beebe8286bde586c1c5",
"style": "IPY_MODEL_05e2a8ef47dd43928c652d4c81669b09"
}
},
"323d92f0921c44b1a00759ce3743f0ae": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"324d268600f14cafb2d05166028cb35d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_d4b29ba9c9544f6ba6c30180296a55ba",
"placeholder": "output filename",
"style": "IPY_MODEL_0478926c8626439f8ca21af243921b34"
}
},
"324ffbde72ce4657ac13ea63fc7bbdeb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3251e8225d4f4f49a41b11c6b71380c4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"326c026d6b4440f48e1b0c613dd0e9b1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_e76f2279fad74fdf811b52872d62555c",
"IPY_MODEL_569dc5e4b53949499285b13d4b82ae2a"
],
"layout": "IPY_MODEL_34f70d8f1a5040be8b2c32980bfa7a23"
}
},
"326e9e5f09144776b717fe68a2d852b1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"32779388debd46bfa725b72e0fa1ea02": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"327dd7a2080d40cdbce0a6badae9ca38": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"32837a46e9f84d0db630cd507b307672": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3286feec86e7491c8fc93d72ddf4e435": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"329c9609274d4d9eba58f6010fb663ec": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_b34b1e25f0a44b56be4a034dad6fbf8c",
"style": "IPY_MODEL_e76d7ddfc14043949e67c0295cd1e490"
}
},
"32a12a7f042c4a1b9b43a7e84f860608": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"32ad4f7d1c98496e8c2294c98dc9574c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"32b488f5fcf74a3784b096d8d70bdb1c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_b141441b31a443b6bedde21f4ebc87d4",
"IPY_MODEL_44611f3046c34590a972d8d618bfd2c1"
],
"layout": "IPY_MODEL_0627a92e62af45ae8f4741d5701a8036"
}
},
"32bcd8dc4a9c4a949051948959adfc27": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"32cb0fbebe164e74952a637b5e51b7bc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_742765e68e8348269e6040f6a2e33b1c",
"placeholder": "output filename",
"style": "IPY_MODEL_905c5b97e61041c3a25739f1717bdd90",
"value": "FlinFlon.geoh5"
}
},
"32cd4486f4ee49c39d73a5ed4c86d8ef": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_050d7a1b4243471db4a89907ea262d74",
"style": "IPY_MODEL_229b6cfc68ac4c2a9820469f9527db32"
}
},
"32d04b81a247422992ad2841ca0eed6a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"32e1629191004ada86a4c92265d768db": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"32f389624adb43308695ac4278f636be": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3304a8e795a14413a06d0aa61ab51a98": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"331753aa739c4b0ab50dce020debfe25": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"331a328aba7d439a81f102b4c483af3b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_62a8d540c881466dbcf1d40acc5b89b4",
"style": "IPY_MODEL_02bd22258aff4e319cf253d3f01c800c"
}
},
"3324424866f346cb82c064e4f1f669a9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3326e069683c48eab8d49f86901f28c5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"332d67dde28040f09c1df3b3a54f1b24": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_80b8850e485f47c6bb4b13eedb8025ae",
"IPY_MODEL_107e8e68077c458787b9d1176e68fa99"
],
"layout": "IPY_MODEL_e397283a958c4fc6b8ea5bd84b89fe1a"
}
},
"333384d7b61c423d807950bcf9f943a9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_4600e08281f0400e9d2ff54108136ac5"
],
"layout": "IPY_MODEL_14db09552a524caabbccd0e0635422a0"
}
},
"33406d7ba9094986bc0d929acd12e0a5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_1a9a774a48eb4ba38593249faab16634",
"style": "IPY_MODEL_b6b9c5ae26c24aca9a62b80f55ac0372"
}
},
"3346684cf49d4aa69fc9989b6dd38e42": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "NS-gradient (y)",
"layout": "IPY_MODEL_1ed604b4d7b6471f9f0f9a6d993a0715",
"step": null,
"style": "IPY_MODEL_478a41679d7941b6bf88af49cd55d3d9",
"value": 1
}
},
"334afdaced0d4146afb4765657acc711": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_bd8baf725aea44bc8d55ed85275725a1",
"IPY_MODEL_ec31eacffdfd4c48a6710065bffac06e",
"IPY_MODEL_48ca7b08638c49898677913b50df127b"
],
"layout": "IPY_MODEL_6946cec642c048439bb873a054b03991"
}
},
"3357f048d7d84293a0abf4857c2ac255": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_a3ef2572ae294bcc86a06c638b95c71a",
"style": "IPY_MODEL_f86572c142f14dfd8b50f5ffb1ee3871"
}
},
"335a7135f77d42de8ce1865042a4b2ca": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"3365a49d692e42c59a597dccea5f4129": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"336a770e24dc4653813e2572794b77fe": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"338a5f2f76da46b79be1468edf947310": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"339a2e345a02440fa40d9514a9025f2d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"339c05b8fa8f4c768bae7f3947cadfbc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"33a288393bf845f8ae38828d941b24b4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_76ff0a7812834779aa1cd0a0401b7a67",
"IPY_MODEL_ba820b18547146b4b2092707e23daf59",
"IPY_MODEL_0bd3c410a7374d849a567327e5f63ad9"
],
"layout": "IPY_MODEL_fd3582198bca413698d206a0721dd22a"
}
},
"33ab59c8af35428dab6e6ce590dca8d7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"33b6811aed95421482c3990ad254b6bc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"G:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"D:\\"
],
"index": 0,
"layout": "IPY_MODEL_e64274a7f2094dba99293781c55e9745",
"style": "IPY_MODEL_68bd5c54417e41089bb9b8a6e9bcd440"
}
},
"33b77681fe334485b16d94f0e534595c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"33bfd0fc290a48709ded577d67bb6657": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"33d07be531624da3878576d72b757c17": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"33d2c40f21894f3f9641c5d472706b44": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"33e3577aea784d84a946152e7eaadf3c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_704656b90ca943109c5677e61ee713c4",
"IPY_MODEL_870d1731bf9f4bfd802c0136db61674b",
"IPY_MODEL_8c343deb2ae34996a8bd9ab8c6fed7d1"
],
"layout": "IPY_MODEL_f0c36a9101474065ab5a6d58f79a27dd"
}
},
"33e488e4a2f744f0a897fab93aec0496": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"33ec266aa63f4d50ac40f8f1ae74b9ed": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"33f8e0cfa7a64b9d852cb4cad7d36be5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3401f8ae77ba4a87a953024be6153a75": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"340e3b7881e84448ad010fc28a8c8129": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_e83a02395dad4a57824938961aa83a30",
"style": "IPY_MODEL_f3f318a011d94b43a3e7c151e748e646"
}
},
"34115c1421fc4556874c18428d3fc983": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_44d1f95e09714e11bd33761cb7b9c29a",
"style": "IPY_MODEL_25d94cfad2aa45c4a9491418ce0df9a5"
}
},
"34128d9a439f49dc962d0e68d2bfdb50": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "dz (+ve up)",
"layout": "IPY_MODEL_88a23f140ca24410a5d31716434a8987",
"step": null,
"style": "IPY_MODEL_82528502c53445459c5b41c740b1a214",
"value": 60
}
},
"3428b53a5cde45b1a25968b4bbb71e92": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"342a49edf67e40c0836acc39ebf096d8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_242a4563b16b477081b0df4cd69b7890",
"style": "IPY_MODEL_639004eac1874bef9daaab01502f22b3",
"value": "Monitoring folder"
}
},
"34331fe4e9cd4e669a1cc34afb18856b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3433267c1de74f958d0fc8d6758f0be5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"344717b86870492687bfcfa2049ebb92": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"34471c9e43d741978bce0f887b375f8f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3447fe7268684cd0bed16820b62807f9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3460aaa26e2443f3ac7dde7131de843b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_19fa3901077344598de88e4b3fcd99a4",
"IPY_MODEL_b66b2cd2ef154bd3b85f1f3e2992d70b"
],
"layout": "IPY_MODEL_e7feee8252854ae393af80718b87d767"
}
},
"3463851655dc4dca9b6cb4e8825f9627": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"347662e80e2d4d7aa93370de2cdc8151": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "IntTextModel",
"state": {
"description": "Number of tiles",
"layout": "IPY_MODEL_4400ade32133486392a7226b97f9797e",
"step": 1,
"style": "IPY_MODEL_0add51315f7a497d8f3922db6c049555",
"value": 1
}
},
"3477cd61f2e64d5c986d92c09273d6e1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_91975c7d8cd94303923b92376e513268",
"placeholder": "output filename",
"style": "IPY_MODEL_8845f2a1f22d4c8db12e8b8e09874410"
}
},
"3478bcc1d466477a9950ee78f4d083a8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"34826dacecd34cc7b990b133d3051612": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3483dcc534ec4d09b58e1b90c7c0286f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_19fccddbcb0e4e8dbde7be64203ca36e",
"IPY_MODEL_788fcba4dd6a45d48f6f17a10df45228"
],
"layout": "IPY_MODEL_8c93f33e36a449a6817ed78e1df981e0"
}
},
"349113eab6f74a258d7169391f0e4851": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3498efde861e4953841d1d0a719726f8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"349ad99f24c441e79c40d3d4a24300a9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"349ae53419554343944331ff45d992ff": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"349cb6b2bda14eba88455248bc979661": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"34a03bf085a9401fa4dcf62f9112c89d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"34a41f19fa29452eae891781b4c07f5c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Maximum distance (m)",
"layout": "IPY_MODEL_a9a8af443f7e4b75b7d76e47dfd91cdc",
"step": null,
"style": "IPY_MODEL_3f5b73b95dc544b5aecc0a41aa24186e",
"value": 5000
}
},
"34a67f3ad6df4a8bafb784fb3fd59f9c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"34abd3adb024424cab1fe6b63e31edfb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_5a3b56e8137b4e789743021643514a51",
"IPY_MODEL_81a38c2de7d248eabf930ac9353732c7"
],
"layout": "IPY_MODEL_5afcff9c3a934c90a95159396ba6965a"
}
},
"34af795d5a464b8f8229194c88c1c620": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"34bdc152806b4298acdf630055d914d5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"34c087260a8f482d81013ea2791f3c35": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"34ce396184764f7baa7d0cb8b52ae1e3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"34d554b6b63a4c0ca375069ac3223ed9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"34d5da43815148d78c4f33337ab56895": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"ISO/Iso_Iteration_7_model_5_00e-03",
"ISO/Iso_Iteration_7_model_1_50e-02",
"ISO/Iso_Iteration_7_model_2_50e-03",
"ISO/Iso_Iteration_7_model_1_00e-02",
"ISO/Iso_Iteration_7_model_2_00e-02",
"Ore/39_Ore_Callinan",
"Ore/38_Ore_Dan_Owens",
"Ore/40_Ore_FlinFlon",
"CDI/COND_surface",
"CDI/COND[8]_surface",
"CDI/COND[18]_surface",
"CDI/COND[3]_surface",
"CDI/COND[13]_surface",
"CDI/CDI_",
"Workspace/InterpGrid",
"Workspace/Inversion_VTEM_Model",
"Workspace/InterpGrid",
"Workspace/Gravity_Magnetics_drape60m",
"Workspace/CDI_VTEM_model",
"Workspace/Data_FEM_pseudo3D",
"Workspace/O2O_Interp_25m",
"Workspace/geochem",
"Workspace/Inversion_DIGHEM_Model",
"Workspace/InterpGrid",
"Workspace/Topography",
"Workspace/Data_TEM_pseudo3D",
"Workspace/Data_ZTEM",
"Workspace/Mesh",
"Workspace/InterpGrid"
],
"description": "Object:",
"index": 18,
"layout": "IPY_MODEL_218aee5e22ff4364886b80955f1b1503",
"style": "IPY_MODEL_a1d740ce87184e6a82fd9869c0475512"
}
},
"34d69719e99d4ddc8520d3b458e53011": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"34dba37afb484aaca7681ba247d3a92f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"34eb6abb838e437f84d4973520cfae4b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"34ec8b3537de454e8738f081a1e29576": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"34f2bedc04ca48948adb100f909f3f96": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"34f70d8f1a5040be8b2c32980bfa7a23": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"34f7ef7d6ea444e1b055a4a12d606b6e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_c1f6768af59347ddb5441ad05e29c787",
"IPY_MODEL_141e53264d694cf691f29bf9a2e4d84c",
"IPY_MODEL_367a34d543fc4a85815396d9e81d2b25"
],
"layout": "IPY_MODEL_98e1d139b719416889509fa0ea0a84a9"
}
},
"34f81a4a98114deb80e5e5bf49094ae4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_67340174a30b453c9a3a3cc414217ec6",
"style": "IPY_MODEL_81954c675b584987a58d3b24e7d49087"
}
},
"34f939f28fe1499489591d5027ab0ac6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_83b70eeccaea4ff19921eb5c26abe44a",
"style": "IPY_MODEL_938b7940a1e14d81b0e9431cc2211a07",
"tooltip": "Run computation"
}
},
"350bcce54dff45afb10e00dc354cc23f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Values",
"index": null,
"layout": "IPY_MODEL_1f5479ac8e004d03818f370d7a2b46d7",
"style": "IPY_MODEL_cffad106c181465baca5c75c14a6e2b5"
}
},
"35146f52642b45bd93ce199b6858e4bf": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3515bbc1a1544e508e216d5ea03fc68a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3529b5b9befa40a6848a94ca4bbb1321": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_65d7a1cdefad4e1481ea5059c7e5c9db",
"IPY_MODEL_c492bcc91012472397d879f250069c7f"
],
"layout": "IPY_MODEL_d510070c1205424dafed49a478ceeadf"
}
},
"35345ce5281045199bcacd8461b0c764": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"354466ea0f324ea8bc42853fc2fc5745": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_a8bc839a0eca476880e008cd932d61a5",
"IPY_MODEL_ef2a7bf9376e4ca4bb8b205dc74daff9"
],
"layout": "IPY_MODEL_f86587f8a18a4b59af8f3badbe91e066"
}
},
"35448168362e4f2baeed3f0da6235816": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 0,
"layout": "IPY_MODEL_324ffbde72ce4657ac13ea63fc7bbdeb",
"style": "IPY_MODEL_e528bd26ee2d444bb6c4ffa142762287"
}
},
"3546a479ebff40c19eb910ff7cbc992e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Amplitude (nT)",
"layout": "IPY_MODEL_f220f435a58f4061b3de6ecfdc678e84",
"step": null,
"style": "IPY_MODEL_207a7661656c4419829d7406dd304405",
"value": 60000
}
},
"3556f4e672bd4d809b2fc85e2aeb9071": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"35589ea954e447d2922b7dabf4bd9202": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3560f445cf214d139ae1d9f9809dd284": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Bxx",
"Airborne_Bxy",
"Airborne_Bxz",
"Airborne_Byy",
"Airborne_Byz",
"Airborne_Bzz",
"Airborne_Guv",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 0,
"layout": "IPY_MODEL_730d4e54e08643319fda283f04791a91",
"style": "IPY_MODEL_e226b50bc18a4da1aa2167951d5999b0"
}
},
"35697fe32d4b445aad28021460f277d6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_86af0bc16bcf4f3da502ebee19920ae7"
],
"layout": "IPY_MODEL_f0528b257d9941a49c2a388389ff100e"
}
},
"35771c3693e1450589f2e3234a986dcf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_516c4b7346414e408949676d4b8ce65c",
"style": "IPY_MODEL_9672743c21944d0098edd6c287ff8b9b"
}
},
"35885ec3f3134b4cb1e4d0833f819166": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"358fc728fc9e4eb3b597ea794464ac2b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"359d5dce41ef41f9aaf8802277a10c5c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"35a3db8aa624472e92389c3950bee115": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_647a051a8f3b4233a3175af3bb421854",
"style": "IPY_MODEL_680791185ca945b3aa926076e530ec4d",
"tooltip": "Run computation"
}
},
"35a80b5afb49476aaf0310f92d03c10c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_2cfb8550ec9e4b13a22670c828cb4ffc",
"IPY_MODEL_3460aaa26e2443f3ac7dde7131de843b"
],
"layout": "IPY_MODEL_6c2560e3c68c475eab549da2435567be"
}
},
"35c8dd3ce9e24ec99c93f1da4262ee6a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"35d957bbda8243129f560cb050b5b3b9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"35d9feba87fc490fb3e0bd1474fe6758": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"35f4b46760e74688a1db8b88efc110a9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"35f5c7b7207748c98397491e9d09a75b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_4dd0313c190f4f7bb6415f0dd6ef6b75",
"IPY_MODEL_9dec2f6ba4e54ae5b2319872c4e1801b"
],
"layout": "IPY_MODEL_94e5a60ecd5b4c459d31b7006b7cfce5"
}
},
"35fa684cd4154c7d989ca2c57ac2394f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_42df5c24c0544017b0eea9a0b29dff04",
"style": "IPY_MODEL_246f0f946ec643db86d71cf3d37043c8",
"value": "Workspace"
}
},
"35fcc3fb3ef54a528edaef8ad0f65198": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_63fe46dc4d6347d0b4d8400696d62c3b",
"IPY_MODEL_e633c72697cb4c0ea54d0644eac8e5a9",
"IPY_MODEL_622c438ce5784048b9adad6619448666",
"IPY_MODEL_abda4b8debb648ec80b3f7f481a9a97c"
],
"layout": "IPY_MODEL_bf9385f0b8014ea0bf039cbccf7a5859"
}
},
"35ffac09f98342619f7693a94926465a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3600a23f03df4a5181d3b459fb7b1f1d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"36027c8a20d54b6886d8d8dee14968e0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"360549fd87a34b4e9c5e000165b4cf4b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"36077461081d47288d8c56c4cc1bff55": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Ore/39_Ore_Callinan",
"Ore/38_Ore_Dan_Owens",
"Ore/40_Ore_FlinFlon",
"Workspace/Inversion_VTEM_Model",
"Workspace/CDI_VTEM_model",
"Workspace/Data_FEM_pseudo3D",
"Workspace/O2O_Interp_25m",
"Workspace/geochem",
"Workspace/Inversion_DIGHEM_Model",
"Workspace/Topography",
"Workspace/Data_TEM_pseudo3D",
"Workspace/Data_ZTEM",
"Workspace/Mesh"
],
"description": "Object",
"index": 0,
"layout": "IPY_MODEL_f2cc7b6fa62a4327b32b147fae9d390f",
"style": "IPY_MODEL_6bd0a9584c644f0296924ef2ad7613af"
}
},
"360eece53a5c4f1d9dfcb1503ea7b8c7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"361b1aa102d44fffaa1a207a5128ebf8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"361bef9d7b084766b694a0218a155d85": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_b4e308a1fd1c40aba8fcee4c2ac192ad",
"IPY_MODEL_5501040a7363458ab559421aabdd483f",
"IPY_MODEL_4695811b162f4bbb80ded719d0261c9b"
],
"layout": "IPY_MODEL_ef1940bf074548b6a38062ebbd7798a3"
}
},
"361eb680bd6f4952a85525f22cfaa04f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"362493f8dbb8433595fc32e899dff1de": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3630fb1681c048aa8e0a675d7f430261": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"36362a62b2354d51ba730793ffea766d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"363b99ae13884317bc37fd443c0159aa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_9dc9a7ba058f48a3ac74ac1a45034ee6",
"IPY_MODEL_285fa01cadf948f69996a36e708b2445"
],
"layout": "IPY_MODEL_783219116fdc4ef0815fe8c651f11131"
}
},
"364def651b7c43a98b80178de0d03286": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3656518e9458433084c606b9b60a45f2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"366e9a6502f04d47b8a2e2f7bf9512b1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"36761de68ea04ce08cf5c193e3d0db2f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"367a34d543fc4a85815396d9e81d2b25": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 Temp",
"📁 uijson",
"FlinFlon.geoh5",
"FlinFlon_dcip.geoh5",
"FlinFlon_dcip_v4.geoh5",
"FlinFlon_natural_sources.geoh5",
"FlinFlon_natural_sources_v4.geoh5",
"MtDore_TMI.geoh5"
],
"index": 3,
"layout": "IPY_MODEL_ef3a6c634c8347898eb90a6dc25e0817",
"rows": 8,
"style": "IPY_MODEL_518604dbed8045288022a68742b3f208"
}
},
"367c1462607b4069bba6ab1c53970564": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_2b44ce5ecd114c60a62f747c0b6c0d4d",
"IPY_MODEL_100e1be62f844a329ae793fe79a685ef",
"IPY_MODEL_007964c69f4e45888050d4e66424b6ab"
],
"layout": "IPY_MODEL_6946cec642c048439bb873a054b03991"
}
},
"3685dd443f3749d28290ed6e6d865b9c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3687db2bbd854af2a323a6f6e359a18b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_d6c4269bebaa45de8a9048e99eded7cb",
"style": "IPY_MODEL_c66d579ee87d4ee881448a3ee082cdfc",
"value": "Inducing Field Parameters"
}
},
"368f4d1f7949427b8dc8518329623ef0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_c8a7f13b7b3f4c46b6425d141ded87c6",
"placeholder": "output filename",
"style": "IPY_MODEL_1c8f2a0201354d6f88ecef59019df77d",
"value": "FlinFlon.geoh5"
}
},
"369c63e3a5714b429edd934558e2ca02": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_43082c1c7b494addb8e34aaf5b2dd295",
"placeholder": "output filename",
"style": "IPY_MODEL_bb176c33119447cbbb132da14663ea72"
}
},
"369dd40d238d4a1e8b0f407fecea049b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_bf66a8d1310e4495a61453faf86ba83e",
"IPY_MODEL_cfb7fc7c919c48e38a71bdfc5e07afae",
"IPY_MODEL_aec2569cf3c64eda9d7d023cc0121c54"
],
"layout": "IPY_MODEL_30cb53bc3811443bb4c0538d53966d61"
}
},
"36a44483dcc34cb2b3363253a0e48299": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"36af0d7195654d6199c6ea5556427827": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_689b89000bf34fd4aeaaeef4b6f7daa3",
"IPY_MODEL_cd5d15df78734c91984bc9737597cbfd",
"IPY_MODEL_a654097f41ff400d94ba57c906b99da2",
"IPY_MODEL_bd6e63591496454e981c56d8ce1040e2"
],
"layout": "IPY_MODEL_8ed1d5aefb2b423a99ae0cb62e006e9e"
}
},
"36b58bfaba44428b82ed92e76e30a3b7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_15e7b2ab99474180a0f16979c9bb5b52",
"style": "IPY_MODEL_b970a01648164127b973f7cfcbad3e4c"
}
},
"36ba4d5420b645ad9b3c4ecfc8514acb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_8afc48fca1ea43bf864d2539f9fe6645",
"style": "IPY_MODEL_d2bc7a273ec84504b0c3de50919674a5"
}
},
"36c36be38f224f939fbad004f3cb2222": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"36cb0e03c48143f0bec1d69f3883fadf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"36e9bfad44d341d5bc8f8a169d0c0784": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"36f1cdd38f0f49e7a4de47c3dcf0ae67": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_bf5a3840491c41a6817a67d2c4a5dfa9",
"style": "IPY_MODEL_e36194bfb87845e6bd4a6d75a589e0bf"
}
},
"36fc0bcb62794a57974a5ad8eceea1ac": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"3705e4ca19ed400c804f4208acf849d2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"370c5b5a249343afbb1fa37f7488fd26": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3710b9059acf4fa389a1e90d4b4308b6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_d512241aef524d69b7ffffb1d1f5bf84",
"style": "IPY_MODEL_a489dae667db431980e6d05268e3760e",
"value": false
}
},
"37220b758ff342c0976e7659c8650e40": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_1b5b37f65bff4048baae6465119812d2",
"IPY_MODEL_3a89b87004254d7683ca232558a4786d"
],
"layout": "IPY_MODEL_bb6727a759d947b699e20b6fdfd8e6fc"
}
},
"372378d4f4ba475ca74468f4d98048ba": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"3735683846294235be75642c13bcf19d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Colorbar",
"disabled": false,
"layout": "IPY_MODEL_f6f95ccbf414412dafc05f40f195e51f",
"style": "IPY_MODEL_099ba880d3af4b5e987913f0f84e6dbc",
"value": false
}
},
"3750a78113cd44a591d1e6657e99496c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"375129dd694d44a99270d1570e030fb9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_7b7e460c95074ad6bf08c55ceee1279c",
"IPY_MODEL_f6e4686e01154e86992611c0c83804a6",
"IPY_MODEL_2fcebbab7e634d078d71cc8e5f24f8cd"
],
"layout": "IPY_MODEL_24a2f51b403f4950b0c01e4b047d1730"
}
},
"37520b53ad064b9dbee75909f739c707": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3757daeaa8834828a9771863159dc9ed": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"375c24b76c104318b0344a331d49755f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3765de0e147b496b807e6c2cb18ba177": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Units",
"layout": "IPY_MODEL_3f6a1eec42de40c68256809c2f23726f",
"step": null,
"style": "IPY_MODEL_55a4484fdf9e4c4dbd64a4caeb316172"
}
},
"377538e36e264867970daf6654d1208f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_1ef30c258ac341a689063104000005b5"
],
"layout": "IPY_MODEL_badc0f52b33f450aa704d026ef87113c"
}
},
"377af7c8d12445d98ac55b3a20091125": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_f973f489fae44550bea0d9e442d06248",
"placeholder": "output filename",
"style": "IPY_MODEL_2872ed5b3cf6420c94975fab7e476a5c"
}
},
"377e9ff863054e4c9c3209d352f07ec7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"3797317df35342dd954780dc3a856c0c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_31c85fed08d040c0b182ad0b5f7e2f54",
"style": "IPY_MODEL_48281e4d31c04e3b895d9729d9ef8a9f",
"value": false
}
},
"3799038e459f4b69b877773c52205e0e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"379b94afddff4c1faf1602c05a1e875e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"37aaa6e0abf04613b9595263c12c53ac": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"37ad827aefa44b1ebcdb45f2a173dbf5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"37b15965fc9847c0a70e23143562b58e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"border": "solid"
}
},
"37b5ffed87e741a98397288e5249973c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_b52e70b8644942ef8c09345fc0c75ec0",
"style": "IPY_MODEL_dda7be4a00834048ad02fb2d48be8a54"
}
},
"37c2fc387bcf471d9457e922e4899b61": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_9cb0ef62c15248208fc706d96a27b74e"
],
"layout": "IPY_MODEL_79b60bf6e858412094d32701f5d60fd2"
}
},
"37d4b93362794af096f93a0fabd50883": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_0ac5962361ba4f8ca3dfe69dc498ad93",
"style": "IPY_MODEL_e829013bcc4c4dadab712dc701308da2",
"value": false
}
},
"37d4eb8e909243c1963f10cdb148b359": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"37db1adebbd94c9e852ce904654e9d6e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"37eaf310e07b49f8b39d378b7a8af752": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_599db2c0d7f548feb48a2ba5e7a6857d",
"style": "IPY_MODEL_cffa69afb7544f54a62c6a8b34373ee1",
"value": "Uncertainties"
}
},
"37f85d6bd893499ca8038116ff193bff": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_5f08a836b10b434ea0e6d95cce494740",
"style": "IPY_MODEL_1b54cb63aec04a628c867cd0eefb35bb"
}
},
"38073662e7ad4c3caa441ac51218a92a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"380981b3c4954b0a8b811a4d09ec6734": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"38194eb3e2aa4a39861e56d330975eb0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"G:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"D:\\"
],
"index": 0,
"layout": "IPY_MODEL_41a943cc52de48b68477373fcc116a56",
"style": "IPY_MODEL_e8745e58a2cd43c989569f1b69374d59"
}
},
"381ea4953c214f57972a72497d547d33": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"381efdd932c347aa91d38e7f1d0cb263": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"382db5d485a5417ea1363812a65971f8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"3837caf6622243bb89d025200df1f8f1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_37220b758ff342c0976e7659c8650e40",
"IPY_MODEL_9e58afbd8c8b4decaa987f4971e95bc7"
],
"layout": "IPY_MODEL_f58a01a16f80401bb5ef95b681c45e43"
}
},
"383c0dc1678c4ac18a23b2d202ff58b9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3849e087214341aea7f3259f8018a2ad": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"385ea8bba0694f70910af469accd64d6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_ec13cc6f0ff34f42b4b5ac4308448656"
],
"layout": "IPY_MODEL_020537f2d1564000b51777227fd6de3d"
}
},
"386c6bedf7504d298be839ff7f6a6412": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_5cb51ac8a0e34d02b97b11fdaf0c0c3c",
"IPY_MODEL_4d256d6437e44c09bcf2bdb283a64cf2",
"IPY_MODEL_0d3d276ae33243ba9da366157fdb58bd"
],
"layout": "IPY_MODEL_1e9e06a5a769403ea5bebe7e19e0e8cd"
}
},
"38738de09fd5403c9170a7f4dac319b1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3889801660c34ef482c9c6c5842350ce": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"388b3711fc3e435da7f2d3e7df1ae67f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"388cf48f0eb04f8baaafa9a81b660017": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 .."
],
"index": null,
"layout": "IPY_MODEL_75acc807e2b640958a32fe357a1fbb39",
"rows": 8,
"style": "IPY_MODEL_0be174e4c08f4475bd2243e708d07992"
}
},
"38c9c68fb6ef4fe69b6cc34ebabe842b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"38e3c42a095f41e8a652364d83c2a400": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Horizontal padding (m)",
"layout": "IPY_MODEL_ff3768d509a3403d96aaad76e705087b",
"step": null,
"style": "IPY_MODEL_d620ab495b6044bebc999d74de05ff24",
"value": 1000
}
},
"38e85500c7d84e978f39bc332027f5c5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"38eef4bf455340cb9dabff6502c77f97": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"38f12b2a8e1c4baf888b61571e5b2d46": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"39002b00b9164ebcbec6afe2870b4f2a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"390899de1c10424e81cf8ca53b022767": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_f87d78f4c0ba48ac9e945709efdb7698",
"style": "IPY_MODEL_3e0e552571cc4d5a90ee1c9353cd2d40"
}
},
"3909aef83bf5425abb760f4257b2bcd1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"390c93d70b44473db586f54a9a7fc36d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"390d5e486a1a443691a401bd3ee81f70": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"39104440e54a4c31a251118a6212bd6c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"39137bbdfabf4442ac1b37fdb3ae7124": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3924ef876dfb4aa89d8a8232b07f9bc2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"3925db8c756a468d80eb3380e1529561": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_d8646e8ba53b43c6b4335e88effda6ef",
"style": "IPY_MODEL_484e869931e04a8a9664eb1693968a55",
"value": "Save to:"
}
},
"3927b84bfe1d4bc7aa5f4a2ec488e2ae": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"392ef9db29f145458d8444e1c44d3cf2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"393170b7b1dc4613995d043e59e564d2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"393678545b3745b9ac34c4417241d180": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_d77362626b134ed489adfe932ead25db",
"style": "IPY_MODEL_637a694a05c841b08c2cf7d355aab803",
"tooltip": "Run computation"
}
},
"394217b315214d71bc6542d68d0229a2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 Temp",
"📁 uijson",
"FlinFlon.geoh5",
"FlinFlon_dcip.geoh5",
"FlinFlon_dcip_v4.geoh5",
"FlinFlon_natural_sources.geoh5",
"FlinFlon_natural_sources_v4.geoh5",
"MtDore_TMI.geoh5"
],
"index": 3,
"layout": "IPY_MODEL_ea1b26446b004aa5b45b0f246d349f5e",
"rows": 8,
"style": "IPY_MODEL_3db115ea9dda4e9082038519dc9ffab1"
}
},
"39422bdb2764439fbe031e55fdfdbed6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_dc8c9cd1238a49feb8d4afb535703515",
"IPY_MODEL_baa2de2f648e4485a9b7363b1c0781a1",
"IPY_MODEL_9aea0c76f41542f98ab60f6b16ef6bc9"
],
"layout": "IPY_MODEL_7269fc669d36456f8cf45cbbb218af72"
}
},
"3942e96684884e778f00ac12f76ba522": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"394c36856d29489a8f93a3bed5392ace": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_4b498abfe0b24c0ba5a50bbcc8c68d33",
"style": "IPY_MODEL_f3cda1f5ac9042758d8e5073fc3d8d06"
}
},
"395a23b570cd40f9934a54c4ed77b225": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3964b16aaf594e049bdd2fde1226638f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"396a267888034b88a1347fe83c4ed2bc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"3970788c630b4dd69a7bc6fb2c6d4a71": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3970ecef82e14dacb65486c1c6077e33": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_725eac8a78414ef69a90c8cf90b03773",
"style": "IPY_MODEL_e54b9bcf51b247b6b31d8830ad9caf8a",
"value": "Sensor Location"
}
},
"39729f63e7ae4ae285ee6836c4a650bf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_ea968a01490a4e68911067906634dcf6",
"placeholder": "",
"style": "IPY_MODEL_ba7f4bda1f1d46cf9d5c16edffcfedf7",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"3986763939a44ff5b0ae71b377c14952": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3988fc706d80496cbfe657b2f5af01ea": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"398c7639f2884dd1b28c0c5372afe1b5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"399960b541d0426f9e0136d41a2c5c24": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"399f4e930c974e79a03fb1257dcd4e6e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"39ad1df193734b2ba832baafbbcd883f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_b95d1e3f15ab43b2af6d2007329dfff4",
"IPY_MODEL_d073fa560ba24c848709b05456a20f45",
"IPY_MODEL_bb92238990d14fb183fe5028dcd2349c",
"IPY_MODEL_1a280c0629be481889cd3761782a4b2d",
"IPY_MODEL_e037c84fddd4489fb15857cf1b5ad258",
"IPY_MODEL_956a595345d44293b66cc49fa4fe0cf2"
],
"layout": "IPY_MODEL_b3bc747cef494362b2b60a23003bfd8e"
}
},
"39b6b4cb79d44b1ca79e5cbfe33fb0a6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_ccbd30c632c7415197f1337141b20719",
"placeholder": "output filename",
"style": "IPY_MODEL_0841fc59a84240feb3de04c9422ca02c",
"value": "FlinFlon.geoh5"
}
},
"39b7cc787ebf4c5aafa89826af095071": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"39b962625bd743fead8fd556860ec20a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_06a67525b2ac4120baa7cf85d1325805",
"IPY_MODEL_2a27c74cf94f456780939b77f4f6d206",
"IPY_MODEL_8c4f2ea065f74f608f8e7aad653c757a"
],
"layout": "IPY_MODEL_2ded96b474f0462290b47dd42bc9c773"
}
},
"39c0a4a8bbfd498fb62794f4e469c3b9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_fdea7f1ead084ffb89e63c545d062fb8",
"style": "IPY_MODEL_01d42885c6b04b19ba4d39d30975979f",
"value": "inversion Parameters"
}
},
"39c3c09d329c419988af5bdefb56b05c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"39c410ef4921432791afc65e914c15cb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"39d128f97a83496495f304897f43f305": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"39d14815d74847f89ba67114ad943bee": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"39d24734d90b426184a2ab4a4b19dddb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"39dba6ce931f4561b4eb472e235a9b0f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 SimPEG_PFInversion"
],
"index": null,
"layout": "IPY_MODEL_e86a404f16ea42918a86ce885af1991c",
"rows": 8,
"style": "IPY_MODEL_e26f4d40b1c54d8cb169b24aa601d5d8"
}
},
"39e7c12cb8ad4ccf9a9b8e68ee0448f9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"39f6a523a7d54a47afe5efaa9166cb02": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"39f9659b20e54bd3a025a18b5e8b86ae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"39fb04a783d54cef98f2b2c86e5664c1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3a04b3701b034acba70faab3ecf038d2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_a9daefb59ea641008b77eada2b1249bf",
"style": "IPY_MODEL_ad1445cb4dc942728718e7aedc78df3b"
}
},
"3a0e36fb445f43879506969716e1e5df": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"3a105b9503c44edaa6bdc159fb8ffc3c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"3a1bf0bb1a3f42dea58be20c771280bb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"3a22cac64b4d4773a817c10ab67f4b3b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3a3073340a4849ba959178c3019d7278": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3a3318cac64c46f3988d1c8c2b3628ea": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3a352dc0d81b454d959195775aa5bf4d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Data: ",
"index": null,
"layout": "IPY_MODEL_8532e8b6cfe144af9616b69bad10e81c",
"style": "IPY_MODEL_b1e968431e334ce6a00d68b160e0e031"
}
},
"3a353e4da2134dabb70c4fbca629b527": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3a3ec2063d7249719d989fd84700a16c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Data: ",
"index": null,
"layout": "IPY_MODEL_7542e906a76f47b6b9868f42df999e73",
"style": "IPY_MODEL_390d5e486a1a443691a401bd3ee81f70"
}
},
"3a40cfb32a064e92aff76d1cb4c1fc39": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_7332a618e0d3439abfd8fed8a377e94c",
"style": "IPY_MODEL_71a8b91d856f436b8b0089e818dd91a8"
}
},
"3a49ca036d8a4ca8be435d41c015985a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"3a52ad32f1594ffc854793fbd8675d64": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3a549edc750d4a6fa27094566c194ddf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3a5c2dd6d63b485491222193e6ed3639": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3a69667179fe4b4cbf461d6c35406dc4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3a79dcd287fc46ee819de8e438873372": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Values",
"index": null,
"layout": "IPY_MODEL_d85385969ada469b9f7bc0091d03ccd7",
"style": "IPY_MODEL_5a194a3404b24f5d985fdb8cce44f182"
}
},
"3a7a65467bf84b3a9bbc50aedabfc130": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3a7c78a0331f4860b5867ef8f2965ae1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "dx (+East)",
"layout": "IPY_MODEL_9b2d5427ba49442fb50378aecad18f7f",
"step": null,
"style": "IPY_MODEL_e40de32b0eb74ec28fe0a93da5aff7d5"
}
},
"3a7d55e599d84b539f7225b56e87d43d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3a7e08bafb1b41c08628ba7f450669f8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3a84460fefbe4bcc940f86d30462bc20": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3a887bd3d698418ab2f6cd2ed35afb1d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Bxx",
"Airborne_Bxy",
"Airborne_Bxz",
"Airborne_Byy",
"Airborne_Byz",
"Airborne_Bzz",
"Airborne_Guv",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 0,
"layout": "IPY_MODEL_fa56e977a81b49f18d70afe1b3053ea9",
"style": "IPY_MODEL_1c70911b609d49a59137aca7cfc34118"
}
},
"3a88d6b5b95748aba9402eee24419dfe": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3a89b87004254d7683ca232558a4786d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_cd58b2fe4d354a92adf34aaefd667b69",
"IPY_MODEL_081f15a2867d47f7a5da758c54106c27"
],
"layout": "IPY_MODEL_70274e8b99d84860abb2d1b646091dec"
}
},
"3a8a589798b643069dc925329ef6908e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_cc19fc59a528496bb718e8bbf2b6ee27",
"IPY_MODEL_8255444031d54b01bc75495ce6fb221c"
],
"layout": "IPY_MODEL_72c2cce6cdc249c4a93e30b33c2b529d"
}
},
"3a9ad5138e35402bba5379581144523d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3aa8e2f5bacb449d8e2fb24789f762db": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_fbfdd562254e4d2f8ef1186919282a49",
"placeholder": "",
"style": "IPY_MODEL_70e7a47712bf418a98b143892995e8fd",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"3ab2b7c709fb428390a9f588620dcaf1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3ab46c9cbf914b5498352fb7ae9f95eb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3ab493baa2b54716a5a7ccc8fddee335": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3ac0dc76b4274f3482b38f61213931ea": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3add9eada5c240f78c8ec2031cda0ecc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 0,
"layout": "IPY_MODEL_1eb6156da5264ee4b3d0dc199e18a9f4",
"style": "IPY_MODEL_504b92ac72e54af3a08ae5321bcd6bcd"
}
},
"3ae4342aea074a83bc5b5e8da2acb299": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3ae872bbeff5434b80b82f3d27dd439a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"3af42aa3f907452ba3aabc4d4d461f05": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"description": "Zoom on selection",
"icon": "check",
"layout": "IPY_MODEL_4a7da759ce2d4b1e86c617089e290b11",
"style": "IPY_MODEL_04f934aa9fad4017841bda11122593e7",
"value": true
}
},
"3afcbe51096e444981e7cdeb9e1062c0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_b275c6a199f24d0183d00b0eeb00e604"
],
"layout": "IPY_MODEL_934596882d23405eac1715e4033a87e3"
}
},
"3b0390d916a345fd83d28fdf532f19e1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"3b06b6b4b3d8490b95fb69d1140452b1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3b0ba9e027684c4ca8c42d867e2eb1c8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_3b914640b9b04c528bfc1e24046f56f7",
"style": "IPY_MODEL_3b9455e8aee94168ba0dd6c48b3c2213"
}
},
"3b131f173a494298bf881f269472a7ac": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3b1b610207c7452cbbe79ea11890f721": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3b2e00a716d84c81bb32ea29b520b322": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_cab6ac37686a441c9885696899e7c8c4",
"style": "IPY_MODEL_cc5967a658f34a278755e537bf17d2c5"
}
},
"3b32727e310345669a4dd8a6a1f5e14c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3b487d9d2b1f49ae8c01ddab1df87e04": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"3b712cb445d34c3fb9050cf4554b356f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3b887196cdae4f02a06ef9831105f1b7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Beta ratio (phi_d/phi_m):",
"layout": "IPY_MODEL_5cc9e6943687449cab9c6dc3ccabc85b",
"step": null,
"style": "IPY_MODEL_a83a8b8794c543edb56e21e11ed361db",
"value": 100
}
},
"3b8f579e7668476595d7d33572aac888": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3b90fc788e9243b08eac701b33ee876a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"3b914640b9b04c528bfc1e24046f56f7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"3b938e44569b46a59540c5aac8849e82": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3b9455e8aee94168ba0dd6c48b3c2213": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3b9ce5dd7bf04ccc897a25e05c47b3d5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 SimPEG_PFInversion"
],
"index": null,
"layout": "IPY_MODEL_06b5fd494ccb410fab8fea86a8b450bf",
"rows": 8,
"style": "IPY_MODEL_bf781744ac0d4e548afdb26ec3c60bcb"
}
},
"3ba3c2321a3c40468a628674b5020275": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3ba45a84565749179f02b6fcd4ebb05f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3ba4c1d8bfec43a4849320c6ea96537f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_af091ab26b344a63b95e4845dea59f93",
"style": "IPY_MODEL_cd88375da7614f3f99eb826007f095e7"
}
},
"3baf82b373f6499da9a6fa372c6be153": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"3bb4924f82324b58bfc49bb0ca94c28c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3bc2052fe8b6471b8406d7e2099ca96e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_36f1cdd38f0f49e7a4de47c3dcf0ae67",
"IPY_MODEL_b0f7fbf95ec140419d4ecdac5ed1bd34",
"IPY_MODEL_967ea79df09544cdbad2a19dcdf12303"
],
"layout": "IPY_MODEL_2ded96b474f0462290b47dd42bc9c773"
}
},
"3bd01018c557432bbadb4ba9a6e87d94": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_260588313581475e9341db0f251dad83",
"step": null,
"style": "IPY_MODEL_c43e7d4059bf4937ad7d5ea7aeeccc8b",
"value": 1
}
},
"3bd5a0ab75bc452aa4040bd3d913f8b8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"3bd6e4a84c4b4481a8c2622733fc09c3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3be8a2db790d45b187ac4caed2561aaf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_07dbbbca4144437f9ff6c32398b6de3d",
"IPY_MODEL_db0282c48a364e0bbe4e941e6861e3c1",
"IPY_MODEL_f0e1ad33fef640c29560dd50e5598697",
"IPY_MODEL_ac68ee00b9fd4741b17231f4553d90c4",
"IPY_MODEL_ca29796d0cc949ddb9616e0c0caae86b",
"IPY_MODEL_92e402dd93bb494a93120a8d08942fe4"
],
"layout": "IPY_MODEL_3401f8ae77ba4a87a953024be6153a75"
}
},
"3bf04f371dea434c86d3e3f4a649705e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_64434b40905f4fb885a30963281005c6",
"IPY_MODEL_199eda46c3b2430aaec5a2d6275c8eac",
"IPY_MODEL_0bb30e732c954b4cb0c29cc5ea467ec9"
],
"layout": "IPY_MODEL_b6345bf68f7a4b2fab2c90dcc35b2a9d"
}
},
"3bf213534e604dc78015cf29486313ca": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3bf9a699b04d4c57b934af6ed44df951": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3bfd68ba6b13452cbf32f15ca1e380ee": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_35f5c7b7207748c98397491e9d09a75b",
"IPY_MODEL_22ecc81f6c8d4c0199957cdc515bae50"
],
"layout": "IPY_MODEL_a197eb21b6bb4ab8a27b39a4328bc7c0"
}
},
"3c03bfce7e834cc2bb1ab6b3707aecaf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_b67d130b468d4e999d6e711d2b9b9ec5",
"step": null,
"style": "IPY_MODEL_bf6c944e3cc64de1beb7ed509efe8333",
"value": 1
}
},
"3c0a6b71e91649769bf170d61f7458c0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3c0ffae1cb1640499d7399fc3f517af9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3c13566d54d642deb7afb0f1e7b2ff7e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3c20563f704b4ef697e6fd78b6f81f97": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_8d8efb68525647c39defea48a41d9b8b",
"placeholder": "output filename",
"style": "IPY_MODEL_ae8e6605e3a44566b8b2f9a2773cc677",
"value": "FlinFlon.geoh5"
}
},
"3c21e58af75a40f080e2d5d2396a7049": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_da9e7ecf271d4b9c90c79eeade6338b8",
"IPY_MODEL_09f76c5f23ec4ce89d3b5767272a8f48",
"IPY_MODEL_d971c5620886421e867fdba7d6983109"
],
"layout": "IPY_MODEL_162df591ee9749ef8db9f7cf79e9e15a"
}
},
"3c26156af61c443aad6b117118199312": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3c2e7c667c5a4773aeee729b8eb9e985": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3c2f9272a321477eae3e0bd005d8a759": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3c30f880835c40b989db54ed5c5deff1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3c4b03dca7444f06acfadab08b250836": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3c4b148636544c4097f70ae34687b760": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"3c55b63dd66d4ffeac3015858ad10c26": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3c60f2c180c14f08a84ad434e8122df0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"3c6a444c53c240f79e1fb215dc74d66b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3c6cbe3b030c4d309084689c5fe58ff3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3c6fb4633b1e4c81aca8cc97d18a12b2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Units",
"layout": "IPY_MODEL_7dabe82148cc4a9aa4199ad0d1cb71b3",
"step": null,
"style": "IPY_MODEL_fa0aae90bbc64d56aeb698e07c47c7a2"
}
},
"3c74ff1f03f84a96b6a0de58f3380b61": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3c8f07a23184492385d027984ccefb9a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatSliderModel",
"state": {
"continuous_update": false,
"description": "Azimuth",
"layout": "IPY_MODEL_6893f23ef4d34b7b91e9d4352c262839",
"max": 90,
"min": -90,
"step": 5,
"style": "IPY_MODEL_54daa294c041489d8d28411b8187f687"
}
},
"3c8ff5c465dc4122b6ab6f85210a29e2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"border": "solid"
}
},
"3c96700046254101baaefc151de9c592": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3c9d7970b46e4a00a804bead47d1d16c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3ca113c4c732450fabb18f9a8f1e5970": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3ca139b7359e433ba475d554fe288eac": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_a652a90585c04c73b3a37c4a67533d85",
"IPY_MODEL_a1c41457d1544b08858ce02a4f534c42"
],
"layout": "IPY_MODEL_e8ba8786e68a4d37bb87be3b0ae0a521"
}
},
"3cab2808e0b34c5fb4ba906dede6324f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"Constant",
"Model"
],
"index": 0,
"layout": "IPY_MODEL_b8cc28ca20e34ed098fba5296d0a9f2d",
"style": "IPY_MODEL_3c26156af61c443aad6b117118199312"
}
},
"3cba40b08ca04670908266d9150b4945": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_7c772395d9b5455196d641873fa70a78",
"IPY_MODEL_2ffdcd7e28724a0f972e20767f153c28"
],
"layout": "IPY_MODEL_0581eb4d25844b7099c195f45448659a"
}
},
"3cbe121dc0a8449abdde1f0613b542b4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3cbef38844c84406887dd84d6b79090d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3cde436b5da541d68c008da796a3afd2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_fea15fb437194ef5babab868c48c23ca",
"style": "IPY_MODEL_8193e2a1a96b4edba35c7a552b640031"
}
},
"3ce65ab0513c4775a4e9b150cec15b01": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_ec67254a0da34177b05e98b608495a34",
"IPY_MODEL_1d75178d28304748bfd88f9863e27f55",
"IPY_MODEL_3f0bcaf7e511474796ea148e4c885ae9"
],
"layout": "IPY_MODEL_b660d79137324676857f184054e86c8b"
}
},
"3ceaf0aa781d487dacde48981386814d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3cf26921b2914e3896cc7220cad94cd2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3d2633312cfd4c23a71da6f647219b55": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3d28bc5fc2304bb883920dc535ef4ad5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_3fe51d075b694ac2bf545cd91d12ed18",
"IPY_MODEL_011a20895ae74b03b5f87acb58091c49"
],
"layout": "IPY_MODEL_e70d5413d5ec43db8cb33789ea53c3d8"
}
},
"3d345e7673dd4ee2b86d647c03d0b1ca": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_d5b54cd30f8b4130abbffbc5a6380c57",
"placeholder": "",
"style": "IPY_MODEL_a01395e6bbe049c3a1fd5f4b818bd4bc",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"3d38dc3a99a14ea280a7f8a407844103": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3d3ba38fad434b20a0f045831e502dcd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3d3fcff5fca24c39b4089e3aa1908317": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_1b8a85d27de24aa99bf58790dc51146a",
"IPY_MODEL_b331102f472a4a23a3a465cab97807df",
"IPY_MODEL_b8a5e6ef7c964df380a608252f7795e4",
"IPY_MODEL_9eee2c39d81b4ef1bd363e4a18a3148c",
"IPY_MODEL_7f1593a7ff8c49a484a0c7af3f31d98f",
"IPY_MODEL_4ce87212a93e4737b1da12072d5997d7",
"IPY_MODEL_347662e80e2d4d7aa93370de2cdc8151"
],
"layout": "IPY_MODEL_9b08cc10130d4c67b93b26f49206a39d"
}
},
"3d465a6bb27e47b998642c90d95cc58e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_8d81bfa0a74343dc8a6cb9473044439a",
"IPY_MODEL_922045e650f8441a83abc3b911330356"
],
"layout": "IPY_MODEL_d7d303be28294c8ab4fd71157771c3a4"
}
},
"3d4c5f8dcbf944579749e702f4308485": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"3d5a88b3ea6f4c65918eccc2d802212e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3d636eae582148fb99d4dddcae949a41": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"border": "solid"
}
},
"3d65d6d4285a419bb9da72150fe88890": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_8c4dbe9943a94273aecdbaffdfb3449f",
"IPY_MODEL_63343542e128482eb31c2316d67424ac",
"IPY_MODEL_96b9079270bb4a2ba837dd40d73fa718"
],
"layout": "IPY_MODEL_f28751562efc4d0e89cb86ab8511c56f"
}
},
"3d6ed929523e445e918c5ef2f010721e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3d7d7d7722e7463ab26ad1cee09e9eb1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_9a8ace5b09024444a4187652309ab595",
"style": "IPY_MODEL_d2a0c0ef25cf4f4f99e7262f48a79d15",
"value": "Dimensions"
}
},
"3d7f63f8d0c44f9fa7a59cfde4701062": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3d7fd38c9797482d89ce82407e081c63": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3d94b847eccd402d93d50ff5bf074970": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3d99b9322f12457c808709ac8d68aa96": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3d9d900d31884bc48af6f943661a6f8c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3d9f538997014215ae0bad0bee4dfad7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3da11ea0afe545cdb643d62178d6c26d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"3db115ea9dda4e9082038519dc9ffab1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3db4bed1377c45c09d8abe7196561e52": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_8ecbda4bfc1f48a2a3d9d4bfd29629c3",
"style": "IPY_MODEL_f124484f8bf94b4c88557dc0f2a748dc"
}
},
"3db7b6421dd84cc09daf8d4b9cac045b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3dbcd7010919416e889b2db8384881e0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"3dc3858b827c42538257539ac47704e7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"3dc3eb5d6ee34cfda2bd1268e6c9270c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3dd963b83c74448581b004776a08f820": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_1fd31f656448425f949ee7828977d948",
"IPY_MODEL_fe91069b1a8d446fbf50e8fdb72cce15"
],
"layout": "IPY_MODEL_f650beb794b64822b2db602c63d0bba7"
}
},
"3dddbb439ce449e093cf18bb0a25df61": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"3de6b5ea66454ae48b63d3c5d785fc0c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"3df6990146664600afee35303f69ba07": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3dfe527a217141dd86214afec9efb922": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3e0e552571cc4d5a90ee1c9353cd2d40": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"3e1acf5272fc441ea7031630a0dc4737": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3e1d70bcf3eb4eef83068d37a706541a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3e25843ee7d64a7f92274ce4659dd4c8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"3e30c775b2774799b3998c5ce86b6883": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_53a855bb7504445ea1c9a84e9dc4ed14",
"style": "IPY_MODEL_9101c8f64c02466eb821663500b6812b",
"value": "Uncertainties"
}
},
"3e3308ee923b4861be54b169731bf452": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3e39a67691164cc8960689cbd4ff8444": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3e3e191bec5149819445588b3403db4b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"3e48053cd5ff4ee89f5c9dca27355b3b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3e48324b86934452962ece5d1fe060e5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3e4926d8528143569465030aa24e954d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"3e5ede0012844db4acb8da0b4fd7230f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3e62632062a24f539ed1ea25107c3f39": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Contour min:",
"layout": "IPY_MODEL_39d128f97a83496495f304897f43f305",
"step": null,
"style": "IPY_MODEL_461479cb40a248c384c5c4a3ca7d0140"
}
},
"3e662d4e4d0c4f888f934e7d33b86008": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Ore/39_Ore_Callinan",
"Ore/38_Ore_Dan_Owens",
"Ore/40_Ore_FlinFlon",
"Workspace/Inversion_VTEM_Model",
"Workspace/CDI_VTEM_model",
"Workspace/Data_FEM_pseudo3D",
"Workspace/O2O_Interp_25m",
"Workspace/geochem",
"Workspace/Inversion_DIGHEM_Model",
"Workspace/Topography",
"Workspace/Data_TEM_pseudo3D",
"Workspace/Data_ZTEM",
"Workspace/Mesh"
],
"description": "Object",
"index": 0,
"layout": "IPY_MODEL_806a4f1b724544659293647f66238048",
"style": "IPY_MODEL_99ba2b49896e4a4e94c0a48e0e656aca"
}
},
"3e7d71fdd2754bc88bd2bd19b5f079c9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3e88b6a1a9cf48a9abe2cc26559cf48b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"3e9ed3826c304220aee19e2a94e890d5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_407e2765cfa34a1181dffc5afff1d987",
"IPY_MODEL_d089aa9fe23743eba9594b9c9521f2f3"
],
"layout": "IPY_MODEL_4badf1068ba04431b935c07ffd99ead8"
}
},
"3ea1d7f50b2b4f4c90e6ac3ae5529878": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_d55080478eb8414399735740f73661bf",
"placeholder": "",
"style": "IPY_MODEL_aca5b01ca94e4cee8e94075ed17b2c9a",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"3ea323a3c59e472cab80af328169d03e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"3eb1384286fa4a90b11aaa364f053be1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3eb1bc18e3d3402383f95883210c254f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_3d4c5f8dcbf944579749e702f4308485",
"style": "IPY_MODEL_594151a0553c4715960462bbc2615568"
}
},
"3ebfc5e3b20c4455905b998d32f8e2fb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_33b6811aed95421482c3990ad254b6bc",
"IPY_MODEL_58ac6aa2f7494972883abb305d9a086f",
"IPY_MODEL_261c39bacf154dfbb02b1799c39496f6"
],
"layout": "IPY_MODEL_bbb5e16b14314d0f83b03ecca3b11caf"
}
},
"3ec3e4f236e045a5a6618c2d058c9974": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_0c294d4af5bd422ca0d450920285f56b",
"IPY_MODEL_cf8fe2efea0c43c1b662f4ced33ca806"
],
"layout": "IPY_MODEL_d8e7417dae66497dbcc80fde571f3d14"
}
},
"3ec689053f944a298d2a44484506e9ac": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3ee0fccdb2324b01842d20409e2de1f6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"3ee1ff8e482f488fbc1da9dca8332a0a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3ee3c6a925764564aaa5633f068ac37a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "IntTextModel",
"state": {
"description": "Order",
"layout": "IPY_MODEL_80805b6875b748c796466a53fa2d30ad",
"step": 1,
"style": "IPY_MODEL_16fb47aacfc947dc97290456f7c57ef2"
}
},
"3ee63f5b36644edcac294d2b7568a429": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3eea69d80add4cda94eec2fc0f0584bd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"3ef4774c524d43b8a895431c8dbb0814": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3ef62f5b4bec48469a69dafd5a911378": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3f0bcaf7e511474796ea148e4c885ae9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_60dbbede0d8d4217986500db7f10aa62"
],
"layout": "IPY_MODEL_3ea323a3c59e472cab80af328169d03e"
}
},
"3f0ddf6b1a50427184933b0c7cdcfe1a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3f1097734e0d4307832d048145ce9dfc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3f276612a2b94694b5ce679411728771": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 Temp",
"📁 uijson",
"FlinFlon.geoh5",
"FlinFlon_dcip.geoh5",
"FlinFlon_dcip_v4.geoh5",
"FlinFlon_natural_sources.geoh5",
"FlinFlon_natural_sources_v4.geoh5",
"MtDore_TMI.geoh5"
],
"index": 3,
"layout": "IPY_MODEL_2713c479107f426f9844833d28a2a248",
"rows": 8,
"style": "IPY_MODEL_13eb821c1a9a4fa0a6957afc7d880a63"
}
},
"3f2f53f9f0344b88b48b9466ecb4f453": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_e702a052ffb14cba98e00d2ba6768efd",
"style": "IPY_MODEL_416bb81d7b9944aa89c343d6ebeaf43b",
"tooltip": "Run computation"
}
},
"3f37bc7386b84d14826a052d18407dbb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_735e003ada754224b8cf21e6d362e0b9",
"step": null,
"style": "IPY_MODEL_7f641050ee634cc883643f6c319a4b59",
"value": 10
}
},
"3f3a32ae8d5c48bbb3a3bf4df4d68237": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3f3ee41d33574b2baa6ab3f8240e49f7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_1bcd0a0d4057407c8ff4a333fc971fee"
],
"layout": "IPY_MODEL_8222289f12004fa7a1daa557a11b0e2f"
}
},
"3f5b70f2a50d4b72a65a97c6e51f7775": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"Constant",
"Model"
],
"index": 0,
"layout": "IPY_MODEL_638bb13b05ae40429a41b4b6d37a5397",
"style": "IPY_MODEL_8701e3890489412c8a0651f94a0e3f45"
}
},
"3f5b73b95dc544b5aecc0a41aa24186e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3f5ec1790f484fa6ac7a0cd6b4bc600b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3f6a1eec42de40c68256809c2f23726f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"visibility": "hidden"
}
},
"3f72c1e3859b45dfb5c8d1b19ecf2dd4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3f78983b5ecd4b8785e7e8911b731c01": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"3f86d6cdfa2f4001b7e30e8e6afc1e86": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "IntTextModel",
"state": {
"description": "Max CG Iterations",
"layout": "IPY_MODEL_1a13bca08d6f4d26970bb547525a3217",
"step": 1,
"style": "IPY_MODEL_6475d8803e1f4eefb7719ad61855fd4f",
"value": 30
}
},
"3f8785218d3f42bba36dc322e915acab": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"3f88e2c0fd6549a698dd03a189c1de6e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_d380b8bb2bf44e52b7a4a256cf104406",
"IPY_MODEL_c25c4edcf2394e54baaa682c42cbc713",
"IPY_MODEL_3a7c78a0331f4860b5867ef8f2965ae1",
"IPY_MODEL_c7091873bd944169927714511b0791be",
"IPY_MODEL_34128d9a439f49dc962d0e68d2bfdb50",
"IPY_MODEL_2d1cc7895c664e2891e6e398032172bd"
],
"layout": "IPY_MODEL_1d51a59960ae429eaa8195be132b293b"
}
},
"3f937f0a8fd24bb38089f254d43ca799": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3f9d87ccaa1c478a9532264bddf6dbc6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3fb0b5e0c7d348ba943c58a1ccdeedba": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"3fbbebd2a8534632a209c83096a32c96": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3fbd53d7ab0243c987edb3d9240ac45d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_bf9b0f761db14b67afa1455338850ffc",
"style": "IPY_MODEL_9b772649d0c146a29e9603a6227fecc3"
}
},
"3fc01b0e5cd34d06a1ef145fecb3c0da": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3fc6742d10ec4319906f94f06cf1c70b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 .."
],
"index": null,
"layout": "IPY_MODEL_85d15590bce549ebba6fa5242fb3f8a0",
"rows": 8,
"style": "IPY_MODEL_10e48595da5249de9b623583876cd6e1"
}
},
"3fdaf0d347834a2ea41d6df209dff0e8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"--- Channels ---",
"conductivity",
"density",
"geology",
"magnetic_susceptibility",
"X",
"Y",
"Z"
],
"description": "Data: ",
"index": 0,
"layout": "IPY_MODEL_3685dd443f3749d28290ed6e6d865b9c",
"style": "IPY_MODEL_962e7b3766a34308abcf7c606ef515cb"
}
},
"3fe0108a18634038b6599542408dc072": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Object:",
"index": null,
"layout": "IPY_MODEL_5e5ae5d3f7bf4ce1ae69a3bf8f325ae1",
"style": "IPY_MODEL_b2eef64718fc432c9c4ccbef6aaad2dd"
}
},
"3fe18d19e3e04770837a7e0fc8b5b26d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3fe51d075b694ac2bf545cd91d12ed18": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_86012baa66e24a329821661f7f0ef413",
"style": "IPY_MODEL_bfd81a459a42458db9ab7c7c9584ea7c",
"value": "Save to:"
}
},
"3fea9d44d0774781bb10c9933306d296": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3feae1a33cf346129f87e3076e2eeda9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3ff6b19ba8204e57aaf6ba756bc66ede": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"3ff6d1d6dbe043e09d2354cee2af3300": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3ffd2860b6fb4c5d9ae9915bbd534e84": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3ffee1a52e044d64b8edad2744c156c0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"40266d8b04f747e59e5ffc1128d9c404": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"40283afc14d944caa087e949670712bd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"402ba2badc5c476985abbd34188f1b41": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"403555f6662e43e8bbc3baad7b5baaee": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "CG Tolerance",
"layout": "IPY_MODEL_228ee294ad524e368349da113a6b715d",
"step": null,
"style": "IPY_MODEL_2abd075aba62442a948b3040fb0e0efc",
"value": 0.0001
}
},
"403c17e1b0bc4d33ab7b9b6348bb7c0b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_eebbbc864bb84ad6b8d419566584de32",
"placeholder": "",
"style": "IPY_MODEL_bbfc2f3dc06443e8ba768ffe17f1e658",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"403c72edb2b446428431909120c5cf6c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"4040e69f7ae44f8891314070964c6a0b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "IntTextModel",
"state": {
"description": "Max CPUs",
"layout": "IPY_MODEL_f755c726a5d94376b40856cce95566df",
"step": 1,
"style": "IPY_MODEL_a73215d7d9a94a83807977beba769932",
"value": 6
}
},
"4044c68b33ee41e88099df58f5b5a900": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4050a9afddcd43cbbace5aa7d49a1e5e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_032f3fd9d9094fbaa0b9eb3595a6af24",
"IPY_MODEL_3ba4c1d8bfec43a4849320c6ea96537f"
],
"layout": "IPY_MODEL_fac6e0d51f9444bc98d56a10991f9ebd"
}
},
"4068a28afee248a9b369b940cb02e94c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"40700939314d4bf9976a1215fc9fa9e5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"40751a912a0b43d2a014354cbaf47608": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"407e2765cfa34a1181dffc5afff1d987": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_708815012fc94291a8196ab69bc69d0a",
"IPY_MODEL_975c33796e454dc59d671eb457e368b2"
],
"layout": "IPY_MODEL_c51621d6f764477fb1d37a9d099fa952"
}
},
"4083a66ef1154e589109e9a42df092a5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_1e596c6d2bc3479db5ed784d378e8e22",
"IPY_MODEL_adc115af5e2149d6aeb58ee44441274b"
],
"layout": "IPY_MODEL_e67feea3aca843b0bf890f7588c930a7"
}
},
"409d35cfb3f345a7b3b2f233bff7805f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_4f9277fbf65b4592942a5ae50fa45ebd",
"style": "IPY_MODEL_93fdf5e485414d99afc3640ba358d078"
}
},
"40a9bdb077374ad09ca83c09695dc4ea": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"40b14cf5761a484f8b132f2de98e9a2d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"Model",
"Constant",
"None"
],
"index": 2,
"layout": "IPY_MODEL_ef2d7c7f405d4260a779bc99a686f3e1",
"style": "IPY_MODEL_7842a3b181ad474799ea7ccfdc8b2385"
}
},
"40b5e1e323364e9c8ff59ade3e61e72a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"40c5b9eec1784b568095544fb3594faf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"40c5dab562f3428491b39bce4d296764": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"40e2d1c96e144270850efd960ad2abfa": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"40ec9c55a0af4dac93c50a92d392f6a4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_0cbafd260ee146a494de4fed14c56438",
"style": "IPY_MODEL_f426bf1abbd4415d90f488f1790d6a8e",
"value": "Inducing Field Parameters"
}
},
"40f3f0206ce94bc090841cf780bc704b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"410007cb577644f3a9259ecec049e75f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_c1d86aed93f7469c8b31c8ecbc6a2ddb",
"placeholder": "",
"style": "IPY_MODEL_317a2207081e49ca928a39aeeacd77e3",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"410218d1158f48bda6b5479418b43a7b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_513e2e8e52c1449f8ea580c8eae563b4",
"style": "IPY_MODEL_0e4b39bc10974d43b17b0a27cfb15bb6"
}
},
"411b2f1c6b3748ffa21868417bcbd598": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"411c4bb0a8404f2a9205e16eb565a688": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"41296c387dcf4f54b0a7edddc5786166": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"41326e86be8649fb9f46dcc4391b361f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"41350ebdc6e34e88b9418bee96b9cb3e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_f840a84936a94a99ab78b7c09d66763b",
"IPY_MODEL_541a63e398794f799ed2adb5913cbc5a",
"IPY_MODEL_b65f048799e046d9bc3a1a9d068d19a9"
],
"layout": "IPY_MODEL_b6345bf68f7a4b2fab2c90dcc35b2a9d"
}
},
"41375b516c254dda89ed58cff3986204": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"413f69c39c8140aeb9ce15bd11b9383c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"layout": "IPY_MODEL_afe1a75a42f34b91ae19b4f16fd89a57",
"step": null,
"style": "IPY_MODEL_ca54806cc6f44894adc1f802eba2c83f",
"value": 2
}
},
"4140b2d84b44487dbd5df59745fcead9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"414505b897014b59ae761fa85a9e684f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"41453db2b45345f6ab36ace7c2a2a00d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Contours",
"layout": "IPY_MODEL_af8ed66f844e43d2b6096bc756d3928a",
"style": "IPY_MODEL_3166d86c628f4f64bbd8afa369f3658c"
}
},
"4148af3572f84aa6b7e492a834ab589d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4151ddddf4f742a992885f538a4f0341": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4151eb6ea3d44355a73908e7c5031b2a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4157f50ee5d142c88d2a9bbb7b0e09f6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4168d19806c2401c8bdfdc46d1970b2c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_203f85621bdd4994a8eb938c9744a6b8",
"style": "IPY_MODEL_39d24734d90b426184a2ab4a4b19dddb"
}
},
"416bb81d7b9944aa89c343d6ebeaf43b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"4170fa0ef3b14688b78009466c7a3ea2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4173535a3b8f48e0a7acae605ca29846": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"417a30b13fef47788ad4e8b0fa9cde51": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4184a78caacc4ed9a5e6368f299585a7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"418648a9451946b0bb252f84d55af4eb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_2b6bca6f5def4a3aa26d9de924ab7fbd",
"IPY_MODEL_454ab40399d5405cbb0b9c8aeb89d6bb",
"IPY_MODEL_452aecdb8ef048fe96b619ece53ffa0b",
"IPY_MODEL_b8df4f06633d47e8a7200f393b9e93b7"
],
"layout": "IPY_MODEL_b6c400b26a774be69acc33112eb65bd3"
}
},
"4193235b08a74daaabcf177b4438915f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_f5ac3f3cf1344e7195f40f107e1fccd6",
"IPY_MODEL_700faf6af837418ab28eb8e8a154ddc4"
],
"layout": "IPY_MODEL_03be6b2f48434b05b9bd406b356cd5c2"
}
},
"4193ade40f3541318ac43dce5a4e8fdc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"419c0463b1cc4476b2c30cb402cb48ee": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"41a943cc52de48b68477373fcc116a56": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"41b6d3d274a64f7cb4bb0b2c389bfac5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_14297cdd97e344b3935ef70aea972a0e",
"IPY_MODEL_fa9082ba64a840d1a8c09d64a7d0fcdd",
"IPY_MODEL_850a69a5828b42b7b0ef520cb1c141f3"
],
"layout": "IPY_MODEL_7170d2b395214325b254ae3429f2b2dc"
}
},
"41b7f69c49f441cc9a0ea9385461085c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"41bb8017ece3441a861f4e2c7445873e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_27a5a7e831e54d4191bc1b2c6cb381dc",
"style": "IPY_MODEL_f2d47baffa624804b3c22cdc7f3680c2"
}
},
"41c2df79b91b4190a2e25dd6bf9c3b6a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"41d806c13e67409497d20f15423061c7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"41e3ce1d87be4c68be4c413138d1ae16": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"41e5fbe53ae14b5fb6bcbe3f0b4f6f31": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"41f8f3853fa34759a1be25651e7714e2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"41f9f7704229439695eac3308555ff4f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_29090ffd4675487db32d66be0f7348fb",
"IPY_MODEL_54ad6b86ec8c45969e7c5b01f9026151",
"IPY_MODEL_8c5641693e774f82907a35b04782258b"
],
"layout": "IPY_MODEL_6c36b91a225e4e11a7f6c79b8839ef53"
}
},
"4203a4386f894c94a5c15ed7dab6eb1c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_4b64d1aea27b4938a909a13fc01e09e4",
"placeholder": "",
"style": "IPY_MODEL_e772f522876545ce8b711114795b7712",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"4212f507ce83496dab255880d1947b9b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_c65b168bc7d84a3aa0b5c8a5ffaa32dc",
"IPY_MODEL_385ea8bba0694f70910af469accd64d6"
],
"layout": "IPY_MODEL_4fc681a32eb240fc972e1fb1b0267375"
}
},
"4217086883ff4bbfafee664627a08422": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"42270ae4a1224325a3b1b326cd9d0e60": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_c12a17a33e6a4731a2734ef18bf21f8f",
"IPY_MODEL_fe2c569dbe454b729e20c5ea6ea3f2ea",
"IPY_MODEL_fc0cb7396c9d4c37964be13d239d48bd"
],
"layout": "IPY_MODEL_16286fa1a55a441385a5dcc92e51953a"
}
},
"42315fab53af4f55955f7c5beaa14699": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4232d991447642d4b28f2ef0c8850b03": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"4233446c54964a4b85f94d57fc95b56e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"42340f40d06c4fe291da88bb5943a9c4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"423a08b36c314e2db2e3599eb3674740": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"424187e1574445c393e67388ec74833a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_9ebe6675caf84856bb50d34f0c4ead8e",
"IPY_MODEL_847abf93238d41e987ff2926ddcccd6a"
],
"layout": "IPY_MODEL_4d4727e936bf4c57a83a1d5d6e26a59b"
}
},
"4248bfd08e0d4c4aa8eb318eb2b18bd9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_559e2bcb22094906a5483368c10d74b3",
"IPY_MODEL_ddf6397a774846e19b547e9fc586c2a9"
],
"layout": "IPY_MODEL_451986bd4d45497ab98af0caa702921d"
}
},
"425d18afe550461390d3e18dcad14d4b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4263ce571f3148fca3259d55dc8ed458": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Ore/39_Ore_Callinan",
"Ore/38_Ore_Dan_Owens",
"Ore/40_Ore_FlinFlon",
"Workspace/Inversion_VTEM_Model",
"Workspace/CDI_VTEM_model",
"Workspace/Data_FEM_pseudo3D",
"Workspace/O2O_Interp_25m",
"Workspace/geochem",
"Workspace/Inversion_DIGHEM_Model",
"Workspace/Topography",
"Workspace/Data_TEM_pseudo3D",
"Workspace/Data_ZTEM",
"Workspace/Mesh"
],
"description": "Object",
"index": 0,
"layout": "IPY_MODEL_66bbd08b6edc43af81e3e2dd74ef37e1",
"style": "IPY_MODEL_6d131dc3b3814b59a0fe575db80fdff7"
}
},
"4266871a11fe45c7a02ad39fbe80eeb3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"42679039afde4af089db910078d71370": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"42691bfb6f5f4ad3a3fdb2c46e921e72": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Bxx",
"Airborne_Bxy",
"Airborne_Bxz",
"Airborne_Byy",
"Airborne_Byz",
"Airborne_Bzz",
"Airborne_Guv",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_006c444052954f2ca8bc19ab2f7b4b02",
"style": "IPY_MODEL_6cffc404455a4f28a88c07bc445fd739"
}
},
"4270779f224c417790d228b4cb3fc427": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_f3eaf583ff8a440187b967d5d6a45561",
"style": "IPY_MODEL_ae9bba22af5b486f8b42c6124ced8793"
}
},
"427a7da35a424548b0ffbff0694730c2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4286427ba55648f6870f95b0a67dae63": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"42866d8ff22d49488d93b85c93faa5a6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"428d70a76511450092c0fad5e9fa87b6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4290eb013f6e43a4b33e26d231fe511b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Beta ratio (phi_d/phi_m):",
"layout": "IPY_MODEL_1c1efeaecea2480bb72858600b1c6717",
"step": null,
"style": "IPY_MODEL_7cb19fbd67ff4048a55c1bc530291508",
"value": 100
}
},
"429c0497051348c18d9d973ebc276b0b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"42a086bf775e45759a91e12acc46c001": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"42a0896d6a5243f48b36955e0e5f8b27": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"42a6783ac322488298ed93d45e07ffcf": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"42a6a3df19e54070bf4bcf627bd7433f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"42cd1264076449df81966c5aa4397d4e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"42d4adf14170447fb5de61657cced64d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_7066cd90b8564625bc14c2e0ed4ff57a",
"style": "IPY_MODEL_7aa8a0d1a53540af91588da4b00fbf2a"
}
},
"42d51145b9ca43ca803f92ff7656a08c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_bd74ce30376f44cb967231a1e2365091",
"IPY_MODEL_d0c6264ac12c4d62a3586f8a7a96a53a"
],
"layout": "IPY_MODEL_00e7c6d9a68e47f18911cc78a1773214"
}
},
"42df5c24c0544017b0eea9a0b29dff04": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"42dfb1db66874fe6925eb9257449f21b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"42e3643449c040a0b561cc221b6280dc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"42e835b2c55b4953b98c18931c04652c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"42eb12ff6045414399f05bc6ba7fcb8b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_4544b44366334761a7857f37c5294f88",
"style": "IPY_MODEL_6b215d67854a4af59189422ff0892aef",
"value": "Workspace"
}
},
"42fb945e596d4177bbd3c202349731ba": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"43019cbca9db4eca808a950897cde21f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"43082c1c7b494addb8e34aaf5b2dd295": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"4308faa1d6644749976edd01e286919e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"430b1979379f462684d7ed3120744f68": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"431ff53b948349caa8c825df722b7957": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4320d8846ec14132b2bb15771f18ba86": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_48585697bf6246238acbfee34446602a",
"IPY_MODEL_6590da6cb8294e419ea75f56f518bcb8"
],
"layout": "IPY_MODEL_c40773576726450ead7387464a129290"
}
},
"4323100011234765831486c1153daff1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_a39123610877472a9cd3d3cfa5d47471",
"style": "IPY_MODEL_8f3112e4b0694029b5cf17b89eacafae"
}
},
"43365429e972461e8a39c7dd6ae86490": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_f467f203f45245c39eb664fb974fe150",
"IPY_MODEL_b841447987e24c03a3b111f6959896db"
],
"layout": "IPY_MODEL_86ae5a30b78342dd832a75fbd0940c61"
}
},
"433da98bfbfc4c779c9642b8335358dc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"433ec0cbc4c04410a75d098756bfdf59": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_cf6f7ca79e7b429e958dcd9851258b46",
"style": "IPY_MODEL_55d42a87f93148d79249f35b06ddc170",
"value": "Output"
}
},
"434390409d004955bc688a014e2e579f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_fe259cd6fc4e4763a3b1006498232708",
"IPY_MODEL_e339faf8e31c4d139d43cc40358cc8eb",
"IPY_MODEL_61d4df92061f48ed80c6761c9fbddf39"
],
"layout": "IPY_MODEL_6946cec642c048439bb873a054b03991"
}
},
"4353a0dbab2b467b8a65473095eb358e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"435a7a334b334bd4a7765d4d30e5d21d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"435d99e6ffd545a18f30ab07f8c0f167": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_eb956337975f4d4aaa5524f48d33c59f",
"IPY_MODEL_bc052ba9784449d293c35a2dde7a7a7b",
"IPY_MODEL_a26fbfda2ae840b79c8d1ca292045556"
],
"layout": "IPY_MODEL_143dbda8d7e34096b4dad6d00fc24ec9"
}
},
"43632ea61beb446fb406c748c7af6edb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"436988e706304ffb8fd52938df653547": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"436f29832d544e08a305fcc017373509": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"437395619ea742be95d113a228c3035e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_7e1c5abe6b594a3fba60e1a2cba8fc4b",
"style": "IPY_MODEL_f010c49dd6d94a929a1dfe3cc8322084",
"value": "Offsets"
}
},
"437be1f24d4e4471b0d705b9f2afa34a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"437fdb924afb44a7a6afc979ad5a31fa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4382f58470764442be43eab5e6804f2a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"43835173005e420d95bd4e3d0c5281fb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"438804579b294b79ae0d33842c725f4b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"4389d3f0fbda488cb05181551067d037": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"43a27a8ac9494e69885fbe7429ed6291": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"43b83dfbfa8541f68f17c212a3b521a8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"43cba9ad4e61417cabd38f85d09795c1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"43d579ca09084e76881f65d1d16d774f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Degree",
"layout": "IPY_MODEL_4d1fb8f2f5d346ff8aa3d04403992f19",
"step": null,
"style": "IPY_MODEL_a59bd3e419a54563a15f1b4f5b546a6e",
"value": 11
}
},
"43d7280fc619465eae1a4c14ee7f1a29": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"43d9712ebaf045acb87af30b4ab32eed": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"43e65e2a2d184bf1ac2fac425a869492": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"43f89ab959144a02931cde2febbde612": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"43fad9e42dec4220b6d84f6981387c17": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4400ade32133486392a7226b97f9797e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4415a7f0ae9a4fcaa7196f6d2da4ff58": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_9b9b91b2bd604f57a54130e57f98a9e1",
"IPY_MODEL_6aede667f5054006937ad4e92fb5957a",
"IPY_MODEL_dca501337c6146638c33024fff91280e"
],
"layout": "IPY_MODEL_99b2593c8e0d4daaab1805d7add3d8e0"
}
},
"4416c51f95d74c068a2854b8b37edc14": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"441aa48bc60c416195243f572ec4d1e5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"441e2412c95d4157a67b5b7c0239bb8e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_a3f0e8a92a73488fad52b8b4ffd86fef"
],
"layout": "IPY_MODEL_fb27b6824f1240f59e22d0fd05c1f447"
}
},
"442028c6939e4863b619a3b8f30fa22a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"442374edcbed4254a79fb312aefefcb6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"443b216e4b7743ecb6baf96ec0388853": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"443e00e92e9d4e9bae6af7e95e0cf162": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4443178a3ab14ed3b9e721873cac23bd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"444a13b9eb474315b080815a2fb2de65": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"446052f1b12e49babebbca49255a622b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4460d90b55a84c59a61ed3783bced727": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"44611f3046c34590a972d8d618bfd2c1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_8d18f6478d46430dae13dd3fe653aaa5",
"style": "IPY_MODEL_ba2343c64e704a648667c98f5979bfba"
}
},
"4466a03aa79f4aa2b6c930ba363b5ecf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_f6152d4c7c474c7783ba12b486ad75ce",
"IPY_MODEL_06a94427bd9647ecbbdef0c5192e3cef",
"IPY_MODEL_7e0ff1afe6ae43f9a10256004d571e0f"
],
"layout": "IPY_MODEL_70a6062665c645dc898480a276f6ee34"
}
},
"447588991bc243a8a8db9653b7230097": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"44890af0352f48c5922e69b1bc9f54cc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_4bf73ba3a5b5461eb8264d97e68d8b9b",
"IPY_MODEL_738e91e0c098445587493e233dcb7bb6",
"IPY_MODEL_47cbde3edb94481aa5b42a3a53603de1",
"IPY_MODEL_5b5699d5549d4025bcef12460255c7c6",
"IPY_MODEL_6039c121bb4d469495060df8d9ba829d",
"IPY_MODEL_46ebcb6e4d0547ab8d6285d537163f94"
],
"layout": "IPY_MODEL_fea60d4aa5b844ada5add81f28a24ed1"
}
},
"448e7d6a1caf4fd1ad86f6a0cdc41ea1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4494f86019db451d8352e7c0615b1afa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"449a50b3e9f741599e3e2fef1cb97a8f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"449bfe3de8ed4b68b0f100f77916259c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"44ce71dc66de41a280e70f4ea9608123": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"44cfe04de77c4becb8dbd192842cd39f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"44d1f95e09714e11bd33761cb7b9c29a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"44d4383683ee4531897186226ee27dbc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"44d7787d7cef427290428b8838714a62": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"44ee01329a92483987f1fcae3c24bc3f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_d407f508d765445d84bb551416eef47a"
],
"layout": "IPY_MODEL_f5468c59617c40cfbe22b6d80797987c"
}
},
"44f60a95189a445d8203abf0ecc5a6dc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"44fa7ba0d61b4ac8b4241ad6226eaf00": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4503136c4e0b423e9c86fa2544a07b06": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4505132a81ad4b19b43b45c750da6168": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_fdb100d2df8742ddae54bb5a644576b0",
"style": "IPY_MODEL_6526387bf73a4e90be0bc0625ff959fb",
"value": false
}
},
"4506bcfc92a94baa9e20976a2c3d3cae": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"450c7d43656046b49f9f84fe20ab42d9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_fad08b11aa58400e908c1eebdb1d5293",
"style": "IPY_MODEL_978506d67d7441e8ad2510f9d6e54b53"
}
},
"451986bd4d45497ab98af0caa702921d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"451d8db9ee5b4bdf86eb1ca5d6863ff8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"451fc84834bc473ea88979d417b1f433": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"452aecdb8ef048fe96b619ece53ffa0b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_b2fcc74fd61740dc870847f1f06eb0f9",
"style": "IPY_MODEL_877c10ed3da443f5ae1d0a43c87a1f4a",
"value": "Uncertainties"
}
},
"452e86cfc3494370b8596fb9f47aa81b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4544b44366334761a7857f37c5294f88": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"454716c8a0434babac254a8df10efd3a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Values",
"index": null,
"layout": "IPY_MODEL_35885ec3f3134b4cb1e4d0833f819166",
"style": "IPY_MODEL_54b78bc0c1d9445b8f1123b1726bde6c"
}
},
"454ab40399d5405cbb0b9c8aeb89d6bb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 0,
"layout": "IPY_MODEL_00a60c5197964f84b0b1e2dcc3a9dcc4",
"style": "IPY_MODEL_2905981855f54749a91b566bcd289731"
}
},
"454e3b49220d41e8948820524390256f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4552c2d1d8fb4ae0b03a6827e7bfe157": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_02b1e772df124fedbe39c6536da7d1a6",
"IPY_MODEL_44890af0352f48c5922e69b1bc9f54cc"
],
"layout": "IPY_MODEL_be497603e7d842e4b5412895d7ab1294"
}
},
"45605442ce95459abefa79cc7c4ee6f5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_acebc8faed4943d29902da10576083c7"
],
"layout": "IPY_MODEL_3a105b9503c44edaa6bdc159fb8ffc3c"
}
},
"456567c0d8e7450bbd2835b2682b0c92": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_2e0f67dd6c9d45569a6efcdc648f9a37",
"placeholder": "",
"style": "IPY_MODEL_6acb0848994f463688fff8b7c62b140f",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"45679a15dbea4f30bb72f3feb4315e8a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Contour spacing:",
"layout": "IPY_MODEL_375c24b76c104318b0344a331d49755f",
"step": null,
"style": "IPY_MODEL_55c3ea937e214f83be4a9c59b343c9b3"
}
},
"4568a6a720a04c6d85de2c996db5c33e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"45695fe1665f491b90ec017bec550a1d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_23328ae28c814cb6970a5a13f58593b1",
"IPY_MODEL_a9ec8478b34e428a89b88a4b3f4affb6",
"IPY_MODEL_03cff2b3952c472b9b11fbcee48317a3",
"IPY_MODEL_3346684cf49d4aa69fc9989b6dd38e42",
"IPY_MODEL_dd4fcdbcad9a470e8950366a5c0c3a7c"
],
"layout": "IPY_MODEL_9c0bfc695a92493caabe080875c768c0"
}
},
"457363e760994233a04f8c96db3d9796": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_bb845357401d4b98a8347ba11fcbbc94",
"style": "IPY_MODEL_28e9ee7b31dc41ee8b1675e13cf42dcf"
}
},
"457eaeac5cab4def88cade3229782ee4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_459d5b8b06984ada865515439afdcb6d",
"IPY_MODEL_3db4bed1377c45c09d8abe7196561e52"
],
"layout": "IPY_MODEL_653e8159c607429388a845ad1e5ee435"
}
},
"458579d7092b48eb82ec2f7218b2a586": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"459417f765b74904a4c16dcdaa8c95da": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_9a8e12628bbc4b888dd57c1b5c4ab45f",
"IPY_MODEL_31bcefb6c3bf4e0f871974215986faab"
],
"layout": "IPY_MODEL_d51fe98a7b9b46a2b975f4b1de9f15ed"
}
},
"459d5b8b06984ada865515439afdcb6d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_91407400c2174078a8d153838b7703c3",
"IPY_MODEL_479ad735a9674a47bb11b85fb757ba46",
"IPY_MODEL_51605acb16ae401ba23d6a97f5e4b30b"
],
"layout": "IPY_MODEL_24a2f51b403f4950b0c01e4b047d1730"
}
},
"459e1fef9c1b4a99bdb54a90127aa7f5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"45a765a0133541f7a80c9d0edd54b16d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"45a85635b12f40a68ce4570d02a56460": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"45b3577f099f4e32b2a812ae1420bc94": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_0d62cca0e5374256b1aab72d0548ec78",
"IPY_MODEL_437395619ea742be95d113a228c3035e",
"IPY_MODEL_db79b818d03243189a694b3bdfcc914c",
"IPY_MODEL_465733d24ca94b6ab4269d595c24fded",
"IPY_MODEL_8587f89c02e748e5a3135c83a740140d",
"IPY_MODEL_2e19a41b5aae4b07bb7b4a7ac2279c3f"
],
"layout": "IPY_MODEL_3d94b847eccd402d93d50ff5bf074970"
}
},
"45b506e3b90a45e0ad054b54afb14a70": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"45b7a77467934521855c79e1439a847a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"45bd501a8ab744538bb738fee2d8c1a7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_c3b11767f98b4eb992d593ca4df03fd1",
"IPY_MODEL_49ccad402be24feaafb07c7e8c258a77"
],
"layout": "IPY_MODEL_8c8f5c6d6d1f4b3db2643464a423d611"
}
},
"45c65331e49a403b8f51935408b421e5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"45cded5f2197457bbe04c4e97c9a939e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"45dae85a1c3043c69e9988c1fe90862c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"45dd51dc09ec4919be6271f1711bdf60": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"45dd9eea1a9c49d6a118b218f230e5b7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"45e5d82af9af4dcd9107ca9846832084": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"45eb55df1d4745d3857c9857f88134ea": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 SimPEG_PFInversion",
"📁 Temp",
"📁 uijson",
"FlinFlon.geoh5",
"FlinFlon_dcip.geoh5",
"FlinFlon_natural_sources.geoh5",
"MtDore_TMI.geoh5",
"tem.geoh5",
"test_forward.ui.geoh5",
"test_forward.ui.json"
],
"index": 4,
"layout": "IPY_MODEL_2bbf881b7ee04e49b52c6759a6a8d01e",
"rows": 8,
"style": "IPY_MODEL_6fff71fde0dc44d6b316fbd6617f90f4"
}
},
"45f983485efc47e982d9a0a0d315de0d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4600e08281f0400e9d2ff54108136ac5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_ade64f0c24df4cf1aeeaa29d11c447db",
"style": "IPY_MODEL_11b32ce9479d4e3e9e054c9b7c9dd22f",
"value": false
}
},
"46037502a621470c88c7e5d3f94fec5d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_79276086b7c443d7a0aceeb5bf029511",
"style": "IPY_MODEL_0325b5e3a95241fbbfacec1b5978d440",
"value": "Upper Bounds"
}
},
"46073aa4b7464a6aabf59364f2605bcc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_dde45c0b7adb46bd96c0a83d231e4d1a",
"style": "IPY_MODEL_86aad388085646348616061c7b0d20c9"
}
},
"46094ad1e3cd4bec8f97223a7998a19f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_054e3aba3d0d478f8b5005d9a5ff59c8",
"style": "IPY_MODEL_79c5e6fe9fc345b790dccb04138eafb4",
"value": "Workspace"
}
},
"460cb0f9059b418a81e0991d643c5015": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"460cd48cee334788bb1ccb5941ae124c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"460f7b7eda8f4570ad1db21dddab6d59": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"461479cb40a248c384c5c4a3ca7d0140": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4624bd4bbd8f4d6db4f5e4d19e067a5e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"463f7044bdc5471c840151b58bad8001": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_74dde3c9105440bda4c20f89f14bdbae",
"IPY_MODEL_d7c8516be53f48d1ac0d52c62c49eb6d",
"IPY_MODEL_284413c044ab4adf942ad26826771d19"
],
"layout": "IPY_MODEL_6946cec642c048439bb873a054b03991"
}
},
"464a43aced814c28b7d2bf131284dc98": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4655952313d4459c9a937bada654c605": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_048394c91024424ca658e964ef7eb245",
"style": "IPY_MODEL_0561d566a8c94af8989d16bc4aef3fbc"
}
},
"465733d24ca94b6ab4269d595c24fded": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "dy (+North)",
"layout": "IPY_MODEL_46a8183f72694802984a84d7dbebf89a",
"step": null,
"style": "IPY_MODEL_6edf69e8aa9547e8a14715dde671e20b"
}
},
"46679427a1844211adea4a412d4916eb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_46cc831149324c6bacc04995aec80578"
],
"layout": "IPY_MODEL_7c24588e792d43338a1af143f9876f46"
}
},
"4668a0b626574308b867beeb190a1313": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"466aed13269048d39c672e22468be83c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"466e363c054b4e0a8dcae34c5690ad13": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"467eeb9cf77c4bf8a5ead3d48cc9efd8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"G:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"D:\\"
],
"index": 0,
"layout": "IPY_MODEL_f75d98c52ee94205bed00cd28c58c7a4",
"style": "IPY_MODEL_88123fff2be24103adc3155cedbda2af"
}
},
"46819ac0bcdd4c8fb7c398776c43e62c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4695811b162f4bbb80ded719d0261c9b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 SimPEG_PFInversion",
"📁 Temp",
"📁 uijson",
"FlinFlon.geoh5",
"FlinFlon_dcip.geoh5",
"FlinFlon_natural_sources.geoh5",
"MtDore_TMI.geoh5",
"tem.geoh5",
"test_forward.ui.geoh5",
"test_forward.ui.json"
],
"index": 4,
"layout": "IPY_MODEL_a32ba49411d6458896356b423d0448d9",
"rows": 8,
"style": "IPY_MODEL_fc280e1c9eea411ea87b867c8f262c7f"
}
},
"46a391cab0d444538d5ae54d3618ed79": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_62687e611cf64d70969e35d2c704e90b",
"style": "IPY_MODEL_ce7f7c541570412baa0eee218b296f6d",
"value": false
}
},
"46a7ea3919c642a99de6db9cdac720d0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_26e9d35e7939455db2acad11ea3801c9",
"style": "IPY_MODEL_ca56e9be0cd34ea4873aab64877e7231"
}
},
"46a8183f72694802984a84d7dbebf89a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"46aac59af21643d8bbc8d77f503e38c8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"46bb7674d7d14efc83b7cd8add4b82af": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_bb44fa9927d44af0a00e0a5c5c410a04",
"style": "IPY_MODEL_966b345a16f543d5826807a5d600eabc"
}
},
"46cc831149324c6bacc04995aec80578": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_bc2539b03ff44511aa8e316321db9899",
"placeholder": "",
"style": "IPY_MODEL_21fac90712074a7c8723eb5e6aff0109",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"46d57995550543fab065fa2dbe1a799c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"46db2398354d495b88d220568963750f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"46dba457afe54af8a0a44316e05fdd2d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_b616c71bbb624dea8f0cc2f7fac8a03c",
"placeholder": "output filename",
"style": "IPY_MODEL_01d7be0b8acf466f82476de6077413db"
}
},
"46e860a298b14fc090c2c7f3dcabc5ee": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"46e91c873ed441058f82e3bcc03db1b3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Elevation (m)",
"layout": "IPY_MODEL_9518f652d50049cfa3a3e5af86e6f6f4",
"step": null,
"style": "IPY_MODEL_60aa16c3e333493991c133b3a8c786b0"
}
},
"46ea9abedda54b07b7e481405194df64": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"46eb851deedb4786a9942ebcc2f72465": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_4741a465d75949fd964550439e9fdf95",
"style": "IPY_MODEL_cfb92d5f86b34728b0426fb7596ab5f5"
}
},
"46ebcb6e4d0547ab8d6285d537163f94": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"--- Channels ---",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Radar (Optional):",
"index": 0,
"layout": "IPY_MODEL_b1a3c0aaa7224ca0b208883238d910c9",
"style": "IPY_MODEL_7145d2c647244d88b046f21b293ca057"
}
},
"46edaab643cb44f1b69e8f9f983e1814": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_b223ab4591bc4a7f94169d0d92b6cb26",
"IPY_MODEL_86a498b6c0854fe09fd271bf2c65c73c",
"IPY_MODEL_a6364a776609402891839e5772a2936c"
],
"layout": "IPY_MODEL_92bdf35f7adb46208b54edce83591b60"
}
},
"46f515734f9b4819b314af39578c509d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4700b7dfd8cb49ddbdc9fb93177113f9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_ccad3907b8bd481f8ad772d199bba6ed",
"IPY_MODEL_55045348c548468fbbab938fa9a10a58"
],
"layout": "IPY_MODEL_88f5609bc1884231a24e03474435430a"
}
},
"47031d272f184b9cab66a4e44822e7ca": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"4713163d05ec4921a605ecedd0304bad": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4716496694b94c1897295babecb4019e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"47180a0bc91f4742a7ab41dca2c37554": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_8d3937b79e8b474c968644a65b2de7fd"
],
"layout": "IPY_MODEL_e31a065d301c4a98a452dfca02824994"
}
},
"471aee515db94afd82de7c9fb3280441": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_9cdd827ae58344f7a087d62d3721925d",
"IPY_MODEL_a0090a0c9bab4df1ab40bc2719047078"
],
"layout": "IPY_MODEL_d9737f3fafcb4a84969848fe99698fa6"
}
},
"4720b59bb27d4b0d81a9b7139ef4b4d3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4720e26421364eb0acd91fd5081a7658": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Beta ratio (phi_d/phi_m):",
"layout": "IPY_MODEL_2c0300ace4d443c2a05a4b59b3034443",
"step": null,
"style": "IPY_MODEL_52f9cf40def946e7838b8b02a350dd71",
"value": 100
}
},
"4721469fca1045f18cc6726bada8ec67": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"47270341eaca4713810e76857949339d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_6a4e427c909f42c091ddef4e3f0fe34a",
"IPY_MODEL_903a288cede4458da5775c822f61ef62"
],
"layout": "IPY_MODEL_1d27f12bdcac4b15b283327cf5462547"
}
},
"4727b76eb3de4856b6b12564714ba298": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"border": "solid"
}
},
"472b2f7c736c4baf8627afbf0ac73050": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"472d7c6a0480466898c99e873a2db5ba": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4732cec64e1447c28ea614b457714ef9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_daf377387a59406e940efc0160ec4915",
"IPY_MODEL_2404f2cdbd464a21b6a16d1d45dc84fb",
"IPY_MODEL_d912b8266b68405aa5f30787b0e50f89"
],
"layout": "IPY_MODEL_f78150a835d740639e121484023445a5"
}
},
"4741a465d75949fd964550439e9fdf95": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"474a1685c974402aa95e4177139511eb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"475b90cd4e1d4f75a3cbda163e02d74e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_94570283240a4b2b8a3d8abd614bd6aa",
"IPY_MODEL_c6a58420e5524c81831144847b2465a6"
],
"layout": "IPY_MODEL_84d4a4592b8347f489bb4d396f3af346"
}
},
"47644fbdbe7742e09cc11bb7007c53c0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"4774fb14183e4d28a10e6fea5b6bf49a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"4786940c0cd344eaa04a3143f3c6ee5f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"478a41679d7941b6bf88af49cd55d3d9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4790e96e27c34583b5ebb9d3f4992a06": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"479ad735a9674a47bb11b85fb757ba46": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_1285349074dc403d9fac3351d1919c18",
"IPY_MODEL_7476ef1528064cca8734821d6c2fb8bc",
"IPY_MODEL_ef564b13b8124c93b7d2382923e4b0f7"
],
"layout": "IPY_MODEL_741b429c8996462db764e1ffd56b486f"
}
},
"47a8e739f0db43cc86d4d43b84f23453": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"layout": "IPY_MODEL_f1242c6385874acf9faca124c9e4444c",
"step": null,
"style": "IPY_MODEL_317ba641ae5c43cc9d9842bd34b5d245",
"value": 25
}
},
"47b82a12327e4c3683392193b96b9c88": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_af8ba9f76a494198accf78244318d0f5",
"IPY_MODEL_c5e55d2062684f68b9d18ac865abd7c3"
],
"layout": "IPY_MODEL_6a27ec930ec64ee592e71d4a1dc366da"
}
},
"47be8df87bf94fafb2888c3498a04c21": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"47c8cbc0e22b4efc8b401d12df0495dd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"47cbde3edb94481aa5b42a3a53603de1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "dx (+East)",
"layout": "IPY_MODEL_1692a13634304074bcb8383a1e5fb95a",
"step": null,
"style": "IPY_MODEL_d991c34c13b5480eb9e2d8d342ffcc26"
}
},
"47cd84ea43874fcfbc0fe309943fd0a2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"47f4ddbe73854f4b9f33608a3f365228": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Ore/39_Ore_Callinan",
"Ore/38_Ore_Dan_Owens",
"Ore/40_Ore_FlinFlon",
"Workspace/Inversion_VTEM_Model",
"Workspace/CDI_VTEM_model",
"Workspace/Data_FEM_pseudo3D",
"Workspace/O2O_Interp_25m",
"Workspace/geochem",
"Workspace/Inversion_DIGHEM_Model",
"Workspace/Topography",
"Workspace/Data_TEM_pseudo3D",
"Workspace/Data_ZTEM",
"Workspace/Mesh"
],
"description": "Object",
"index": 0,
"layout": "IPY_MODEL_bd005855abd6418d8de74af8d1931236",
"style": "IPY_MODEL_9a9bc52c5e1d4aea99378d017c5813b9"
}
},
"47f867c098e2463aad9b6a756d0c9b13": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"4801cde909874c6c93091431eae5da2f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"481aa0aec85e4e1b8fcd0dbc8b319ea1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_eb4e57978842473284deaac2a02f95a6",
"IPY_MODEL_7026f131d4ce4281ac4e35bc1a916022"
],
"layout": "IPY_MODEL_3ac0dc76b4274f3482b38f61213931ea"
}
},
"48262030e2e14a8ab88c3fdcc822861b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"48281e4d31c04e3b895d9729d9ef8a9f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"482880e304da421b88df252c3698b2e5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"482e1a0cc72e46ce86cd49f27ae66133": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"484e869931e04a8a9664eb1693968a55": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4857eee966924af3b0ca816f0244ab10": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_2e074cc661634d959db7e9c6ed621264",
"style": "IPY_MODEL_9fb3ba633d4443e3aab34dd01ca457d1"
}
},
"48585697bf6246238acbfee34446602a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"all",
"perimeter"
],
"description": "Method",
"index": 1,
"layout": "IPY_MODEL_e05c2811933648d89573f55de1799bcb",
"style": "IPY_MODEL_da7f9829651a450789ccf95226c60dce"
}
},
"485ae91e5b554d1cb7804dafdb97a1e7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"485dfe6f19c14ab4874c1a691572ae1f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"487119b98be240a38c2c9a6a86fe37b9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"48739c54ceee4d3cbccffcbe670f5bf5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4875b0641d8f4a50ba3559c6970626da": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"4882fe02278a4ef69080cb5a7dcdff31": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4886489c93d349199a1f154e49f761f2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"48889617934142848e6ff7877629425b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"488984385e104b409a12c238ba249013": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4893e8a32a654dd5bba490ca362ff142": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"489e62f10d444d0f91f9159953a68812": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_b0afe2d9b52b41ae97c62145f6b6981c",
"style": "IPY_MODEL_c9a0c4d20d2146f1a8c3cb117722b2bd",
"value": false
}
},
"48aa9195d77342f8a4c8dfe33aa88a1e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"48c2dde70855469b8b2c6667adf2f74a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_1e02d15004d943189885e09057d10e6e",
"style": "IPY_MODEL_db2e5ee55900481696663e27f9c486cf"
}
},
"48ca7b08638c49898677913b50df127b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_b67424bd099a450685e759bfec674759",
"IPY_MODEL_9728dc892b544ae59c87a38123a86448",
"IPY_MODEL_cd16e5f67ba743b1b30e30e46decf595"
],
"layout": "IPY_MODEL_570e15584d05498ab6ecbf48954fc7be"
}
},
"48cb9bf8493443e58fa18cbff5ca8617": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"48cf063b1c274880a87c541cf0def66f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"48d0f786346a4bb9bfe7b8b2d1369bda": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"48e738f7c98749fa92c46ed25db9fdfb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"48efc8b166bc49fca58809fc83475775": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"48f223f61b7947c8bf7491c1e5577995": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"48f74da05dbf4cee9a66a11fceab3e0f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"48f7efceca304b53a8dc1cec99c738f5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"48f95e3861374b05803577e9c8a2a212": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"490262a058f24ad3afd20d7d288c5706": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"G:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"D:\\"
],
"index": 0,
"layout": "IPY_MODEL_6b97eca4cadf4e6885ea609fffe843c3",
"style": "IPY_MODEL_fbdd3d9e0c264de9a7b584a878c972a0"
}
},
"49030e99fa4f41f892e3e97842e97a8a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"49098ae50db541bf817e1b08e93421ce": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_bcd4cd3948c04ba5b70b7582de7fd6a9",
"IPY_MODEL_50db056175c741dfa7f1e0bf3189c3fd"
],
"layout": "IPY_MODEL_bac03be769a54b1b90baeff7bb943369"
}
},
"490db8ae1903422cba7bba67e6aa078e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4913352250444b4996c0aad101bc15ae": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"491400b2cfcd42c589d8460e8d750bc3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4922ea5b66424f3f9000c35553379519": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"492398b1fa2246fd97dbb89d4e70a127": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"4950e702930f4ae0b5a950390ff3462b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"49570f0b12c44adcb56b13c078e19817": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_b54efe8c935e484b9ee47c60a105352f",
"style": "IPY_MODEL_4b0853c7f2f14c94af3494efb571873b"
}
},
"495f844dba3844e39a2ba62bcea56510": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"4970098a244d4ff693315cbab699c381": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4974399539be437b978422800201ae06": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"49782974d4784b2cabac89ed760b9a66": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_d92ced59e550461da6f377c53d0e03a7"
],
"layout": "IPY_MODEL_87c0a716a48747cf90c917aa1b849f2f"
}
},
"4979cf51305f44709b7042950dbe2649": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"49820ee78ebb40f29cd2fdc9729eb68e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"4988f5e195cd4a4291ac02915ba2efd5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"498db68519c44ef78e16a8321e3aa985": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"49a190bea46e4d4487b84509d5eeee50": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"49b1b113503f459eaf3aa08db5cb741d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"49ccad402be24feaafb07c7e8c258a77": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"--- Channels ---",
"elevation"
],
"description": "Data: ",
"index": 2,
"layout": "IPY_MODEL_c6b084d8159346aba24b67e7d5f3fb5f",
"style": "IPY_MODEL_454e3b49220d41e8948820524390256f"
}
},
"49cccd470a144fcc90a172c0b275d30e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"49cd205370c349fe81493d8c65d34ba5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"49d31407db494e5aa6882d45d63c069d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"49d5bdc9dc414f32a6262a676943d964": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"49d65dbcff7b4f02a64d7676b108c3c4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_31e08c15fa8d46be9b31c1a9678da810"
],
"layout": "IPY_MODEL_202b3b731dbe405d9d5ab0525dbce95a"
}
},
"49df7fa5518948acb54ea967f0cf7dac": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"49e4c4f920b248e9bf643b7988759ecd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Grid Resolution (m)",
"layout": "IPY_MODEL_a341ed8f2d0f41b58f052d0add81c3ea",
"step": null,
"style": "IPY_MODEL_1dbad2e4612644198b6faae02996dc17",
"value": 50
}
},
"49e6513e2b17419cb5b21d00c34d1403": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"49ec5eda15c84ab2816de46415782326": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"49f681121a964a3c91aa7c065a761a9e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"49f8ec88c5d94461813e32ea7574cf2b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"4a091514a8574e37abe817f5c5269574": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4a152845672a43088c73eb5e6d9c76b1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4a22032bce8248dfbfe7463db0cedaf5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4a34e96070d34371815a0c288062636a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_b385def2b1e94f6b931d644707968c13",
"IPY_MODEL_b120c566b3654500ac9e57153d3f3613"
],
"layout": "IPY_MODEL_046c1ba2a179455caf5f8ae96122c78f"
}
},
"4a358ef3b2d642e3836784e8c34d1787": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"4a3be65f2fcf49319ffdfcad4b9975f5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4a4699f144ab4f0ca4f1fd132113c096": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"4a52b205756249e2b1d3556f1af4e8ba": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4a5af24779fe49b3bce2fe78256cb253": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_b3c65beccec946b9a0b28008636d4a9f",
"style": "IPY_MODEL_805774ec25984065b2606942ca90bdae",
"value": false
}
},
"4a6b24b944354eb09e03305413c0049c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"4a7513283f4a4faa82bd976ca3383dfd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"4a7da759ce2d4b1e86c617089e290b11": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4a94666a41ce492cb9143f58b2adecfb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_d944460832114a748f62694b9705ba72",
"style": "IPY_MODEL_be27fbb89e9441208b6ef37ca65f20bc"
}
},
"4a9a269553fe45a19cfdf48e8acf64ec": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4a9acc61b3194db684d7dfce1506fdd2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_e22d267e041c4318b6b73f98c49d9393",
"IPY_MODEL_ebe1d7ecbc4a41278cc3c182ab179a91"
],
"layout": "IPY_MODEL_ed06d64345f947dea49d5f789792c533"
}
},
"4a9ec190af8f43c48f56068c9607cb81": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_661e331c56a847c2b31824a9d471bc95",
"IPY_MODEL_9b194423dc874343a9b5e5294f878f75",
"IPY_MODEL_b7b92f7d62f948b3bca9beba603abfb1"
],
"layout": "IPY_MODEL_7d3363055ef743ac94d80dab3add3aa6"
}
},
"4ab566847c39469ebd9de0cc1beecea6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_1b6dd728865d4e16835d61374319320b",
"IPY_MODEL_ff37210d7c8149ee8572628a426af46f"
],
"layout": "IPY_MODEL_70f250696373449e9ebda4e22d5bd66d"
}
},
"4abd53873d5941e7be7f0c718572eda1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_886e67641b10468ea306286ec38c8392",
"style": "IPY_MODEL_ab4a2d03e4a4425bb38bca4b6f3ee6fe",
"value": "Workspace"
}
},
"4acb00f47edd44c8b5e53f28ecdd8941": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4ad4c6c49605410686544136a39a07e4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4aea53bd85e54b5b885416b64463cb3c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4aebf9cb15074b0fa2dac4c57c7ce431": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4af471c69dee446f94d1e234f8912564": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_03ececc368cf45fd9d241a3b5322781c",
"style": "IPY_MODEL_9cabdc5c767b4acd9377cc15bbcbecbd",
"value": false
}
},
"4b0853c7f2f14c94af3494efb571873b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"4b0bd97c753344f49ec493be35d6ba59": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4b0e0a8ff38142e9bcf92d7a53dc12ec": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_5835f46b417e4b76b0b1a14d9eb009cf",
"IPY_MODEL_6b8f96b9bfd74a84a0de4e809a56e481",
"IPY_MODEL_0372a72c5c2b46e8b64642aafb7a9760",
"IPY_MODEL_af38c478b4d645c6aeb1d4a47fc930b0",
"IPY_MODEL_1c45b089f7d0457a996f48d72d1330d9",
"IPY_MODEL_cee2f55754d44b0087eaa1a3a075d97e",
"IPY_MODEL_5129d485377a470aacec498158d9ebb2",
"IPY_MODEL_fbd0a733736b41ef88834eed17aecdd3",
"IPY_MODEL_3d7d7d7722e7463ab26ad1cee09e9eb1",
"IPY_MODEL_d1aab47ea9ef4ce0b89aeb57e8da88ca",
"IPY_MODEL_a125029ff37249b8bc31892eeb9f035c",
"IPY_MODEL_7beca57acd754dd8990f5bc3aebd8c2f"
],
"layout": "IPY_MODEL_757daaa6a53440c1b8247ec78f3076c7"
}
},
"4b148ba95d1d4cd3a4b6c06da2309f34": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4b182c824f394726aa2c29a3a7b662bc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4b1d0d507de34ef386cd86043998d14a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"4b2119b379424ab28fb5b07ab609ba0c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_e5bc830fb410410c95996cf8472cb089",
"IPY_MODEL_1f2c2553bf4e426498062c199355f373"
],
"layout": "IPY_MODEL_e3d5fe9c77ff45189f26099c4fe60e21"
}
},
"4b342372a724480cb614e3ffa18219af": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_63e1b87dd5ab4abcbb70e749525b7c66",
"style": "IPY_MODEL_58ed9c1a6314444ba7ead341faa7882a",
"tooltip": "Run computation"
}
},
"4b3ad266172d41f29e0b9d82eb360ec2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_b2da7a5a10bb48608066341460983225",
"style": "IPY_MODEL_cfde9a3eb89246b99411eff48970465b"
}
},
"4b3e37898fc642b5a4d08fcce6041f30": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"4b459532c99a44e3812b1bccc4de3f44": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4b498abfe0b24c0ba5a50bbcc8c68d33": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4b4aa6bb222f4cf7be9d940602fad701": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4b54ac8d3cb1402b8137611f679e8660": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"layout": "IPY_MODEL_f49e07111c6840178cb917d9f4be0078",
"outputs": [
{
"data": {
"image/png": "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\n",
"text/plain": ""
},
"metadata": {
"needs_background": "light"
},
"output_type": "display_data"
}
]
}
},
"4b5a48105c6a49789b28aa8f8c2cc48c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"4b5babd4f6f045dda647ae0f1d97c5f6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4b64d1aea27b4938a909a13fc01e09e4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"4b698d06df9441af8b1c34f164b587b7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"4b7ce057a6884d63b3c9efc55deb950e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4ba9218b40d441919216a433c6383075": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"4badf1068ba04431b935c07ffd99ead8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4baed41222464ded9633f37351fcc543": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4bcb8e515abe4600819771fc540fee2c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4bd5af57d1cb483bb22d902cd0f2e7bd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4bd8a3daf2a94088bf003071a83ec567": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 Temp",
"📁 uijson",
"FlinFlon.geoh5",
"FlinFlon_dcip.geoh5",
"FlinFlon_dcip_v4.geoh5",
"FlinFlon_natural_sources.geoh5",
"FlinFlon_natural_sources_v4.geoh5",
"MtDore_TMI.geoh5"
],
"index": 3,
"layout": "IPY_MODEL_19da3388486047ecb29adcd62c6ee216",
"rows": 8,
"style": "IPY_MODEL_fae04b6c5d8842d0ba00fbdf4416943f"
}
},
"4be35d16265e4dceabd834b44750522f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4be58224e20749ed9329e75bed3dc9fc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4beb35a2275e4ba2b19d6939607db251": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4bf5120edc6046f7b5c3b6cd9d120928": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_859241519f934640acd42eb7cd3b98ca",
"style": "IPY_MODEL_855d9ec4e4f348868ab9aea37ba3ecde",
"value": "Input Data"
}
},
"4bf73ba3a5b5461eb8264d97e68d8b9b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Set Z from topo + offsets",
"disabled": false,
"layout": "IPY_MODEL_cbccf27122544c97b56194e759917b5c",
"style": "IPY_MODEL_d267b2877c494aa0ad2bff4180ff6a6e",
"value": true
}
},
"4c02ecaabb3d464a8e1f13289ef231b9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"4c065aeb196a4ed4af4788fea470995b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4c0f82a7f731497b9c85a637c2870e48": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4c12f5e83e7a459f8450b3a54e16e85a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_bb6f0a32ab2548b491b8f818875cecf0",
"IPY_MODEL_d5b0b225d4c04712944e05c938b03155",
"IPY_MODEL_dcb410a6974a46068327e83245d31f0c"
],
"layout": "IPY_MODEL_89a705e5d2de4d40ad4d56cf2d5d8ba7"
}
},
"4c13b3cb25964438a443076498c8b817": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4c201c938a204b70a6ddf587d76f41bd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4c21b2891830465b973fc38d17771c2d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4c2261ff93694e5c977ff6c17c60e59c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"4c254b6e47be40ae8715cc421ab2c3dc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4c25b7f16db04355a8749ec532a9ea26": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4c29f4e0acdb4db38262314ff454671d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_5cd06c204e924ff3bbb8cfb2bb0cce03",
"IPY_MODEL_390899de1c10424e81cf8ca53b022767"
],
"layout": "IPY_MODEL_dade9208e6b0444ba238f2f3f060ff56"
}
},
"4c2a1a88a29d4096b74e59fc1e848378": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4c2e6f8898294624aaab68d06d4acfdf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_8405ef109ea5458c9f73f67a7ce7f0ed",
"IPY_MODEL_e2f958daf93c4f8e8f81c8cb17bcea2f",
"IPY_MODEL_8ae914743efa41a78074adb9eaadf583"
],
"layout": "IPY_MODEL_5b82b24baf474226a267d7d8266f59d7"
}
},
"4c33b3c70b9a464385efad0dbf597eb0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4c3d9b1884f640df87251b24ae8ebf62": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"4c41fb28a6244cf08648d1203d939508": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_9a31611f748241d9880c62c78cb59ba8",
"style": "IPY_MODEL_399960b541d0426f9e0136d41a2c5c24",
"value": "Input Data"
}
},
"4c49f0984012422f81566c15054c2376": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_eb2a0ec8616b41e99a7f084cd9bd37a4",
"style": "IPY_MODEL_2e82925701734693a1ae19e9242deb60",
"tooltip": "Run computation"
}
},
"4c5a1c54ac084f8aaa06e3c944383ba7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_bf57eb7d2c9640d4b52b0b89bf10c99f",
"style": "IPY_MODEL_390c93d70b44473db586f54a9a7fc36d",
"value": "Input Data"
}
},
"4c5d9aa3a99c4f1fad0d3f778677b636": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_87bb008ed7ba4405a2f097a43e90e175",
"placeholder": "output filename",
"style": "IPY_MODEL_3fbbebd2a8534632a209c83096a32c96",
"value": "FlinFlon.geoh5"
}
},
"4c6289ebd6ec4abdb63d49b5d731b9d0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4c7549494b644019bd56545e4e421303": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"4c7a0876a43748af9e1987aad5e184e6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4c85b8f8091546769341c08316ea7316": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"4c87515e50c8486797d0db89cdf10b14": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4c8a0137f7684f42957b8009de7d743b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_b8753a41c7d64709837a73ea37a63b62",
"IPY_MODEL_e7c723b97ccb4b5b853db5c872712d12"
],
"layout": "IPY_MODEL_9bc76b8cca4241bc87a34695860b44b7"
}
},
"4c8e9ceaf4284a779413e9ad28891f85": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4c8ec53df08948eab94695e3455ceb0c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4c9d842dceb54301a1f8b083cd3ba70a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4ca06506b59d42c58c504819aad908ef": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4ca9318fdc36484280fccf090900a4db": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4caf9ada43744125b2665590e209d870": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4cb6374823224951986a68b99607562a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"4cbe37dda46c42938619d5e8d7e337cc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4cc3c97af62248b486ece794865e5965": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_59f6ba4ed4954d0591aa09c8e61954b4",
"IPY_MODEL_9ce59d9b83df4912a15c6f528ab01140",
"IPY_MODEL_e48c7934a7914bd19f672be617caca96",
"IPY_MODEL_f3b47110b21b4ed5be26a21952344cac"
],
"layout": "IPY_MODEL_35ffac09f98342619f7693a94926465a"
}
},
"4cc5a855b6544764985795f81f35f40a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4cd6c657a2ae4a438b4eace21cfce23a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4cd77e71bf5f47eeb470cf0ffc9f7bfb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4cdba0cba0d04eb4a96993d9fee734f9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4ce21b873cd943f98a68da1cb2e59d8c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_e728d4846b47403fa7340943174f668e",
"IPY_MODEL_ca319ef5ea604aebbf05954f09ee87d1"
],
"layout": "IPY_MODEL_c4e0e249dce64405969279ab71200966"
}
},
"4ce87212a93e4737b1da12072d5997d7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "IntTextModel",
"state": {
"description": "Max CPUs",
"layout": "IPY_MODEL_3c2e7c667c5a4773aeee729b8eb9e985",
"step": 1,
"style": "IPY_MODEL_c54ea11e238e4064b7d92e25a3e4cdad",
"value": 6
}
},
"4cf31b6b1f9e444aade0ddfa9e196b14": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4cfa9dd0204142cabdbb5305f99862b7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_c902c53acb6f465fabee6f557877b280",
"style": "IPY_MODEL_7bc516fe92a04ba5ac0f4523d3247b8f",
"value": "Scaling (alphas)"
}
},
"4d142dcce7274825a4a33b2fe75b5b78": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4d1fb8f2f5d346ff8aa3d04403992f19": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4d2170ce1ecb4d83b4b0cd0ee15847b0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_89ee492c5eaf4a099968f57c019f016d",
"placeholder": "output filename",
"style": "IPY_MODEL_b22a569888ed4b019d1b5ac971524326",
"value": "FlinFlon.geoh5"
}
},
"4d256d6437e44c09bcf2bdb283a64cf2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_5b851c52d75d463fb3f19cbbd6789871",
"style": "IPY_MODEL_1b81a8885f6b42d898ab360fe21b59f1"
}
},
"4d4727e936bf4c57a83a1d5d6e26a59b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4d573fa1bb5445149504727657bf1e04": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4d5e98eb650a41c7b5b39e298fbd3cd3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_5eaee931144743fea3756d832206133a",
"style": "IPY_MODEL_96c8845e165c41f883b22d28e78f52f2",
"value": "Core cell size (u, v, z)"
}
},
"4d635163702a484ca2102bbf3a77a152": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4d69ac3fc5dd4c0eb272bbe0e15e1f02": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4d746e79320147099377d45c51108ae0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4d761f1a05e84c5fad2711f3873db478": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"4d7c430396744d4bab7d4308783eb6a9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"4d85d88a945e450089de1a6099b7d487": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_847f4bc5c01f421987d92c2754cd8d44",
"style": "IPY_MODEL_ad048bdb03424a6cb6d8fa1a9a63e036"
}
},
"4d8d9230337447db9f803459b2b63ca6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"4d93367eeaa94baaa38fbcfbfb84fc29": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_60d66fe0e2d44cc0871792504f5feb33",
"placeholder": "output filename",
"style": "IPY_MODEL_a01cd77241a14df29daf9d9e117874b5",
"value": "FlinFlon.geoh5"
}
},
"4d97a45210a54c958c5c189e6e20dbe6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"4d98feb3241b400a8f4101a0fb573c2a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"4d9f059a5d674db2a4c537664de894dc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4da32bb5eea142369871c384ad6a127c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4dab399ea1cd4ed798569dc6e5e899b4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4dad909e5b544a8591af45cc7de67893": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4dbce9521ea149ba915a20ee520c148f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4dcac8e22c1b48959608f0fe495c8ffc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_020e3249a4a5461591045486594dd851",
"style": "IPY_MODEL_040e18512bfc4f5295310f458166cfed",
"value": false
}
},
"4dd0313c190f4f7bb6415f0dd6ef6b75": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Grid Resolution (m)",
"layout": "IPY_MODEL_4886489c93d349199a1f154e49f761f2",
"step": null,
"style": "IPY_MODEL_cece28b348eb4922821b203000031e9d",
"value": 50
}
},
"4dd6eb002ec34dbc8f45075b52408581": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Colorbar",
"disabled": false,
"layout": "IPY_MODEL_6cb44b2635c14e2ea183e39976b920f2",
"style": "IPY_MODEL_6cdf1e6f029a438094b20342c0ba2c72",
"value": false
}
},
"4ddd2f7ed35a46e592b24f3348f38a28": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4df1984b877947c08349c86b9c69f8a5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_d15e7e947f5143a5bf6d054eca98e25a",
"style": "IPY_MODEL_381ea4953c214f57972a72497d547d33"
}
},
"4df4f2bf4c1a4b229f38628148df3572": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4dfb9a9a2d094b3fb93c901773d182be": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_631801bc716c4330a486993a4f662803",
"style": "IPY_MODEL_63a2486ce4c8408f90864d49d697546a",
"value": "Data Count: 0"
}
},
"4e1629a46c284e7ea944d3d673303fbe": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_b6aba8dff0d9456989415353a4e3c7b4",
"IPY_MODEL_25222d61fcba4084b50c8fe5b556f51b"
],
"layout": "IPY_MODEL_1384e9ba8e984c199e4f3651b0d295bb"
}
},
"4e1ea951c4754facad6b6d68a21e8324": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_d46dd416ac194704b769e3a1e0e0c045",
"style": "IPY_MODEL_0e312cd54c8a4cab9d892c03f99abce4"
}
},
"4e4696c08f2d4750ba63b61e874282cc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4e52ce571cdc4109ac551c7f098c99c8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4e596a688b44494c9fcede3610c56426": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4e63cc44dba64141ba532def72a56c94": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4e6a101191324a9e935555a9981c7a8d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4e706809a4d04ca199a6b975fa7603b4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_a708cba0345746129533325d3719db9e",
"style": "IPY_MODEL_68aac2ddabc7478986cdd31ddae77188"
}
},
"4e8e432b23dd45b6aacf1f95507be6d2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"4e99882de37a43ffaa0f9eefc528fc1e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4ea0bc47ca9f4d578f2aaaf20d84d34c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_ed6046ee93824c45a12cb937196ce413",
"step": null,
"style": "IPY_MODEL_ae7f656e41f24d079b4e688eb00f3aac",
"value": 1
}
},
"4ea732caa4be4880860195cca0654cba": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4ef503b8b0e844abb211f8460f46b889": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_a8d4707c132c447081416f8258e968e4",
"style": "IPY_MODEL_eb1a5a02dfea48dd81f246913f56e820",
"value": "Workspace"
}
},
"4f06c0027e9444a49b13ba5e1f2b153a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_c2dfa38d3344466190def2c8547044cd",
"IPY_MODEL_6093047f975a4a8cadc95640b3a8829a",
"IPY_MODEL_9f0574df578a45039d7e0599bc69bb84"
],
"layout": "IPY_MODEL_2ded96b474f0462290b47dd42bc9c773"
}
},
"4f0843e60c484cda990772c8d7fa7670": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 SimPEG_PFInversion"
],
"index": null,
"layout": "IPY_MODEL_7b2a4fcfc4fe400c9f58d298e11f0947",
"rows": 8,
"style": "IPY_MODEL_af169923121b4623a3d1ac5adafc40c3"
}
},
"4f09783d7e274933a3e86e2135e78e50": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4f0a90152c54471683ad2c4f581d3ed3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4f0e24701a184ebe8ae587a37493b388": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_c52d75464afd4470803ec50a1f8b2e7d",
"style": "IPY_MODEL_fcea686f7ffe451eaef9a6c6adc3949d"
}
},
"4f0e329330ed498c9eca41e0a1d99072": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_b6eb939e273b4eed85c18a7a8faee479",
"IPY_MODEL_6e2ca753fc7445cf814c685b133dc56b"
],
"layout": "IPY_MODEL_18e6a1bdc94f4cc29dc3b812f8d2103f"
}
},
"4f0e8f69b2f7470697cbc3f76e36e4d2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4f23540babef4e2da37a8934acb5112c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4f2e91a104cd4ea595f066e4edf818e4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_2f9d28b4bb5740de85a5cfac807d3c80",
"style": "IPY_MODEL_ac4efc2478ac45739db151efa9f2cb76"
}
},
"4f37c2f5436c48b391a5c9de17ee625f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4f3a609d2b754278b8db880e5eb30dc9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4f4b4a815160420d82a0f2101dfeed22": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 Temp",
"📁 uijson",
"FlinFlon.geoh5",
"FlinFlon_dcip.geoh5",
"FlinFlon_dcip_v4.geoh5",
"FlinFlon_natural_sources.geoh5",
"FlinFlon_natural_sources_v4.geoh5",
"MtDore_TMI.geoh5"
],
"index": 3,
"layout": "IPY_MODEL_c1cc0e8cc06448b9ac320cb35ac923f3",
"rows": 8,
"style": "IPY_MODEL_26ee726e601e4eebb357a5cd226d9833"
}
},
"4f553e5a9eb24bf4bc42162ad9201ff8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4f786eda6e784c5e839459742f3af3f5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4f7fa99e8fb442e7bcaa06e74ed16ae3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4f807480325144ef959e616d1e7fe20c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"4f8ff2932c9648f489729cbe36bfe547": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4f9277fbf65b4592942a5ae50fa45ebd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"4fa0134a8ca64493a15165772db9ef80": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 SimPEG_PFInversion",
"📁 Temp",
"📁 uijson",
"FlinFlon.geoh5",
"FlinFlon_dcip.geoh5",
"FlinFlon_natural_sources.geoh5",
"MtDore_TMI.geoh5",
"tem.geoh5",
"test_forward.ui.geoh5",
"test_forward.ui.json"
],
"index": 4,
"layout": "IPY_MODEL_0b781dab6b7e4978b37c90c95cc2640b",
"rows": 8,
"style": "IPY_MODEL_95f45a7ddaa34492912da950758fd8b3"
}
},
"4fa1a9a6225943e7ab9c5866ed90ab22": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_588419e912864c0d8fb1ae6c0914b47c",
"IPY_MODEL_67c2e5212f98437fabd2f9ad2addf0cb"
],
"layout": "IPY_MODEL_5d6fbe743c0047cea9a61ff9710f5f02"
}
},
"4fa8d69892bb4e10bb5071801ffc411a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4faeae27024d4319bac35187209d026b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_9025e5ab876a47c7b8d63226efcc6769",
"IPY_MODEL_c4f810fe3e084fc084aa67a9e0cd6ef4"
],
"layout": "IPY_MODEL_06e891f22de74cf18c0d38847a28dfef"
}
},
"4fc2a97f51364650bd38e53ba6005aab": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"4fc681a32eb240fc972e1fb1b0267375": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4fc717ee81cf424e8c7a8261975a7b8b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4fcf9bcb03ef41658a7f4ce423de90af": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4fe5a341bfc146f18de6328e87b661fa": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4ff118a8d69744d99cdbf87e1f0c2438": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4ff2985e2c7d42dcb3312f9a910f6527": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"50012141afde4c33b47fbf8b4117212c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"500691897efc48de86f3392e64298991": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"500f308ac6454f8a88379d779abbb4a2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_80873e194d404ce3b98767bb7c90aae1",
"IPY_MODEL_a31cb17a771d4e03bd8ae9c27ecaf77f",
"IPY_MODEL_c4d6424895874a0db23fd7429ced17bc"
],
"layout": "IPY_MODEL_f0e82175706347b3bed8f7e92fe36749"
}
},
"501edef9d41b42f68ad662fcb588fb01": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"503a758aabe74de5a8090a970a169cf9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"504b92ac72e54af3a08ae5321bcd6bcd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"504c4c3040054ce7a3de18e0c87ec0c5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_a45ba3e0fcc64184ab5fdf9fb04ba547",
"style": "IPY_MODEL_ac230a19f080483088101c106400663e"
}
},
"505c92397eb14b7d8e88218ecc851b0c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"50699000bba445dfa2dfe8de7b38387f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Grid Resolution (m)",
"layout": "IPY_MODEL_3ceaf0aa781d487dacde48981386814d",
"step": null,
"style": "IPY_MODEL_89e26f61a5834b60a59759713577b3e4",
"value": 50
}
},
"506f87452a0a409b8cf7cf60786a65d7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_53b3db4dd40e40f992ea551e4c04ac5f",
"placeholder": "",
"style": "IPY_MODEL_9c9fd8c5f599460a884ed432c3880118",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"5085a912413342069f4aa4fdda3c1f01": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"5089f83519f14617b4105114aaaf9432": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_98d7df1a05a6491fbe0b95fe42000b18",
"IPY_MODEL_73f3c3466f5d41edb684826e11f260f3",
"IPY_MODEL_c8432e62eee94178b7b151ef7dbf65e0"
],
"layout": "IPY_MODEL_aedbef5b01714a33b3633eb5c9f1756a"
}
},
"5099410ca3b54fd297281db44ab47834": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"50b0ca23038649f5b2d8f7e1755e5b78": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"50b33dc0c2f84699ad1313c4145eac25": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_7cec4a3a2dc543d2887189e23c792c92",
"style": "IPY_MODEL_3ab46c9cbf914b5498352fb7ae9f95eb"
}
},
"50bb9dde44e54ba58838bd68c44f3c5e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"50c67b9553eb4e64ab9f32987f42f37a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"50cb4db8fd63417c855a9c8bdd6c087f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"50d77d3be15941898d2e6722ee2bcf6b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"50d81389aceb4b1d81affaf018ce4f72": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"50db056175c741dfa7f1e0bf3189c3fd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_6cf589a60a15462091731d868c05701c",
"IPY_MODEL_9a44d674d83f4e7ba33c58f208eeff2b"
],
"layout": "IPY_MODEL_9e1de3e38f5d4d6e9ff4e6648a957689"
}
},
"50e464f553e34b7e9d7922522bd0bed6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"50eb14cf24a44be6a3fc2fdb10d261f7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"50f2ff270d784c279cdef380861754d0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"50f3cbda42f2444d8a2e7f5b5e7a18ce": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"50fb3ee7bff14e77a62e296226225e11": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5115a7230e184103944accb32c2f2192": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"511929fc62cc440c83e9ebe6229671de": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_8764830778b245f9ad97f2a063f36fa9",
"IPY_MODEL_92f9c15294f2488c82dac1087907a6df"
],
"layout": "IPY_MODEL_d0adebb800d74d62b1d609a24a1150f2"
}
},
"511fb18370e14125b6879990a8b1212d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5124ae65f3e8439b9b46a0f32e297e03": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"512627e0ddc54752a1be7ac56126ebc7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_35a3db8aa624472e92389c3950bee115",
"IPY_MODEL_fd204ad9b60143ee8a7d0033ffa7a51a"
],
"layout": "IPY_MODEL_830dab36502442d18ac534f442af3e1f"
}
},
"5129d485377a470aacec498158d9ebb2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"description": "# Cells below sensors",
"layout": "IPY_MODEL_17cd9a28920744638a3a8f5ef85cf526",
"style": "IPY_MODEL_8e91d470187c4d6d82e1b8cdbd58c6c1",
"value": "5, 5, 5, 5"
}
},
"513b341768ed42a9994a01e020b6ce01": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"513e2e8e52c1449f8ea580c8eae563b4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"51605acb16ae401ba23d6a97f5e4b30b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_e3362eee4c22400aa8fcfa492ffa3a4e",
"IPY_MODEL_410218d1158f48bda6b5479418b43a7b",
"IPY_MODEL_208d540c0b8a458f8eba5d23b46e76b8"
],
"layout": "IPY_MODEL_210d4475e25841b8bb73a5a170bac48e"
}
},
"5161a870e59f4d49a561501e13c8674d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Declination (d.dd)",
"layout": "IPY_MODEL_e55dd46956a74e519ae30ea53789341a",
"step": null,
"style": "IPY_MODEL_5f2882ab695546d0a1e54cec192fb710",
"value": 11
}
},
"5164f5fd242c4dbb8342a9ff23067b8f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"5166309e8d4a43a9b0e58f3194b149a2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"516c4b7346414e408949676d4b8ce65c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"516ce86ea1b84e4f9d0db45861b744dc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"518604dbed8045288022a68742b3f208": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5188d8deac7846eaa331cfb4d3d8b934": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5190ff362cc94efaa7dbef53b141e48f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_d8db56aea07e4ce5ae78edd9565b425a",
"style": "IPY_MODEL_03cb9e632bed40e680dc4a853f9ff346"
}
},
"5194d6621f8d416396d0b7d10a145a8c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"5196e80c40ca4a7db5c4cfbe9d001d6e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"51a1760226a944a28209fcca3eb5e802": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"51a61c877b9f4a9784e9348b8ee78aae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_772887bd73ea40cfba4d3d6472ecfe41",
"IPY_MODEL_03d06607c7e74fe7933fceb82353237c",
"IPY_MODEL_f63ec067407f4885a2d9a268082ad929",
"IPY_MODEL_8a32d5e0cd484410b77255c05cd8be1b",
"IPY_MODEL_2c1aff698e024476badbd70b0fce01fb"
],
"layout": "IPY_MODEL_2bacce3ba44f4542b77d749e53e47a96"
}
},
"51a689db533b4a5c96908d5c1cb4f24c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"51acb0e88eba4ba49f41e79bb2d01cf2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_4c21b2891830465b973fc38d17771c2d",
"style": "IPY_MODEL_278d894e518e4c50a0c4b6723ef16f7b"
}
},
"51c38e079ff14e21b69dd361c3d8aaf7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"51c577d3621e4289b7ce1f4addcbd69b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"51f3173ca6c44d64a04346f1df3fa6d7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"51fe55687d6944cda4b88329ad1dcf40": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"52084436ca68457bbf11e0520c811e3f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"520e6bcd8be94fa69ee2d59b5ae206ce": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Values",
"index": null,
"layout": "IPY_MODEL_7e10f642c9194b728ca31ab40663364f",
"style": "IPY_MODEL_636d4128bf2b44809b407c3da6d4d09b"
}
},
"5217a400975242a1b4482001c179be04": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5218b6fd9a134452927b46add2f0926e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"521a6f5caed644858abd78423ba7360c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"522ce5ba5d7b45299fa4c8d4bc6daac5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_1b4fd6510e3243fd966ff68bf40cc1df",
"IPY_MODEL_ae64477796694ec1b88317813f7ea453",
"IPY_MODEL_62f032ff84f44e9bb5b3f6ae23a990b3",
"IPY_MODEL_8fee0619e2b74ebe94de4f3c6ad211fe",
"IPY_MODEL_20c4ea6cb4bf4e239c15cccc71fed072"
],
"layout": "IPY_MODEL_803f95f9cb8841c98eaeeec6f83ab1ec"
}
},
"522f96ca83864bf9a33b76153d9571cf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_0b82c51c3b754c798dab17e8c7d1e34e",
"style": "IPY_MODEL_e5c8f9a06aa04b5c96bd3733ec96bef6"
}
},
"5232929efdb7412899159711bea0aeaf": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5233165fda874739b72fa25551f70a8e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"524aa5c81ce1464c8b0e558e4f6265da": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_8fd0257c094546f3a3234f9996ece1e0",
"placeholder": "",
"style": "IPY_MODEL_4beb35a2275e4ba2b19d6939607db251",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"525b6fd2bd044f20aebe7828a29e85ad": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5277ad076c644c179f30d33a6a2e195a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"528c54f4a0664785ae27f0f9dacc5abc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"52981c9dfd244bb582b03571e06da928": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"52a156600ab74d058c4b4cbc461b01d8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"52b49c0755fb42d0b637481278495184": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"52bb81a43e3945c1999ea613c3b30856": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"52c252f12ac548ad99cb30415ed92e49": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"52cc5d19a8044a528489dbecd37653ad": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"52e4d5ed64b848a1967dc83805f6450e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"52eb09dd995f4bc2ac097c156c0328d2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"52f7f18b22f444da97a14ff337266df1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"52f9cf40def946e7838b8b02a350dd71": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"530837ef6fa74ea6b172f205943383f5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_6bc6a2f5c97340aeb45463525b424a31",
"style": "IPY_MODEL_af917625f4f549d8a6842c137b047194"
}
},
"530dd10b7f8042ca978d1f1c86c877b5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"531bb1931ed9494e99124651932d2b1c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_7b06d6f034ed4d1cb2bde4dc6ba3639c",
"style": "IPY_MODEL_a28ceeb959bd4b0a8d587cd81c945148",
"value": "Starting Inclination"
}
},
"53257cb5032f4f07994fcfa28b4f0ad7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"532a1b945d8f462ebb2f86b3039e1f07": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"53450713d84e4f61adf5a86457436dbc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"535a66a8274a42a2a8b622f2048b2259": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_aec89ff7faab49278c03992794d78e83"
],
"layout": "IPY_MODEL_1d450f21666c48e49184ac441fff4aef"
}
},
"53694fd3cbc64f2aa3e7dd4add31deb5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"536bede9e6f74206a34adae94ae28928": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"536c96e978624a8e8bf2ecff31ef813d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"537571f577a1433e877d2f0aa01eaf69": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"5376f04ee0d244948b21723dca470ad2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"5377b097802541b9a53e12e1b99d462d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"539af4bdbbc0431396c655e488621472": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"53a1defde36e4cba87a8ffc2de5d8981": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"53a855bb7504445ea1c9a84e9dc4ed14": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"53accb8f27c04b65b485d72569926d6b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"53b364de44644041a1fcd6a9161ec34c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_11cf676d16f6452e9efdd91afcf7a6ae",
"IPY_MODEL_4c5d9aa3a99c4f1fad0d3f778677b636",
"IPY_MODEL_8eab9cc6fd1f498cbecfa887de5cdbfa"
],
"layout": "IPY_MODEL_ad910da725ff4f17bec09023ae27efe7"
}
},
"53b3db4dd40e40f992ea551e4c04ac5f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"53b7a930cce24c92bc539c3f1ef13713": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"53cd6f16173d48a090d32c1045bf3460": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_88bd2421a93744b7b58ce74c23d438dd",
"placeholder": "",
"style": "IPY_MODEL_4044c68b33ee41e88099df58f5b5a900",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"53d43199e52d4d1b9a6832f05b5e00ff": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_c199091397c64572933e0a884cf2f2f4",
"IPY_MODEL_bae3fc43c8e04f54bbc0a93ae4656518"
],
"layout": "IPY_MODEL_58a7cc372a8946c78302e246723605c2"
}
},
"53d4b12c3bdb47d5b85a7afd70452746": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_7dbd73c95f70464cae6ee6a6dacb1e30",
"IPY_MODEL_b59b86c63fd54b1fba2209ed81f8aadc",
"IPY_MODEL_f83b4643bb2d498eafc179a60951c3d1"
],
"layout": "IPY_MODEL_b60554ac6d9543df97f92e1ddaff7e7c"
}
},
"53e55889840742edbaa059a1fcc212f8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"53eea2e544a64366ae4d343b5adc811b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_9a047851263b4faf8e3ae853020cdc31",
"IPY_MODEL_2e13424d3c0f40f38ce4284db7caf642"
],
"layout": "IPY_MODEL_53e55889840742edbaa059a1fcc212f8"
}
},
"54061ef12fa648dfa8c67761bf7a248d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_69f14dd65edf4625800cfca6fa47a4f9",
"placeholder": "output filename",
"style": "IPY_MODEL_76caff6a58ef488fa4efdef9a9ddea7f"
}
},
"540c0217faa049f9a8c0373081261d13": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"540de3278a5f40a5b8540df5732bf97a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_7e8924fd0c10435390f1f71c985dd580",
"IPY_MODEL_220718202e9c49258aef479f95c09b89",
"IPY_MODEL_fcfa4f1ecea94062b3a5604d87b159f2"
],
"layout": "IPY_MODEL_6946cec642c048439bb873a054b03991"
}
},
"541349cc5c8f46febecb3d005aaac68c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"541a63e398794f799ed2adb5913cbc5a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_2c71e73aaa924fae9058477f41ea7f42",
"IPY_MODEL_ef90ad4e956b41f893a8ec4992e89ba7",
"IPY_MODEL_09e5ba22f1ab47d09412165515a8178d"
],
"layout": "IPY_MODEL_dba6b4fb1bb74ecc9054f569fbfe3aa7"
}
},
"541f75a3015d45f581bf92372454faeb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"542bdacf71314dc0a5fc746831c93a24": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5438594988624004a3762e23d443282e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"543fd92c1ba24c44bbe84924f9cf4add": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"544a47e365564281ae5939218c492535": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"layout": "IPY_MODEL_3df6990146664600afee35303f69ba07",
"step": null,
"style": "IPY_MODEL_c0fc8d3727224f229b388d337552b97a",
"value": 2
}
},
"54592dfba1d54ccfb8aaa5da18947e57": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"545fc7d315e04ca08fe1e6a0c254d99e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"54700d78fb9447bd917188b5ac224aac": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"547aac6c399e4324a95d770edc5e7937": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"5484b0b57d1441d98c13490eebb332ef": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"54859b8a8f4848808d083b23fcc78eb6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"54892e69a7324d5e9755a8ee7aecd8a0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"54938530ddb841e7bee98757138039fc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"54ad6b86ec8c45969e7c5b01f9026151": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_5f645f0c582c4146b1a2ba35bfa34288",
"IPY_MODEL_76759f46a56941769f98b44225e63e77"
],
"layout": "IPY_MODEL_7051521571e8447fb062b3bac3c035b0"
}
},
"54b014975f2f461da25fdf931ceeff47": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"54b4384bdf6c4125a7f7eed1da45299f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_162efe84ebd54cfc8793bab163a16f5a",
"style": "IPY_MODEL_c57f366b7aae4fcc981a9c67578c16c9",
"value": "Monitoring folder"
}
},
"54b78bc0c1d9445b8f1123b1726bde6c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"54c8e64007f046b49dad46c16be92019": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"54ca8576d4d94cdfaa422f5b88880f6d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_e1066a35b44746d68b9a10a4adc183df",
"placeholder": "output filename",
"style": "IPY_MODEL_b13b4455f7634601a0ba404bc06e91fa",
"value": "FlinFlon.geoh5"
}
},
"54d39ff93d4940e2aa1784a44de4385b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"layout": "IPY_MODEL_d9b10dcc9d2b495ab3121d079e895404",
"step": null,
"style": "IPY_MODEL_199e54c26d1e4a3c88333f7890a5a5e1",
"value": 2
}
},
"54daa294c041489d8d28411b8187f687": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"54dd7ca172614de492d09884fcb1a02e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"54ea6c7758b84cbe93992104df384df8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"54ec8254fca042e48b1a45c0f61931a5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"54edc06d5f614d039bea19f17f4b0cbc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"54f0585662a44ac8bf3cac3479f71b70": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5501040a7363458ab559421aabdd483f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_312f35388cd5488b822a4ed89da84626",
"placeholder": "output filename",
"style": "IPY_MODEL_05251909e545480d9fa929db20a47c46",
"value": "FlinFlon.geoh5"
}
},
"55045348c548468fbbab938fa9a10a58": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_979aee4ec05046578adce02831ca41ca",
"IPY_MODEL_540de3278a5f40a5b8540df5732bf97a"
],
"layout": "IPY_MODEL_f711fece3d4a4dbdabe5606bdcf3ae1c"
}
},
"550687077d16498a9878433ab0b02d25": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"5507930b4af7457db3772e0a88aa5950": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"5510af7b4e03427f958aa0c45b843614": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_a1343748a00e43b0b87b03c56f443cfe",
"placeholder": "output filename",
"style": "IPY_MODEL_3e39a67691164cc8960689cbd4ff8444",
"value": "FlinFlon.geoh5"
}
},
"551aac6d23a147bdac73be4cca895c84": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_6d8a87d5990c4c64a714f9b68c6a0b35",
"style": "IPY_MODEL_80d531cd438a446795011999177459ce"
}
},
"552834553c0c4c4abd6b3cbc51c392a8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"552c31b94f77401cb479dc48bbb8c06e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_402ba2badc5c476985abbd34188f1b41",
"style": "IPY_MODEL_f23e577d04f647638029d828813aa72d"
}
},
"55380f4e97f3453487786fbd4a75121d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_f7f4b921887a4caaa6617d573d697e0e",
"IPY_MODEL_f5bc906ce6664be2aca3e76126225c8b",
"IPY_MODEL_d0239cbb75b14b079185722316aa2a31"
],
"layout": "IPY_MODEL_abc42a3dffbf4a97b107802b31766cb5"
}
},
"553e645ca0e348c4a058faeee9eeb566": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_cd4a50f3d2f445f4896b321d74f53b23",
"style": "IPY_MODEL_860558b0e6a748fb979315e9693770b6",
"value": false
}
},
"554ec33a323c4d29abaee65bd4c47d2c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"555d8e050a6945fda99213e2a3b1a399": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"555fa77108d943abb2551bcac184c37b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"556e007646fc47d582041e606baba192": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"55854d3b75864034b3108737c68085d1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"5597d8fb78564b64975a65ff9d2bb5f3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "IntTextModel",
"state": {
"description": "Number of tiles",
"layout": "IPY_MODEL_2b06fbb67fd24e3eae1793d3d1b734c1",
"step": 1,
"style": "IPY_MODEL_29374ef24e7546edbd7fa98bb77c842a",
"value": 1
}
},
"559e2bcb22094906a5483368c10d74b3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"Model",
"Constant",
"None"
],
"index": 2,
"layout": "IPY_MODEL_bcd95fcaaca047bcb48c6ec264f30898",
"style": "IPY_MODEL_c59ae16f1bdb4e29ae7c7b2c85fa2e30"
}
},
"55a4484fdf9e4c4dbd64a4caeb316172": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"55bb7252853e40ad9e6c98ec1853b0e9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_9638deff01fc4aad9d20c72fcb56b3d7",
"IPY_MODEL_4cc3c97af62248b486ece794865e5965"
],
"layout": "IPY_MODEL_6ad1b79f28b64603ae4ee98636250c66"
}
},
"55c3ea937e214f83be4a9c59b343c9b3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"55c425a5b01c4a14b551c7350db38c10": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_bc14e0ac4c6541a092f79c5c907b12c7",
"IPY_MODEL_f67ed35afd894687a6ba22bd04b617e6"
],
"layout": "IPY_MODEL_3a7e08bafb1b41c08628ba7f450669f8"
}
},
"55c4a737945c4aeea530aeb2f4108938": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"55d42a87f93148d79249f35b06ddc170": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"55d868a6c18c42d680e5d9346495d8e1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"55e652ceabd24304953a8d55e3446bc9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5602fad9646c449aad85b3ae5ab10946": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"560cd97a9b71443e9109e7170ee256ce": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"560d4fdec4e24cdca4285ae5aafcd51d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"56116e705e2a43fdb2b187fff0622e7d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"562a4bd67c7447688cedb2d7fa94b0a0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"563684379ea3411ebc82dbe52fa7354e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5647bdf8691e4eab9c264ab85cab66dc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_a51038f0454b4b1498e643d82b153efd",
"IPY_MODEL_b12aa202c13b448f91f6b2ccc15bb6d0",
"IPY_MODEL_7cba6dd9ae304e59896822d41c1e66aa"
],
"layout": "IPY_MODEL_bd330b269d864fd3bd6dd95732f89e04"
}
},
"5661dc13013a4d3ab8a0189626b017f2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_69ed5a0285024124b1b6132e258ec51e",
"IPY_MODEL_f731968527d244168ebcce1930563c47"
],
"layout": "IPY_MODEL_95d99e6ab976494ebc5407227b462b8b"
}
},
"566a5c2adaa84f64a08d672c49625939": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"566b1fe24e1842f4b3b7394497390014": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"566d29752b264be68f5595787a31c0d8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5674853318764bd5ae37d1a286c32aa6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5688061d64d34272ad24d1b82cb505a2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"56933a6ef8cf429f977c60304cbd574b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"569dc5e4b53949499285b13d4b82ae2a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Values",
"index": null,
"layout": "IPY_MODEL_7d6e211ac3b84f51a2d1fb784cdb8871",
"style": "IPY_MODEL_2d2537256d934ac28d57cdd982cba218"
}
},
"56a3b67eef634a87bcfe519e7fe848f3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"56b0fd7e8f30401cae63d74786381b98": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"layout": "IPY_MODEL_e36a909578044c2c91dd4464d70e30db",
"step": null,
"style": "IPY_MODEL_ca8b662ef48f41389f0e5b10c8c54f36",
"value": 2
}
},
"56b89703401248859ef5073e0cdb19d5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_02fea98d5c1d4a8f9a5c494a07b69640",
"style": "IPY_MODEL_80fc46a93270403181f5e398355b6b90",
"value": "Workspace"
}
},
"56be9446f95b479e9db00c6092ae9299": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"56c39c47f401417e813f888bf6b5bbc2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"56cb30d33d224afbb7fdef9935fb2245": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"56e44c1e073e490193645a207a4f6ef9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"56e94f799fdd4aa79fc2d99470453859": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_3201b5bc2afb4adf89429ad4bd1c65a4",
"placeholder": "",
"style": "IPY_MODEL_9ff681ea3a5b4c2b8294e2d96470c1a5",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"56ea308787a849509484ddd7f10a00d6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"56f0f5da40c04143af43f15d5db52a1c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_dc77734d1f4d408daaba2c4cb4ea399e",
"style": "IPY_MODEL_d9280bad7596493c969a3eb725f4b697",
"value": "Save to:"
}
},
"56fd3896ed224eeea1e5c7978f57c68f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"570e15584d05498ab6ecbf48954fc7be": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"571e9cfafd084e5fa3cbef293c9730e6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_39729f63e7ae4ae285ee6836c4a650bf"
],
"layout": "IPY_MODEL_f5e7eafd455546d2ae6e5af84de3c558"
}
},
"5746051974d347eca3ae346319d50547": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"574c3dce8c4a4585aca660eab2bb9a8a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"574ca128f0df41119edaea85f35e7a12": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"5764a1bc17d84bdf9b6ce01163612014": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"57754bf647b449b384f227c3c404efa3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_a514308e96d345bfb188d3f66920f9e4",
"style": "IPY_MODEL_0ad8964fe4a74dc3aeda142ec8aac7d6",
"value": "Workspace"
}
},
"577e053298f6493c86b032c3a14d6fd9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"577f7f69a5e34315a43a025119049011": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_3e662d4e4d0c4f888f934e7d33b86008",
"IPY_MODEL_520e6bcd8be94fa69ee2d59b5ae206ce"
],
"layout": "IPY_MODEL_d4ec6aca0dd0435480b4162ab6283c17"
}
},
"578cccfac5174611945033f7f27a25a2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"layout": "IPY_MODEL_5217a400975242a1b4482001c179be04",
"step": null,
"style": "IPY_MODEL_3cbef38844c84406887dd84d6b79090d",
"value": 25
}
},
"57972b11377d4310beac7d8320f3516d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"57a2dc05047645aca79c5eb7004a5138": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"57a95741428b42a6adaa4f747eabbabf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_3710b9059acf4fa389a1e90d4b4308b6",
"IPY_MODEL_88fddbb21ab14d4ca34da42b5ca07a9c"
],
"layout": "IPY_MODEL_2175f57be6254696b51d060a65b77af5"
}
},
"57ad4b21f6424f01bcfceed2211e0bbb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"57c0ad26f9954c4abea86c5afcd97811": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"57c8d2b3d439415b9facb89daf17aeb7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"57d4e8b9e35b433a9ea44f57593b6f92": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"57ef2eaf36134724a6cad8cb41e3a2e0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"57f42f68f514480ebb17e818aba88011": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"57f90008965a4b199c682c70002963d6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"580ea91518364ade9b7ac112ea20eeb7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5817ca7fd9eb4d7790ecccf2ed235445": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_00c5f6dfbe34487095234eca0853959e",
"IPY_MODEL_6995fb7999234ae7a0824a96dae92a4c",
"IPY_MODEL_d406076f2de144fba305930c977dd6c1"
],
"layout": "IPY_MODEL_7d6d842b445a45ec9d42701b1b2fc7bd"
}
},
"58344b009efe45c59c2e853567cacb6a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"5835f46b417e4b76b0b1a14d9eb009cf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_33ec266aa63f4d50ac40f8f1ae74b9ed",
"style": "IPY_MODEL_5bdade946bb14179a0a8d3f5a5e31420",
"value": "Core cell size (u, v, z)"
}
},
"584d72f8607d4e1c8a747f8fd4965f30": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5861bcba62254c5087981e72df328a3a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"586da6f3454e4f81b479f57ed25d1d76": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"587230e7219343d3b77d49f3683282a4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"58780fefba3c46709f552e73961d333c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5881de9aa2c244908a54ac38709ddef8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_add5f316cfa94cb7a369f034d501508b",
"style": "IPY_MODEL_5dac1fb2234e4803b1bf00178497bd0c"
}
},
"588419e912864c0d8fb1ae6c0914b47c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"starting model",
"mesh",
"reference model",
"regularization",
"upper-lower bounds",
"detrend",
"ignore values",
"optimization"
],
"index": 0,
"layout": "IPY_MODEL_358fc728fc9e4eb3b597ea794464ac2b",
"style": "IPY_MODEL_8677bf26821d416d838ead2ba1bbd812"
}
},
"589c44beca37403285dcf3d7a062fbaa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"58a7cc372a8946c78302e246723605c2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"58a7d5a38e9b4fe2b653a12404854f0c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"58a9dcc11d4848fa93dffc9aa5a4e518": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_467eeb9cf77c4bf8a5ead3d48cc9efd8",
"IPY_MODEL_ad9f5ef1b95043d18f1a9bfa1a158e2a",
"IPY_MODEL_a3e4c20c1c7c4251bc89d46df40262f8"
],
"layout": "IPY_MODEL_fa5112f65b5c42dd816c7872d4992bae"
}
},
"58aac779553a4c01b7ec2f405b4a4e36": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_2d6dcd47ee1944f7bccc8235a4de4d5c",
"style": "IPY_MODEL_ec9f6db26d074416b09d6ca530d82e5e"
}
},
"58ac6aa2f7494972883abb305d9a086f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_871d952e618649db98aea4cd26a6fec9",
"placeholder": "output filename",
"style": "IPY_MODEL_83cf345b7e86455b9826a3dd7a09c71e"
}
},
"58b86769dcd74ac29d0b791f9933d32d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"58cfc402ce374b09a7df016178a7f3f1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"58d3bd2c894f4ea1918eeabe6a79b650": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"58dfce027a204061b02f644a6b54b329": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"58eb6ac7ef964035b80e79a8e3d03881": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"58ed9c1a6314444ba7ead341faa7882a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"58fa0d02ae574c2cae0e16cd848ca784": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"590f58a30ec244e6a601a70c813382c7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"590f9e3692a64137acec166c7ac64fee": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"592c059917f24930b229d6d1e41834f3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5931dec760554428a299ea94cbcca99c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"593b09677a9242f38f8b05b2d39ee841": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"593d185f93794602b66842027cc0e36c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"594151a0553c4715960462bbc2615568": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"59453d8522d14e5fb8eedf5b1764627f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"ISO/Iso_Iteration_7_model_5_00e-03",
"ISO/Iso_Iteration_7_model_1_50e-02",
"ISO/Iso_Iteration_7_model_2_50e-03",
"ISO/Iso_Iteration_7_model_1_00e-02",
"ISO/Iso_Iteration_7_model_2_00e-02",
"Ore/39_Ore_Callinan",
"Ore/38_Ore_Dan_Owens",
"Ore/40_Ore_FlinFlon",
"CDI/COND_surface",
"CDI/COND[8]_surface",
"CDI/COND[18]_surface",
"CDI/COND[3]_surface",
"CDI/COND[13]_surface",
"CDI/CDI_",
"Workspace/InterpGrid",
"Workspace/Inversion_VTEM_Model",
"Workspace/InterpGrid",
"Workspace/CDI_VTEM_model",
"Workspace/Data_FEM_pseudo3D",
"Workspace/O2O_Interp_25m",
"Workspace/geochem",
"Workspace/Inversion_DIGHEM_Model",
"Workspace/InterpGrid",
"Workspace/Topography",
"Workspace/Data_TEM_pseudo3D",
"Workspace/Data_ZTEM",
"Workspace/Mesh",
"Workspace/InterpGrid"
],
"description": "Object",
"index": 0,
"layout": "IPY_MODEL_91e6e58434854ec5ac5ba8855761a884",
"style": "IPY_MODEL_3d2633312cfd4c23a71da6f647219b55"
}
},
"5950c149e62740c18342381bbe9db08e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"5952ca8f7bf84568a7672e56aff1a113": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_c46de2d14caf49b897db3b763f8a56f3",
"IPY_MODEL_ababc91b0a6f4c54a8aa980fd0a430d5",
"IPY_MODEL_8bfc92473474472b877fafb63ebfbd13",
"IPY_MODEL_0a88d236d15e4a74a436148af571dfc8",
"IPY_MODEL_2a58e276fb424a95b5196abd03416dc4"
],
"layout": "IPY_MODEL_460cb0f9059b418a81e0991d643c5015"
}
},
"595883820d964b3c8863c842e87d095d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"597139abbe7d4337ad36753e3d45859c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"597863d1267245de845221f9b8bfd506": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"598d3b97f78a44c6887692f851ff5266": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"59931415310f4babbce4d1a24243f358": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_3b0390d916a345fd83d28fdf532f19e1",
"placeholder": "output filename",
"style": "IPY_MODEL_d2cf214e29e645d4a3a52852857cde11"
}
},
"599db2c0d7f548feb48a2ba5e7a6857d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"59a15f8215d64717b83cbc5ebc9a21d3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"59a4ffb349e8435e8a9b697e44d57d27": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"59b27c309e6d48afa0b6e4d822eeb786": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"59c8a3f4d5bd4489854fab3a68754923": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"Model",
"Constant",
"None"
],
"index": 2,
"layout": "IPY_MODEL_e2fc57ac18e24b5491157101f89ed6c8",
"style": "IPY_MODEL_6084d67bd24748999550e3e0446c7b4a"
}
},
"59e4109b31bf455b84fcd5b919ecf050": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_323d92f0921c44b1a00759ce3743f0ae",
"style": "IPY_MODEL_4e8e432b23dd45b6aacf1f95507be6d2"
}
},
"59e5b831a9524c9894c689a844dd7551": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"59e87addd3c74e7a9be0d2ef876428be": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_4c201c938a204b70a6ddf587d76f41bd",
"style": "IPY_MODEL_87c6198975694450886923b0547ce2f1",
"value": "Starting Declination"
}
},
"59ed6c63019541ecbbd95b6f14e490be": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_331a328aba7d439a81f102b4c483af3b",
"IPY_MODEL_9b448184c50649c28237e5fe4567bdb8",
"IPY_MODEL_9fce2f0d78d146f782a4dfef1c0f979c"
],
"layout": "IPY_MODEL_24a2f51b403f4950b0c01e4b047d1730"
}
},
"59f6ba4ed4954d0591aa09c8e61954b4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_e224ddc8a8ba4f95b246936cd4f9980a",
"style": "IPY_MODEL_ce5f83aacdf04fdf92e4b958d0d777e6",
"value": true
}
},
"5a061686253f4fde8f6e4e5bcde1aa93": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_e12995dbe10e49f7940972bd2c28265e",
"style": "IPY_MODEL_9cd6831d7f7442abbfe489c887b49718"
}
},
"5a0d4a5a1c9b4a59914387cde48eeb3f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5a11c12727224e51a8e0fddfe3985041": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"5a194a3404b24f5d985fdb8cce44f182": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"5a312e65cbff40d5bd2510f879586f50": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"5a3b56e8137b4e789743021643514a51": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_4922ea5b66424f3f9000c35553379519",
"style": "IPY_MODEL_7b5be9199cb647898c052f5752ccadce",
"value": "Workspace"
}
},
"5a415718e6684e9db5e0a631ba25b8a7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_d76968874b254665bce87f3280d3dc1a",
"IPY_MODEL_1dad2d96279e46728241f90efa2e871c"
],
"layout": "IPY_MODEL_dd0a32010fff4efa8e2ce0f557261c5e"
}
},
"5a43cde579834132bd752c0cccafc7db": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"5a4b2d527ec94811a59dee25b4babe15": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 0,
"layout": "IPY_MODEL_c78062fbe9cc4e54929cd1f2e8050b4f",
"style": "IPY_MODEL_d397b99ac6ce42e988223953f73f676c"
}
},
"5a5926cded2943f0a845e14f2426d30a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"5a5be107637547ed9b1c8049f7fb52e2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5a687c0810a841b093c562f7d7242285": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_ca78174d9ba94056aa0c94df3ea452b7",
"IPY_MODEL_361bef9d7b084766b694a0218a155d85",
"IPY_MODEL_880c9ece5ae0420b848a52ff3964dfaa"
],
"layout": "IPY_MODEL_2ded96b474f0462290b47dd42bc9c773"
}
},
"5a8dfd854a214586a65b7a86a6435bb9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5a8fcaef80044d37a22d16344976cd9b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"5a9b713f5f1f44039211c3ca6ae4c5fd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"5a9e87c8ead14022b30b4cf24220140d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_f3cf621edcfb43f78241a3fbb329b14b",
"IPY_MODEL_ec030d5723a2491ba9aab5c7a72e7823",
"IPY_MODEL_1f51ade9c95a481fa06c781061467fc6"
],
"layout": "IPY_MODEL_926f2220afe040af86b253eb0959ba06"
}
},
"5a9f04e27ff244519d89b55119e0cff4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5aa4f3f8b96d4c7ca7888fb15e63db5d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"5ab12691fdd04fa0925d357c4f59357a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"5ab359b4adb947f7b963f0a11a85db89": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5ab6ea1a56774f81a99ab80eee917215": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_7d04045e5e374095a775a91d28c2890a",
"style": "IPY_MODEL_b4a7343885a04e19be58d4b66f401718",
"value": "Workspace"
}
},
"5ab75c47b5244030a2652aa8340913eb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5aba4fc0153440ca87dbed46eaed2534": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"5abcc2c9846e425885f19e47c4e1f2bc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_6d1da71d7b724879b59289e4e420a53e",
"IPY_MODEL_7bdb5742bc9346a1bd6ee540c07b9f34"
],
"layout": "IPY_MODEL_44d4383683ee4531897186226ee27dbc"
}
},
"5ac3b51d4989400a8b739bbe4c2436ef": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"5ac3f5c7ce5846e4875d58ebc8e02c93": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5aca6cbd1c3e49049f22835f995c6664": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5ad80694dfc74400b95b760ebf1e2fb6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5ade6c1032894c2b971f8461e98737c0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_198b4b83d61c4023bd240278d50a4607",
"style": "IPY_MODEL_88d0a957931047f490cd006e0529b717",
"tooltip": "Run computation"
}
},
"5ae98574a04a478b9938d29a44d0a1f3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_e5bb8a29984645ba85366b32cbf91565",
"placeholder": "output filename",
"style": "IPY_MODEL_9b1b5503eec948529979cf2dd1a4e8e9"
}
},
"5ae9b79133d54fc092993a59eeb6c5a9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_d0433fbc0ff6458bbe1e3e2bfeb3c316",
"style": "IPY_MODEL_5aba4fc0153440ca87dbed46eaed2534"
}
},
"5aebeb81abeb4bf9a9005321c115b2ed": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5af865d72e9b41aba39cc656cdb9083f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_3d3ba38fad434b20a0f045831e502dcd",
"style": "IPY_MODEL_b547eed06d2e4f1c802be59f067e2b55",
"value": "Lower Bounds"
}
},
"5af93b3dae604757b09bdd21844330ba": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"5afcff9c3a934c90a95159396ba6965a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5b11e435bf0d4eaf875bf10d8f9de140": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Object",
"index": null,
"layout": "IPY_MODEL_fb5ae90827db4b8aa2ee348b95a3c89b",
"style": "IPY_MODEL_3c13566d54d642deb7afb0f1e7b2ff7e"
}
},
"5b14c874fc6541f8aa2cb62b92a6034a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_4acb00f47edd44c8b5e53f28ecdd8941",
"style": "IPY_MODEL_31d9291d464148df9e27bde274c8aa25",
"value": "Sensor Location"
}
},
"5b19ded338a04d299db1405368ce429e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5b1bd6d89754419d9df348fd4c589f36": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_97a87d8f28724784a6466bf4c86a2e18",
"style": "IPY_MODEL_bc3a0440b9104389b793b6e5e188e09f",
"value": false
}
},
"5b212091ce5d4f8bbd0f4a75f0e4ef1d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5b35bef5b09a44e4a388e96283463e08": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"5b4b49fa1d2f40f18150474d01906de8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Bxx",
"Airborne_Bxy",
"Airborne_Bxz",
"Airborne_Byy",
"Airborne_Byz",
"Airborne_Bzz",
"Airborne_Guv",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 0,
"layout": "IPY_MODEL_4193ade40f3541318ac43dce5a4e8fdc",
"style": "IPY_MODEL_f9f742db24244c9a914b9f03869b266e"
}
},
"5b51e988d7ff4a55a6f1a38c8e0a80ce": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Labels/Label3",
"Labels/Label1",
"Ore/39_Ore_Callinan",
"Ore/38_Ore_Dan_Owens",
"Ore/40_Ore_FlinFlon",
"Workspace/Inversion_VTEM_Model",
"Workspace/Gravity_Magnetics_drape60m",
"Workspace/CDI_VTEM_model",
"Workspace/Data_FEM_pseudo3D",
"Workspace/O2O_Interp_25m",
"Workspace/geochem",
"Workspace/Data",
"Workspace/Inversion_DIGHEM_Model",
"Workspace/Octree Mesh",
"Workspace/Topography",
"Workspace/Data_TEM_pseudo3D",
"Workspace/Data_ZTEM"
],
"description": "Object:",
"index": 7,
"layout": "IPY_MODEL_cad68a3f7c8546c1a77aef6c8f614edb",
"style": "IPY_MODEL_fca6c5ba1a094fe394deadf681ff33d0"
}
},
"5b5699d5549d4025bcef12460255c7c6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "dy (+North)",
"layout": "IPY_MODEL_a116c464f72446649f01dcc10505c636",
"step": null,
"style": "IPY_MODEL_28b10f22a5e64b38b2b09d73953bab21"
}
},
"5b5d61dcf11740eb8dc3f334a14efe64": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5b601a1924e04d93b87754de8cbea8fe": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"5b6dd98a5c504ad29e42602ad74aecf4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"magnetic vector",
"magnetic scalar",
"gravity"
],
"description": "inversion Type:",
"index": 0,
"layout": "IPY_MODEL_16b485cb8b9b4bf294c024a22ce2c676",
"style": "IPY_MODEL_987b908c8e6d49b38ed5cb33df870329"
}
},
"5b7324da9b1e447a827ef6988bc80f77": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_28d149adba0840b59a278808c8d0c963",
"IPY_MODEL_da1b42ab2ad34d9f9c2150fbd4256ef6",
"IPY_MODEL_cd6c5e8f32494b97997ea90aaad50756"
],
"layout": "IPY_MODEL_78c7642433aa4b86b7d9edfc1884a595"
}
},
"5b760384c082420a944e297ef521fd4d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5b80b8c7e1ae48e89aed7edaa8bb8857": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"5b82b24baf474226a267d7d8266f59d7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"5b851c52d75d463fb3f19cbbd6789871": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"5b865478f82f491aa9d6b35ae47784d1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"5b8df329c1244d8694a479bc9558fc5e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"visibility": "hidden"
}
},
"5bb34dc2f1e24029960396abf4600331": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"5bbed66a414d452fbb29f035c14149b0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_fa4ba5ff93f24b9fb5279dfec6c0bc89",
"style": "IPY_MODEL_dca1d034d2ad46398becf8e4fb77145c"
}
},
"5bc689aec0ec44ec943516b8ad7f86df": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_a8c3881e965c4f57a493e38fcf5c0855",
"IPY_MODEL_a7704cde712c495cb10408db06b6587f"
],
"layout": "IPY_MODEL_fcb410c72c0745cb8d52b301636c56f2"
}
},
"5bd2e7ae77ec478682e43b9770da7f46": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5bdade946bb14179a0a8d3f5a5e31420": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5bdf689f6e7c4d298dbf96987af75ae9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_4ea0bc47ca9f4d578f2aaaf20d84d34c",
"IPY_MODEL_2592e018e5a84317b772e1ca4220fd32"
],
"layout": "IPY_MODEL_58b86769dcd74ac29d0b791f9933d32d"
}
},
"5beb223d47ca4107a8c260e5f0b6ba07": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5bf72b6148574547a82046ba5548292d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5bfc8e47fc384c738e4a3ee8701913c1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5c0578809b21413ab9f8791900f6bea6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5c0f58531535472aab085da03475fabd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"5c169670dc464b8dac93e098fe597fcf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_e7d7a72a9e614b10973c5d92dc1450e2",
"style": "IPY_MODEL_ae59a4043f074f50b836824b669b77dd"
}
},
"5c1a859314014927991e66a3dbb1c9f6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5c250cec784147c28590d95b623048b7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"visibility": "hidden"
}
},
"5c330a6d33844dbea933cbc391b79af4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_456567c0d8e7450bbd2835b2682b0c92"
],
"layout": "IPY_MODEL_3c4b148636544c4097f70ae34687b760"
}
},
"5c35166130ef4b39a919814dc5382671": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_cde2d58bc0444e8eaa7f92778c6c9aee",
"IPY_MODEL_31eb08570aa74d88943366e153b2bb8a"
],
"layout": "IPY_MODEL_39b7cc787ebf4c5aafa89826af095071"
}
},
"5c361a63e5184d058b478949b35c6bd7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_4353a0dbab2b467b8a65473095eb358e",
"style": "IPY_MODEL_48f74da05dbf4cee9a66a11fceab3e0f"
}
},
"5c381981dc514ff5b71e0508a7dbfe54": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5c3b2d6f7d7c47d7a3a62a6dc49c1f87": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_de48e5726a4c42d69b811c6cf49f65e1",
"IPY_MODEL_13cb4c6e248842428235f55a0ab41c4c"
],
"layout": "IPY_MODEL_37b15965fc9847c0a70e23143562b58e"
}
},
"5c3ffcf815ae4744812e2e986c9ae724": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_1c5e31827cc24acf835c05f388fb0006",
"style": "IPY_MODEL_baea28416f294a07a044495c9ac176da"
}
},
"5c4e297b28fc420aa112e1544599b033": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5c85e4350cb9473987910ccefc7b0648": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"5c8c0bb7901f4b77a79f610563ec2ceb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_89ea70b5d64b492e9d453b157054390a",
"style": "IPY_MODEL_d3a8cf570d034d1db34c0a9181afa398"
}
},
"5cab0ed091de484389dba8913c895253": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5cb51ac8a0e34d02b97b11fdaf0c0c3c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_28f14afdb89442ea88e4dfc41dbd8e28",
"style": "IPY_MODEL_80fc587a31304140bdfe92cc17217a58"
}
},
"5cc9e6943687449cab9c6dc3ccabc85b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5cd06c204e924ff3bbb8cfb2bb0cce03": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_7b8777c8fc9f47edb48010690ea42598",
"IPY_MODEL_bd91b11ce38040c39a529f2466dfa461",
"IPY_MODEL_75a262b2c6534f678ac98210e070ed8b"
],
"layout": "IPY_MODEL_b6345bf68f7a4b2fab2c90dcc35b2a9d"
}
},
"5cd4ba2df5644ee89573a47b39f41064": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5cd7e047b0c142ee9601f6665fb7667c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"5cd93a9fbfeb4596b191fdf5f9c62a47": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"5ce3944df483479b895323095a8e730a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_97624e8570c145609c32c3f76b99b5d5",
"IPY_MODEL_7741474688924246902645787ae5f114"
],
"layout": "IPY_MODEL_3db7b6421dd84cc09daf8d4b9cac045b"
}
},
"5ce55855a21d48089fce0ed1e33811f0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_f9beae70d125444686a54cb176932d80",
"IPY_MODEL_d5d73349e436469fa48dcd0d44fd88eb",
"IPY_MODEL_f50b651776494084b869c9b69148b78f"
],
"layout": "IPY_MODEL_2ded96b474f0462290b47dd42bc9c773"
}
},
"5ce78a59e79b4e2fbe06b17e784f476f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_c6c7ab5b83c048468ea5ac91327b9346",
"style": "IPY_MODEL_9fa35de2c55741eda7160951276d8e22",
"tooltip": "Run computation"
}
},
"5cee2f2d0bb54bbaa24dec1fe091899f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"5cf4c1f9ea0d4b5abf66bbabd5d28202": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5cff7e6ec2ce4ea2af304a61aa768e13": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_5438594988624004a3762e23d443282e",
"style": "IPY_MODEL_7c63c50cd62049418efecdc0fe66783a"
}
},
"5d2f42d5df6a41129dc763af43a6dcfc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"5d37efc5a2644828b15299543b5784e0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5d3c67bd33684cb38b0b207fc3902e9a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"5d5112c6d2e249418abfbc290b55c562": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5d5a322509124cb988986e51784a563e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"5d6fbe743c0047cea9a61ff9710f5f02": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5d703eef6cf44506a14316869d554075": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5d8dea060e0349d190568e04255118d6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5d97fe92d5b04806a8f05c0fec3fda02": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5dac1fb2234e4803b1bf00178497bd0c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5dae6825bf2c43fbbd71f6cdd6bffb53": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"5db84ea0643345b09130aa097a7d2ffe": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Write input",
"icon": "check",
"layout": "IPY_MODEL_c760803dac8c434ab372de03813237ed",
"style": "IPY_MODEL_52b49c0755fb42d0b637481278495184"
}
},
"5dc04cf633af4900bc7654b1fe658c43": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5dc4736f20384eb983137cb507c407c2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_2db4c08023744231ab3d7070d8d75d4c",
"style": "IPY_MODEL_144fcba67b5f406dbcb8bdc3b1991d1d"
}
},
"5dc7f74576e6407489616cd076beb3eb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_e223e3f3d8bf4b1ea60e6675029c9312",
"style": "IPY_MODEL_fcb16db273b140c79022a46aff4ca4a6",
"value": "Uncertainties"
}
},
"5dc80cb3c6e54c508f138e2460f2a0c7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5dd912b211ed4a6b82799fc6d68d6901": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"5de97ac0068c4cae88c1e1cb18f6ebcc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5df0e200de244c9fb83daab90f6e47ee": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5df320fb57bd4b0381c8a054532aa0a0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"G:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"D:\\"
],
"index": 0,
"layout": "IPY_MODEL_96d2dae81c804ab79cde51fe28e8eaf1",
"style": "IPY_MODEL_5764a1bc17d84bdf9b6ce01163612014"
}
},
"5dfc155a31504cbdacc2e854c5926422": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5e011ae7efa94a66ab0a996c580999a9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5e012fdb02a04b188e94d117f6e78174": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"5e119fb749234421b0fde82ff44583aa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "IntTextModel",
"state": {
"description": "Max beta Iterations",
"layout": "IPY_MODEL_73a6f3dfeba0431da029c3f00dc01b60",
"step": 1,
"style": "IPY_MODEL_10a1f884cd6a4228901b9a30c593b12b",
"value": 25
}
},
"5e16526a23cb4a18ac74a317c3ae1e9f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5e27365022bb4371a31d3f2dd7ebc479": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"5e29910ad5b24fd28ca213bd2bd164f2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"layout": "IPY_MODEL_37520b53ad064b9dbee75909f739c707",
"step": null,
"style": "IPY_MODEL_0519013b0a164f699ab9dde451669596",
"value": 2
}
},
"5e3e2bf9aed64d1c8ec939ce7f419bec": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_cf575f00cbe94446837464d9ed86fb69",
"IPY_MODEL_20599bdb842c4c23a770a72868e25898",
"IPY_MODEL_c0291699a34c4b53b95f05a05f137d93"
],
"layout": "IPY_MODEL_a3ad647cfeef404282a8043ac644d321"
}
},
"5e3ee70e0341463cb2baf8b24a738e92": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"5e42c1903e8f4113990b26c84a0069d2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5e52572856254f9480556b7024e04cca": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_72846319d66446f085dfc0a32f84c526",
"style": "IPY_MODEL_81a9a21fddc7489da2b4e5086b48d930"
}
},
"5e5ae5d3f7bf4ce1ae69a3bf8f325ae1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5e60f2c6f3a04d57bfba405920e2d9d0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5e6b3eb086074988ae5661a296674b5c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5e6f306fb5c743ee8bd96b927ea726be": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_253ff3fa41954d0dad42ae70357776ea",
"IPY_MODEL_c1c82578c88341938c03a8b8e1c208c0"
],
"layout": "IPY_MODEL_4d635163702a484ca2102bbf3a77a152"
}
},
"5e71f488ef884a4d8ab16c65f3443ff8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"5e78ad47de4e4cffb335b0ddbccd18fd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_41e3ce1d87be4c68be4c413138d1ae16",
"style": "IPY_MODEL_f4900b6b52964498a9605d1ff811c418"
}
},
"5e78ea09afe54a78915e8d9a6ad6de40": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"5e7c853497a347a58dbbb32f9e0dc539": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5e877e4f61d24f4eb490f03505e7765f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_b4c99dcadb2b4671a43e14e1144df57a",
"IPY_MODEL_33a288393bf845f8ae38828d941b24b4",
"IPY_MODEL_9e4a0cf7974c43d0aa63cca89f822bd0"
],
"layout": "IPY_MODEL_24a2f51b403f4950b0c01e4b047d1730"
}
},
"5e8946ce8feb45398372ae5d84a6afc0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5e93576a5c244d719706f562bf05ae21": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"5e9412fb55cf4a02828633260e77c71e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5e949653647f4c7e81181985bf126b74": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Bxx",
"Airborne_Bxy",
"Airborne_Bxz",
"Airborne_Byy",
"Airborne_Byz",
"Airborne_Bzz",
"Airborne_Guv",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 0,
"layout": "IPY_MODEL_fdb429f0724c4905af04224bb09d5aed",
"style": "IPY_MODEL_751d078ead4c4a559155d1fc408ba584"
}
},
"5e9e532b9f6345b48472dc15dfa2e748": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_d9e496cf77f34b54aae4396077d83492",
"IPY_MODEL_cafe1354b2374f44ae958d6135d55ee9"
],
"layout": "IPY_MODEL_bc1b7847698140369d01f1fec561a263"
}
},
"5ea95053900c4cec9408d2fd1a4dc5e9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_cfdfa8a52c664b3fae658a828ade16f4",
"style": "IPY_MODEL_4170fa0ef3b14688b78009466c7a3ea2"
}
},
"5eadf52c41284779b4c0e27ebfa31a02": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"5eaee931144743fea3756d832206133a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5ec15fc0dd56463ea7c8b16f3411e6de": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_34331fe4e9cd4e669a1cc34afb18856b",
"style": "IPY_MODEL_ea3ccf77a8e849638f7231b66163e09a"
}
},
"5ec5b36991ae42c59c34057a728fa408": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5ed21c937f7b43748b89ca685a895dfe": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_87a6779ffd3e422592ab8ec7e9b2e33d",
"IPY_MODEL_815c3ed2d5984322b197d8a4c346de14",
"IPY_MODEL_134f133643814227b1b89cf67a1f0d7b"
],
"layout": "IPY_MODEL_cfcc73ade3b547de99cbd80e8238bf48"
}
},
"5ed320d9adb74da782a713ce7db142f7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5ede405d8f6e405c8333b28fc267d9c7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5ee0b370c16741ad94bb35848f0a1373": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"5ee5b3b1f9714b66a5ba2b597e6dc9ae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_bee3cba32c2f4baa8a3322504640f9cf",
"placeholder": "output filename",
"style": "IPY_MODEL_9edaeb1f800e4b34954d075d85ba8e2f"
}
},
"5ee7e5f4a6e3466ab671f633f099cf0e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"5ee87be1805142c595d8c5eae446ac50": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5ef47ea6a8884459b51baeab66e9d461": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5ef82d969f7f4b1098bb586c4b0443b9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5efbaba784824795a1fe48bfa6a4ac33": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"5f08a836b10b434ea0e6d95cce494740": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5f0fda8e468c40d991a21b12ca6d340a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_2225fc263c6a4d82a010b52253c730f0",
"step": null,
"style": "IPY_MODEL_22ac67ffe5464f399036910384d66685",
"value": 1
}
},
"5f2882ab695546d0a1e54cec192fb710": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"5f34f0dd8fce4eca96be182196e05f48": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_bab91a82746340f1b92aa24c7c553f37",
"style": "IPY_MODEL_1dd4ae34e8884b4b98bcdf4c5872b5ad"
}
},
"5f4075bd47604c81aa62a0f1eb02e822": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5f4690aa03ec4e32977be14be57b293e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_52e4d5ed64b848a1967dc83805f6450e",
"placeholder": "output filename",
"style": "IPY_MODEL_b0b7caf51e50441cace56042c4e93191",
"value": "FlinFlon.geoh5"
}
},
"5f4c8167306d4066b91345f4a0b273fd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"5f57e9ca982d4830a17a17450a3db086": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"5f62d47781bd4571ab9c1334cd66420c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5f645f0c582c4146b1a2ba35bfa34288": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_5232929efdb7412899159711bea0aeaf",
"style": "IPY_MODEL_8c5f649e71374aee80e5acb14ba08718",
"value": "Reference Inclination"
}
},
"5f6681fd41de4472b505ab0d22c67bb6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"5f6b212ef8744669bd7d4661d4df6643": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"5f6e32c2e3c742dcb373134c5070de4e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"5f6e5adbaaf34342b4e4aa8a9003ae07": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5f82bf5c0d254200beccec52491fc2dc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"5f863f1a091e426ab17bce5a71938a3a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5f89ae52cf4e414badec270235c46a63": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_03d42526a85947a6815524cf26bf0844",
"style": "IPY_MODEL_a1196dbfb0e448469aef67246c763804"
}
},
"5f8af613c9494a8aa0e9f1a0c4a66d61": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5f92066bced548fba7ac6a46dc232a90": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5f9a3db012f34a72ab28ef816d736366": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_84586bb300d74cc4bd7c6bc8034eab61",
"style": "IPY_MODEL_34dba37afb484aaca7681ba247d3a92f",
"value": "Reference effective susceptibility"
}
},
"5f9ab02d164d47d8b46aa8bf48a2f6ab": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_f165efdc6fcb4fd7af7b50012d7246f4",
"IPY_MODEL_7cbebab24de74242a63d32c8fb715e71"
],
"layout": "IPY_MODEL_d5089fafd3894204a94bcea60834f0c6"
}
},
"5f9d8832862e4743b80b722c785c917e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5fa1eb73c39b47ac9d45bfba8b3ddefb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"Model",
"Constant",
"None"
],
"index": 2,
"layout": "IPY_MODEL_c826c84c863c44d8a54f8e903efd133c",
"style": "IPY_MODEL_050974503f2b40d6a965910b643e8680"
}
},
"5fa5e2561b2e43e8a479f3baef027fba": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5fb4eba6b0db45e4a1a80eed46c28f6c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5fcb9e7a0770407c98104597a693b857": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_726bd0c4965b4be9856698aa9fcfdf60",
"placeholder": "output filename",
"style": "IPY_MODEL_2143eae56e2641dbbfd65eb4c31cb725"
}
},
"5fda443c9a974bef936e5d8c49e5c815": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"5fe45dbd55284cab86d50f3258c211c8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_a77582de0ba147138f21745b89ad2beb",
"IPY_MODEL_450c7d43656046b49f9f84fe20ab42d9"
],
"layout": "IPY_MODEL_975c7ebabeb6429a9ed3b9466076874d"
}
},
"5fea3a56b7124cd498868e630e41257f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5fecb852a4d34fe5bc5ccc2627e41f71": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"600e12b23e934ce39599b3ac99b969c0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_80a1dcdc75404665b58c6154784de22e",
"IPY_MODEL_015dce7c1d2f489280c4075238198f4c"
],
"layout": "IPY_MODEL_af47438d2a7542c487fb58c35044f77a"
}
},
"60101f6897f54335b1854b36f82639a4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"60110837390047609db943e2921eed43": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_adba6eafaab64386800d6a40d78db11e",
"style": "IPY_MODEL_bc575c53519745318b980950e5295143"
}
},
"602e9e7a638a4f67b73ada499821ce87": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"6032aeab4d4f4fc58c0b7974ce1e3599": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_3c0ffae1cb1640499d7399fc3f517af9",
"style": "IPY_MODEL_756a667ec1ff4960a10d4be0bcaf131d"
}
},
"60347535befe45469fff94154653d045": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6039c121bb4d469495060df8d9ba829d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "dz (+ve up)",
"layout": "IPY_MODEL_a531dfc4e73740188eab527fcbd48545",
"step": null,
"style": "IPY_MODEL_b2094d766b77408eba10bbdee843925b",
"value": 60
}
},
"60412f29f75348fcb9aff4494a2a72f3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6049bcb9aab74646bffa47d842652183": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"604d857174dc4cc488d5798dd8e4de29": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"604f4d4d8a8847628bcd3fe3968879ec": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"605038d87479456ba146b2a5b5526283": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"605e01c20f9f430ca0adf3fa23a48b1b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"606190e388f248798cd80de391a4ee2f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Reference Model (s)",
"layout": "IPY_MODEL_d6691062bec34101b643753f8879bd96",
"step": null,
"style": "IPY_MODEL_f7111b490aa145b0975f2305299959fb",
"value": 1
}
},
"6062df0fb4a14cdfb15aab37cd938c94": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_17c22f7d6f464b2180fff1e8918975e9",
"style": "IPY_MODEL_60101f6897f54335b1854b36f82639a4"
}
},
"60763af3384846f498fb7a8ffd5fc369": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"6078b9da5ca2484e8038de50fffa8fae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6080e0914b8b4e49865bd037f896d09a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_2893f6d6f20e456ba0deb8e0a5882171",
"style": "IPY_MODEL_ece8dd65179040458065711ace48280d"
}
},
"6084d67bd24748999550e3e0446c7b4a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"60892dfb4baf41769b6f203127519828": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"608e57edca244f5cbc98c7742eda495f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6093047f975a4a8cadc95640b3a8829a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_2720d721df6a4353bbceee538b12e9b2",
"IPY_MODEL_5510af7b4e03427f958aa0c45b843614",
"IPY_MODEL_7eaabecaccf54de7a54e728117bbcc37"
],
"layout": "IPY_MODEL_efc826ef7dcd42dc853d8ab34b572931"
}
},
"6097d766a37f440c97a478c9d87d7a9f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"60a02637a7a042dead8e5c35e41a5feb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"60a2ff5c40eb4238ad40ab12571f4b9c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"60aa16c3e333493991c133b3a8c786b0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"60aa82a3968d4a90a5ea84210c9932aa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"60ab716dd9964add8083ce3ce5a1301e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"60b1724c511d402fa83782be3d8bc7a5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"60b2a3091f1a4a3d9b49038c2402cb99": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"60b46462952045e6b523ff01ff524685": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"60bdfe92fbe04599a788a64097d69548": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"60d66fe0e2d44cc0871792504f5feb33": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"60dbbede0d8d4217986500db7f10aa62": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_1b48e8d97540408987a8a28947d9b465",
"placeholder": "",
"style": "IPY_MODEL_9e97c372e1b84db799719cecc6f7a517",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"60eebe67c64b41dbb07e090655a0020f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"61005ad6372646b986076284d7695134": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_0e5c72f9f6e14f0f82578552be3be5df",
"style": "IPY_MODEL_afd31a12fd3940e3b30937b8f614d70c"
}
},
"611178ae28f346c3b251946d66e883ce": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_9765fc520c3f4b3d81d39da62b12db89",
"style": "IPY_MODEL_66447701e599455eb101d88558898ea5",
"value": false
}
},
"6120aaa6c50a40dbb88943a05564b0ce": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6121bf69ecc949768b99dc4187ce59e6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"6122349f60924d5ca4fe38cfbbabd443": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"61235172bf694f1b8b37dabfec66466e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_7037440a153b49e8a9b9e04abc0f6119",
"IPY_MODEL_2d5ca2eba5a34c4f84fc4cfc701f4d18"
],
"layout": "IPY_MODEL_e9e4c130c44a4d749187d08f71963e80"
}
},
"612ce0b9e0d64323beed7aecf8a6619f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_06f7b2ab1027412da1f5c6ae1fe10f21",
"style": "IPY_MODEL_48f223f61b7947c8bf7491c1e5577995",
"value": false
}
},
"612e03e25eea45d7b59da4a373e7ff32": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6149136e82894d559bdd1cd3da3275ac": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"61590203844947d3bd258bf6a9961356": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"616264ab382d4351b8f27850ce5551ee": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6162b2c2e5be43739022311ddf3ae10c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"61689d0c58ba48db95179d079019ecb2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6172dd75600c4a69bd30c442fdd608d9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"61804c8cc8f740e08a13eb8cc0d2fdcc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6182817ea41d4617a3bf2dd81e3b058f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"618cdd6cd62a44629d22ffff86c79006": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"619648e2cecf46868231cc5df2917ad9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"619a2ccc8fcd43698cbb79b961744b20": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"ram",
"disk"
],
"description": "Storage device:",
"index": 0,
"layout": "IPY_MODEL_9d0d847bd51044b190f0ece73161c4a0",
"style": "IPY_MODEL_4217086883ff4bbfafee664627a08422"
}
},
"61a233ed583e4291a141b7e4713538f7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "SI",
"layout": "IPY_MODEL_2625322c421e4dca924059bbf7acbc4b",
"step": null,
"style": "IPY_MODEL_1570c83367be41278e629f83f70aab65"
}
},
"61a4b5d9c63d4f118750509b6394ec6f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"61a8cf4a3c4044fbaeffdcca01775015": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"61cb9fc8cd5749adb6e0d8aee3f69380": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_b63375bad894412f897e20117014c96a",
"IPY_MODEL_5f4690aa03ec4e32977be14be57b293e",
"IPY_MODEL_ef78c2b92f534dd59dae8969762b2ec6"
],
"layout": "IPY_MODEL_ad9ba3d6215f49a5872ad11fa91033d4"
}
},
"61cc8545fa684af18bd7a26e8deacfb0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_0f4b5add9ce34708bbd340fc50366d8a",
"style": "IPY_MODEL_554ec33a323c4d29abaee65bd4c47d2c"
}
},
"61d118e9e74442768c0d6da4e3bccb1c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"61d2a81c8d804029ac0d4a7c04b2d51b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"61d4df92061f48ed80c6761c9fbddf39": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_ae2b4cb5a56c43d8992045664cc89247",
"IPY_MODEL_4e706809a4d04ca199a6b975fa7603b4",
"IPY_MODEL_a4128deeb70a4223b7484979b1cb3870"
],
"layout": "IPY_MODEL_c4933b16d3bc480f9935b7793c2bf3f0"
}
},
"61d64b1f62de492a92d6eff3b96edd3d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"61d8fbd64f5e4f0ea3bee1d2b44edb79": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"61e0eea4f57c4ba1aa22e49cde0436f8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"61ed25d4d64c4e399ab58434dc838683": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"61fbba8a370842efa6c00287a4cfb8a7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6207f753c057401882cfb4c04824e220": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"621086ed31954beeaea941349329861b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"621640c3673f45e382d750a3bbc7af2a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_c91a7d51fa8f49a5a2dc940da9d40d9d",
"IPY_MODEL_c1c037db492a43b0b33abdf49554bdb0",
"IPY_MODEL_d3ff895671124ec8bf50bf1faa916415"
],
"layout": "IPY_MODEL_f29ab072660f44e89302cb3352ba9487"
}
},
"62244cef9ebb4dcea9f80e2ff441fc4b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"622606f5a9004e0eb4deb069f6213bd4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"62282c1cfe95441198a0b69b65475b84": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"622c438ce5784048b9adad6619448666": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_5b212091ce5d4f8bbd0f4a75f0e4ef1d",
"style": "IPY_MODEL_b405ef605add4c3185e50815c12fc721",
"value": "Uncertainties"
}
},
"6230845b57254a55b2c96b9a281bf9f2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_39c410ef4921432791afc65e914c15cb",
"placeholder": "",
"style": "IPY_MODEL_c2ad1c7aee3c4d67b6b00055a5248e9c",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"62367940e78b445b9bc2463d9b76a3f3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_9c823be070714bf2926d121edc7b2f42",
"IPY_MODEL_00e54bc18f2d414799b3933ac9289f76"
],
"layout": "IPY_MODEL_48262030e2e14a8ab88c3fdcc822861b"
}
},
"623ebaec54754318b55a78fc9492eb6a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"625651005dff4b27827f5db38b17a743": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Ore/39_Ore_Callinan",
"Ore/38_Ore_Dan_Owens",
"Ore/40_Ore_FlinFlon",
"Workspace/Inversion_VTEM_Model",
"Workspace/CDI_VTEM_model",
"Workspace/Data_FEM_pseudo3D",
"Workspace/O2O_Interp_25m",
"Workspace/geochem",
"Workspace/Inversion_DIGHEM_Model",
"Workspace/Topography",
"Workspace/Data_TEM_pseudo3D",
"Workspace/Data_ZTEM",
"Workspace/Mesh"
],
"description": "Object",
"index": 0,
"layout": "IPY_MODEL_67f9380942fc45ab86f1001ded75a302",
"style": "IPY_MODEL_03f198064f58463e8a9ae9b80b9cee08"
}
},
"625aadba39c5499bb3df229289c7c98c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"62687e611cf64d70969e35d2c704e90b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"626c1878706343d594baed5e460b2df6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatSliderModel",
"state": {
"continuous_update": false,
"description": "Height",
"layout": "IPY_MODEL_23230901a9b848b6acbb9f10a2355da5",
"max": 13622.238002983107,
"orientation": "vertical",
"step": 10,
"style": "IPY_MODEL_778acb5ec1044c6db8c928b6b4c0a891",
"value": 1500
}
},
"627c9a12a2544c8fac7dc608163b6d31": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"628069c1be4f49a8a76c22567f20a436": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6282644b046a45139db8aa5c870e3095": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_0d6ef2c5007a479ea2651a96e2e87d88",
"IPY_MODEL_7b9c6020e1e141f8a1d1ca44c24e4962"
],
"layout": "IPY_MODEL_ecbb9635b88349238fccf2d35f74ef30"
}
},
"628bfc98d8fa4e3aaf0e0459016ace53": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_ee1da31235df474cb5ac03cd6d91c67c",
"placeholder": "output filename",
"style": "IPY_MODEL_8fc5533707474fd0b4a834f2ca38929d"
}
},
"628d66989cec4fe98c93d2588c385d98": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_62c4c29b0e9240bd9e1efb092c933e8d",
"IPY_MODEL_1d56e5308e864c5eaf84cb347f9c1052"
],
"layout": "IPY_MODEL_6c1409bc93fb4f83a696a097e4d20b4f"
}
},
"628dbaed192443b299e26728f8894d88": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_6604f5f2f5be482fb01bda1c45878d0b",
"IPY_MODEL_b064be51802744e39fdf2cf5026081e1"
],
"layout": "IPY_MODEL_a6870a0d6ae2436fa3ccb5b0254510b4"
}
},
"629090d8ffcc4884b1b3a0c09880339d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"629227a9bc3c41848453b13f40220cf3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"62a8d540c881466dbcf1d40acc5b89b4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"62aae226aac54daaac0d8b7df0cc7165": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"62af62fa53064566a890537a33b577bc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_4da32bb5eea142369871c384ad6a127c",
"style": "IPY_MODEL_7c2f8d311582488e9c54cb8e344be845",
"value": "Workspace"
}
},
"62b7482dcd4245b9a06f24250cf7e213": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"62c4c29b0e9240bd9e1efb092c933e8d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_95691e5c444045f88aa60aba0b9e2fda",
"IPY_MODEL_689783ea4c2946e6b79ed3dba0f342d7"
],
"layout": "IPY_MODEL_675c6b0e36c24367b8f4ba9ab7fa06b2"
}
},
"62c675876330484caddbce4a1d47dc51": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"62cddf074e7841ceb22b32e8589b5efd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"description": "# Cells below sensors",
"layout": "IPY_MODEL_4c0f82a7f731497b9c85a637c2870e48",
"style": "IPY_MODEL_7367fcf7bcc1484cb60e67428358ad49",
"value": "5, 5, 5, 5"
}
},
"62d77f1f2bd34d34bcad3679460b07e5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"62da26d6a62440cab8a235c783568f2c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"62dda6b68a444145958bc72034b92cb6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"62def65b542742a9bbb416901df20695": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_f7eebac9d5174971afc7c19454522925",
"IPY_MODEL_82658e5d6fad4ca28fe74be8fbd3b13b",
"IPY_MODEL_21c1fb8a79784afd83bd607bf45b7656",
"IPY_MODEL_74a59cbe42ee449497c494746aaf67c3"
],
"layout": "IPY_MODEL_3b1b610207c7452cbbe79ea11890f721"
}
},
"62e026f117e5408a869b0b56f63cc0b9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_cc3ab1ff7f0e406fbdbe43e298cce2f8",
"IPY_MODEL_377af7c8d12445d98ac55b3a20091125",
"IPY_MODEL_6b9fd1bab680448dbf1b73f6bf777236"
],
"layout": "IPY_MODEL_a11d8fa10606414aaa236ce9ef630281"
}
},
"62e044cea280425f841d21b12187fd4b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"62e5d6bf2f764c2994965f4aa5496810": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_4786940c0cd344eaa04a3143f3c6ee5f",
"style": "IPY_MODEL_d28c20bb766d4c3984139ce946dab7c4"
}
},
"62f032ff84f44e9bb5b3f6ae23a990b3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"layout": "IPY_MODEL_79002766c8f5444ca9dc916253f5de4b",
"step": null,
"style": "IPY_MODEL_8bdc190c21ba4e17ab5bb66acbe05265",
"value": 2
}
},
"62f114fab944451db5a8f8938ff8780c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_24cabaf041b34d25ad47d2e385ceeffe",
"IPY_MODEL_ee09bb1e9811496d98db05fcc2a40298"
],
"layout": "IPY_MODEL_b5cf21ca3d3242e3a5f133c2cc777a9d"
}
},
"62f5d44926f0419ba505e0200c53aa10": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_b4d1c2df233e4abf87f293e923ebbc22",
"IPY_MODEL_74c94a287bef4b79bd12c6f303a71675"
],
"layout": "IPY_MODEL_ca7709b8510f471ab45fd1bdf7278f11"
}
},
"62f8588626b540679583da4ba1566972": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"630d7ca0fb8c410e8255807529eb66cb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_3cab2808e0b34c5fb4ba906dede6324f",
"IPY_MODEL_eda643615bea4122911c19ca705d7a2f"
],
"layout": "IPY_MODEL_4068a28afee248a9b369b940cb02e94c"
}
},
"6310c10407ec4bc2b6bc8de2d1b5d2aa": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"63115516e1f74549a259f19e41e46101": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6317b8f0026b4f04b96489215235cb3e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"631801bc716c4330a486993a4f662803": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"631f892adfeb4a6babb7aa52b4c6568a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_da8e8af3507f4c858be3a40a7b60943b",
"style": "IPY_MODEL_5099410ca3b54fd297281db44ab47834",
"value": "Uncertainties"
}
},
"63343542e128482eb31c2316d67424ac": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_3a0e36fb445f43879506969716e1e5df",
"style": "IPY_MODEL_5cd7e047b0c142ee9601f6665fb7667c"
}
},
"6338a4d724dc4bd699dcbabc3f6df455": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"633d9c3658dd4f678e6e948eda6d0d54": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"634ff9125aaa415abfcbae74a8c94ee5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"63552afeb45049c881468f8ffa0d9c6a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"63559097dbce4dfb95f7750f60a0df80": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"635d4848279f427d9f8e8c7c0374684c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"636d4128bf2b44809b407c3da6d4d09b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"63786f1d7a594681a271e1e00d4cfa1d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"637a694a05c841b08c2cf7d355aab803": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"6384e22c1df64490976662e56eca3f29": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"638bb13b05ae40429a41b4b6d37a5397": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"639004eac1874bef9daaab01502f22b3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"63953eded41449be94635fb2062668fb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_57ef2eaf36134724a6cad8cb41e3a2e0",
"placeholder": "",
"style": "IPY_MODEL_5f6e5adbaaf34342b4e4aa8a9003ae07",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"63a2486ce4c8408f90864d49d697546a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"63b112e5036c4b5c8ed7ddf54dba135e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"63b97dd161e14abea47b87e593096dac": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"63bb5ad96622437a86f68109bfc068ef": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"63c6b5a7a483428090e61c709d4c1f17": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"63c718232bfa4dc48f7346259ef0dfce": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"63d29837b42a481e91f089228683c6d5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 Temp",
"📁 uijson",
"FlinFlon.geoh5",
"FlinFlon_dcip.geoh5",
"FlinFlon_dcip_v4.geoh5",
"FlinFlon_natural_sources.geoh5",
"FlinFlon_natural_sources_v4.geoh5",
"MtDore_TMI.geoh5"
],
"index": 3,
"layout": "IPY_MODEL_aa27aae784a744d598b8b357f6ad8a17",
"rows": 8,
"style": "IPY_MODEL_4494f86019db451d8352e7c0615b1afa"
}
},
"63dd3c96c8e845d2ae199251cc8b8eae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"63e1b87dd5ab4abcbb70e749525b7c66": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"63e47fb4231b42e89be2d6009d2a3be8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"63e7b3cb0e9b4e5e9c163ba615066a2d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"63ee301e7f1a4184a453f246a6d11d15": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"63fb61edb44e41f4908070f37e16418e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"63fcb7c111864ee18e8a1ddb07f5a334": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"63fde1b030554d14af3da0047c481cf1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"63fe46dc4d6347d0b4d8400696d62c3b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_32d04b81a247422992ad2841ca0eed6a",
"style": "IPY_MODEL_c3fb68188e7b4e34ae266d81d083b1dd",
"value": false
}
},
"64213d01e5894dd5a5d2e69abdcc4b7a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6424f40885f348f0a4898f4d12c7b88d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_db27eb56d6604d0d92bbe29791795345",
"IPY_MODEL_0e3dc7bdb5e249969892a3fa87c4ab6a"
],
"layout": "IPY_MODEL_d306b982f6e74c8dab15cc43477ee581"
}
},
"64434b40905f4fb885a30963281005c6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_c1e22b90950e4580bf4d06d8413faa19",
"style": "IPY_MODEL_c28eec4947224c0192d09f217a4f2abc"
}
},
"644cb34552924c13ab10d68a76c6fef0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"64515ab651ef42a8bf8e76c8c854a25f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"646b7a459bff4d4aa0309335170c5f04": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6475d8803e1f4eefb7719ad61855fd4f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6476918ff97b477b85160350b4b5a123": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"layout": "IPY_MODEL_9b3262dc08894a65af023592db08c52b",
"step": null,
"style": "IPY_MODEL_852307f446524999a9826b19fcb5c6ec"
}
},
"647a051a8f3b4233a3175af3bb421854": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"647db9088e0448b8a7d345ef435ac5a3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_b477a4dab6414f64859db4ebf9ca82d7",
"IPY_MODEL_f0ad965a7a824477bf858df90c3ddea4"
],
"layout": "IPY_MODEL_4a9a269553fe45a19cfdf48e8acf64ec"
}
},
"6484e88110d64863a46a0179f43a0cc7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"648d9e58efde426882d32247fd663218": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_ab8b5a6f66984693a53796b4fd209ec2",
"IPY_MODEL_284d66a4d9954b8cbb88d8894c997b7c"
],
"layout": "IPY_MODEL_0b79b898ee824c24bdcfe8f7cc28850b"
}
},
"649d97c6b47c49d8b130c986aa43ba0f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_15db68eb22b64b9e9de32cc535d26767"
],
"layout": "IPY_MODEL_aa40699ff16d4022a0b3a9257ac39ea3"
}
},
"649ffa0d4a91438aae056a06509b9a85": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_cc243223d70d4a4ba40c1d5b2cb81c81",
"IPY_MODEL_5bc689aec0ec44ec943516b8ad7f86df"
],
"layout": "IPY_MODEL_6688c0a3f08e434d90a63e8fba2c2be4"
}
},
"64a04ecd3a1a4cfdb05f7048468aac3e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Ore/39_Ore_Callinan",
"Ore/38_Ore_Dan_Owens",
"Ore/40_Ore_FlinFlon",
"Workspace/Inversion_VTEM_Model",
"Workspace/CDI_VTEM_model",
"Workspace/Data_FEM_pseudo3D",
"Workspace/O2O_Interp_25m",
"Workspace/geochem",
"Workspace/Inversion_DIGHEM_Model",
"Workspace/Topography",
"Workspace/Data_TEM_pseudo3D",
"Workspace/Data_ZTEM",
"Workspace/Mesh"
],
"description": "Object",
"index": 0,
"layout": "IPY_MODEL_ff60067493ce45eaa8f76de001f79222",
"style": "IPY_MODEL_0cd53c523d434cc082349ed342a825e1"
}
},
"64b241aeea9743f0b04dc250da26bbb1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"64cc2bbef8f849aba40b1cf7d6ba7864": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_72d3f11716df4c5fa99e7d677c5760eb",
"style": "IPY_MODEL_11798fe7bd1b4b48b3e3a7b75f04f45f"
}
},
"64e9996662f74e86a126b4ddef116321": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"64feee3ca2f348469c46ef0064178b10": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6500519297234cc98091e1725b1bf675": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"65020fa5a3ca4fc09b5cca7a88fdee74": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_76d53d573def42a099d054223d94f623",
"style": "IPY_MODEL_75caf9828988418e8efe22da4432cdbb",
"value": "Workspace"
}
},
"6504ed0492864399bcb60699693c8549": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6514a6aadc6044a4ac93097b4b722835": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"65229b55c4ef4c44a711bb72aa3fab36": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6526387bf73a4e90be0bc0625ff959fb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"653e8159c607429388a845ad1e5ee435": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"654aaee9b2f04feaa383433f0e3de790": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6557797d8b5c43da9109b01e0408bcc7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"65644c52bddc426297f25b73e1056004": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_664331dbc3f9429784135c27f5c68ccd",
"style": "IPY_MODEL_69d7be705a3945ecbc6608cb84bdf536",
"value": "Dimensions"
}
},
"65714b2391394de48fedc1a8c3752d5b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"65748db0a01d48e4b8f35b1f4ec84220": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6574e3422f8e4a31b0e7a6461faab0c1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_ff741538ce2145e0863aa3bc2824b952",
"IPY_MODEL_7cf4dd5a92794ffa8e1275c3c4949fb1"
],
"layout": "IPY_MODEL_6049bcb9aab74646bffa47d842652183"
}
},
"657b20c2e0c845d9831225a8e611b3a0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"658a39ace3d84092aac45e849ad53172": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_020bf9f7512b43c8a81d8a32e9be0520"
],
"layout": "IPY_MODEL_c145bc80fbef4330bfd858f3f97b618d"
}
},
"6590cba6c6574339b3e2af140f6bb49f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6590da6cb8294e419ea75f56f518bcb8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "IntTextModel",
"state": {
"description": "Order",
"layout": "IPY_MODEL_78fea3f9b94b4342b48158a5a0ec6af2",
"step": 1,
"style": "IPY_MODEL_97526cb9a140477eaa986d479269f718"
}
},
"6591cb122194409e9c9ff944d857ab2c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"65944b9616ca4e5db29c7241d56faeff": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"659538b74be240d7ae3fd6cd51fa5f18": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"659cf6e66b6a4167afb79efad49a167f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"659da161bef9483ea448bc73c1977bc7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_99603952d28d4992a6f09010c617f586",
"IPY_MODEL_46073aa4b7464a6aabf59364f2605bcc"
],
"layout": "IPY_MODEL_27cb763f6f9246fbbc9d479709df91d3"
}
},
"65a13414798742bd8c22bc973e4b6214": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_c6061657d6cf4d78b9d0dffd2534a973",
"IPY_MODEL_e91200ddb4f34de6aa067725e713e9fd",
"IPY_MODEL_2a44eab5ed354e279f424d5cc2e1c218",
"IPY_MODEL_bcd721b28cc54d20a7d21daa39128ab9",
"IPY_MODEL_ab75b98474024504bb09c5f414b963e9"
],
"layout": "IPY_MODEL_ff83853cdb194a86b073099c579a906e"
}
},
"65a6f73539394bf98d44cb11c6b88652": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"65b097d373c14a399eccbf6e2a2cb987": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"65c4e3e620d04cfca8c13e1e43886be9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"65d7a1cdefad4e1481ea5059c7e5c9db": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_de47dbe3a93f47a0a10409be37c07902",
"style": "IPY_MODEL_1e4c9164bca34a86bb9824c876084580",
"value": "Workspace"
}
},
"65dbb1ca23ca4d9dba7b0c9204d0c3dc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_78783cec799340e488fdf04569640074",
"style": "IPY_MODEL_621086ed31954beeaea941349329861b"
}
},
"65dec8e6b7d54e1ebeaef6c57252a669": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_255f24df4dec406abd0cef809807c508",
"style": "IPY_MODEL_feb7871f3f034606960a4a079ce96629"
}
},
"65e4cbfc3f34482192050ac258d6a836": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"65f47e860325461da55081e9daf582fa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"65f7fe4a52794b5ab4aec472ac1124ab": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"65fe55599a10448aae934a6e21a3b981": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"6604f5f2f5be482fb01bda1c45878d0b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_b2b7ee60f151481fb3b978d2c3a11cb4",
"style": "IPY_MODEL_3b06b6b4b3d8490b95fb69d1140452b1",
"value": false
}
},
"661b4553d6d7461ebd1a24a1374a0f3a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"661e331c56a847c2b31824a9d471bc95": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_0f10dd265f1e4286873b5556c7fb7588",
"style": "IPY_MODEL_97904ff11c58423abfc60467d6a79173"
}
},
"662afb7569154399b1ada19ef3c2166a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"66345fa57a9743568734c89c0cf4e8da": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"Model",
"Constant",
"None"
],
"index": 2,
"layout": "IPY_MODEL_58780fefba3c46709f552e73961d333c",
"style": "IPY_MODEL_3a88d6b5b95748aba9402eee24419dfe"
}
},
"6636814b38c14c81b264bebb1d5bf5b4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"664331dbc3f9429784135c27f5c68ccd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"66447701e599455eb101d88558898ea5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6648d099f4544e24a8fff25700d301a3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"Model",
"Constant",
"None"
],
"index": 2,
"layout": "IPY_MODEL_f12ecd2ebba44ee68c956b423e52fc22",
"style": "IPY_MODEL_d19e9f19e4974ac699a40fc984229f18"
}
},
"664d0cef3ed64833aee56e97de4da1eb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6669ca1bc3cd40dbb64ad5837b30b094": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"667550585f2a4c5ba1ca2a324f662175": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_2bb63259ddd64ad68c2f8e9be4d535f2",
"style": "IPY_MODEL_138f7401dfb64d42943717dd76100151"
}
},
"66762326b0b84912910003a9be6a7ea6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Vertical padding (m)",
"layout": "IPY_MODEL_6207f753c057401882cfb4c04824e220",
"step": null,
"style": "IPY_MODEL_957957dce65945ff926bada6d26436a9",
"value": 1000
}
},
"667c2ea06ce04c26a242375f6126e4ba": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"66805b588e0e4a33b99200ce8290be3c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"6687c623ed3240bf820958c82d866ce4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6688c0a3f08e434d90a63e8fba2c2be4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"668f81f9ed3246419bc3c67820f9a07a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"669dfd478f044c9b80eaa54607f3bada": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectMultipleModel",
"state": {
"_options_labels": [
"",
"--- Channels ---",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz",
"X",
"Y",
"Z"
],
"description": "Data: ",
"index": [],
"layout": "IPY_MODEL_56e44c1e073e490193645a207a4f6ef9",
"rows": 5,
"style": "IPY_MODEL_7f55d488d1314a338d143eaa19673900"
}
},
"66a40659f48048dcb8a34d6bdb86413f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"66ab85dfed814ad78874885a63d16e4f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"66ba65b897cb465dba9c3e09b0b0b320": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"66bbd08b6edc43af81e3e2dd74ef37e1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"66ce7ec3c3e5464eadf2937ca38a2347": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"66d454fe3a9d4089a5c59e341820ec8a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_4568a6a720a04c6d85de2c996db5c33e",
"placeholder": "",
"style": "IPY_MODEL_dae3fc482b7a467f8fde89d6c7c22fc3",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"66e05280f9e249e28ecdd54c429371a3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Target misfit",
"layout": "IPY_MODEL_8d59c8ab10f34df8872667b1e22cc839",
"step": null,
"style": "IPY_MODEL_f4a28260a319493d8e2fb7b0ec43e9a4",
"value": 1
}
},
"66e1e0f5a09e4a55be844abd1c2bc7ae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_c9742cf426184ac694ba355ab8d9a55f",
"style": "IPY_MODEL_7534988b4b544bd4be22a9851a7097eb"
}
},
"66e373b0dfc9472e98dae675a63386c5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_0a84f53be25643d8b3510c780f137645",
"style": "IPY_MODEL_953dd8613a67479889d4e8df07cc3743",
"tooltip": "Run computation"
}
},
"66f76f82cfd04326b56495466e437bd2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"66fa6b36e98f4908b45f8b51e04d84f3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"66fb65397def4a5c8ae4e93bcb6b3304": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"67187df6b38b4469a68c9b0ef0f01b2c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"6732bb31c3044128a0e84cd79656031d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"67340174a30b453c9a3a3cc414217ec6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"6748798acfcc4557b5675761ee4b8576": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"675c6b0e36c24367b8f4ba9ab7fa06b2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"675e105af69440af957bd2f5f8435913": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"675fca35c820403daf5339bd9a83a764": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_54dd7ca172614de492d09884fcb1a02e",
"style": "IPY_MODEL_fc2d2acb49fa42aa9ecd3093ac2ed8cf"
}
},
"6769290a7a0b44429cbf32af46f5dd67": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"676ceb4c56da46ea9e977a0b677885ae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_de43e7805f004984847d1b72c8cbd830",
"IPY_MODEL_01b3f583672c42468c1658c2dddc21d9"
],
"layout": "IPY_MODEL_a0f5e7863aa7464091068644ea9904cf"
}
},
"67744ec6a08f4bd79b17bbd1b6dc1c2a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"67811940e3804f61b73c9b2188f195c8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_cbd6beda1c6b4f8da911bd5bc7c3b616",
"IPY_MODEL_90e11fbbfbe74007b3212159736ab8f5"
],
"layout": "IPY_MODEL_9674f8aec64f499d85217497c9b4efdc"
}
},
"678789d217934498b389ca2430e7e841": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_08f8bcc98490450998efb23713750220",
"style": "IPY_MODEL_5cd4ba2df5644ee89573a47b39f41064"
}
},
"67896359d40f4cc999b09947af37ed04": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_a74bd0d8906949fbb4e858d1ee28c2f8",
"style": "IPY_MODEL_e6e776f95e7d46b9b684c615bd30f4ed"
}
},
"67949f9244fe443887548975d25e713c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"67a9a3a6bb044a65837ac8e4e245aefd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"67b9221f210c4fd387b5bc465d9b4493": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"67b9453a5765479698ebfa62beb6ad45": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"67c2d4a24d8d4048bd0093e63d138616": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_a1199c680ea347f7a5026968e77fde05",
"IPY_MODEL_acf484034d0a4269b4a25cc672ce3202",
"IPY_MODEL_c67f8f60052146898ced9f517204b723",
"IPY_MODEL_fd1aef34d20b4e5b8811d0ac2c9784ab",
"IPY_MODEL_66e05280f9e249e28ecdd54c429371a3",
"IPY_MODEL_153b896a9ce747f197d9028603111a7d",
"IPY_MODEL_3f86d6cdfa2f4001b7e30e8e6afc1e86",
"IPY_MODEL_8701e9290f4345039d75ff4bfeafd005",
"IPY_MODEL_f9c2c4d852e0471c9af9765c57c4de51",
"IPY_MODEL_619a2ccc8fcd43698cbb79b961744b20",
"IPY_MODEL_973203050d7648858c52cbce3bf68d07"
],
"layout": "IPY_MODEL_e09b988c37674a149ebda8f910711a39"
}
},
"67c2e5212f98437fabd2f9ad2addf0cb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_e7586cae76474a40876e3efc1837f607",
"IPY_MODEL_62367940e78b445b9bc2463d9b76a3f3",
"IPY_MODEL_68fefa2bed17482e8672d471cef1824a"
],
"layout": "IPY_MODEL_7459701fb2494d109424d19188715117"
}
},
"67c88d7ea29743a38c374936b69e4f79": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"67d4aaef0a4949de98396360e4f701b6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"67df307e574749d8b3b8fddc3b800f7c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Labels/Label3",
"Labels/Label1",
"Ore/39_Ore_Callinan",
"Ore/38_Ore_Dan_Owens",
"Ore/40_Ore_FlinFlon",
"Workspace/Inversion_VTEM_Model",
"Workspace/Gravity_Magnetics_drape60m",
"Workspace/CDI_VTEM_model",
"Workspace/Data_FEM_pseudo3D",
"Workspace/O2O_Interp_25m",
"Workspace/geochem",
"Workspace/Inversion_DIGHEM_Model",
"Workspace/Topography",
"Workspace/Data_TEM_pseudo3D",
"Workspace/Data_ZTEM",
"Workspace/Mesh"
],
"description": "Object:",
"index": 0,
"layout": "IPY_MODEL_88ef3109804342348c5ca686ec34e717",
"style": "IPY_MODEL_0d1451bda68c46cb9c3aa2add81cbfce"
}
},
"67e56d29813849a9ad446dec8d026725": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"67f2a13c7a06496f9ac0a8d407e323ad": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"67f9380942fc45ab86f1001ded75a302": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"67fc14ba2d834599b219f9c7eb08937d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"67ff18256218442e804a9796dbff52a7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Inclination (d.dd)",
"layout": "IPY_MODEL_60b46462952045e6b523ff01ff524685",
"step": null,
"style": "IPY_MODEL_4668a0b626574308b867beeb190a1313",
"value": 79
}
},
"6800fafb364e400aaebcfb1e0d0e27ce": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"680791185ca945b3aa926076e530ec4d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"6808f9acdf8d4ec0ab4a832bf86f7421": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"6820cfc96b7d4d5883e8c4f6c0dca083": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6822eb1932654ed0a153d194e3572bc4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"682b369ca6f9416bb74037f93c8d69b4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 Temp",
"📁 uijson",
"FlinFlon.geoh5",
"FlinFlon_dcip.geoh5",
"FlinFlon_dcip_v4.geoh5",
"FlinFlon_natural_sources.geoh5",
"FlinFlon_natural_sources_v4.geoh5",
"MtDore_TMI.geoh5"
],
"index": 3,
"layout": "IPY_MODEL_23000f7cab444786894f102b4213a079",
"rows": 8,
"style": "IPY_MODEL_38f12b2a8e1c4baf888b61571e5b2d46"
}
},
"682dd7b7df094d3aa156881444448944": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"685bbb4e739e470a9d4eef8d04852d89": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"685f9e3cc0474e2c8afca262ae254fe6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6864717b6f64479d8556c129fc5865c4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_88207e9bea8f4275a8517ded7408adc4",
"IPY_MODEL_5b4b49fa1d2f40f18150474d01906de8",
"IPY_MODEL_b75bcbd772b3466cbda0cf6e72eca1f6",
"IPY_MODEL_71e5913dfe38482fa72d52f66ede6db9"
],
"layout": "IPY_MODEL_9c46f64220ce4f02a18d286870f4eae7"
}
},
"6887ea6e71c84936b283ad40f089959c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_74f65738528a4a4ba20f76edf6cb0dcf",
"IPY_MODEL_7a7bc7565ebb49c79a9cc684e1975f59"
],
"layout": "IPY_MODEL_d146f35738e44cb0af893b79cf9cdee4"
}
},
"688c7fe2b67b49c99734318696e0e343": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"689172a02f314a6c8821a6d203f132d9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"6893f23ef4d34b7b91e9d4352c262839": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"689783ea4c2946e6b79ed3dba0f342d7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_aa49706f16704d8c86fcaa9bb81790a5",
"style": "IPY_MODEL_acc3a1a78c224a06924f78bb532a946c"
}
},
"68999b5f2c104fe4bfcdf77aad4bf2cd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"689b89000bf34fd4aeaaeef4b6f7daa3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_1d8ef5c2f6344c9ebea6163cd4acd361",
"style": "IPY_MODEL_a84ce719498141a0b092dfd0f6373c28",
"value": false
}
},
"689e3e20462340e69e84bcae8623009f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"68a239c7a7a34f1fb8348303c5f5bb69": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_7ae4488f65d84db199512665a374d196",
"style": "IPY_MODEL_dcb32a608ce149629c767f25dcd9238b",
"value": "Workspace"
}
},
"68aac2ddabc7478986cdd31ddae77188": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"68bd5c54417e41089bb9b8a6e9bcd440": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"68c81629ef684bfebb16a470e63554e7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_8514feac765740dfbc75639dd133b706",
"style": "IPY_MODEL_b5bef15f192b49f381775ce75678c97c"
}
},
"68e062e81b9b4921bc36e7d038f20b69": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Bxx",
"Airborne_Bxy",
"Airborne_Bxz",
"Airborne_Byy",
"Airborne_Byz",
"Airborne_Bzz",
"Airborne_Guv",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 0,
"layout": "IPY_MODEL_cbc3cdf3ee8a4f489a9db64c9be0331c",
"style": "IPY_MODEL_04fca2609f884c319a0c12e3112f2438"
}
},
"68e30f61e2564a0db4dd8188897c59b7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"68e6b53df9354099801663f89b67ec36": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"68e9396009f64a65a8e14186c1bbfe3c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_3797317df35342dd954780dc3a856c0c",
"IPY_MODEL_710b199614d446459e14ed2f0020cd62"
],
"layout": "IPY_MODEL_2ae1cbff801e4dea8e995017b60d4d86"
}
},
"68ecba13e9054cb3bb5223bc17389ae1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Bxx",
"Airborne_Bxy",
"Airborne_Bxz",
"Airborne_Byy",
"Airborne_Byz",
"Airborne_Bzz",
"Airborne_Guv",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_f85aba172d4e4e5498665838c8c5801f",
"style": "IPY_MODEL_d79725849d79461eaa3c225e4a4860e9"
}
},
"68ed4001758946bd87bc15e990eefad4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"68f6653b361d49a7a28f70c65e5818c5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_5f0fda8e468c40d991a21b12ca6d340a",
"IPY_MODEL_af6f63e8dc854caeb7b38225f7353239"
],
"layout": "IPY_MODEL_d7ba6bfd4ae9484ca74ec4e4bca2bc99"
}
},
"68fee44f7372496e82833d3796930ea5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"68fefa2bed17482e8672d471cef1824a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_f99ad042335248bc827c6ea4ebf0499f",
"IPY_MODEL_ba2da0ac9911449394502f4577cd4acb"
],
"layout": "IPY_MODEL_b94c0bd1d2bd476382d62a89690a7e89"
}
},
"69022aca10f34065801bbf6ef08de879": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6910877ba97d4611a97a60ee2fa37bd7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"visibility": "hidden"
}
},
"6914cd41df3a4a10abf5af3baf435814": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"ISO/Iso_Iteration_7_model_5_00e-03",
"ISO/Iso_Iteration_7_model_1_50e-02",
"ISO/Iso_Iteration_7_model_2_50e-03",
"ISO/Iso_Iteration_7_model_1_00e-02",
"ISO/Iso_Iteration_7_model_2_00e-02",
"Ore/39_Ore_Callinan",
"Ore/38_Ore_Dan_Owens",
"Ore/40_Ore_FlinFlon",
"CDI/COND_surface",
"CDI/COND[8]_surface",
"CDI/COND[18]_surface",
"CDI/COND[3]_surface",
"CDI/COND[13]_surface",
"CDI/CDI_",
"Workspace/InterpGrid",
"Workspace/Inversion_VTEM_Model",
"Workspace/InterpGrid",
"Workspace/CDI_VTEM_model",
"Workspace/Data_FEM_pseudo3D",
"Workspace/O2O_Interp_25m",
"Workspace/geochem",
"Workspace/Inversion_DIGHEM_Model",
"Workspace/InterpGrid",
"Workspace/Topography",
"Workspace/Data_TEM_pseudo3D",
"Workspace/Data_ZTEM",
"Workspace/Mesh",
"Workspace/InterpGrid"
],
"description": "Object",
"index": 0,
"layout": "IPY_MODEL_73ad0d9c47f1455b819fc9173e3b7509",
"style": "IPY_MODEL_f35d1f0d2e9b4568b0fc1a7deb871333"
}
},
"691fe6913e834a77ab1d656e2604fa77": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_61a8cf4a3c4044fbaeffdcca01775015",
"style": "IPY_MODEL_6bb8e12b652a41d09396b43c7529f3aa"
}
},
"6930c616f59a4317945165d156d6a934": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"69319f006ff748ca814b82f0fd2d3909": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"ISO/Iso_Iteration_7_model_5_00e-03",
"ISO/Iso_Iteration_7_model_1_50e-02",
"ISO/Iso_Iteration_7_model_2_50e-03",
"ISO/Iso_Iteration_7_model_1_00e-02",
"ISO/Iso_Iteration_7_model_2_00e-02",
"Ore/39_Ore_Callinan",
"Ore/38_Ore_Dan_Owens",
"Ore/40_Ore_FlinFlon",
"CDI/COND_surface",
"CDI/COND[8]_surface",
"CDI/COND[18]_surface",
"CDI/COND[3]_surface",
"CDI/COND[13]_surface",
"CDI/CDI_",
"Workspace/InterpGrid",
"Workspace/Inversion_VTEM_Model",
"Workspace/InterpGrid",
"Workspace/CDI_VTEM_model",
"Workspace/Data_FEM_pseudo3D",
"Workspace/O2O_Interp_25m",
"Workspace/geochem",
"Workspace/Inversion_DIGHEM_Model",
"Workspace/InterpGrid",
"Workspace/Topography",
"Workspace/Data_TEM_pseudo3D",
"Workspace/Data_ZTEM",
"Workspace/Mesh",
"Workspace/InterpGrid"
],
"description": "Object",
"index": 0,
"layout": "IPY_MODEL_566b1fe24e1842f4b3b7394497390014",
"style": "IPY_MODEL_34eb6abb838e437f84d4973520cfae4b"
}
},
"693a17c52c8a44e999bdc4a76e348a4d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6946cec642c048439bb873a054b03991": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "500px"
}
},
"6950d9bf9f114e29800ad1ffeea2fc14": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"695b4abfcdff4ab4ad88054cbf380d50": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_ad887a7ad3aa454e86eb2c720d7b7298",
"style": "IPY_MODEL_8f8bdc2494ed422eb399b02b4a303e0e"
}
},
"697920c047b4497c8758adbe185cb636": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"697b2aa3b0ee4febb5c2874b1946195a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"69848e0e21894f68ac519856f23654fc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6995fb7999234ae7a0824a96dae92a4c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_bf926474a1c04bfe88b93d750541bbc7",
"style": "IPY_MODEL_cc3ca330fe164b0c96d4a9b1ce1d33f0"
}
},
"699c34e33f8947daaf9d96d7746ac5e1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"69a4267d7a4b48e5ac86931159b53a04": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"69aa755ddcb244fdbd30d4abfdb70bb6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"69ad7026e7524785ae03cb70f51370ea": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"ISO/Iso_Iteration_7_model_5_00e-03",
"ISO/Iso_Iteration_7_model_1_50e-02",
"ISO/Iso_Iteration_7_model_2_50e-03",
"ISO/Iso_Iteration_7_model_1_00e-02",
"ISO/Iso_Iteration_7_model_2_00e-02",
"Ore/39_Ore_Callinan",
"Ore/38_Ore_Dan_Owens",
"Ore/40_Ore_FlinFlon",
"CDI/COND_surface",
"CDI/COND[8]_surface",
"CDI/COND[18]_surface",
"CDI/COND[3]_surface",
"CDI/COND[13]_surface",
"CDI/CDI_",
"Workspace/InterpGrid",
"Workspace/Inversion_VTEM_Model",
"Workspace/InterpGrid",
"Workspace/Gravity_Magnetics_drape60m",
"Workspace/CDI_VTEM_model",
"Workspace/Data_FEM_pseudo3D",
"Workspace/O2O_Interp_25m",
"Workspace/geochem",
"Workspace/Inversion_DIGHEM_Model",
"Workspace/InterpGrid",
"Workspace/Topography",
"Workspace/Data_TEM_pseudo3D",
"Workspace/Data_ZTEM",
"Workspace/Mesh",
"Workspace/InterpGrid"
],
"description": "Object:",
"index": 25,
"layout": "IPY_MODEL_7786752ef96d4998af4bda107dc3bd99",
"style": "IPY_MODEL_797cf9d3145349bba9ca01fc4f82715f"
}
},
"69bf8257d6db449eaff4be5d20af1d83": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_9adf6d2f6a1a431aa0a37935176fa266"
],
"layout": "IPY_MODEL_9e0cd3bebe9b4aa49c8f0f9c4923194e"
}
},
"69c054566b634b84a56df69a50f8cd80": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"69cf32caf68d4af8ac8eb888e7dcc6da": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"69d7be705a3945ecbc6608cb84bdf536": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"69dd99bbf8754115b8f95507fc9cd977": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"69eaa7b37f3a44eea67b757b184f6768": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"69ed5a0285024124b1b6132e258ec51e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_ddc553ef447047d0bfb149e2a14ab7e7",
"IPY_MODEL_ae3f9af09aba459db4686a8f225b880d"
],
"layout": "IPY_MODEL_7d22b81512da4f11bbd6eb67ae81c48e"
}
},
"69ef6a43012945d8965a9d62deac0b86": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"69f1318e0dfb466fa7d21ccd1c9181a5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"69f14dd65edf4625800cfca6fa47a4f9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"69f5eef9e54e4fe2b66e750799ef660e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"69f94679e7b54d399054c4a85333fb31": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"69fdc6ca629248bdbdec4d25f0d24670": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6a03b970e3ce460f89dae205462ec370": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_8f61218190a249b08e4bf112e17b90ac",
"IPY_MODEL_75d03fd252c34aaaa180c11ed9c84252",
"IPY_MODEL_25c9124e77384063bc7165d12a375821"
],
"layout": "IPY_MODEL_495f844dba3844e39a2ba62bcea56510"
}
},
"6a0abd79fbec4faa878087bb404d86d8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6a1cdbff43e24ddea95acde88f580ca8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6a200b553a704abeb7a3832bdfabe392": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_23bf8df94504441cad9368df0ff82ac3",
"IPY_MODEL_8a7f1717eaf44060aeb2433afcdf7fa0",
"IPY_MODEL_39dba6ce931f4561b4eb472e235a9b0f"
],
"layout": "IPY_MODEL_1639652d6be44b3aae8897e18da9cf9b"
}
},
"6a20e2e76a26465da234813eb25b8a23": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_2095650dbb174234b7714c8038ffa4c2",
"placeholder": "",
"style": "IPY_MODEL_34d554b6b63a4c0ca375069ac3223ed9",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"6a2159ed34f44345a6dd99c641e7c485": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6a27ec930ec64ee592e71d4a1dc366da": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6a2d5773419146b198a3aedcf6aca6b5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6a3056756a4646d4ae9d7d9e61213da1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6a342a3231d84ecfbf43022b3f100fa8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_76c21be23c4748e09d91ba879bbf0016",
"placeholder": "output filename",
"style": "IPY_MODEL_2fc48186cd89484491e456e5f6e4f9c5"
}
},
"6a3840d07f1348f88298f7da81104240": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6a3d2cc186be4208843d92aa518f42fd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"6a3f4658eed34162b1fd11ae671302d4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_db2151d0c1f3408899559a06d2aa794d"
],
"layout": "IPY_MODEL_18cd6d0dfa814fc09fd942834424125c"
}
},
"6a472a2dcdc84cfb8883e375ccd36dbf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6a4e427c909f42c091ddef4e3f0fe34a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_02c18b12e86b4466bbbfce526e984e9f",
"IPY_MODEL_606190e388f248798cd80de391a4ee2f",
"IPY_MODEL_c18ceac352ab4c5ab8b41f648bf72723",
"IPY_MODEL_e69609cc58254918801aa4ed912df36b",
"IPY_MODEL_1604e92e5b634455a2da5fac35cd05a4"
],
"layout": "IPY_MODEL_eaee38fe088a41ec9ebcff8f08930ce9"
}
},
"6a5357df5e534c34af01184eefb39600": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6a56ae804c3242cebced2319b6cc3c2f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6a674f2afafc47ea8fc4f4f03bc5de33": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Declination (d.dd)",
"layout": "IPY_MODEL_7ac0c4ccfec64632a3b6d6ebc6d97135",
"step": null,
"style": "IPY_MODEL_171c98caf3e74279bf89d59fe180e10f",
"value": 11
}
},
"6a679232d3b543fc87d3b5ee83db40e4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"6a689417b2f04eba8a41caf5a4623e41": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_2799b4c256ce4dc5b95cbedd312cbc65",
"style": "IPY_MODEL_bb604b763f9c48e08e744fddad736120"
}
},
"6a708a11f09c48e2862e3983e3666151": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"6a75f5c882e04954b49211073d0eb1e0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6a782b8a1f79415182a7b82d6f77974a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_2d200c1fdbad48bf94e252cfc923efe3",
"style": "IPY_MODEL_ea2bf6e5e67844b2a884a3512143ae34",
"value": false
}
},
"6a9128f0563f484bad4c3ceb0218eaa0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6a9f25ff806542f680ec2c81b9f57004": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6aa34ae70b614b7eb0ccad2eb0c2d3f2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"6aa9c8e400bb413e8f6b54b991ed768f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6ab87ec51f8d4541bad76176052216e1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_6c37cc67f276454c86d322c5e6d309ba",
"style": "IPY_MODEL_2a002fcca06b4ab9ad63a27fa35f964e",
"value": "Uncertainties"
}
},
"6aca875699264e5baeff1ceb1ec0e1ab": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6acb0848994f463688fff8b7c62b140f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6ad1b79f28b64603ae4ee98636250c66": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6ade1a5f5c8d415f96857bb6c9c89a73": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6ae2319a2e70415dbb514c51246ac2c5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6aede667f5054006937ad4e92fb5957a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_d9ba3e8ad04e4ef8b0369e2c4af93ff8",
"style": "IPY_MODEL_781a7216deb5486b87ad09518af4d1e4"
}
},
"6afa2c4a6b394bef85e4bcc172aa8e9d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6afb02e78b5f4ad19aba2503795b7451": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6b062db95d1e4fac88af4c43d1c422cb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6b0bacede304408a89fff55ea6015f45": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6b0f90178cc845ba90fcb04033797e79": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"6b1fbb5102a64a86baca48a8aa50dfce": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_fb77757dfba442d5abc965559e8c8c3c",
"IPY_MODEL_7b546c44f0c647efacbc6b474a9aca5a",
"IPY_MODEL_18f2d2eab21942f2b3bbb19622559132"
],
"layout": "IPY_MODEL_2b0b9f7b5c0346bcbb96019d00d2477f"
}
},
"6b1fdc4d963c4b7bbf751186c85bb21f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6b215d67854a4af59189422ff0892aef": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6b2edf43a3344870ae1da93b8a2efd2e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6b33f08aa8564c44a988679c13bd9829": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6b369b99cae643a691a6a099811f510b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_e9f476d941194b18af18f7da3f8520a0",
"style": "IPY_MODEL_521a6f5caed644858abd78423ba7360c",
"tooltip": "Run computation"
}
},
"6b3d9961a5ea4654bd0fb078ca3d53fe": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 0,
"layout": "IPY_MODEL_6c28e07bf1fe414dbb33696f96265d06",
"style": "IPY_MODEL_7245c4619d3b4f4abb165867f463f779"
}
},
"6b3e127878e542fd87ee5c1240e3ec49": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"6b432bea8d9f4a7c91eec5c1828d9c7b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6b4e38957ad948d1a42a7e3f04c82f28": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6b4e7ca765bb47a3960853d9e5bb90a5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_e415bc5358de499b86dd32c0325fd256"
],
"layout": "IPY_MODEL_5ab75c47b5244030a2652aa8340913eb"
}
},
"6b50fd70d9cc410b90545a22124bb96f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6b55f07fc6064527bbb1037dd71ad443": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6b5e424c5902436cab8df1071773b950": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6b683b58e0eb4dd29f7ff532d245bd0d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"6b6cb5be993c494ab8c7f109fa30d02c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"6b71f180f5f3436f81d3ca31d6e267c0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6b7ab604c35f4e9cb94c4b48fd4f1172": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6b86a6c832c440208c86886f752cd384": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6b8eaa249a604548bbd4e857e9b79176": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6b8f96b9bfd74a84a0de4e809a56e481": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"layout": "IPY_MODEL_419c0463b1cc4476b2c30cb402cb48ee",
"step": null,
"style": "IPY_MODEL_6514a6aadc6044a4ac93097b4b722835",
"value": 25
}
},
"6b96cfb22d924771827cffdb65ff153f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6b96e08305084ff186d73761a3846cb2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"6b97eca4cadf4e6885ea609fffe843c3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"6b9fd1bab680448dbf1b73f6bf777236": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 SimPEG_PFInversion"
],
"index": null,
"layout": "IPY_MODEL_f938d1afa150403c812b1a87ef6c0aa7",
"rows": 8,
"style": "IPY_MODEL_e7fb5d6b11bc4faeaaa2812afe471519"
}
},
"6ba57b3e145a4cedab13864a319f6197": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6baa2ac7d22e4103afa566113e7446cb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6baec8dc34704fa78152469cbeaba6cf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_30ce68aec59647c39fc41c1d27fdd324",
"step": null,
"style": "IPY_MODEL_7fa71bf877344abe9c4c7ee6c566b8a8",
"value": 1
}
},
"6bb6845f69484fcc9d89a7e5b2f2d305": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_a5f9b4ed51644b35bb621bc1672d7c63",
"style": "IPY_MODEL_2145406d5c324c2194e7a52c334e4b11"
}
},
"6bb8e12b652a41d09396b43c7529f3aa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6bbd809412b8499b98ab3dc13801a296": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_b1d42b73773849e38961e0a3e0e373bb",
"style": "IPY_MODEL_c7f5d0386e834babb3f3e59d799cd0d6"
}
},
"6bbe1b358ac541d890d4df2a2d018479": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6bc486d5eb5b4145bae280397abbd33c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"6bc6a2f5c97340aeb45463525b424a31": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6bc98e87b6084adc9ddaadae1f8ede55": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6bcda28389c440d8be7f9b4958cea2b3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"visibility": "hidden"
}
},
"6bd0a9584c644f0296924ef2ad7613af": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6bd85c4a406f46b3920465d07a93bcff": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"6be77a5fcbd24b9d8239554981e43947": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6bfdee7cec4846a380edd1b76ae47704": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6c0099ea38ca45998e7b05952cf47cbd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"6c06b4c4560242599f397ea7cc2cc4c5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6c1409bc93fb4f83a696a097e4d20b4f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6c1780d998b3495c9729f2605e543af3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 .."
],
"index": null,
"layout": "IPY_MODEL_1d701a3187574f6d9b14b156df48f34f",
"rows": 8,
"style": "IPY_MODEL_1cafde087fbd4501b835ed7be4ee3b29"
}
},
"6c2560e3c68c475eab549da2435567be": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6c26ccbda64f444db58802034ff2a6ec": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6c28e07bf1fe414dbb33696f96265d06": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6c2d7e63ef58417bb48bfd46e0b29428": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6c36b91a225e4e11a7f6c79b8839ef53": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6c36dc3fe8ac4fd59894176e177c0726": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6c37cc67f276454c86d322c5e6d309ba": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6c3ac096a46e4402889b58e5213c7b95": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6c3dc5eb0ff9456d988b76b11dada9da": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6c40bee334c54db7acfaf10ca3a87413": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6c4f10a050f343a18aa8eca38317a40c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6c585ce2ce894038b8c130fa88fffa55": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_bfeb0d1e70a3423b81a8cd2ee9f35ba2",
"IPY_MODEL_3477cd61f2e64d5c986d92c09273d6e1",
"IPY_MODEL_d036b70fba4b42d6a893e09b38029a2c"
],
"layout": "IPY_MODEL_ecf1ee49374b4a03bbabe5861d870ef0"
}
},
"6c5cf42bda80499cab797b340609bf63": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6c5edffbbd6d4a38bd841160c9729eb2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6c63200e078f4eb99b7cafbc2694269b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_4b182c824f394726aa2c29a3a7b662bc",
"style": "IPY_MODEL_baf10f101ae64bedac420883daef8975"
}
},
"6c6b37ac5a044b42970a67f4895ccfbb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"6c82ca0548c44d9d998aa91c45829d3c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_74b1cc6a80174276b41c9ef1215f6710",
"style": "IPY_MODEL_04e3822850634870aee9307977a27f73",
"value": "Save to:"
}
},
"6c884f4fcb2d4d1190974a9219255ddb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_f3823371bffd4c8887987fe7b88ae63d",
"IPY_MODEL_5f34f0dd8fce4eca96be182196e05f48",
"IPY_MODEL_0fc661e338d9474eabc32c488655947e"
],
"layout": "IPY_MODEL_34ec8b3537de454e8738f081a1e29576"
}
},
"6c90be53d8ae4961a8739729dd6b84cd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"--- Channels ---",
"elevation"
],
"description": "Data: ",
"index": 2,
"layout": "IPY_MODEL_d35b92bad57448f1b4a763bb79b4e82e",
"style": "IPY_MODEL_e0ed6281af324a29abac07cdf331ed5f"
}
},
"6c957ec3e91343b1bc3d2821c55fc695": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_eb57583c62804837b5f5d17544c44c8f",
"style": "IPY_MODEL_9f4c73db91e546f4a9ca13df8e97c3c4",
"value": "No topography"
}
},
"6ca8f65f6bf240b0b006fd0ee7457817": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_6a708a11f09c48e2862e3983e3666151",
"style": "IPY_MODEL_8e141daffef942c38f78bc78398ca285"
}
},
"6cb4143e178c48b5bd699ba5510a58b6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6cb44b2635c14e2ea183e39976b920f2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6cbcaafee55e48bc89495c38d143d25d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6cdf1e6f029a438094b20342c0ba2c72": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6ce67e3c6b4c4fc9b425fe1b2a5fd84f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6cee97ce625647cf940cdb6017fbd5e3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"6cefdf62a50347849625ffd25a689e29": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6cf589a60a15462091731d868c05701c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"Model",
"Constant",
"None"
],
"index": 2,
"layout": "IPY_MODEL_010ac4c67c1c49c8a7ba55286d6bdaab",
"style": "IPY_MODEL_4c2a1a88a29d4096b74e59fc1e848378"
}
},
"6cfa5a50297f4cb5aa7f9ed2bf7d281d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6cfcf3c00c424362b165c2990170b6d8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6cfecd44f1b34885b0e6973618f33bcc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6cffc404455a4f28a88c07bc445fd739": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6d06ffc11a77472bb90f987d0290189f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6d131dc3b3814b59a0fe575db80fdff7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6d14fee2fc174171b92faead4fc1f90c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6d1da71d7b724879b59289e4e420a53e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_afab9cb858c84466be7a3389cefc6a31",
"style": "IPY_MODEL_b6fbc205ec8f47e19f77e5e2a6219c13",
"value": "Monitoring folder"
}
},
"6d373953afc543c394cd76f31254ccdb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"6d3b2deb342948f9ba6e3b672b100d71": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_d8bb741e2e1e45a5bac39db98de9889b",
"style": "IPY_MODEL_d8c84a506d9544229ecb9aaee012b605"
}
},
"6d3d5d4690f44958a6c374a1e6ca3944": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"6d40d60a239547a6927b537c7a236421": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6d461dd78fa74862a7f4c7b7d937da92": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_4f2e91a104cd4ea595f066e4edf818e4",
"IPY_MODEL_008d2e3c7cce47a6b16c907c2e92e265",
"IPY_MODEL_0f25a11c8d7f4e45b4d33c641d733495"
],
"layout": "IPY_MODEL_6946cec642c048439bb873a054b03991"
}
},
"6d5de105bb8b47c8a615f0348a39fc06": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6d795643a1d8473c920f8898963bbe5c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"6d7aadd0016f453aada86f25985764d8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6d7bb5bf6a0a4d2890a770c155b05efd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6d7c0cc2625448328a4b8ba17c015d45": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6d7d277c1a4748f989a4a2e8ac995c83": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"6d86e3f0473a402eb8a823ac28a3555e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6d8a87d5990c4c64a714f9b68c6a0b35": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6d958e02302b4c09877297bebc5cf36e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6d9fa03924b94f6fae3d77bc0ed2e61b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_6a1cdbff43e24ddea95acde88f580ca8",
"style": "IPY_MODEL_42e835b2c55b4953b98c18931c04652c",
"value": false
}
},
"6da1f75b2ff849508d10fb2a379baafa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 .."
],
"index": null,
"layout": "IPY_MODEL_3dc3858b827c42538257539ac47704e7",
"rows": 8,
"style": "IPY_MODEL_169c1242564445858c3e51ff9f8a3357"
}
},
"6db12d73dfec406ca964293053647d75": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_f937f32c9954406a8d18b1e67faf564f",
"style": "IPY_MODEL_8248803b29b44f7090ed5a5a044c58b7"
}
},
"6dc2dab5cfdb49d688fcd592917c0882": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6dc785d3067d4e61bee621f6bebdf638": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6dedd44a64bd40879b659150bc882609": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6df53b1d882f43798d826a43a8905de8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_0543545c6f72422b97ab763e05739489",
"placeholder": "output filename",
"style": "IPY_MODEL_108a063c4c7e4e40afcba91b87d3825c"
}
},
"6df7897ce688418cb6e6edb10ef2a576": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6e01aae78ab44638ae60389e5cac2dde": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6e0917370fbe4c98b47b703324ef8fb9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"6e24d119236248f4925d4c828a3b5074": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"6e28e7926274495d992cefd7f7b047c1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6e2ca753fc7445cf814c685b133dc56b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_c7c9e9381647402ba69078489eb63c0c",
"IPY_MODEL_f30e1b415955420b965a4349bc720184",
"IPY_MODEL_73f766d527f743a590f135ed413c08ed",
"IPY_MODEL_a4b8a8dbfdce4599b202c36ea4a47f69"
],
"layout": "IPY_MODEL_c48d349f69ed4e93a691d0b65c884a92"
}
},
"6e394d4781d046f69249ebe8eb767a92": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6e3cfde3d14c4a16b12934cf6db560de": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6e3eb20c79974c6993f5bb7ef60e08f1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6e475b682738488191afe115ffe81389": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6e48bc2d20ad40298fb054bfa6df5a78": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6e491322650641d39bd44d34d4c155ea": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"6e50d036a2554a0a8a15833d23907326": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6e576993260e4e83a0bf9a08370c2c12": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_59e5b831a9524c9894c689a844dd7551",
"style": "IPY_MODEL_6e3eb20c79974c6993f5bb7ef60e08f1"
}
},
"6e66e56229234e2d926fe132a938faea": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6e7c74b01f174d07abeaa9ec91ea8e3f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_3c4b03dca7444f06acfadab08b250836",
"style": "IPY_MODEL_dfd739de8c86499787abac273531f9b2",
"value": false
}
},
"6e9441ed43fc439682abacb54ffa8c88": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6e9feeab3a7b4712826318b3ecdab82d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6ea14637379f43e8b7d1f702199cc0ef": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6ea3ba3b018141089919373a64e6a328": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6ea767f7ff704c8f86983a5357575750": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_90d92ec7e59042bba0fb64ba6b00c3c1",
"style": "IPY_MODEL_3fe18d19e3e04770837a7e0fc8b5b26d"
}
},
"6eab25b017d9445fae2f01807e79f98e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6ebc89f23cc841d9a40d05dbe180d6e3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_2091733191974aa18b96318c346a7169",
"style": "IPY_MODEL_69848e0e21894f68ac519856f23654fc",
"value": "Workspace"
}
},
"6ec325c46c7c4bde950b39cb4aa0d39e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_ee6f57d6cbe64c699183ab1d5590c93d",
"IPY_MODEL_cbc2871e0cc34080aea848b370f4476c"
],
"layout": "IPY_MODEL_63552afeb45049c881468f8ffa0d9c6a"
}
},
"6ecb5d5ae82646ff8fe15a7b32f587db": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6ed90dfdfc8c4769bc167c1fb9377228": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6edf69e8aa9547e8a14715dde671e20b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6f05779f55154751b17bf6874d29943b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6f1d03892da04593a615179262249dd4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6f1e29c81dff47d28185f158a96ff0fb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6f214f9b0e3142a2bdbb0b7672bc388e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6f2c562170c540529fe66ab3d460296e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"6f308d1875c4403893a33008cde8247f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"6f31d09f71234b18a4ff17fc4a5e27cc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6f34e17f230541a7beaad6c9b29661df": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_c9914059ccbf45a587e3ace5b747f4e5",
"style": "IPY_MODEL_f29153268f96424bac77d47c79aa5499",
"value": "Save to:"
}
},
"6f5020031fb147c788352318c1042989": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_f80af9d27ca2436fa398c3b77b960b0f",
"placeholder": "",
"style": "IPY_MODEL_3f3a32ae8d5c48bbb3a3bf4df4d68237",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"6f5c1d731637471ebd651e2ba7ba44c2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6f7425371a4549df9e5a6a495d84ae86": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_9c7587fac40e481aa85cc234284716f9",
"IPY_MODEL_c4fc0432bb7b40d3961b6f4111b44b5d"
],
"layout": "IPY_MODEL_dcd59bed33704dd182c540757fe63ca8"
}
},
"6f747cb21e99404eadafa733d13c828c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"6f7ce94fb4454b408ab6d53be4e026a9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6f7e7e1d99124e80a87ee12dd9742ea6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"6f80d95ac7704f6d8f74773e45dd9a56": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"6f834183ae6b4407b704c798e50cb3a0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6f862ad9a0544e2a8946b95a7dde4da8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6f87c3e55715447f973bee51027ce646": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_ba9518df9cfc4244817377d174d33e2f",
"style": "IPY_MODEL_9283129daab24043b3a79ebc2153602a"
}
},
"6f8b7027f3a34266b3f7e006118e2201": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_0b5ed4698fd94d87add9bf8e3d9c340e",
"style": "IPY_MODEL_e193e826c53d4ea68075d1b27c145d03"
}
},
"6f8c0836d88c4e17b9ea4b71268973fd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"6fbbd3feb9814ab29a76b593505ceda1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6fbe09df009f44978569e062e87c03e5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6fd8b468ba12470d9ac66ba8309d30e7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6fe51962258342d890031da10cfd4c27": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_bc30f77d74464a3094c9d076fd0ebdc7",
"IPY_MODEL_88826ca6c4b8407181b44901c8099eae"
],
"layout": "IPY_MODEL_7b8c9a485bd94180891b603bc531ce5b"
}
},
"6ff1bcc7f90941479bb4e759e8696e40": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6ff23065f8c24ea5a47281c0a4932914": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6ff7f3342fcf464ea509529251933e21": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6ffa3f7071f448d28e86c70ad65aee13": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_5ea95053900c4cec9408d2fd1a4dc5e9",
"IPY_MODEL_ce273e52926645fbb79778812c2a1b38",
"IPY_MODEL_b899255ca93c4bedb990f8678f6cc3c7"
],
"layout": "IPY_MODEL_24a2f51b403f4950b0c01e4b047d1730"
}
},
"6fff71fde0dc44d6b316fbd6617f90f4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"70010f79593d4d618786da0db3ac8b4b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7002a19e3a524e8baee61788e4a3e20b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_f414f4ea8696424b8c7cd251ca02a1fd",
"style": "IPY_MODEL_6484e88110d64863a46a0179f43a0cc7"
}
},
"700faf6af837418ab28eb8e8a154ddc4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "SI",
"layout": "IPY_MODEL_0c9af69472f94792b6c9952ea37d48c9",
"step": null,
"style": "IPY_MODEL_88143fdef79c4cd78435cd4eb36f5d25"
}
},
"7019c86569f744f7a1cd90ecdd209f5b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7026f131d4ce4281ac4e35bc1a916022": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_01fa33fd57794efc895a271b2875a66b",
"style": "IPY_MODEL_485ae91e5b554d1cb7804dafdb97a1e7"
}
},
"70274e8b99d84860abb2d1b646091dec": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7037440a153b49e8a9b9e04abc0f6119": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_1905ccafe3be40d0a00db8756e73e35f",
"style": "IPY_MODEL_589c44beca37403285dcf3d7a062fbaa",
"value": "Upper Bounds"
}
},
"7037649efdfa4689807e78d608161cfc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"703bb9858a2046e2a0799a750c2bc553": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"703d59a84b3b494b9039f32afb13fdfc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7040f05c063e4a6eab13ff23d08e60d9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"704656b90ca943109c5677e61ee713c4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_04f07b728682493e88cb5f38712d00a3",
"style": "IPY_MODEL_c11cadd4fb6d4a1a80969551993900e1",
"value": "inversion Parameters"
}
},
"704ea29aec7041c194584443d3856b3c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"70500bcf16d4428295766ad4e9c9b86c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7051521571e8447fb062b3bac3c035b0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7056d5f68dc14a5aaef83829214543a9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_af76893f9e01404f965ec86c85b067b2",
"placeholder": "",
"style": "IPY_MODEL_6f214f9b0e3142a2bdbb0b7672bc388e",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"705aa546d0aa4119b6fd3378ca40c584": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"706279df8ce347b6a2278bb2bc8ed9bc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"7066ba0d88814eaa9974a5009ede31ef": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"7066cd90b8564625bc14c2e0ed4ff57a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"706ca36806a042a2a245ff84466f89c9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7077b41c67d0434aab6812baa849cd66": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7085c4abca0040c3b198f349dff3dbde": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"708815012fc94291a8196ab69bc69d0a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_fec542f2a45349f0aeb76e240f03bf44",
"style": "IPY_MODEL_e67bc752cfc749589ba011d9e7b1271b",
"tooltip": "Run computation"
}
},
"708b6b3637a54b52ba6f1312304b7661": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7095bc30d2104406ac3fc80771dfd9b4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"70a24057868647abab80f553ce27fde4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"70a6062665c645dc898480a276f6ee34": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"70a88381fb9d4e00ac9d907a17456bc3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_1de6a9cda5c641df9262884ed1571719",
"IPY_MODEL_ef1c0cc44ac94f688dc615a8b7613730",
"IPY_MODEL_388cf48f0eb04f8baaafa9a81b660017"
],
"layout": "IPY_MODEL_80ea9612b82947919b96a158fa95a849"
}
},
"70acfb648a4f44d68aac886179405588": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"70aeb97c85644fe3bebb5bff2250ee67": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"70b2759b0db6497497517ba7fdc64445": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"70b2faf51be9452e9764041fc4e0fff9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_47644fbdbe7742e09cc11bb7007c53c0",
"style": "IPY_MODEL_79685ddb65c54ae5b75e651112fe2f3e"
}
},
"70b583b5d3354284aced6b8174c90cc1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"70b59ba0db1e41c6ba469c3bad866285": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"70d17098592d42589edd9d6b2247a2bd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"70d35643f02140edbfa470d1f7bcb926": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"70db53a5e8894cb782d85349b6f51237": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"70dc3ca5d65746ba9e69385f3a02d4aa": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"70e7a47712bf418a98b143892995e8fd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"70e83ca55079483b8eb60429d37e97e3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"70e8eb6259094861b30b73765ce31188": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_fabfc2ba84824691877e5e9a4fa78c98",
"style": "IPY_MODEL_5950c149e62740c18342381bbe9db08e",
"value": false
}
},
"70f250696373449e9ebda4e22d5bd66d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"71063b4c2c3941298832fc6ee0384347": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"71096043a2384bafa1f5d2a24be92924": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"710b199614d446459e14ed2f0020cd62": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_7d1894fb403c403f859cfb749408821c",
"IPY_MODEL_9679393648bc489fad06ad3d479c49cf"
],
"layout": "IPY_MODEL_7ea0217243f54d1eb1d771e5bbe59acd"
}
},
"7118f625f2a348f393e054be7899ebc7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_d4252a7fd472405b87725f74fe10d2d0",
"IPY_MODEL_be5d28df6b6d4bedb9830628533dfa8f",
"IPY_MODEL_b2eac11b109f4ac1b57309532a5b5980",
"IPY_MODEL_1ca18da6649940389cfafc1e8a8a6838"
],
"layout": "IPY_MODEL_a97d9d23c7a74e69b859393c06b43794"
}
},
"7125db85a1ea415cad6658c997946cb0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7127bbb60ea7457daa43b3cb95af8ada": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"712bd20ce8d84fa78e31137eaa541729": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7133642b55a3447badbae6b7b373ad94": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"713a07ccda3d41088a2f8496030d78cd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_51a689db533b4a5c96908d5c1cb4f24c",
"style": "IPY_MODEL_d94578954cb845efbf77e13a16f18a88",
"value": false
}
},
"714029b9416646b3afea0b7e7afecc11": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7145d2c647244d88b046f21b293ca057": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7146ee4452ae4e5eb145b4858800b3b5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"7155dce33bfd40f4a367ce698cb4ecea": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7162808a4b7a4fb9a5954a77b43d4cd7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"716bbbf72164478b9dfddbbdc7c42adb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_a636b2eeb20f4da1a65b2a91c452a4cc",
"IPY_MODEL_aa1248e17ecb4ed4af3eaf5fb2869d86",
"IPY_MODEL_4b54ac8d3cb1402b8137611f679e8660",
"IPY_MODEL_86e9a1c29b8f45e08dd119045c2874bc",
"IPY_MODEL_9966a8919be3459183a6c4a18b742d1d"
],
"layout": "IPY_MODEL_eb1ae70c354d4cf38913a614763d4987"
}
},
"716d9f4662c44ba5ab6e4dc0eaef33e9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_785cdfbfb06e4682a3bf94c7d25d42c0",
"style": "IPY_MODEL_bd85a3f97b0445c3b808516359fd1cb6",
"value": "Uncertainties"
}
},
"7170d2b395214325b254ae3429f2b2dc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"7174bc8f4ccd4a1597413b1b7c343a57": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"717c2f5ea5b44429847de581178bd7d7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"717f667861b24460a00cdfe375ee3a43": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"71810ab543a34439afb628dc2d016768": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"718242644dec4e47a3b5195a635ab7e4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"71954b23553d4f18b0b69a33a2b8675b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"border": "solid"
}
},
"719b512c97f44d7da1d5201e0a4df362": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 Temp",
"📁 uijson",
"FlinFlon.geoh5",
"FlinFlon_dcip.geoh5",
"FlinFlon_dcip_v4.geoh5",
"FlinFlon_natural_sources.geoh5",
"FlinFlon_natural_sources_v4.geoh5",
"MtDore_TMI.geoh5"
],
"index": 3,
"layout": "IPY_MODEL_a1a4b08f4eeb4f948c18180678d77c8a",
"rows": 8,
"style": "IPY_MODEL_c4eadd609afc41e9978d92db1d527bd6"
}
},
"71a8b91d856f436b8b0089e818dd91a8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"71acb776f85543178f50fcfb009718d9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"71b66f2c56a343018635afd913a6f4b7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"71bdccf267d847c1b963eaa94dac3fce": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"71dd3791b98445e9a167a30bee0e585a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"71e04b88d2db41e3a032deb3bfd91c48": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_04661605cd854fa8b9e16c833aa2e5e9",
"style": "IPY_MODEL_268b7b1b6f9b46f3b696e65d9eadd540",
"value": "Monitoring folder"
}
},
"71e5913dfe38482fa72d52f66ede6db9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_0607fe53e45d4861be3a78690dd3904f",
"IPY_MODEL_afd9a3607a364982a112d69137e6ba20"
],
"layout": "IPY_MODEL_64b241aeea9743f0b04dc250da26bbb1"
}
},
"71e75309f76e48408cc1f93a5ce5c79d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"71f95ed35f164ea8acf5c50a1b3da307": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"72005bc389a844088a28f49528d29424": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"720244c02e04466c8f33f4eaf506ef7c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7216edbad4684134b5864b819f743635": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7223333d5c544284b7dd92f6bff33236": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_f0d86e17777e4ad6832b0fd3ee07e976",
"style": "IPY_MODEL_83ae53bbff534c40983ac8b6d041b1b4",
"value": false
}
},
"722a018d08aa4735b6b4a9304d41e43d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"722cf721a93f4013986a7e6d9ec3c21c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"7234e530c76b4f4a82d0cb6caee80fe8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7245c4619d3b4f4abb165867f463f779": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"724d9827d30a4acc8e93b4dc24685a50": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_ecf0e4b365504d5a816d7d973c27e6ff",
"IPY_MODEL_4083a66ef1154e589109e9a42df092a5"
],
"layout": "IPY_MODEL_b04bbd7106ec471d9801d19472868919"
}
},
"725ac92695ca4a75924c4427efb46843": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"725c7e9bf7464b148ebb406fbb10031c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"725eac8a78414ef69a90c8cf90b03773": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"725ee8d8e3cb40eabf3e1a6116355d47": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_1da3f11073974dd4835cd210f6827f1a",
"style": "IPY_MODEL_43835173005e420d95bd4e3d0c5281fb"
}
},
"726200a94d494ab2a9c6da360d333f7c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_70b59ba0db1e41c6ba469c3bad866285",
"style": "IPY_MODEL_fb7a757739724007bc060b6e68882fa5"
}
},
"7269fc669d36456f8cf45cbbb218af72": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"726bd0c4965b4be9856698aa9fcfdf60": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"7275f66150c14eba8be4f5d6b9b8c896": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"72846319d66446f085dfc0a32f84c526": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"72a1bcc29b2a4adcb97fcd454dd29b25": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"72ae74b16b474782acb876380422d5b3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_f080eb28c9874333a0664610a94a36dc",
"IPY_MODEL_0fcd6378e10a47078c07f1a087345e89"
],
"layout": "IPY_MODEL_973715c3fe0842af9560cc44eb92de44"
}
},
"72bae4d6e81f42dd95e36aba7a627243": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"72be1fa16b444c1aa4d7ea5e9a20d1e2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"72c2cce6cdc249c4a93e30b33c2b529d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"72c866c66f1044cab4a92a56a655a9b5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"layout": "IPY_MODEL_b1899bf9ce3f4cd68ec86e5d46cbc3f5",
"step": null,
"style": "IPY_MODEL_61ed25d4d64c4e399ab58434dc838683",
"value": 2
}
},
"72ce5e20fc65491eaeff14d1340b3091": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"72d3f11716df4c5fa99e7d677c5760eb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"72e259a543f948708dea477f755d3855": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_457363e760994233a04f8c96db3d9796",
"IPY_MODEL_ab709689de6f450ca94327135051f7d2",
"IPY_MODEL_4466a03aa79f4aa2b6c930ba363b5ecf"
],
"layout": "IPY_MODEL_b6345bf68f7a4b2fab2c90dcc35b2a9d"
}
},
"72ea5901579a4159b91ba9234ae69f77": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_df67c25428d143b6ae3f6117ab7d8f23",
"placeholder": "output filename",
"style": "IPY_MODEL_1dc06e7def0f4adabeb187f3eafaa4c9",
"value": "FlinFlon.geoh5"
}
},
"730337d9c3f14e7ba387e52213e64382": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"730d4e54e08643319fda283f04791a91": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7312a5e691d14175bacead17ec8ac283": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"731510c850aa427bbdc72ab45c17d495": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_c79e700c4a134b7b956f7f9b399cfeef",
"IPY_MODEL_08f6e893ea5e493ca0a8919249595212",
"IPY_MODEL_05b43e3b5216477585ae8f87faf8aa94"
],
"layout": "IPY_MODEL_b6345bf68f7a4b2fab2c90dcc35b2a9d"
}
},
"732ac804ec95415abaae074b973e4dee": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_70aeb97c85644fe3bebb5bff2250ee67",
"style": "IPY_MODEL_bfa958de3e1044ec9eeb8b0853e0219c",
"tooltip": "Run computation"
}
},
"732c68536c634b18a37d2f5d6c9cd537": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"732d6957aac94f478a8af100f4b21829": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7332535fd201495b83671d4a266f9894": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_56f0f5da40c04143af43f15d5db52a1c",
"IPY_MODEL_9c93870d1eab4f5cb96335689b2026eb"
],
"layout": "IPY_MODEL_096338e795ec438692ffbe1f2b6e9157"
}
},
"7332a618e0d3439abfd8fed8a377e94c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"73343b2f6721465a903e0f6a6c18d897": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"734207ab76a8495a99ecf47b35d45369": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_7127bbb60ea7457daa43b3cb95af8ada",
"style": "IPY_MODEL_8ff196cfca8b4ee797cab0e3411b2847"
}
},
"734cd32adf5845e1a874fa68eee21da9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_de2283bf55914cceb18efd085990980b",
"IPY_MODEL_22f2e0328ff946c4ad9cd54e24ed3d4a"
],
"layout": "IPY_MODEL_c7ad19da20d2471d808f074bfd9085ea"
}
},
"734e6f64e891430eab98bb973a9851d0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"73553ce5e8534800b0d154cf487a3abf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_d6bc1a016cb0495fa7c46ea9a84275eb",
"style": "IPY_MODEL_33ab59c8af35428dab6e6ce590dca8d7",
"value": "Inducing Field Parameters"
}
},
"735744acec87454f891879ed18d7f62e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"Constant",
"Model"
],
"index": 0,
"layout": "IPY_MODEL_24cf633c520943c48bd94ee120a6aa41",
"style": "IPY_MODEL_9482bf24b9ba414db78f74727189b383"
}
},
"735e003ada754224b8cf21e6d362e0b9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7367fcf7bcc1484cb60e67428358ad49": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"736f604e9f83435487ce3811dddc5c83": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_e956547a1b9d42fab29ea934e7b0820b",
"style": "IPY_MODEL_bf4d2e7822ac452a95767638af78f216"
}
},
"736f60fbf78e4698aa4fd2239d41801a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_9c5f9f1062e34be88409e0f646aff1e7",
"style": "IPY_MODEL_9e1665e525184d0fa1e0bda5906e0fc7"
}
},
"7376396c5a4949d4be4e79e786ff8ff2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"737c3925aa5b4e1987ab2376034962c5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"738ba36093e24e5fb664c0f810321cd0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"738d14abf5cf4c8395d2addcc3d3b416": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"738e91e0c098445587493e233dcb7bb6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_8c36525a093f446b871647e3d235a1c0",
"style": "IPY_MODEL_4d746e79320147099377d45c51108ae0",
"value": "Offsets"
}
},
"73990c145b9f44e68d89e5b482d40abc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_f38d22899b9a44c3bd9047ad19b85bee",
"IPY_MODEL_4857eee966924af3b0ca816f0244ab10"
],
"layout": "IPY_MODEL_d26332a3e53a467193047f5f2124d40a"
}
},
"73a1a29cbc224c9f8c72fe755452fcb5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"73a6f3dfeba0431da029c3f00dc01b60": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"73ad0d9c47f1455b819fc9173e3b7509": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"73b53171916c42e3b52c08cd488ebbc9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"73c4a75757fe4d10b39b72495a514acc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"73c9d009def1427e8e7658b4d1243742": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"73cc43598f9f47ce986ef4169633deaa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"73d71143615e405a92cc56ca860416b9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"73e5ccb3e69d4c75bb5a77b9a8e0c6a6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"73f1967b38ad42e4a52d7665b1a0e4f6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"73f29830adae4cbea8b99f382158eb22": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"73f3709687fc42f1a13fb182d50ec04d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"73f3c3466f5d41edb684826e11f260f3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_282ec30710df46d09d80676d826fc527",
"placeholder": "output filename",
"style": "IPY_MODEL_f10dd7e9e10c4504909d1fd974b26db2",
"value": "FlinFlon.geoh5"
}
},
"73f766d527f743a590f135ed413c08ed": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_a14f7a47598649b9a478686e0be13be8",
"style": "IPY_MODEL_9320f1c1c54747b0a3e29e7553e04303",
"value": "Uncertainties"
}
},
"741b429c8996462db764e1ffd56b486f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"741ba2925d2f437392bc3fb8a54a327d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"742765e68e8348269e6040f6a2e33b1c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"7429323e63f642e7bada543a48d55aeb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_bbd5d5d8e2c34ec1b933a39fafa29600",
"style": "IPY_MODEL_fbd68f86d1f34ce18c17fe517130192b",
"value": "Starting effective susceptibility"
}
},
"7438159f55074a7eb48e6250eef85aa7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 SimPEG_PFInversion"
],
"index": null,
"layout": "IPY_MODEL_5124ae65f3e8439b9b46a0f32e297e03",
"rows": 8,
"style": "IPY_MODEL_5188d8deac7846eaa331cfb4d3d8b934"
}
},
"743fabe711db46c2ac55c69a9a65083e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"74445146460740a187240db575e5249d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"744ed20788f14c5d9a2e56a91ae2dbd2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"745477b3a9984f459c0edb4100559081": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7459701fb2494d109424d19188715117": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7470cfb1b96d46b5b1518fd1be1954c4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"7472d0460d8345daaf5e1eec9e9fcbbb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7476ef1528064cca8734821d6c2fb8bc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_c4c347aa238d4a93bf055b793529a36f",
"placeholder": "output filename",
"style": "IPY_MODEL_2dd7795d679840eabaed1dedeb67e61f",
"value": "FlinFlon.geoh5"
}
},
"747ca96dd57c41f29fcbe9f9020aa156": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"748cf3a562c9491ca441dea80bfa765d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"74992ff8e38a45eb97d5302713111be7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"749a951bb621490bbecf614456e6844c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_96d719a5d2d24b34bbf0c4a5356b6ce5",
"IPY_MODEL_59931415310f4babbce4d1a24243f358",
"IPY_MODEL_17fadfc029ab4555bb8c74c466405667"
],
"layout": "IPY_MODEL_e01649a11e7b4a09b96fcf36cfeadf4e"
}
},
"749e2b3c115d4879bfec43018dff0852": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_57754bf647b449b384f227c3c404efa3",
"IPY_MODEL_4b2119b379424ab28fb5b07ab609ba0c"
],
"layout": "IPY_MODEL_db6776900e304bd8b8254cdc0c16e798"
}
},
"749f75a2c4204ebd9d7f6d1730df1d33": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_3e5ede0012844db4acb8da0b4fd7230f",
"style": "IPY_MODEL_5ac3b51d4989400a8b739bbe4c2436ef",
"value": false
}
},
"74a1d915d1354dbbafaad851d31e6478": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"74a59cbe42ee449497c494746aaf67c3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Declination (d.dd)",
"layout": "IPY_MODEL_d277ac8e0f09485c80bdceb202b789d3",
"step": null,
"style": "IPY_MODEL_541f75a3015d45f581bf92372454faeb",
"value": 11
}
},
"74a6682635084187998b171c8acc5129": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"74aa0a549fcc41ed9dba106f9e99ff3b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"border": "solid"
}
},
"74b1cc6a80174276b41c9ef1215f6710": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"74b31ccae57441f29ac8024f6c13fa42": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"74b892ae8a76407294d7c56ddf5691db": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"74c46e8ebea549a4ac7a5412b37f5595": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_9a3ed8b4fe3f4048a38dcf6394a9c968",
"IPY_MODEL_dba3d34645964e5786e19d3bce8634c9"
],
"layout": "IPY_MODEL_b2aca1c318254115898c3fc6df36ba53"
}
},
"74c94a287bef4b79bd12c6f303a71675": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_4a5af24779fe49b3bce2fe78256cb253",
"IPY_MODEL_b42cbc38fde04aad8956892ec08cf973"
],
"layout": "IPY_MODEL_cd6793b99ba14c74961628ee0f296093"
}
},
"74cf95e143654569b544f94d1ca9d372": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"74dce751e9c04ee28909372d3e6cc1b1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"74dde3c9105440bda4c20f89f14bdbae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_1ade39a01982413d97920958c15c1e5a",
"style": "IPY_MODEL_09a5ee978de34f6895f865341bf15ac0"
}
},
"74e5d8593d574a969c27dfa5f301150a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"74f4681d0f0648b094a790b47ac7be4b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"74f65738528a4a4ba20f76edf6cb0dcf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_6bb6845f69484fcc9d89a7e5b2f2d305",
"IPY_MODEL_89c4a604557648dcbe37dd381adf1f76",
"IPY_MODEL_87aef8a049004c05bef4b741102dce5c"
],
"layout": "IPY_MODEL_24a2f51b403f4950b0c01e4b047d1730"
}
},
"7509e07440264f95b1fc9fed9aa58b56": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"750e406f444b43ac9bad3fc2306b01ac": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"751c8d653a9149999b12732936b7c1f1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"751d078ead4c4a559155d1fc408ba584": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7530253c0c6540c0b2db776d5416f1f9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7534988b4b544bd4be22a9851a7097eb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"753c91d8ea694078a7a25bf1d2f2a302": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 SimPEG_PFInversion",
"📁 Temp"
],
"index": null,
"layout": "IPY_MODEL_e2ee9cb08b2948afb3664365b94b6847",
"rows": 8,
"style": "IPY_MODEL_188a8e9cf57c43608091727b17cf9062"
}
},
"7542e906a76f47b6b9868f42df999e73": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7553f848fbe24ad5a2ea5cb204e9fa5f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_a9958eb647eb4d46824e54386560eec8",
"style": "IPY_MODEL_f865fbe4aea24d898c5174ef812e2a5d"
}
},
"75592b57b79745acb3788ddaa31fd3ea": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"756a667ec1ff4960a10d4be0bcaf131d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"757b33fee55b468c8bdf3625a95698df": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_cace3e9a8fb442998d2a62408506f7ac",
"style": "IPY_MODEL_8e542b9781dc4cf89f63895d029927b6"
}
},
"757daaa6a53440c1b8247ec78f3076c7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7581272dd5ce486db147323a2be0f303": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"758930b113344504a7463431c5f86dbd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"75906497453d48a8bb9821f12b4b4cc7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"7592b5e724204032a5075f41831ed9c5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_9808426dce504b0cbab63c7bf7c113a9",
"style": "IPY_MODEL_847576d09d53411eb82f7eba2ccd2db3"
}
},
"7596552426d24442a55092f7b9402b2e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Contours",
"layout": "IPY_MODEL_a06462eafe7d460a98499bfb10d8c245",
"style": "IPY_MODEL_3ca113c4c732450fabb18f9a8f1e5970"
}
},
"759c3eaba58340aeb497d889f5fd6dbb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"75a262b2c6534f678ac98210e070ed8b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_14faabcde14741d694e1a1c88d43d714",
"IPY_MODEL_409d35cfb3f345a7b3b2f233bff7805f",
"IPY_MODEL_69bf8257d6db449eaff4be5d20af1d83"
],
"layout": "IPY_MODEL_9ef24db5a14d41d58232dc7b4af24715"
}
},
"75a3afad2eb944f1a08bd69162e971f5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"75a477cd57e3466daf4b73f45f6c9338": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_2a043ea920d44fbaa575d6e11e97c162",
"placeholder": "output filename",
"style": "IPY_MODEL_bb2f06094c414190b6509ceafe4ff47e"
}
},
"75acc807e2b640958a32fe357a1fbb39": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"75b0a0c549ff42c58898d6b4f078e377": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"75b584b935e94ba7bc34449bfb0cd83b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"75b69c347e7a480090a1f7440baa889d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"75caf9828988418e8efe22da4432cdbb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"75ce9d0c907c4f97bce465a692166b8d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"75d03fd252c34aaaa180c11ed9c84252": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_be2143fd99d746b1bfb6c15910e440ac",
"style": "IPY_MODEL_6557797d8b5c43da9109b01e0408bcc7"
}
},
"75d1228ebc9b4d64bb8ab8dcd7a4450a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"75e59f1a1dd74fa0b9e7f34cc41d8f07": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Units",
"layout": "IPY_MODEL_e39e3196c795450bae51bd45b4cbb33f",
"step": null,
"style": "IPY_MODEL_2027e99fd60041118b35f391a3cf1a75"
}
},
"75e79afc119b43d2ba8797a7b586bea2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_a536aab8c70c4d89a86c685bbdb41cc1",
"style": "IPY_MODEL_96bfe42ca8dc405b8f803c25dd226429"
}
},
"75ef79603cfb420387a7e59f6f8e7352": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"75f1d72240214c888523495ab01b7ecc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"761b5dd0f2ed4d53875d727622d80e62": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"761dda0dd20a4a9d9dde308768f1eab7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_85f9b484fe834c5fb70b92bb762522b5",
"style": "IPY_MODEL_d982de08d9f54248a51f49ff0ce3f56f"
}
},
"762c79e102e34d1aa19c002475bbc438": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"76379eff601a4c629cc6045cc812bede": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"764b7a5dfa5e424db3d2b97c8579acbb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7651f98dfdca48b08e4f757d0c8e601a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7652584f532d4251a5e0165c00c75ffc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"76531726b0994745aaabc84bfdce5531": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_ae8b3042d4a84dd19a377e76c590ceda",
"style": "IPY_MODEL_d9f91b464db64396bd7366884884788d",
"value": "No topography"
}
},
"765b33a26c8147c39ca6dc7c6c271ddc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"7670d9ade4fd4bf7aac056c62c77f12a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7670fbbb33484f8b9f810a7c2c315f14": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_360549fd87a34b4e9c5e000165b4cf4b",
"style": "IPY_MODEL_872f683e0a2c4b08892e961676b597d4",
"value": "Uncertainties"
}
},
"76759f46a56941769f98b44225e63e77": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_f27dfc7444564488945ccf882dbba0ed",
"IPY_MODEL_903fdca037214f17bcd2e0fb92544dc4"
],
"layout": "IPY_MODEL_bc69c822e1734f529029b8e3e538921f"
}
},
"767c6227aef94be296f00313be472f98": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"76850c2bd32d49838d4a1e2daee2eecb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"768b9068f3ee4008b1d5ecdf9f45902f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7692641eefc6426f99be74403bb25e53": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"769fff05752b47e099d10e060c5e5339": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"76aec09391d9425180edf2bc474eca7d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_946121c4fe2c4363beeb2345730dc5b6"
],
"layout": "IPY_MODEL_66fb65397def4a5c8ae4e93bcb6b3304"
}
},
"76af39f5ef1645ee92b40055d0ef8a6e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"76b324a837b24829b900f7d1613fa37b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"76b73c08e653445db8b3214ed4ce9765": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"76bab9ab958e4712b15071f258e228c4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"76c21be23c4748e09d91ba879bbf0016": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"76c64d36ec794b98937241be19d90d18": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"76caff6a58ef488fa4efdef9a9ddea7f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"76d25a5b679646dc9abc287ac068cac6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"76d2b5c668a9463db8b6c8859710bc6c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"76d53d573def42a099d054223d94f623": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"76e32bbf549344af9ec5c16bc07578a4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"76e6a429b4794a02b01f1d46ef9d9812": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_d637e4805019476bb1b98d7ef537961b",
"style": "IPY_MODEL_759c3eaba58340aeb497d889f5fd6dbb",
"value": "Data Count: 0"
}
},
"76f43ee57a2b447a8e80efad064eb271": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"76ff0a7812834779aa1cd0a0401b7a67": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_b16244f6c31c447a9d2fe521a0eb7e34",
"style": "IPY_MODEL_6b50fd70d9cc410b90545a22124bb96f"
}
},
"77158451bd7a42a5a7989915e369203e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_77c5621b192841938bc0aed29e9e61c7",
"IPY_MODEL_14f554f605b942839d1be9602bbdf711",
"IPY_MODEL_47180a0bc91f4742a7ab41dca2c37554"
],
"layout": "IPY_MODEL_abbc2da4860145d892c80739d9e433c6"
}
},
"77193705864e4a3383570053aac03270": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"772887bd73ea40cfba4d3d6472ecfe41": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_9071cf8176a1412e83a9c028962bb540",
"style": "IPY_MODEL_74dce751e9c04ee28909372d3e6cc1b1",
"value": "Scaling (alphas)"
}
},
"77325e579a04488b9b17d527c35314e6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"77357158003644cdbdc07e2d695b7bb5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"773ee06541234535aaeb97dadb14dee4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_e3312a7d018c4e2e97ebc1b812a0c952",
"placeholder": "output filename",
"style": "IPY_MODEL_b1588f9b4fbd4e369b5dd1544c0b0cd4"
}
},
"7741474688924246902645787ae5f114": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Bxx",
"Airborne_Bxy",
"Airborne_Bxz",
"Airborne_Byy",
"Airborne_Byz",
"Airborne_Bzz",
"Airborne_Guv",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_fd8e6cffba4e4ea89e71ec8ac45f79ea",
"style": "IPY_MODEL_3d9d900d31884bc48af6f943661a6f8c"
}
},
"7749e471939c4f3c8439efcbd0e2ead3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"777cdd5525a642b5bd4ea4d49d564f02": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"777d9edcbb2449ba8dd0f47632bc6054": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_8b974c69616a40cb8541ea2081ee26a1",
"IPY_MODEL_5ee5b3b1f9714b66a5ba2b597e6dc9ae",
"IPY_MODEL_26f1e43407d9497abff3d7863285e0b6"
],
"layout": "IPY_MODEL_38c9c68fb6ef4fe69b6cc34ebabe842b"
}
},
"778475827a88486d9794bb6bc01ccfc7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"description": "Zoom on selection",
"icon": "check",
"layout": "IPY_MODEL_e14e806fddf344009ed0ae8eef581f6f",
"style": "IPY_MODEL_0761096737cd42398409dd423e04a0ca",
"value": true
}
},
"7786752ef96d4998af4bda107dc3bd99": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"778acb5ec1044c6db8c928b6b4c0a891": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"7795a252ad4f43a5852f4b4f28294560": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7798c388ca224618beddaf684d151614": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"779f4198938b44f890aa444cf65558f7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"77b0bd2658fa448bb958de5c8f54b1d3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_4263ce571f3148fca3259d55dc8ed458",
"IPY_MODEL_350bcce54dff45afb10e00dc354cc23f"
],
"layout": "IPY_MODEL_3eb1384286fa4a90b11aaa364f053be1"
}
},
"77b21b2237f840b487d5daa44fa4bb8b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"77c1b9284e3e457089a2ba994005d633": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"77c208e6a57d4177b1218d5ae36c4cb7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"77c5621b192841938bc0aed29e9e61c7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_9bf908ce3da9430d99dd375d7903b6e9",
"style": "IPY_MODEL_dc46c5022a7540bfad6ce9fbf4e72019"
}
},
"77c5daa23dba411d972969bf98be6205": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"77d76245ff824a8cabc14d9688b53a03": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"77eb9267d51b48ef8f71e902cc5fa4f7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_3b487d9d2b1f49ae8c01ddab1df87e04",
"placeholder": "",
"style": "IPY_MODEL_d0b87b7b71864c6db318fda8556e11ab",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"77f1eabba78f446d8ae8b0e47fe8e004": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_829fe740afed4d4f9d9a2f50688bd7db",
"style": "IPY_MODEL_7f26d9e5772c491e9a23212ca9a76251"
}
},
"77fe76a542e145f982802cd4f147362c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"77ffb15df2c5432c8fe2e442e75807ec": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"78065716cd5e4c98b98608c9f7208051": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7818087dc43041198c1c70c64b5de4d4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"781a7216deb5486b87ad09518af4d1e4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"781d1c5eb6b54f61a9f3a9d59b9a9a48": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Degree",
"layout": "IPY_MODEL_af7ff47343e245eaa9c762a02992d551",
"step": null,
"style": "IPY_MODEL_106a59cc85924abdad56c07a1a26ca46",
"value": 79
}
},
"782bce26d36442d591ef0d9777f98d85": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"782df0fd2d53473ba32a57d5e961e708": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"783219116fdc4ef0815fe8c651f11131": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7834969699684ac1adbc21a552acbefa": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"78378bc073cb4125ab0ebc872b486d67": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_1f9b2978c507463fa8ceb244c0cc233d",
"IPY_MODEL_3d28bc5fc2304bb883920dc535ef4ad5"
],
"layout": "IPY_MODEL_e11f53e6f35f4745a4c88ddf236af64f"
}
},
"7842a3b181ad474799ea7ccfdc8b2385": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"784b24311d4b472e93f8600e8c585cd2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"785cdfbfb06e4682a3bf94c7d25d42c0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"78621950344543e395b8a46fd080d98b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"786f782a1c504c61907d5d1c45dacaff": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"78783cec799340e488fdf04569640074": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"787a40ff1c3045b483f3c14f05d25196": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_d87df37dc7bd4395bbb91f15ca23b98d",
"IPY_MODEL_fe80586e43d146989ebd83b8604e35ef"
],
"layout": "IPY_MODEL_7e1aacee686b4e7092f851efd6fb7d55"
}
},
"787e61e310424891a1e896d952987a4f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"78819384698d48cbace6bf22a6da23b8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"7884cc4850ed4c83aaae5340610dcc56": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"788fcba4dd6a45d48f6f17a10df45228": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_b86db129946e4b559c398812cf456353",
"IPY_MODEL_7fcf5cf3ed664d5ca97a073e96d23dae"
],
"layout": "IPY_MODEL_6504ed0492864399bcb60699693c8549"
}
},
"789ea25e2fd04231893afcaaf0967055": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_e7d999a595b84bf9bd3bf64206df5388",
"step": null,
"style": "IPY_MODEL_75b69c347e7a480090a1f7440baa889d",
"value": 1
}
},
"78a12e19087f48e3b1d3fd257582e834": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"78af0f20e6ad41a393ba4dbf53bcbe70": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"78b3b8f3ccc14fb795c2e378f388b703": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_b255d7d8eec946ab9e6a15ec7218d96f",
"style": "IPY_MODEL_d8bfad1a9b7040fc8a01e27f53bd1452",
"value": "Uncertainties"
}
},
"78ba6ff2d13e4c76995e288c440909bc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_381efdd932c347aa91d38e7f1d0cb263",
"style": "IPY_MODEL_a3f7020aa81343a8bd53c3b098c458a4",
"value": false
}
},
"78c7642433aa4b86b7d9edfc1884a595": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"78cc792df08f434e9c7fe41149a97635": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"78d7e674db0c4aceaea65a4a78bf342f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_2dcf080fa89b44699d4b6fd0d8e156c6",
"IPY_MODEL_7d6b90af253742d192391bd418db1384",
"IPY_MODEL_adba4e01838f4d34894661e3b548a0c6"
],
"layout": "IPY_MODEL_80b8b1cb0a9142d099e95820e1f24571"
}
},
"78e58f4a345549e999f38a3a627ecda0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"78f7a343effd4485bf19f172dac5b168": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_6591cb122194409e9c9ff944d857ab2c",
"style": "IPY_MODEL_5b601a1924e04d93b87754de8cbea8fe",
"value": "Workspace"
}
},
"78fce94f298f4687993372af7a889702": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatSliderModel",
"state": {
"continuous_update": false,
"description": "Azimuth",
"layout": "IPY_MODEL_13582ac702ef42e5ae079ae4f7bcf9ff",
"max": 90,
"min": -90,
"step": 5,
"style": "IPY_MODEL_69eaa7b37f3a44eea67b757b184f6768"
}
},
"78fea3f9b94b4342b48158a5a0ec6af2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"79002766c8f5444ca9dc916253f5de4b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"79028a8856e04cd5835cd796e9f7ff23": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"790bbd2e178a4cf9836f700199ad0e91": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"790bc4c13c4d44ca9cbed96109b0711a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"790dc349a4bb4ff281d2a583c7298f97": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"79157a2f46574597ba0fd60867f70970": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"791a9d096a72414bb7884105a131e464": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"79243313576d433aa8efbf069005608a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_ce6e134a0d164184a559d2369d40eb39",
"style": "IPY_MODEL_8bc631d596c447f6a1cb5133f14bcd78"
}
},
"79276086b7c443d7a0aceeb5bf029511": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"792b6ffee27a445d9ad312fce7017d9e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_10b69da6fae64565995a5993f96d95a5",
"placeholder": "output filename",
"style": "IPY_MODEL_790bbd2e178a4cf9836f700199ad0e91",
"value": "FlinFlon.geoh5"
}
},
"792fab6230114565a24af2ec40f8f5d9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"793068b3246e46dd8ccee5c5fd75cfe4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7935ced297e44ffbbaf171aa28fac8bc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"793b631de2fc4bfcbc0a6024810fd11a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"794983b094db4ddabc047da8a0dd6264": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"794a36bedac344199d1db21c6e01c689": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"79564b506bd648768cf3aadfdb2fa4a8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"79685ddb65c54ae5b75e651112fe2f3e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"796e8138cb92409da45e2434a335ac41": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_994dab58ae50429d85d9c9987e3ea88c",
"style": "IPY_MODEL_1ecb552a4f4146999ba855606dca3073",
"value": "No topography"
}
},
"79734b71041745c0a9080fcd0372fa73": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"797cf9d3145349bba9ca01fc4f82715f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7994ef54257343329c4b484cb8aa01e1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"799b9c0d0de44318b23e4aa46910169a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_54b4384bdf6c4125a7f7eed1da45299f",
"IPY_MODEL_2a44eab5ed354e279f424d5cc2e1c218"
],
"layout": "IPY_MODEL_eb62ff8269734d0ab6ab4680024c00a6"
}
},
"799bc0814fc14d91bc780870d767ff84": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"799caf53aa434837814eded5df7f0ba7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"79a231861c02421f9134a2af6e61b1d6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"79b60bf6e858412094d32701f5d60fd2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"79c3b81dd8d64fd6b2f1306a49592e8e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_6f8b7027f3a34266b3f7e006118e2201",
"IPY_MODEL_1d954e10e0c24db6945d2710a57b0a65",
"IPY_MODEL_3f3ee41d33574b2baa6ab3f8240e49f7"
],
"layout": "IPY_MODEL_bddbf8ce060e40d9a24d284ea8c649e8"
}
},
"79c5e6fe9fc345b790dccb04138eafb4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"79d3132cea2f451eb80a3b340bdd1fdb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"79ee7a98361e4a64899f4c1141e4587a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7a1c5e0f02f04230899574cd92b6ea8c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7a203d1fae89454eb0f6f84f9ea57a2a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_97c70a21f2b04bf5bd2da2195e9b2dfb",
"IPY_MODEL_8a4aa5a061fc4a34a0cd89e1b4dc3018",
"IPY_MODEL_fef9d13ae44d466e8386ef45e99f3db5"
],
"layout": "IPY_MODEL_b6345bf68f7a4b2fab2c90dcc35b2a9d"
}
},
"7a235aeb66d14882bb65b2e0e35bcd5b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"7a24f62c5e884b5a81e41fc2674770d4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7a48469cbc7444768b7fa0cb76a62c9b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7a658544f2d4450881ba1d814c9d0f15": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7a67a830214e43c1b0ab1d685474a38d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7a68ca38dd794f0f91e804a8388a9212": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_6baec8dc34704fa78152469cbeaba6cf",
"IPY_MODEL_4e1ea951c4754facad6b6d68a21e8324"
],
"layout": "IPY_MODEL_bcd514b2f85a4977aa547d71c8f66c34"
}
},
"7a6fe573db524b7e9ea62063b34f20fb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_35fa684cd4154c7d989ca2c57ac2394f",
"IPY_MODEL_c2249171adf94ad8a443bbcb42a77fb3"
],
"layout": "IPY_MODEL_bd95a095ef184549a4c42e7dbafbe0c7"
}
},
"7a75af7ae17d41909356edb45845f956": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7a7bc7565ebb49c79a9cc684e1975f59": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_a28fc37f2f6f46faadeca52a7a038d07",
"style": "IPY_MODEL_3988fc706d80496cbfe657b2f5af01ea"
}
},
"7a7d6a00f1bf44cf861fd8c64eb7ff56": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_18040c383277420798eba656a1ce8ed0",
"style": "IPY_MODEL_cd1e3c16a72048c695ec423b205d7cb1"
}
},
"7a7dad73d1ec4f408ba139f82d3024dc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7a858519283248a08ae9bf5d23636438": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_9cdf08280e324b65a1cefc0db2768210",
"style": "IPY_MODEL_f95451519bc24ac79f13a9c0a9e70922"
}
},
"7a8fe4b7d0064a9aa36783675c6ed4e4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7a90dcdb66524b1c879a22fdb7283017": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_49df7fa5518948acb54ea967f0cf7dac",
"style": "IPY_MODEL_a18d71493bbe4d679c39bf25ebe99375",
"value": "Workspace"
}
},
"7a95871e38e543709f8db7b838d5c290": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7aa41120b377409d97f43666546ddc5d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7aa8a0d1a53540af91588da4b00fbf2a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"7ab3f88b3cee4889a23a63d7c1d63415": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7ab81316c5c448f991c7b8b99014f7f9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_843abb8fdf7f402a8a3d1b0f9b50ca20",
"placeholder": "",
"style": "IPY_MODEL_82781e2da7c242c3b2d054467427638a",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"7ac0c4ccfec64632a3b6d6ebc6d97135": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7ac5f1c493e845edaaf6ab5160c9bb1b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7ac6fcc6b140489cbbdbc20e29c7c02a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"7ad595fb3dad4133b05030c64583287a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"7adc1cebb8e94bffadf9a1d3324e45e8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"7ae0eceab2d24d39a42f6aca5955bdbf": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"7ae4488f65d84db199512665a374d196": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7aee08adcc8e419aaf02f4fbad5e3209": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7af8433230c44c21b5434fd90521fa65": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7af8c1ee1442472dbe9364cde6b8259d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7aff67011fe249f8a5a5f99d184183ed": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7b06d6f034ed4d1cb2bde4dc6ba3639c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7b097dbf7ccf47d888cbf43b3ec78115": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7b101e936e764b25b5b6fe6acc0af6df": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7b17cf54e9054f0a884d507ad53081f2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7b1b78eac02945de847fa00df2f97a14": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_4ba9218b40d441919216a433c6383075",
"style": "IPY_MODEL_38eef4bf455340cb9dabff6502c77f97"
}
},
"7b2a4fcfc4fe400c9f58d298e11f0947": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"7b342286deda406d8cc64bcd95695c2c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7b37d1580fe846fcb0a8f6a4662a9aca": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"G:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"D:\\"
],
"index": 0,
"layout": "IPY_MODEL_db0a797a0e3f4d40a5ea4e0152d3e258",
"style": "IPY_MODEL_a52fb972c3774a328eaab1ed2fd7204e"
}
},
"7b3ca286a16746d4a5423e588ce85119": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_d7f145a111b94c358209464fde859b44",
"placeholder": "",
"style": "IPY_MODEL_979b86182dc24733a7a1c88fe9010fa5",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"7b4a1c7f9c5a471fbc52d0c7a9de13be": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"7b4bbc7fd73e4824a3f3b8e5f9e409b7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7b4e7783a7254e83acffda50be39550b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"7b5224a244134b6aae2d68a2b86db529": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7b546c44f0c647efacbc6b474a9aca5a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_f7f8ee84cace4878b1b63bf6a06bf48a",
"placeholder": "output filename",
"style": "IPY_MODEL_b93423d825c8440096e528311c920a71",
"value": "FlinFlon.geoh5"
}
},
"7b5be9199cb647898c052f5752ccadce": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7b614bba27c94661baf682719170f73e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_da222917054144bd924df3fad5b59b1a",
"style": "IPY_MODEL_ebefe2ffaaf7459a8d8020332ee5a297"
}
},
"7b62c606cc6641939d520c90cdf83d5d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_d7f7b1378fdf4bb585f1e3a1de7c292a",
"style": "IPY_MODEL_3fb0b5e0c7d348ba943c58a1ccdeedba"
}
},
"7b6bb6bd08cb4e0f9411b0808417f70b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7b6f07f6c6704547b19ddb98f769ad9d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7b7e460c95074ad6bf08c55ceee1279c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_b4211677f9a744bbb9c82fe617107d7c",
"style": "IPY_MODEL_e1e562cb9711489daf74d4fc7fa2c9b7"
}
},
"7b853e669bf74a7bb1dfa958d554ecca": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7b8777c8fc9f47edb48010690ea42598": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_de7578b3bfd84c2faa80bab9a3d8e068",
"style": "IPY_MODEL_69cf32caf68d4af8ac8eb888e7dcc6da"
}
},
"7b8c9a485bd94180891b603bc531ce5b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7b98e899e9354b6c97f4036ee0c34921": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_5f62d47781bd4571ab9c1334cd66420c",
"style": "IPY_MODEL_973a76ade0db40c385ae76c4fe29f4a7",
"value": "Save to:"
}
},
"7b98f8fcbdc646689ede7f5e9c1047da": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7b9c6020e1e141f8a1d1ca44c24e4962": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "SI",
"layout": "IPY_MODEL_1b3dbcfb75474096bb42924a6116fa14",
"step": null,
"style": "IPY_MODEL_47c8cbc0e22b4efc8b401d12df0495dd"
}
},
"7ba03c6038304c29988dcb31087908c9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7ba0a6684ed64b4da4105bee13ae85a3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7ba224f209dd4d53a4ceb3dfdfdb4801": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7ba7a18b39b744c69d79822e003f5b03": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"7bb2b67b12db4925891eaf9eec5386da": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7bb43f7e4d3a4380bb901691383814fe": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7bb8a7d4d537455888a3c3b59fc459d1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7bc3eb768830416bb36ea7c9e015cc01": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"7bc516fe92a04ba5ac0f4523d3247b8f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7bcfa06d0cf94f2596655f7581ef5792": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_46037502a621470c88c7e5d3f94fec5d",
"IPY_MODEL_851cfa6d6493455e9b8b77a05f1ea5e9"
],
"layout": "IPY_MODEL_869b01d6c0cb4beb91b492f229dd060e"
}
},
"7bdb5742bc9346a1bd6ee540c07b9f34": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_e4b3c9c2485446fea11b4e1a75bdf83f",
"IPY_MODEL_f1b731595d5842a1b8fbe2c5fd6d16b9",
"IPY_MODEL_53d4b12c3bdb47d5b85a7afd70452746"
],
"layout": "IPY_MODEL_2ded96b474f0462290b47dd42bc9c773"
}
},
"7bde965a23804bd0be46dde4a11968fa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7be9c114c2114689b6a74d434f9936a6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7beca57acd754dd8990f5bc3aebd8c2f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Minimum depth (m)",
"layout": "IPY_MODEL_c5b07a23ef5f4112aeedf8d236745adb",
"step": null,
"style": "IPY_MODEL_dc6113148b5c42a69a619fbfed38e5a6",
"value": 500
}
},
"7bf86551e0f74347957592823952d86c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7bfdf10ec402449e80593116d2e3ca16": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"7c00f210a36a480f9207b8988956c7af": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_8f199f62f8534f4c82ddaef2db9ea2b9",
"style": "IPY_MODEL_68fee44f7372496e82833d3796930ea5",
"value": "Lp-norms"
}
},
"7c0981220248434ab3396670d87dfd06": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7c0a1eb023724bd28d812c95e171e409": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7c0c41691162450681867b9f47750c1c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_952776cab12e458eb75db7b55db5051e",
"style": "IPY_MODEL_54859b8a8f4848808d083b23fcc78eb6",
"value": "Workspace"
}
},
"7c0fbda343b14e6b9e82f64d0ce30b47": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"7c17975c60d0434db2a61eda381b11c9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7c207d7de70a4548bf3e48133cbdadf8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7c208fc742224d66b21723d2f049f4af": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_20478c72576c40679a0a20bcd5ccb616",
"placeholder": "",
"style": "IPY_MODEL_5d37efc5a2644828b15299543b5784e0",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"7c24588e792d43338a1af143f9876f46": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"7c2f8d311582488e9c54cb8e344be845": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7c3dd88a8fdd4bf6b06cc1a423e0b416": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"7c555694d2ce4acd95484d8b0e8d8e2e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"7c63c50cd62049418efecdc0fe66783a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7c65915734304dc098465c1e7583efa1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_777cdd5525a642b5bd4ea4d49d564f02",
"style": "IPY_MODEL_e030bb91bfa8421892b18865f4d4b55d"
}
},
"7c690a3db1f344289d1e9693ea9dd0fd": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"layout": "IPY_MODEL_7e2e44f10330417c93d286380768c165",
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\geoapps\\utils\\plotting.py:208: UserWarning: No contour levels were found within the data range.\n contour_set = axis.contour(\n"
},
{
"data": {
"image/png": "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\n",
"text/plain": ""
},
"metadata": {},
"output_type": "display_data"
}
]
}
},
"7c6d5ff6394245e6a2afe4d383814835": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7c772395d9b5455196d641873fa70a78": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_2b72bb146b7e4c2cadef1b66ba364863",
"IPY_MODEL_86c7ada5c3d14b4a9dca0aa9edab7a24"
],
"layout": "IPY_MODEL_d76b44229e894793b00c430619d6709e"
}
},
"7c866f1f8d284437a95dabbee88297b5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Values",
"index": null,
"layout": "IPY_MODEL_8120613b5c7847e2af0044fe20166712",
"style": "IPY_MODEL_fccf0f3a656743a1b42c1e1e59f27865"
}
},
"7c8a81831fcf4af58a41595443ad5bd2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_334afdaced0d4146afb4765657acc711",
"IPY_MODEL_37f85d6bd893499ca8038116ff193bff"
],
"layout": "IPY_MODEL_7f275be1227b42edad0b83f9d63944e8"
}
},
"7c9e4cd4d85642e2b59386ae3d7f4788": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_293462884c5b44298a355e186f055708",
"IPY_MODEL_2d30609592ca40d3b745f214d4a026b9",
"IPY_MODEL_bdbfa87e62b449fe872bdf17c80b0e03"
],
"layout": "IPY_MODEL_6946cec642c048439bb873a054b03991"
}
},
"7ca24754621845c789d5cd10ef1b7b41": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"7cb01fc2ad254b4a822413bd588ae92d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7cb19fbd67ff4048a55c1bc530291508": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7cba6dd9ae304e59896822d41c1e66aa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 SimPEG_PFInversion",
"📁 Temp",
"📁 uijson",
"FlinFlon.geoh5",
"FlinFlon_dcip.geoh5",
"FlinFlon_natural_sources.geoh5",
"MtDore_TMI.geoh5",
"tem.geoh5",
"test_forward.ui.geoh5",
"test_forward.ui.json"
],
"index": 4,
"layout": "IPY_MODEL_e3ef6c42c75343228db4c52fa69fd952",
"rows": 8,
"style": "IPY_MODEL_150a1e6fb581453383080222d0eec3c1"
}
},
"7cbdca572de34d5ba7d18738e300a6db": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_85e07edea95848539862018495edd6b4",
"style": "IPY_MODEL_498db68519c44ef78e16a8321e3aa985"
}
},
"7cbebab24de74242a63d32c8fb715e71": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_edd2b5cda19041b3ae95eaf078c36346",
"IPY_MODEL_fdd3fde730414f80a6726b279bfcee60"
],
"layout": "IPY_MODEL_e50712902f5c402f8882ef1e7018ecc4"
}
},
"7cc5f8c9ba1a472e8e909f5c2831f18d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7cca73f91047454f8ec348e9e68d185e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7cd2deadf9ab41788fdcce8d64a7ec2a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7cd50478f05e4c30b3c95060c015578a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7cdb0c9f17f840f7bb9645f2080f7857": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"7ceb6b6abce64e5284316029a92d245d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"7cec4a3a2dc543d2887189e23c792c92": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"7cf4dd5a92794ffa8e1275c3c4949fb1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_a0041488bdd04d568f277326599e941e",
"style": "IPY_MODEL_8a11c231788f488ca6821ca7a3fce393"
}
},
"7d01ddb62f5d42d396bbab65fd0961d1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"7d04045e5e374095a775a91d28c2890a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7d0c66ae50a742fd85c4cc3850195bb3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7d164253156e449f8d3dc0e095257967": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7d1894fb403c403f859cfb749408821c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_a31a1a3d4efd4de6bc9278ff17bd09af",
"style": "IPY_MODEL_77193705864e4a3383570053aac03270",
"value": "Save to:"
}
},
"7d22b81512da4f11bbd6eb67ae81c48e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7d31d3cb56c14a459d9bb823b4754b08": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7d3363055ef743ac94d80dab3add3aa6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"7d476c750adb4cb0992157a5eb3d8c30": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"7d4b13062b1b461b9e94e9a2ab38215a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_aab05cecae5f402fb85ae7b072ca6ef0",
"step": null,
"style": "IPY_MODEL_afdf26d4f58f432ebbbef25a7210f539",
"value": 1
}
},
"7d4e17c1945d41c0ac3ec991b2543086": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_ff5417bb7dda4fdabc674858caf1fc69",
"style": "IPY_MODEL_b4ee416c06584f46a0e3ea9406269dfb",
"value": "Workspace"
}
},
"7d4fc464b01a49a4b378ca5f3b56ab48": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_fff75860115c470893fd558eb05bcb9b",
"style": "IPY_MODEL_c24d82bcbc1042d29f384226f7584a57"
}
},
"7d6b90af253742d192391bd418db1384": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_75ef79603cfb420387a7e59f6f8e7352",
"placeholder": "output filename",
"style": "IPY_MODEL_01f6e723fde24fb3bda6c4d1e9e2f14a"
}
},
"7d6d842b445a45ec9d42701b1b2fc7bd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"7d6e211ac3b84f51a2d1fb784cdb8871": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7da161441cba49f0977206939dd840e3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_23f8d2b4fc62490998feacd8bcca1836",
"style": "IPY_MODEL_c0f0fb74fb4e4e73b1c1d17ed7e588e6"
}
},
"7dabe82148cc4a9aa4199ad0d1cb71b3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"visibility": "hidden"
}
},
"7db05379854f47b885dd2c36c3c94389": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7db403fef4894ae5a66c9afabef516f8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"7dbd73c95f70464cae6ee6a6dacb1e30": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_30e9d4c07ab94b6a8e51f57d1ac30eec",
"style": "IPY_MODEL_e6f1455dac2e4d8d84486d69d1522b58"
}
},
"7dc176a396b841cc8cfd5064c69bcb71": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7dc5a06060f94081a09f4fcfeafc0ac3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7dc667fac7704e6182e458ee779af5fe": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"7dc9d6c8d86e4025bdd018fd5a3af493": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_cc151ca67fb14bec9540fc5c5258a414",
"IPY_MODEL_3add9eada5c240f78c8ec2031cda0ecc",
"IPY_MODEL_f5d3821eebeb44bdb2188f662d467ce4",
"IPY_MODEL_e31ab5c7e2154b73b62449d6030cf69f"
],
"layout": "IPY_MODEL_e7a07fa0b2e2442bb74ce792330b1893"
}
},
"7dd6ab7c4bf84c50b4fa24d66601ccfe": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"7ddc30d5c50e49eb8ff3e9f2f6af6ecf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7dec9fbbecf841d994261e57608f5173": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"7def0c40d39c49ea90bb7ba0de82f6ce": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"7e00f469ea444147b3d9b71a79ff208a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7e02e058cdc94691b3787728d55c4e51": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_a00628f5082c4079b1b85221213941e4",
"IPY_MODEL_75a477cd57e3466daf4b73f45f6c9338",
"IPY_MODEL_c474e53e54984282918ea5973926344f"
],
"layout": "IPY_MODEL_3ff6b19ba8204e57aaf6ba756bc66ede"
}
},
"7e032652883e4bd480abf3678c856497": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_58eb6ac7ef964035b80e79a8e3d03881",
"style": "IPY_MODEL_47cd84ea43874fcfbc0fe309943fd0a2"
}
},
"7e0ff1afe6ae43f9a10256004d571e0f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_cf1a9bcd8a7649a49d1f1e12e740db06"
],
"layout": "IPY_MODEL_c16d3f27609d468b9e3fb5ed26d99837"
}
},
"7e10f642c9194b728ca31ab40663364f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7e156dca7be94da7be4d64cfff3c5043": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_3c0a6b71e91649769bf170d61f7458c0",
"style": "IPY_MODEL_7a24f62c5e884b5a81e41fc2674770d4"
}
},
"7e17b98ad1da467e8c59e62acb0473d6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_c1040d9b53464388b6b182f247b14048",
"placeholder": "",
"style": "IPY_MODEL_92ac7321e7fa4d57a81a024d8e439462",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"7e1aacee686b4e7092f851efd6fb7d55": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7e1c5abe6b594a3fba60e1a2cba8fc4b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7e2a139260834c129acdbb3820c16bec": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 .."
],
"index": null,
"layout": "IPY_MODEL_cfeeaf0263d546a4a3507019dced61d5",
"rows": 8,
"style": "IPY_MODEL_2a74842d57814c2096ba9106ab665985"
}
},
"7e2e44f10330417c93d286380768c165": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7e30a942f0544612819e0b15ae43237a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7e551f58673c4497b6faddf16bf0af40": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7e5a3ee405d14e7d885045d8b9becdf8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"7e6740d23e5143a4b425e5d95857f58e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7e6e72b14d394028b3c39be0f70534b0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"7e73b26f347a409aaf5b18a1b44079af": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"7e81a596ad8046578109807b063dcb15": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7e8924fd0c10435390f1f71c985dd580": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_18ad5d76068649b4b8783c7985bc8843",
"style": "IPY_MODEL_08bd2252a5c84bd69492115a25cebd9a"
}
},
"7e9ca8c5b55a44c48362ad084465d9ce": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7e9ccac2ffde4517abf57427e5044ec2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7ea0217243f54d1eb1d771e5bbe59acd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7ea3a8118d254accb45ad147859542eb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_4f06c0027e9444a49b13ba5e1f2b153a",
"IPY_MODEL_dba1929a09304a4191b3d6b137892bef"
],
"layout": "IPY_MODEL_826907ab1f814343b653e2b70ba3627f"
}
},
"7eaabecaccf54de7a54e728117bbcc37": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 SimPEG_PFInversion",
"📁 Temp",
"📁 uijson",
"FlinFlon.geoh5",
"FlinFlon_dcip.geoh5",
"FlinFlon_natural_sources.geoh5",
"MtDore_TMI.geoh5",
"tem.geoh5",
"test_forward.ui.geoh5",
"test_forward.ui.json"
],
"index": 4,
"layout": "IPY_MODEL_2e9636190a5d4358bfc0f46aa7050e6f",
"rows": 8,
"style": "IPY_MODEL_6b96cfb22d924771827cffdb65ff153f"
}
},
"7eadf5225d564be2ab59a6b9d399831f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7ebf90bebf834bd3a63d26e95a863fb5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7ec60e0d90014b6baf4abab69c8994df": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7ec892cfd6b14a489aa0e221b499bd8b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7ed1129c518a4a938ef55bced56a093b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"7ee0fbd84c4049acb4d8d6e4b4f2fb4a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7ee2d0a91c5b4480bb5267d61a38eea3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"7efa7c75cabd4c1a8e434910cfee119c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_f6e3794ab4aa45a394fbf773920d5143",
"style": "IPY_MODEL_40b5e1e323364e9c8ff59ade3e61e72a",
"value": false
}
},
"7f02375641f141928dc0280760e89db4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7f024e6e109940a5abd8d2fcb8c61fed": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7f0524bec68d4accaa50cef1845ff290": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7f0ea19a331d452aaed695b281a0c305": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"7f147d10a04c4ba7be93e04a6f65d660": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_040cc8816c9344bb9967e68aae36b884",
"placeholder": "output filename",
"style": "IPY_MODEL_810f359bf03c411a8800b770185f7d7f"
}
},
"7f1593a7ff8c49a484a0c7af3f31d98f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "CG Tolerance",
"layout": "IPY_MODEL_6636814b38c14c81b264bebb1d5bf5b4",
"step": null,
"style": "IPY_MODEL_b7bcd03c8d234dc69c4a22095da85400",
"value": 0.0001
}
},
"7f1d11fa4b6447578ba7fc7cd17bb175": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"7f2421604bb14580addeef1280aff0fc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7f26d9e5772c491e9a23212ca9a76251": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7f275be1227b42edad0b83f9d63944e8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7f2a5fb538dc4aa2942cfd73872d3ce3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7f2cf5f6cdf4422f9288a49d43b97650": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7f2f59cdce8346dba9016fbf996c44ae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_c89ab5290c3c429d98b721b032064a33",
"IPY_MODEL_dbce98e647b542a9a434e651cc9a0fbf"
],
"layout": "IPY_MODEL_b1863cd5604d4cb0bfde651ec014178b"
}
},
"7f3c1ccaea9d4e02a6b8192c23c02d9a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_6e7c74b01f174d07abeaa9ec91ea8e3f",
"IPY_MODEL_a19f954c6540464b912312e4652348cc"
],
"layout": "IPY_MODEL_9fc2aad2a2ab4c00a5a7b9c9e26c48f1"
}
},
"7f3ca18fec0144a9bba0ab34efc19836": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_59a4ffb349e8435e8a9b697e44d57d27",
"style": "IPY_MODEL_eaea13f9c104473ca307e38f2c1c5dca"
}
},
"7f51176310b14e62aca692e808e55f04": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_70e8eb6259094861b30b73765ce31188",
"IPY_MODEL_dbd8037a966947148b8a94f46edb27f9"
],
"layout": "IPY_MODEL_4148af3572f84aa6b7e492a834ab589d"
}
},
"7f55d488d1314a338d143eaa19673900": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7f5b75dbe45e4465920f220a771663b8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7f641050ee634cc883643f6c319a4b59": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7f7ad5e919ac4f2291af65a27f224b3e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 Temp",
"📁 uijson",
"FlinFlon.geoh5",
"FlinFlon_dcip.geoh5",
"FlinFlon_dcip_v4.geoh5",
"FlinFlon_natural_sources.geoh5",
"FlinFlon_natural_sources_v4.geoh5",
"MtDore_TMI.geoh5"
],
"index": 3,
"layout": "IPY_MODEL_ab69201d46ea4ce4bf409f434db0eb35",
"rows": 8,
"style": "IPY_MODEL_e77db73442a64af6b2663535d5c21444"
}
},
"7f7e3fc195774fd9b50bfac30254b592": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7f8b3d8abf84433697990d824de44c58": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7f9dcf0b57654c55a2141a5edd8a741e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7fa71bf877344abe9c4c7ee6c566b8a8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7fa8061aaef046419d637d68a75c6f84": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"7faa736465d948a1929987cefaaf9690": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7fafc4cc191c4a31933d1ff76860c35d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_4dcac8e22c1b48959608f0fe495c8ffc",
"IPY_MODEL_3a887bd3d698418ab2f6cd2ed35afb1d",
"IPY_MODEL_ec717198b569494c8e36c92f5542a9f6",
"IPY_MODEL_de1014820f45453392b5f8dd9c10082e"
],
"layout": "IPY_MODEL_8280bcf78ca4485c80189ae3134a7b80"
}
},
"7fb35a5bc53e4de1b6b928dcd0f1e20c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7fc73235441c45daa788927df9c62f55": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"7fcf5cf3ed664d5ca97a073e96d23dae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_df3c4bdae75844a590648a9dfef4dde5",
"IPY_MODEL_9c48655062414defadd0830c64bd5672",
"IPY_MODEL_af808231c9a94448afaf926336bd3c27"
],
"layout": "IPY_MODEL_6946cec642c048439bb873a054b03991"
}
},
"7fd4e978f9c34e7ab2413fe89fb1b3a5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7fe1df91b9f64524993147377152a67a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7feee0b31ea5484688eff6401b9263b4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"80029314256648ac8762239efb527b20": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_193bdb3c4e0a419b805372d7bf841f0e",
"style": "IPY_MODEL_74f4681d0f0648b094a790b47ac7be4b",
"value": "Output"
}
},
"800de3b2ad7342ebb6849e590b8033ea": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8011771d4af0472a85def897699cd61b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_42eb12ff6045414399f05bc6ba7fcb8b",
"IPY_MODEL_73990c145b9f44e68d89e5b482d40abc"
],
"layout": "IPY_MODEL_a97586b761ca491d89bc109dbe4bce7e"
}
},
"8030c6cf0e0c456ca0803df0e8f833f9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"8037322ab2a74668888737df47612ddf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_e2f00d54ea61442abff3c733bd4f0bae",
"IPY_MODEL_a4f7d6a8fa964d818c19d2ad87b7883d",
"IPY_MODEL_3e30c775b2774799b3998c5ce86b6883",
"IPY_MODEL_dc4bd32b83f148e99089c56e3d87739a"
],
"layout": "IPY_MODEL_bd86f5442607434e984140124a0a8ade"
}
},
"803f95f9cb8841c98eaeeec6f83ab1ec": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8053906c54664415898f7b2c38382813": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"805774ec25984065b2606942ca90bdae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"805efcff5a6540748ec36c160217cf21": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"80689e4116eb4d2ea776753e6badb829": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"806a4f1b724544659293647f66238048": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8078304a83dd4f958ceece326855cbea": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_d80dadc9d92c47d5af28a04e3ef194d0",
"IPY_MODEL_95a45d33f3c84d3ebe909eb5c57d539f",
"IPY_MODEL_ec5057d05bab436e98301a165e07f6cf"
],
"layout": "IPY_MODEL_c96b98d4658b4f25802fd38f06efc63e"
}
},
"80805b6875b748c796466a53fa2d30ad": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"80859cc9ec474664b4a0e308cbfac358": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8086853269fc4e9f828b4cb07aedec3b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_c2af48b2406245fa92de7742257234f5",
"IPY_MODEL_cb5026856a614c9e95c783131b337c1c"
],
"layout": "IPY_MODEL_8531b52705d746318ce185dd14bd9092"
}
},
"80873e194d404ce3b98767bb7c90aae1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_b7834764d40241a3a6b59b2c33595906",
"style": "IPY_MODEL_86704c407e1741239daedead9dd4a85c"
}
},
"808fec4ad4854472a50689214bd3dc76": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"80a1dcdc75404665b58c6154784de22e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Ore/39_Ore_Callinan",
"Ore/38_Ore_Dan_Owens",
"Ore/40_Ore_FlinFlon",
"Workspace/Inversion_VTEM_Model",
"Workspace/CDI_VTEM_model",
"Workspace/Data_FEM_pseudo3D",
"Workspace/O2O_Interp_25m",
"Workspace/geochem",
"Workspace/Inversion_DIGHEM_Model",
"Workspace/Topography",
"Workspace/Data_TEM_pseudo3D",
"Workspace/Data_ZTEM",
"Workspace/Mesh"
],
"description": "Object",
"index": 0,
"layout": "IPY_MODEL_dc858ff1bff6494698162f98acea0729",
"style": "IPY_MODEL_9b281c7ba9dd441a9e0c7456fe9259b1"
}
},
"80afaa56ca4b47729387d97c4bfc4a8c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"80b81ffe3b2747b08fa45c0a77416777": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"80b8850e485f47c6bb4b13eedb8025ae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_19163eeb75764a3ca4467ed63d9c2e7b",
"style": "IPY_MODEL_fa9adc11ce1a4074ba2bec69db96ba39",
"value": "Save to:"
}
},
"80b8b1cb0a9142d099e95820e1f24571": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"80c8426f61f14dd3956f47d98f727cf1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_e520b14a801545cca1a7ba9420c313d4",
"IPY_MODEL_a27b5a26a32a4c208d21986e3d9966f5",
"IPY_MODEL_5e3e2bf9aed64d1c8ec939ce7f419bec"
],
"layout": "IPY_MODEL_6946cec642c048439bb873a054b03991"
}
},
"80ce4071458b4e9ab8d25fbf89fdd5a6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"80d531cd438a446795011999177459ce": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"80e0651f979840babca1188a45113742": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_f70c07910dd54223b1109b6d393d826c",
"IPY_MODEL_3ee3c6a925764564aaa5633f068ac37a"
],
"layout": "IPY_MODEL_b34a23caab444d32895e1bf5d3f653ac"
}
},
"80e30208b40944f69580fe819b9837b6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"80ea9612b82947919b96a158fa95a849": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"80eb9b0886124018900dfe37a974ecf2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"80fc46a93270403181f5e398355b6b90": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"80fc587a31304140bdfe92cc17217a58": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"80fe59ef7ea34d85ba9695b7906c9bfa": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"80ff50a401a540e988cc3b0778d03ab4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"810b88e354fd444dbe6af5f3338016f3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"810f359bf03c411a8800b770185f7d7f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"811440521af14a3987148f5cff84d2d2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"align_items": "center"
}
},
"811cdd751a53433881ad52f76bed51c2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"8120613b5c7847e2af0044fe20166712": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"81476fdbe92644c097b275d91e490301": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"8149d70b9f7a45b8858e7c77f8c50aea": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"814fd20ebc404a66bbb30ec847983f9b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_0e79841935f143ab810c62a9e91c0183",
"IPY_MODEL_d72ef7c141444ca38144808182024c5c"
],
"layout": "IPY_MODEL_b5a172027b5a46c88e0b12974aa264fe"
}
},
"815bc491e38640bf81d5a1505d7657f7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"815c3ed2d5984322b197d8a4c346de14": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_b915d53930ed411aad908a78a3105b09",
"style": "IPY_MODEL_165490a2e0b144d59dedc60bacba00bb"
}
},
"815c4248411742dfac83adffc27c5274": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"815cd401bbef4083a0ebdd3fb58200c4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8164a2dc51c644b0903b4e4d0739aa51": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_b1f8392e3e3847f6ab00012a0b272717",
"IPY_MODEL_b4c32a7ddc15445da08dbe6ee8bffcdd"
],
"layout": "IPY_MODEL_7a7dad73d1ec4f408ba139f82d3024dc"
}
},
"8167af62dd3a41768763b2a33f5f3fdd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"816fe91312e2483fa22978e2ce43fafe": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"81786828574d4136a2d9dfea2153d3cb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"81873c2a61a14ce9817b9141fbe24192": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"8193e2a1a96b4edba35c7a552b640031": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"81954c675b584987a58d3b24e7d49087": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"819b47c7578a48668525dec23072179f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"81a38c2de7d248eabf930ac9353732c7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_14a8162c05f9459a8cbf3858675221a8",
"IPY_MODEL_8fd7e9ceeb24453197c44ec40a80f0eb"
],
"layout": "IPY_MODEL_b1dfa9330cd744a8a638a1836b0bd548"
}
},
"81a9a21fddc7489da2b4e5086b48d930": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"81ac7dc92d374e1091ada6b46779fa7d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_e7cddd47c4054fabaa39803a8613a971",
"IPY_MODEL_28b40a382fc442a1be218fd0e2e8525f"
],
"layout": "IPY_MODEL_057a2b7a28f14f1b9e2388741be187e4"
}
},
"81ad485aaca9409280816f9b37a3705c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"81d0e8d7c80740d69106d4c25d5790a3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_667550585f2a4c5ba1ca2a324f662175",
"IPY_MODEL_e9b216b753e648dfa4257bdba5da7e35",
"IPY_MODEL_03bff5bca897487f8036be5df99a72af"
],
"layout": "IPY_MODEL_293c605dc52341ea8ee2be6a080c85ea"
}
},
"81dbea05537444e7bed031787a767b5c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"81de48bc98904dc5be0b9e2b5166ea57": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_1b00d1c056dd4528b89582dd9d5d52d9",
"placeholder": "",
"style": "IPY_MODEL_1d2bbbac5d0245e1a0c9ed7ed2a17be5",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"81df76c04513490ba0fcf0187741a7c7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"820f7e0f20d2440589e60d974303e00d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Horizontal padding (m)",
"layout": "IPY_MODEL_bf876cd47d8c4f23a12dec4b3ee9c094",
"step": null,
"style": "IPY_MODEL_2db04c177dac4b909d87469887b5f4a8",
"value": 1000
}
},
"8222289f12004fa7a1daa557a11b0e2f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"82369235884b479db7bdc4a444558a6c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_1e60e7668ea043a295558c4bc5cef9dc",
"IPY_MODEL_f738b6c58b1b493fa970ead611452c61"
],
"layout": "IPY_MODEL_8b10d621a7e241a0be3e618807690498"
}
},
"82391593b1964398aec1421b85adb1d5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_d3f472e80fe74f0991659a57b8b4a9ce",
"IPY_MODEL_98cd50935aa7406d90e17e483a1b1cf1",
"IPY_MODEL_b85e4787b3ed46c5b41323e229f8d80d"
],
"layout": "IPY_MODEL_1a4a5271ca384011a754f72fa911a297"
}
},
"823e47f891c2401b8e29321f4d2caee4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8240ccd5367b476ca2bc392614881ed4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8248803b29b44f7090ed5a5a044c58b7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"824f1d61edef428ba9b6078836a1c2cb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"82528502c53445459c5b41c740b1a214": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8252a219a27942b79b33fd0c0d1257a7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"8255444031d54b01bc75495ce6fb221c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Values",
"index": null,
"layout": "IPY_MODEL_aefae14b630c47c7b7ecddbe61771b7c",
"style": "IPY_MODEL_75f1d72240214c888523495ab01b7ecc"
}
},
"82658e5d6fad4ca28fe74be8fbd3b13b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Amplitude (nT)",
"layout": "IPY_MODEL_058e624a4eb949feb70c60f8238b3453",
"step": null,
"style": "IPY_MODEL_234992f21bd9402cbaf3e6da1f8438a5",
"value": 60000
}
},
"8267aa484e7241389fe1c8f8477cfe01": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_393170b7b1dc4613995d043e59e564d2",
"style": "IPY_MODEL_d2f95bbb57674972b5f386d11f4a2e40",
"value": "Reference effective susceptibility"
}
},
"826907ab1f814343b653e2b70ba3627f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"826bcbea2fd54a789d7951c371dac6e1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_fb2ab7a2e792431093a4dcbf8cf9aee9"
],
"layout": "IPY_MODEL_0d8af902f302447faeb93bef3fa57eb0"
}
},
"826f690a013a416087c6053517d4f904": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_76f43ee57a2b447a8e80efad064eb271",
"style": "IPY_MODEL_e9b57f8603db4fdcaeceefd3fa521ee6"
}
},
"827260b1fdb14128a45fc6e1d2c4d965": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_89bcae3a705c4144b807cadb5263f983",
"IPY_MODEL_0b4ea22851164b53a06ac47c1a495d0b"
],
"layout": "IPY_MODEL_7feee0b31ea5484688eff6401b9263b4"
}
},
"82781e2da7c242c3b2d054467427638a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"827f51a263134541854e35bab29efc40": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8280bcf78ca4485c80189ae3134a7b80": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"82814ba27a7449fc9391318c4c83c49a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"Model",
"Constant",
"None"
],
"index": 2,
"layout": "IPY_MODEL_dc5ffa30eda8464d89aa6bd5c3030680",
"style": "IPY_MODEL_ac60b285db7e43e2860ee624752d66a5"
}
},
"828f922fa3e7406db2e0d4d1daaef200": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"829fe740afed4d4f9d9a2f50688bd7db": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"82a036ec96ed4e44abe655a6abef90c0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_6f834183ae6b4407b704c798e50cb3a0",
"style": "IPY_MODEL_41c2df79b91b4190a2e25dd6bf9c3b6a"
}
},
"82a45cf1426a4cd79fd96516211b9b42": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_815cd401bbef4083a0ebdd3fb58200c4",
"style": "IPY_MODEL_82bf9517a89b4b1a95c9035867f83144",
"value": false
}
},
"82aa27d39a0b4c6090d75c4ed00d5b0c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"82bf9517a89b4b1a95c9035867f83144": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"82c0b602aaeb408a8e244be1f345bad5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"82cb06b20bae41e89041fe108145d58f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"82d3ee8a666b48299bfc2e42496b6dcb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"82d71fe6b33c41e9bccf8fc3eb23843a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_0841d623fc014610811311168867b389"
],
"layout": "IPY_MODEL_04c19c5ef6304676adc1d71bc76549c1"
}
},
"82eb4ffb61f646d898a08cc8008c071e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"82fa522f6cc14271b2564947b3fe4c19": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"82fef0fc364642dc88613164e1af8c66": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8301efd0f3754807ac6f4a0edc80c27f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"830c652beac64540ac52434d14b6ac84": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"830d7b1650924f28aa9773fa080bdb2c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_2dde5e2f64d4419891ffaa604cc22eda",
"placeholder": "",
"style": "IPY_MODEL_017af77345f1416fb61ff290f9167792",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"830dab36502442d18ac534f442af3e1f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"830e980fc8f44724a56d1b7ff2042edf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_bd11382448ce4e26af360bb533358b38",
"style": "IPY_MODEL_cc727f8c872649d696e40e6d0cb562f9"
}
},
"833c9291c4dd4dad8dce970a6c8a884c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"83403e8140a44ffaabc356474c17b3f0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 .."
],
"index": null,
"layout": "IPY_MODEL_732c68536c634b18a37d2f5d6c9cd537",
"rows": 8,
"style": "IPY_MODEL_16441b5839fc4c99abe0ec228d2dbfb1"
}
},
"8345dfdfeb6d4588ac85259b038f4ead": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8348700ac3c3414d946d0c17648895c6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"8371739b93e146acbe8d710045eb9aaa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8379d33cc85b436d8c8aed70340833cd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"837c5e7f84fc4e2eb2737dee17400509": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8380e0132a0e451ba9ee9e832d339dcf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"838f72ea0fcc438384df4686ea32c88d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"839ac879a2444b2da8b1cb435961a2a1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"839b82f92f9244dea8546beabc58a84b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"839f78fc18fe450eab1be4f17a61d8d1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"83a34bfec62d4d23a849b8fbf81da1ce": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"83a3f9bcef104fd6b4eb7b5421074c32": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Object:",
"index": null,
"layout": "IPY_MODEL_cbd1e0662db94f99bf3f7ef19e65a2eb",
"style": "IPY_MODEL_5a5be107637547ed9b1c8049f7fb52e2"
}
},
"83ab1fdb7cfd4b1baf5d151da4abbb9d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"83ae53bbff534c40983ac8b6d041b1b4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"83b70eeccaea4ff19921eb5c26abe44a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"83bc00637ed641ddb85efc4f95face8f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"83bf45200ccd4f7d993e760e7911282b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"83cf345b7e86455b9826a3dd7a09c71e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"83d53150b0d94b96b30de40dbb6a0719": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"83d58a74b8cc4484a248331e37794d6d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"83e9dc12b3344750a69ce14dffd69760": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 0,
"layout": "IPY_MODEL_45e5d82af9af4dcd9107ca9846832084",
"style": "IPY_MODEL_597863d1267245de845221f9b8bfd506"
}
},
"83eb67f8d76040b39285067294e2a032": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_69319f006ff748ca814b82f0fd2d3909",
"IPY_MODEL_1ef23875f4704e059edb6fbaf91f168e"
],
"layout": "IPY_MODEL_2960626c7f6a42ab8d00d5329e3d0829"
}
},
"83f3aefe527a440a853baa9a000be219": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_d6cc8db9bc8e42f6aa21c69b4ef6a856",
"IPY_MODEL_72ea5901579a4159b91ba9234ae69f77",
"IPY_MODEL_c53d0d9ae8f542f3a794318cdd419459"
],
"layout": "IPY_MODEL_a24248599fa54dbc8ee3995d8dcf8b1e"
}
},
"83fa9491376445a6bb1e69725c40d76a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_667c2ea06ce04c26a242375f6126e4ba",
"style": "IPY_MODEL_f09712b1f41749cd8407c836737e9f91"
}
},
"83fbb8413750454c96828fc6a7a629ef": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"83fc71e596ce4bf4a62ef48674b81d72": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8405ef109ea5458c9f73f67a7ce7f0ed": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_ec6ba8cb050e43ccac3e731f58c4ac04",
"style": "IPY_MODEL_eb4ed0f9c2cf4cb6b341c5014f2b003a"
}
},
"840b9ec545d84f1c9a4cfd1e9c787d71": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"840ffdf582df4058bfa1cabc9e40c086": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"841c72c0b93544c0b17fec93ac4b42f1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"842f64d82688402ebe035378b49e81ea": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8437ae42e3f44fcd99dfc4044ae52186": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_3447fe7268684cd0bed16820b62807f9",
"style": "IPY_MODEL_6b8eaa249a604548bbd4e857e9b79176",
"value": "Uncertainties"
}
},
"843abb8fdf7f402a8a3d1b0f9b50ca20": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"8448248518714b248f5fc958e1fdd3a4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"845538a87e024be6a5a701795ed40eb6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"84586bb300d74cc4bd7c6bc8034eab61": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"845fff7023114b719ff8ab86ded6fb2c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_1cbfa7e8760d43568aa597d04b34499b",
"style": "IPY_MODEL_d966c6cfc8ec4947ab3064e63c840ce3",
"value": "Save to:"
}
},
"846f2e32e5004efbaa17e9d2cdb940da": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"84740b3fe7c2455f8bc62f40f6505ca8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"847576d09d53411eb82f7eba2ccd2db3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"847abf93238d41e987ff2926ddcccd6a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_90c5e1fe7f2040dfbd05e9532a5a3482",
"style": "IPY_MODEL_924bb696601846daa4818d6822ddac41"
}
},
"847f4bc5c01f421987d92c2754cd8d44": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8484c5b598754c98be26329c2c86a0c5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"848b1892c4f641f58e53697c71f584fc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"848c99d47a8d4f1886e26584a7d8b4ad": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"848fdea614474c5b90c86409c79fa6fc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Minimum depth (m)",
"layout": "IPY_MODEL_2770785af0a549489d17835b858a498f",
"step": null,
"style": "IPY_MODEL_85ab5cc4509d4f7db5387cd531e630c9",
"value": 500
}
},
"849fbc5cdfa04db796d36e5b9a3a9c7e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"849fd1c380c54b6dbc543dbbdd30cbb0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"layout": "IPY_MODEL_185418fecf3e4b99852201f7bb2d52e1",
"step": null,
"style": "IPY_MODEL_9332471cf67b4ba2bffb479c2f9c3587",
"value": 25
}
},
"84a6d245d73f4a53a71fc9ff7f23a62a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_cf1cca163ec542fb86d8db4213789c2a",
"style": "IPY_MODEL_e0521e78924d4db790a45ef80dddff65"
}
},
"84ba9ccce0a142c8afb3159cc30ba5c6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"84c29eddd2b34ae8890b838f793bb2c7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"starting model",
"mesh",
"reference model",
"regularization",
"upper-lower bounds",
"detrend",
"ignore values",
"optimization"
],
"index": 0,
"layout": "IPY_MODEL_9b26658f6350453bbd5ef05a3c6628f6",
"style": "IPY_MODEL_c48f1f8fd0f9476f841dbb29051040b8"
}
},
"84c7bcd31daf427c9fa8aebd9b8b89bd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"84d118c7d27a444f8c68cabba9101399": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"84d4a4592b8347f489bb4d396f3af346": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"84d5b2a26e2f4efea227143e7bef719d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"84e06d61077a4712bc72789a81d3ab05": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_6914cd41df3a4a10abf5af3baf435814",
"IPY_MODEL_f6049d1b8e604a4cadb9e3be64e179d1"
],
"layout": "IPY_MODEL_8e8475582e684a0397fbe117c4c4d742"
}
},
"84e90663fe304208a129e8f969742e90": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"84ef11c9a4f4446bb7a3b5da4f715e47": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"84f6090f406542c8a06555f10f65494f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"84fa77905016480d8b35e25236497e69": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"84fcc91e4f8d482c87d333be5d9f9c1f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"84ff9d7b6a6a4a5d9fe2a20c5d9c44e4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"850a69a5828b42b7b0ef520cb1c141f3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_0ff46c41d293487d98c7c45a9aedd7d1"
],
"layout": "IPY_MODEL_2d80d565362c4d3e8d5f5bee5f640f98"
}
},
"8514340da024419ba4bfbbe6c79e3d26": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_62e5d6bf2f764c2994965f4aa5496810",
"IPY_MODEL_e44f664086984d76b2bd3efedf2f4fd5",
"IPY_MODEL_11c81ae229d641b4ab1b44ea28fb83af"
],
"layout": "IPY_MODEL_b6345bf68f7a4b2fab2c90dcc35b2a9d"
}
},
"8514feac765740dfbc75639dd133b706": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"851cfa6d6493455e9b8b77a05f1ea5e9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_23783babfb3a49219bd3640f82fd6c34",
"IPY_MODEL_0b7fe960a78140cda83a96385aab7ff4"
],
"layout": "IPY_MODEL_73f1967b38ad42e4a52d7665b1a0e4f6"
}
},
"852307f446524999a9826b19fcb5c6ec": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8531b52705d746318ce185dd14bd9092": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8532e8b6cfe144af9616b69bad10e81c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"853f5f873afc4132bbc9234e87ba3fb1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8540134e0ec546a5979f7713b6ab9ca6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_7133642b55a3447badbae6b7b373ad94",
"style": "IPY_MODEL_5674853318764bd5ae37d1a286c32aa6"
}
},
"855d9ec4e4f348868ab9aea37ba3ecde": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8568071f9828412eb140296bc9fd7a37": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"857c1fc7067740b1b8acaff9e8d59ca7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"description": "Zoom on selection",
"icon": "check",
"layout": "IPY_MODEL_eeb3a389d7f44a918f89c282c48c5bc6",
"style": "IPY_MODEL_c0725320dfe94e4582b26e947746954c",
"value": true
}
},
"857d78a657a04f039da54500cc202286": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_6b96e08305084ff186d73761a3846cb2",
"placeholder": "",
"style": "IPY_MODEL_7bb8a7d4d537455888a3c3b59fc459d1",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"85811252e1794ec0a576e2b7602504fe": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8585b6d6f20e48048d70c8ceeb8048db": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_b45f230275364f8d9cdb5449e0089be3",
"IPY_MODEL_0d1e7c00696a4066adb89a11b12d386f"
],
"layout": "IPY_MODEL_ffd51a8c0b904fea905e1c3111a3e58d"
}
},
"8587f89c02e748e5a3135c83a740140d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "dz (+ve up)",
"layout": "IPY_MODEL_1d8cc6c331c148938d5fa015f0c48c80",
"step": null,
"style": "IPY_MODEL_02190d014bd745a6a7e2c92feecea0f5",
"value": 60
}
},
"8590890ace384882a7e7eaa10b147eea": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"859241519f934640acd42eb7cd3b98ca": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"85974808d4e04f158a674aa897d913a2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Degree",
"layout": "IPY_MODEL_5c250cec784147c28590d95b623048b7",
"step": null,
"style": "IPY_MODEL_cb54e97e1e564df892075cd1a7479a76",
"value": 11
}
},
"8597add91c0e4cf592d1bcaa413e104d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8599b23186df45979d45bead64903b57": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"85ab5cc4509d4f7db5387cd531e630c9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"85aba85220fd46208f525b07095887e5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"85b2b7061d9846b88177f0e961921f4c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"85c5c88943f241d6aef220d16e140dcf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"85c7f6c9aa9244c3a4bc3fa5ce356ae1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_e8f8a0c7adfc40c581310f47d2c3eb16",
"style": "IPY_MODEL_a9545ab1f6b645a5ab6aa760dbf7f568"
}
},
"85cb68349e274ae8b02ccf050c5f3774": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_3970ecef82e14dacb65486c1c6077e33",
"IPY_MODEL_2d1804bac8df47b68873ba2c7c5b31f4"
],
"layout": "IPY_MODEL_02a579ca5f9b4efda6812ce91438aaea"
}
},
"85d100c3bf7b4f36a4b7642a9d4c4a6b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"85d15590bce549ebba6fa5242fb3f8a0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"85e030b3f58e4dca9a57cb808167044f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_d3d620b99e944544b4382068c32c0e1a",
"style": "IPY_MODEL_233de55fbeb14741aa9a13a14108628c",
"value": "Starting Declination"
}
},
"85e07edea95848539862018495edd6b4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"85e4307c5ca0416f9e9d4cc77392ba95": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Values",
"index": null,
"layout": "IPY_MODEL_2da23a9f60fa4a0c80bd34e4365c0f8d",
"style": "IPY_MODEL_35589ea954e447d2922b7dabf4bd9202"
}
},
"85e7598e92ff438ba30dfab2eb473622": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_14c57165504442ec8c23cf82016485e5",
"style": "IPY_MODEL_0aab58f643db4cf8b21471f81413d861"
}
},
"85f9b484fe834c5fb70b92bb762522b5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"85fbc8cc74ed4430850cebd0e9044946": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"86012baa66e24a329821661f7f0ef413": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"860558b0e6a748fb979315e9693770b6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"86064ed38c1e412eb210a3c22d8d3e8c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_152affdb5fee488d84d7d015a1f8a451",
"style": "IPY_MODEL_7162808a4b7a4fb9a5954a77b43d4cd7"
}
},
"8613b0a85c3742038ea556546ae97eea": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"86395a05cd384177a19cba0ab5d3fd0e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"863f215ea81047538da07b1a398e0839": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8668a17a679a437fb2641152884c1ea2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_a6bea12bc7d34f93b664f75fce94ac8d",
"style": "IPY_MODEL_2bba3390ba73428c95e0888d31ef80a6",
"value": true
}
},
"866c507e7cd147309ab398fc4d808835": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"86704c407e1741239daedead9dd4a85c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8677bf26821d416d838ead2ba1bbd812": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8688cc0befe14090b21b2fad92d8306c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"869b01d6c0cb4beb91b492f229dd060e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"86a498b6c0854fe09fd271bf2c65c73c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_b4609dcb5aec42b98a470029cc3c759c",
"style": "IPY_MODEL_e893c05a81ab4806b72beefd1310ab8c"
}
},
"86aad388085646348616061c7b0d20c9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"86aadf6816264f64b143b8adf1e55f5c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"86ae5a30b78342dd832a75fbd0940c61": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"86af0bc16bcf4f3da502ebee19920ae7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_d3db3008378d4f868bc90ed8f577a077",
"placeholder": "",
"style": "IPY_MODEL_bb1b1806075442a5937b547af36b083e",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"86c6921a38a5491f8bd6ecdd9c7b46aa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"86c7ada5c3d14b4a9dca0aa9edab7a24": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_be587a6564c6496389527f9fc5b44e04",
"style": "IPY_MODEL_a533548fdad044f395c281fd6ab28d2e"
}
},
"86d01771ee7d4b96a3d7bc30ca60d6fa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Object",
"index": null,
"layout": "IPY_MODEL_474a1685c974402aa95e4177139511eb",
"style": "IPY_MODEL_a1e7c8608cbd4e00a6c24a88883d2193"
}
},
"86dc30190b084cbd87c4566185435139": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"86e9a1c29b8f45e08dd119045c2874bc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatSliderModel",
"state": {
"continuous_update": false,
"description": "Azimuth",
"layout": "IPY_MODEL_9c2a44ccc2604a6cae0b1126e6e609bc",
"max": 90,
"min": -90,
"step": 5,
"style": "IPY_MODEL_8f4c9a85dc9e489a922ccc2236b13c0a"
}
},
"86fdf049a9574c089404eea96d8f13e7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"8701e3890489412c8a0651f94a0e3f45": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8701e9290f4345039d75ff4bfeafd005": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "CG Tolerance",
"layout": "IPY_MODEL_307b4f92122245fbaa707276006492bb",
"step": null,
"style": "IPY_MODEL_9a484ef0f71b440fbcebeffd8db0a2c1",
"value": 0.0001
}
},
"870d1731bf9f4bfd802c0136db61674b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Forward only",
"disabled": false,
"layout": "IPY_MODEL_3fc01b0e5cd34d06a1ef145fecb3c0da",
"style": "IPY_MODEL_53257cb5032f4f07994fcfa28b4f0ad7",
"value": false
}
},
"8715b9af6b614fbc90f129f512353ad1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"871b966de41e48ebb3003a0db56a9dea": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"871d952e618649db98aea4cd26a6fec9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"872f683e0a2c4b08892e961676b597d4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"873b866f722c458c920e358e52d5d8cf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"874330aeab134893b4d6732d82a94e45": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"8751b512abe942339de845f4d730f778": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"87523de1cd6d4eeca1b3369a7974e2b3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8753b7bc9be54e9c83ef1caa47756968": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"876431d188fc46408e2141b904e8e625": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8764830778b245f9ad97f2a063f36fa9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_c4f9fc1599a14e16be0168c38cbdb655",
"style": "IPY_MODEL_289a64679adc47e9b8ca257f695d205f",
"value": "Save to:"
}
},
"8768a11678e84242ae81f291ee5c760b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 SimPEG_PFInversion",
"📁 Temp",
"📁 uijson",
"FlinFlon.geoh5",
"FlinFlon_dcip.geoh5",
"FlinFlon_natural_sources.geoh5",
"MtDore_TMI.geoh5",
"tem.geoh5",
"test_forward.ui.geoh5",
"test_forward.ui.json"
],
"index": 4,
"layout": "IPY_MODEL_cb0f514d8ca94a4195a8bf6b617e7184",
"rows": 8,
"style": "IPY_MODEL_4b148ba95d1d4cd3a4b6c06da2309f34"
}
},
"876c61d80c0546a6a791f89867d32486": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8770047f9ca7486699087b6bcdafb8a2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_06d06c7c33da46c2858049dc1878bcbe",
"style": "IPY_MODEL_7a95871e38e543709f8db7b838d5c290"
}
},
"8776831bfab348178908651028409570": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"877c10ed3da443f5ae1d0a43c87a1f4a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"877c76b0b1e0479dbf1795bdc1aa78ab": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_cbb58d2d52654ccda82a5e712e1b62b7",
"IPY_MODEL_109dfc0ff64646aa9bdd93032e4709e4"
],
"layout": "IPY_MODEL_e91cd458e60d45d983e3afa6fda313df"
}
},
"8788edb296f045f48919f1795d223b5b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"878f7291a2c14d10b18d24f6c055e775": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_1246753ae889443ba486a05b9f41a612",
"style": "IPY_MODEL_067155a90ef8481b810df01088588554",
"tooltip": "Run computation"
}
},
"87905e7b09674c5a87df59f8dcfdc1a4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 SimPEG_PFInversion"
],
"index": null,
"layout": "IPY_MODEL_1d39ca1355bd4e9cb0436a3fc1cb00c3",
"rows": 8,
"style": "IPY_MODEL_794983b094db4ddabc047da8a0dd6264"
}
},
"879be5a0af5542689ca385d17a49ab17": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"879d6dafcd3c4f738229d7abdcac2718": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"87a6779ffd3e422592ab8ec7e9b2e33d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_320c92fd7aa64c268ee50bf7914bbcab",
"style": "IPY_MODEL_436988e706304ffb8fd52938df653547"
}
},
"87a699766de843cea108071b8b5eb508": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"87aef8a049004c05bef4b741102dce5c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_2546effb42124afa861d406eb16deaac",
"IPY_MODEL_8e7458c77d83497393b0d2282d24e4ca",
"IPY_MODEL_e5d9dda3020a48b5b65bdbcb42832959"
],
"layout": "IPY_MODEL_f3e1df0a9b0947738f0d09c0bd203611"
}
},
"87bb008ed7ba4405a2f097a43e90e175": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"87bb3b790fe04c86b93f03e00bdd18bf": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"87c0a716a48747cf90c917aa1b849f2f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"87c3af6cb9dc4d68849e0dc41b82066a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"87c44c97046d4ea0969827595dbc3a67": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"87c58f9b8ad14902bd8707a1632fc7c6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"87c6198975694450886923b0547ce2f1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"87d6ac42789f4d1480f11bbc40268625": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"87dbf01ab1ce42eeaa4cc9843d1449cd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_0590cc6f6f9b46f2bc4ae1f94576a3e6",
"IPY_MODEL_b4c577e495a34d4c9e5baf0aa8a56ee7"
],
"layout": "IPY_MODEL_5c0578809b21413ab9f8791900f6bea6"
}
},
"87ddecd58b0346b78653c71ec78ad5bd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"87e022ff9283408a96266d6c72dc25d1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_baf49717850048bf8d611ef601d63aee",
"placeholder": "output filename",
"style": "IPY_MODEL_45dd51dc09ec4919be6271f1711bdf60"
}
},
"87e6b7b14918454a8788b285d09b3205": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"880995c1f8fc4458aad7a65661129d50": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_c28b30e0d40b4312b9e1aa1b7472b3be",
"style": "IPY_MODEL_5194d6621f8d416396d0b7d10a145a8c"
}
},
"880c9ece5ae0420b848a52ff3964dfaa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_6f87c3e55715447f973bee51027ce646",
"IPY_MODEL_fca302184a774dc5bc1d655c6027d3a2",
"IPY_MODEL_8e3223c84cad4cebadafe003a11d491b"
],
"layout": "IPY_MODEL_1438959149bb4b8182d68c03e5360e89"
}
},
"880f227413504349a9074228ead42187": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"880f82b2ace74acb935a9ece28139e44": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"88123fff2be24103adc3155cedbda2af": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"88143fdef79c4cd78435cd4eb36f5d25": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"88196aab3c804b82b03bad1aa7ea9e47": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"881b4405e5d241d1b7e5b40364615426": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"88207e9bea8f4275a8517ded7408adc4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_204777be27294ad79d54163731738b07",
"style": "IPY_MODEL_224b7285574440839e19f0095f8fea13",
"value": false
}
},
"8823dbb83228427ca218846e77c47c72": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"882aeccd884541008696e95aaa782927": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"883bb744e0574cdf8fad0feb5d7fa01c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 Temp",
"📁 monitored",
"📁 uijson",
"FlinFlon - Copy.geoh5",
"FlinFlon.geoh5",
"FlinFlon.omf",
"FlinFlon_dcip.geoh5",
"FlinFlon_natural_sources.geoh5",
"FlinFlon_tem.geoh5",
"FlinFlon_test.geoh5",
"MtDore_TMI.geoh5",
"bug_mre.geoh5",
"geoh5_to_omf.py",
"new_data - Copy.geoh5",
"new_data.geoh5",
"omf_to_geoh5.py",
"test_file_2.omf"
],
"index": 5,
"layout": "IPY_MODEL_7cdb0c9f17f840f7bb9645f2080f7857",
"rows": 8,
"style": "IPY_MODEL_49d5bdc9dc414f32a6262a676943d964"
}
},
"88430af8764643688dd33a15c7df2dd4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8845f2a1f22d4c8db12e8b8e09874410": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"885576c4fd1d4703930d826efd6efada": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"885ddc6626184d64ba776735391f4ead": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"88689e8ab46e469e907e2262baa52508": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_dadafbf2042a4b34851007f924573394",
"style": "IPY_MODEL_7aa41120b377409d97f43666546ddc5d"
}
},
"886e67641b10468ea306286ec38c8392": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"887010c2c6b547378ddb1caad2ccfdb1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"8874870b85c948a2b611cf61ac2df1e5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"88826ca6c4b8407181b44901c8099eae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_253e5ca01c9e4f51bdbbc6c985281ff5",
"IPY_MODEL_25255e18861c4413a7b2194fd42b1f89"
],
"layout": "IPY_MODEL_a88c6e094b0844818fd5e1f8fa1e8340"
}
},
"8883c81708c94dfa9652a4c2979e4fd8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"88995fa7ff1c441681116847b68ee1e9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"88a23f140ca24410a5d31716434a8987": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"88a33c265b2a4242ad20d8ee9e3b864d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"88b35940c8b444e69a3e53cd407493f3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_8e0e3ea07417427fab519f3a2b6bfdbb",
"IPY_MODEL_e1e0e1364e2947d59d7b46fca4422e81"
],
"layout": "IPY_MODEL_63559097dbce4dfb95f7750f60a0df80"
}
},
"88bd2421a93744b7b58ce74c23d438dd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"88bd44ae1ca8406da4e5c0a8b93249e9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_5c169670dc464b8dac93e098fe597fcf",
"IPY_MODEL_c997c424f7914ae3921609378fb12bdd",
"IPY_MODEL_956e527e243545be84f37b917f8d37b4"
],
"layout": "IPY_MODEL_b6345bf68f7a4b2fab2c90dcc35b2a9d"
}
},
"88c18b6d5b1f416a8f567afb700b8912": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"88d0a957931047f490cd006e0529b717": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"88d543e48e8e483b81f05f489d457355": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"88da01386aa746e0a5a3f15d8264f6bb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"88de2591b7bd4a6090a8fc1b7978b0c6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"88ef3109804342348c5ca686ec34e717": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"88f5609bc1884231a24e03474435430a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"88fddbb21ab14d4ca34da42b5ca07a9c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_07f6da90f3064254a7a3770498a4135c",
"IPY_MODEL_80c8426f61f14dd3956f47d98f727cf1"
],
"layout": "IPY_MODEL_16bbf1052a544b60ac347b019f2d2301"
}
},
"89085582c5bc431788b2e019430e1988": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"Constant",
"Model"
],
"index": 0,
"layout": "IPY_MODEL_f5f756ae77404e31ba99442707c4d68a",
"style": "IPY_MODEL_3c9d7970b46e4a00a804bead47d1d16c"
}
},
"8914d5ff7e19413ba5a48623ba2c1510": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8915b9395de4419cae8493bbcbaf8563": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"891994b9aa0349c3a216e080b5abc7f9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"891fcd1aa57b447c81af76cb5ddeb9a0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_466aed13269048d39c672e22468be83c",
"style": "IPY_MODEL_eff6e57be6524e61a3fc27bc26b94ae5"
}
},
"893fa29c99ac4196a8f24cb62e0e7352": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8940482aee974b0a96136d76d9e7f863": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"894a7fcbd12542c4abd2393ae3c68551": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"894d6e5885e0446eb266faf5eb21a1ee": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Labels/Label3",
"Labels/Label1",
"Ore/39_Ore_Callinan",
"Ore/38_Ore_Dan_Owens",
"Ore/40_Ore_FlinFlon",
"Workspace/Inversion_VTEM_Model",
"Workspace/Gravity_Magnetics_drape60m",
"Workspace/CDI_VTEM_model",
"Workspace/Data_FEM_pseudo3D",
"Workspace/O2O_Interp_25m",
"Workspace/geochem",
"Workspace/Inversion_DIGHEM_Model",
"Workspace/Topography",
"Workspace/Data_TEM_pseudo3D",
"Workspace/Data_ZTEM",
"Workspace/Mesh"
],
"description": "Object:",
"index": 7,
"layout": "IPY_MODEL_c8254da8cfb54025988374037f4976a8",
"style": "IPY_MODEL_ddcd7de3bb054a7dbe6bde4aa7b68806"
}
},
"895ce2ac9cd24327b7ca9d73a7d19ac7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"8964ad28fcdc402e8f66e13622212cca": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"magnetic vector",
"magnetic scalar",
"gravity"
],
"description": "inversion Type:",
"index": 0,
"layout": "IPY_MODEL_0453921f2c86450588dc065c2bef2c86",
"style": "IPY_MODEL_5376f04ee0d244948b21723dca470ad2"
}
},
"8968a722736046b3bd8bef7d905bcc58": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"896ab7530f844935975afff053ff1d65": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "SI",
"layout": "IPY_MODEL_afbe0064402a4c4e8fc27c8c8bda662a",
"step": null,
"style": "IPY_MODEL_b4334509a9414b73a8e31d34d674109d",
"value": 0.0001
}
},
"896c192df9c044d6bde4b23b950b7e02": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"border": "solid"
}
},
"8975716cbee243f386311096a3b1ff15": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Degree",
"layout": "IPY_MODEL_a3dd0d71571d4ee1873c0c4fe5286406",
"step": null,
"style": "IPY_MODEL_da4b0342132d4da9815819f352bf69c8",
"value": 11
}
},
"898aaf76aa5c49d2b9d035ec5d475ba3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"89961f03ac4948639e1ce9503b8871de": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"89a114ce07c74ab486a12faf9d6771d6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"89a705e5d2de4d40ad4d56cf2d5d8ba7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"89a7d904002444eb913f3d151e5e9d25": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"89b36f4445354b7abbaac5afb98f41aa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"89b5667ef27441e6bcf0c18a7de71023": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"89bcae3a705c4144b807cadb5263f983": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"ISO/Iso_Iteration_7_model_5_00e-03",
"ISO/Iso_Iteration_7_model_1_50e-02",
"ISO/Iso_Iteration_7_model_2_50e-03",
"ISO/Iso_Iteration_7_model_1_00e-02",
"ISO/Iso_Iteration_7_model_2_00e-02",
"Ore/39_Ore_Callinan",
"Ore/38_Ore_Dan_Owens",
"Ore/40_Ore_FlinFlon",
"CDI/COND_surface",
"CDI/COND[8]_surface",
"CDI/COND[18]_surface",
"CDI/COND[3]_surface",
"CDI/COND[13]_surface",
"CDI/CDI_",
"Workspace/InterpGrid",
"Workspace/Inversion_VTEM_Model",
"Workspace/InterpGrid",
"Workspace/CDI_VTEM_model",
"Workspace/Data_FEM_pseudo3D",
"Workspace/O2O_Interp_25m",
"Workspace/geochem",
"Workspace/Inversion_DIGHEM_Model",
"Workspace/InterpGrid",
"Workspace/Topography",
"Workspace/Data_TEM_pseudo3D",
"Workspace/Data_ZTEM",
"Workspace/Mesh",
"Workspace/InterpGrid"
],
"description": "Object",
"index": 0,
"layout": "IPY_MODEL_7692641eefc6426f99be74403bb25e53",
"style": "IPY_MODEL_2f38389733d541f9b43874bdda08c56a"
}
},
"89c4a604557648dcbe37dd381adf1f76": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_c8557869b0094aabbe17719c3e3b1c1e",
"IPY_MODEL_ca776165af0d45fca25638e0a0005d6b",
"IPY_MODEL_883bb744e0574cdf8fad0feb5d7fa01c"
],
"layout": "IPY_MODEL_fd52807080b440b4a997cf1f01782284"
}
},
"89caf35877464436acbce41804d62311": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"89e26f61a5834b60a59759713577b3e4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"89ea70b5d64b492e9d453b157054390a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"89ee492c5eaf4a099968f57c019f016d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"89ef32d0cea344b9beee8da5a6e9be57": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8a00b91756004a27adc109b5f6e7f664": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"8a0c426dc3cc4609bd24e91498fe1c2b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_d7467481bff045b08d8890e0c6c108be",
"style": "IPY_MODEL_744ed20788f14c5d9a2e56a91ae2dbd2",
"tooltip": "Run computation"
}
},
"8a11c231788f488ca6821ca7a3fce393": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"8a127a9904e04536aec9f9857a8137a0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"8a148e878742451295810724bec1fc67": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"8a1bdfb64c2c4610b59a8a5414099171": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8a1fcb165150404aab1242a499e8e411": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8a32d5e0cd484410b77255c05cd8be1b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "NS-gradient (y)",
"layout": "IPY_MODEL_6e66e56229234e2d926fe132a938faea",
"step": null,
"style": "IPY_MODEL_60bdfe92fbe04599a788a64097d69548",
"value": 1
}
},
"8a4aa5a061fc4a34a0cd89e1b4dc3018": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_2f916069d7a84e81b5962cd8dac92b4e",
"IPY_MODEL_4d2170ce1ecb4d83b4b0cd0ee15847b0",
"IPY_MODEL_bb82f4870de34ada9e892b3b7417d2b2"
],
"layout": "IPY_MODEL_6121bf69ecc949768b99dc4187ce59e6"
}
},
"8a682dc3cc81405192e787a5e4afaf5a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8a6e4015bf184fb4afb4c1e1fa4a62a8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"8a70473f3f974f6a9640c197e60ac635": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8a74b3ade6a34123a49a57c8bee9021a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8a76439f82de4cceb89a249365d0311e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_a3c030614cb649f6aac2e7118d6df008",
"IPY_MODEL_dfd1205c5fde45cdb29c273ade6e01f5"
],
"layout": "IPY_MODEL_1aa18253a5dc43a4bcc6941ccd915518"
}
},
"8a7ac9a1e57e4bd18f9378066d439292": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8a7f1717eaf44060aeb2433afcdf7fa0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_349cb6b2bda14eba88455248bc979661",
"placeholder": "output filename",
"style": "IPY_MODEL_05ec25b0ff2b4b23b3d745a80d02c644"
}
},
"8a84103c94214bc098abab4e488d33a1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8a8688baffdf43aebff04ae3db14f943": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8aa27e002716407a96f69d4cb186d3bc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_ce619bc7e751451c87fbe4591a05776a",
"IPY_MODEL_ccf2735fca274909b5860f5bba5f0710",
"IPY_MODEL_acb43a1e94d148b6ac9a70ba59b604cc"
],
"layout": "IPY_MODEL_c9c8b5454be3483d96479bd1409b19d9"
}
},
"8ab645b173b945f1b81f85d4bfa27227": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"8aba84f88ed041c795f00c5013e48d53": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"8abb1714f2a945c687ffc942cc02f546": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8ac132fd4bab44f9bf1f8722dcb9d0c6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"8acb128f66ec4b118a8e68337bafbcfb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_d9733476325e4c109a088f40d1f1f325",
"IPY_MODEL_463f7044bdc5471c840151b58bad8001"
],
"layout": "IPY_MODEL_435a7a334b334bd4a7765d4d30e5d21d"
}
},
"8acdb59e37f840209893f0e9d3e5ea96": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"8ae5fd5af7ab4f748d737630dacc8ff3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8ae7d4e226e14a1fb8e980e396392b5a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"8ae914743efa41a78074adb9eaadf583": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 Temp",
"📁 uijson",
"FlinFlon.geoh5",
"FlinFlon_dcip.geoh5",
"FlinFlon_dcip_v4.geoh5",
"FlinFlon_natural_sources.geoh5",
"FlinFlon_natural_sources_v4.geoh5",
"MtDore_TMI.geoh5"
],
"index": 3,
"layout": "IPY_MODEL_bc5e822721a2438ca4d61713f5e9c2fd",
"rows": 8,
"style": "IPY_MODEL_8371739b93e146acbe8d710045eb9aaa"
}
},
"8aeb22b97d9f470681ddaa8abcd43d5c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_392ef9db29f145458d8444e1c44d3cf2",
"style": "IPY_MODEL_67b9221f210c4fd387b5bc465d9b4493"
}
},
"8af7325cd2cd4a4ca62cf73535551420": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8afc48fca1ea43bf864d2539f9fe6645": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8b08a72a8a7c4e6b896cb6cabac3624b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8b0dfa0629dd4b2c9f8cf34873838fa7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"Model",
"Constant",
"None"
],
"index": 1,
"layout": "IPY_MODEL_1267fc7a5023462bbd8d2cc6bd734741",
"style": "IPY_MODEL_38738de09fd5403c9170a7f4dac319b1"
}
},
"8b10d621a7e241a0be3e618807690498": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8b16c675a01f485db99f400cfe5bf88b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_25c07841427942249ffb7580f5e61863",
"IPY_MODEL_be7b89f2488a42e793e634f27c60f621",
"IPY_MODEL_a8c4a2323b9346ac8d731ec594bb2bd1"
],
"layout": "IPY_MODEL_2ded96b474f0462290b47dd42bc9c773"
}
},
"8b1783f6cbaa40e8b66c97673aceafe0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8b35c7178c8346368b3f06a75ddfc83c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8b36c3fd77374c36aaf8ca3125c340e0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"8b4643d64c69452797aac85c28088876": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"8b654d25d9bd4202ad51982a314dd8b7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8b68bc96acd548c7b83471e23bbcf740": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8b76909574a548da90e503e64479377b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8b78fc7ba5f945a1a0fde8db4cd63134": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_a798e67280cb459f8e31d5c59ea6a3ce",
"style": "IPY_MODEL_041d70a109164f648d28b1c8de6a32f2",
"value": "Reference Declination"
}
},
"8b974c69616a40cb8541ea2081ee26a1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"G:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"D:\\"
],
"index": 0,
"layout": "IPY_MODEL_2f95fafd74714a50b9b3df943e1f418e",
"style": "IPY_MODEL_8b35c7178c8346368b3f06a75ddfc83c"
}
},
"8b97f4df363f49359d470244ba8cb9d4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8ba80cfba32b45ce88549adb68d4c186": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_2f672edf7b964bb189483497e3a37ddc",
"style": "IPY_MODEL_cc5a775186e540dab239d8ef4517fd97"
}
},
"8baf80f1fa524788a3bce857b7b0e3aa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8bb1c73110194928ade2422067e7e653": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8bb5ae2754ce4148918cfc391b953f40": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"layout": "IPY_MODEL_eb9e828ab0c7484bac5b333eedf3f6de",
"outputs": [
{
"data": {
"image/png": "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\n",
"text/plain": ""
},
"metadata": {
"needs_background": "light"
},
"output_type": "display_data"
}
]
}
},
"8bb71db5da574964ad2f35eae81b0041": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"G:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"D:\\"
],
"index": 0,
"layout": "IPY_MODEL_f18e5a377b8744138bf87633c36ee4f0",
"style": "IPY_MODEL_427a7da35a424548b0ffbff0694730c2"
}
},
"8bc23f3a9b5c48099eb2eee1a47fa028": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_80eb9b0886124018900dfe37a974ecf2",
"style": "IPY_MODEL_3e1d70bcf3eb4eef83068d37a706541a",
"value": "Workspace"
}
},
"8bc631d596c447f6a1cb5133f14bcd78": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"8bd83f2a4d1a409b8b579a4274870580": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_d2dda284a2f34168ace162b54a2ea3c4",
"placeholder": "",
"style": "IPY_MODEL_6afb02e78b5f4ad19aba2503795b7451",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"8bdc190c21ba4e17ab5bb66acbe05265": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8be0bc68c95649f1a447b23c2e7affd5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_1bce8e6026e34c7ba84e59dcec1e0a33",
"style": "IPY_MODEL_e31ac7fb401448ad9995d3e4672abe9e",
"tooltip": "Run computation"
}
},
"8be6b6195e2f4cbe84e7e3b50df4cf6a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8bea41ba924e47f59694d19f11067326": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_1e464cc11b324755856d88799798e8c1",
"IPY_MODEL_7da161441cba49f0977206939dd840e3"
],
"layout": "IPY_MODEL_b0d77f3655084aa0a3ea42f3c0cf47d0"
}
},
"8bf9e3af00a24fbab3a9f7f7b1f68f08": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_9dc06ef88d14476097a8362ad1852697",
"IPY_MODEL_067e0099d5ca43bbaddd5352657b9672",
"IPY_MODEL_b4a287a01d9f457d96356e48a3e9521b"
],
"layout": "IPY_MODEL_5931dec760554428a299ea94cbcca99c"
}
},
"8bfaf8af2e6c4fb48da0ddde391518b7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8bfc92473474472b877fafb63ebfbd13": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"layout": "IPY_MODEL_aaf055900bfb43f1a957048d573bc52c",
"outputs": [
{
"data": {
"image/png": "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\n",
"text/plain": ""
},
"metadata": {
"needs_background": "light"
},
"output_type": "display_data"
}
]
}
},
"8c0b7fc967714d4b9baad40f8e4d605c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8c14f71fe9814415b5803ca60cdc35d5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"8c1a3b2e6f3b44b1b17aa9bde753f218": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"8c24b7630e4c4b638a6cd56889ec00c1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_d6cc00880d6340a38ad302134736fc0f",
"IPY_MODEL_0f053aba21644a5e9dce126fb42103a6"
],
"layout": "IPY_MODEL_952245ac824d49dc9fa550f975f5cda7"
}
},
"8c343deb2ae34996a8bd9ab8c6fed7d1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_b2d8322ae3634fae99a4ee12452ee32c",
"IPY_MODEL_1b5dc4d6317e4fcd80046934876f92b0"
],
"layout": "IPY_MODEL_9ef26b3efbbb49578b6beffc97a47963"
}
},
"8c347778a19c41589738f05f557c633b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_18a6ebc3b6a34edb86e106eea376456f",
"IPY_MODEL_457eaeac5cab4def88cade3229782ee4"
],
"layout": "IPY_MODEL_ae7c70fa9a2341cd86d570a2d417d2f3"
}
},
"8c36525a093f446b871647e3d235a1c0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8c38f35c69584c9bb5f545209bfd75c0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8c4dbe9943a94273aecdbaffdfb3449f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_2b0e4b2007624d14acaff7055907b0d5",
"style": "IPY_MODEL_f11b24a583ce454ea306b4f8ddff93a8"
}
},
"8c4f2ea065f74f608f8e7aad653c757a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_8ba80cfba32b45ce88549adb68d4c186",
"IPY_MODEL_7553f848fbe24ad5a2ea5cb204e9fa5f",
"IPY_MODEL_dfba08e7c1a140e1963140b0d175311e"
],
"layout": "IPY_MODEL_89961f03ac4948639e1ce9503b8871de"
}
},
"8c5641693e774f82907a35b04782258b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_bbc15402850241a29a80c69aaf38db81",
"IPY_MODEL_a705f2aab16b4d649e7eff563d4fd7a7"
],
"layout": "IPY_MODEL_cad4bcf5b109415bbccce3e7c56e4d3b"
}
},
"8c5e3592d46d4be9b81fde23a2953eef": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8c5f649e71374aee80e5acb14ba08718": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8c709e71e18e4797bdb734d6f2c6b5d3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8c71ac675927496cb82e196d5d7c9599": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8c72d7c982284d34be395aeb18d175ba": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8c748567c80c45f8b0d9864a80777c3a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"8c7839da1eb94b1081f16013558c2483": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8c81a4c6fb2f4406a875617a65a0a107": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8c840c87c1cf41638483f3dadabdec1d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8c8684846217464f83a946e8b5fb7a75": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"8c8b4ee25d0649feb9e8dd6abcefc97c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8c8d9cfc472e45c9ab3ebfa391017f74": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8c8f5c6d6d1f4b3db2643464a423d611": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8c93f33e36a449a6817ed78e1df981e0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8c9c005920e947d98cb5c670ddcd3787": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatSliderModel",
"state": {
"continuous_update": false,
"description": "Northing",
"layout": "IPY_MODEL_9cae45597eaf479c8c8fa332199a4b59",
"max": 6077578.83861151,
"min": 6063956.600608527,
"orientation": "vertical",
"step": 10,
"style": "IPY_MODEL_bd07ab1293dd44639327185f31154c53",
"value": 6072300
}
},
"8c9e15d0745f43c9ba1d7a74502fa259": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"8cb33f5a46df40f3a649658c1501b746": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_5cd93a9fbfeb4596b191fdf5f9c62a47",
"style": "IPY_MODEL_5a312e65cbff40d5bd2510f879586f50"
}
},
"8cbae3ee090a4d9c9a2fc0c93fe46e3e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8cc2d608c3cc43c5b11619a2a1c102e7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_2117f4042a664881b4c3e1e44d03270c",
"style": "IPY_MODEL_62f8588626b540679583da4ba1566972"
}
},
"8cca6b532bd047f9aa3a7657d8587d93": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"8cdb932884c2484ca0cfdf84aaafd20f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"8cf51de271a04114bc02bbaee129f98f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_248eff9a1f934c0aa068a3ab6aeb50c0",
"IPY_MODEL_c82e0b84343746c89496bc5c2d9da8e9"
],
"layout": "IPY_MODEL_d38d8b314e104f98909992f1dcf2c4b5"
}
},
"8cfaba8d78f843769f6d24b8c6074d1e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8d00c4a9a6254f33ae370a2c9850e6b2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8d02e049aa0144fcbbf373ae8a870788": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_70b2faf51be9452e9764041fc4e0fff9",
"IPY_MODEL_726200a94d494ab2a9c6da360d333f7c",
"IPY_MODEL_07857bc5580146ffb3afde49e710dfe4"
],
"layout": "IPY_MODEL_7a235aeb66d14882bb65b2e0e35bcd5b"
}
},
"8d0c86fd4d814b3dbca3504abc7e21cd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8d18f6478d46430dae13dd3fe653aaa5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8d3937b79e8b474c968644a65b2de7fd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_537571f577a1433e877d2f0aa01eaf69",
"placeholder": "",
"style": "IPY_MODEL_c36d27f0e2164080adaf6090f4abfbec",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"8d3b4fa9c7f04826a823b9ea91b21103": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_25c13f17f4af47b293412476b4663a4d",
"style": "IPY_MODEL_54892e69a7324d5e9755a8ee7aecd8a0"
}
},
"8d451d2c220d448f84243ac22ed3763c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_6ca8f65f6bf240b0b006fd0ee7457817",
"IPY_MODEL_b1f4947b00d64a5d8557ce6c7b3e7cbd",
"IPY_MODEL_a0c50b8716e74a36b478abb4aa38ec1b"
],
"layout": "IPY_MODEL_6b0f90178cc845ba90fcb04033797e79"
}
},
"8d59c8ab10f34df8872667b1e22cc839": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8d5c0ee7a511454c960e89592b57964b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_2cf6abfd3291489387242c5f9a413d3b",
"style": "IPY_MODEL_eefce8b7de56463bbe780d35abe6b3e4",
"value": false
}
},
"8d6c0ec5d7174cbe80bba6ae9a5cc511": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_d2572252b0aa41b7962aeef67afc0967",
"style": "IPY_MODEL_43632ea61beb446fb406c748c7af6edb"
}
},
"8d7059a8760c4accbee7e190b4befbdf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_78ba6ff2d13e4c76995e288c440909bc",
"IPY_MODEL_35448168362e4f2baeed3f0da6235816",
"IPY_MODEL_6ab87ec51f8d4541bad76176052216e1",
"IPY_MODEL_9f9696dc120847e6bfc2b81f3dbda96f"
],
"layout": "IPY_MODEL_8eb906ed75844fb38f72bca76bcdb746"
}
},
"8d74756c95db4b298c4f8642bde0e22c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"8d81bfa0a74343dc8a6cb9473044439a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_cfcd654436364c678793cd5b30c5d8f4",
"style": "IPY_MODEL_43d7280fc619465eae1a4c14ee7f1a29",
"value": "Save to:"
}
},
"8d8efb68525647c39defea48a41d9b8b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"8d961c375b5a486db092bead2a09e094": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_04758342eadf472b97f7c5651f29a1af",
"IPY_MODEL_4b0e0a8ff38142e9bcf92d7a53dc12ec"
],
"layout": "IPY_MODEL_db820aa91e9941d8861fdff9a0277708"
}
},
"8d9762595cdf499ba2afbbd15487df09": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8da305970f3c4cd787f2cb9298aef420": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"8db187d6afb748f6ab7ce2200a41e031": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Degree",
"layout": "IPY_MODEL_9bbded23b274498687c79c463bd81fe6",
"step": null,
"style": "IPY_MODEL_43d9712ebaf045acb87af30b4ab32eed",
"value": 11
}
},
"8dd56729c98e477480782d5cad8d4443": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8ddaf9acfd924b5880dd9342a65f8536": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_4203a4386f894c94a5c15ed7dab6eb1c"
],
"layout": "IPY_MODEL_f80aeafc449946d084f8cbdf21b1c721"
}
},
"8de744d3fdbd410a9ac07b8fb66be217": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8e0518ea856b45bd8c73cfa785301397": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "SI",
"layout": "IPY_MODEL_a27f95f8a7b1492f91260582110fb62f",
"step": null,
"style": "IPY_MODEL_8d9762595cdf499ba2afbbd15487df09",
"value": 0.0001
}
},
"8e0e3ea07417427fab519f3a2b6bfdbb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_9fd5d7730a784f18b2c686dad0b34649",
"step": null,
"style": "IPY_MODEL_d9297603109c41c89fa1a2dc0d5cd2bc",
"value": 1
}
},
"8e141daffef942c38f78bc78398ca285": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8e14e54978244860b165d6c25e9a4716": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8e1c1ca21e6c4d9aa7493720c09bb5a5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_46a7ea3919c642a99de6db9cdac720d0",
"IPY_MODEL_a08eaf8e21fb404bad67e4a3db15be7a",
"IPY_MODEL_27095c3b9268443394bcc41783472ebb"
],
"layout": "IPY_MODEL_bf880cd84e1f4f089a004035a7741261"
}
},
"8e20e52661964077a5df9bccc25828f2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_94398f18b80a4120be6f3a316d400369",
"style": "IPY_MODEL_41e5fbe53ae14b5fb6bcbe3f0b4f6f31",
"value": "Workspace"
}
},
"8e2a2d11848e4cc59b2b636849f125ba": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8e2c7b3f81b44e1a81b918a607ce6148": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8e2e7cfffd5c4275a4b9a828f8e38dd5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_6bbd809412b8499b98ab3dc13801a296",
"IPY_MODEL_2a8101d1749847d69b73ffdec3d3bd60",
"IPY_MODEL_5c330a6d33844dbea933cbc391b79af4"
],
"layout": "IPY_MODEL_04492eb1096642c39cb515e235bd9d16"
}
},
"8e3223c84cad4cebadafe003a11d491b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_56e94f799fdd4aa79fc2d99470453859"
],
"layout": "IPY_MODEL_bdca7c4e68614b1092029561f11416f9"
}
},
"8e4cece4216b4e32b7194707880aa4ed": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_e5063d5058754339b92ad82b8578f905",
"style": "IPY_MODEL_786f782a1c504c61907d5d1c45dacaff",
"value": "Reference Declination"
}
},
"8e542b9781dc4cf89f63895d029927b6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8e5c4c3711b542079752d92d590ad0e7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"8e6881e07b514f68bbadb7bfdbd77c64": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"8e7458c77d83497393b0d2282d24e4ca": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_e1071f12da7d47de8a8c67f0013243ce",
"style": "IPY_MODEL_d6e003f6818a4110a97dd1533489e411"
}
},
"8e74741813a34f978660671ab1f3b208": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8e8475582e684a0397fbe117c4c4d742": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8e900f23951b4be4a8e9bd13f2fd8430": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 SimPEG_PFInversion",
"📁 Temp"
],
"index": null,
"layout": "IPY_MODEL_10f578a789af43a380971cdf0cb1f839",
"rows": 8,
"style": "IPY_MODEL_e6f5b79ce35f460e8f4a6e2e937740c2"
}
},
"8e903fc7a1d04953b07d414298239d61": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8e91d470187c4d6d82e1b8cdbd58c6c1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8ea5f9acb932498cafa9aa66858b080b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8eaa3f924699400eaec51921a755bf80": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"8eab9cc6fd1f498cbecfa887de5cdbfa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 Temp",
"📁 uijson",
"FlinFlon.geoh5",
"FlinFlon_dcip.geoh5",
"FlinFlon_dcip_v4.geoh5",
"FlinFlon_natural_sources.geoh5",
"FlinFlon_natural_sources_v4.geoh5",
"MtDore_TMI.geoh5"
],
"index": 3,
"layout": "IPY_MODEL_8acdb59e37f840209893f0e9d3e5ea96",
"rows": 8,
"style": "IPY_MODEL_f3a2e06926ce44e9a8a4ae61df2a1cf7"
}
},
"8eb906ed75844fb38f72bca76bcdb746": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8ec12a601b1c491f9bd11b1c0df7ffa9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8ecbda4bfc1f48a2a3d9d4bfd29629c3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8ecf0c2476a045159cad0d72d18b9dfe": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_f9e7c3f18b694200807dd146f1aa8e8e",
"IPY_MODEL_9fcc74936f204048b0e0df1cf39ce230"
],
"layout": "IPY_MODEL_2c641e19a2e34bbc9a9da02bfac520da"
}
},
"8ed1d5aefb2b423a99ae0cb62e006e9e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8ed93ecef19a44888384fcb6826a51b9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8ed9665ea8f64988afc5a93a1350a248": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8eebfb072725449695c04f0303548b4b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8ef470ebd142412ca344405195f13e9c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_42cd1264076449df81966c5aa4397d4e",
"style": "IPY_MODEL_87d6ac42789f4d1480f11bbc40268625",
"value": "Starting Declination"
}
},
"8f00c8b2d0924188b5ac0b3189adba43": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_22d11b754a154349b3f1379fc4928d83",
"style": "IPY_MODEL_2aa4a169f4ea4f4d9642b72d7b0f84ad"
}
},
"8f09227f2acd450f80a0463e90bcfdb3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_481aa0aec85e4e1b8fcd0dbc8b319ea1",
"IPY_MODEL_9b0d5f25ff8044eb9118d0f7f0cb9d25"
],
"layout": "IPY_MODEL_aed4f7310f49492e864ccbe7d69de04a"
}
},
"8f136991d30a48b2a857eca9daf51f4e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_5f9a3db012f34a72ab28ef816d736366",
"IPY_MODEL_4193235b08a74daaabcf177b4438915f"
],
"layout": "IPY_MODEL_b22fff3f071a4b46ab35252d4d8d4c01"
}
},
"8f199f62f8534f4c82ddaef2db9ea2b9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8f1dd08d5721427eb47418bed0c2f767": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8f219593161745658ec3ba881daa7ae8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_e29aa6220a9e45e69ef35a3b8c1c7bc4",
"style": "IPY_MODEL_18154ab54dbb4ff8969c112a2cdcb0e7",
"value": "Upper Bounds"
}
},
"8f3112e4b0694029b5cf17b89eacafae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8f32d6c4f6db4079833b60c34bfe7ee5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_cf50743381a24478850d3d88de3b945f",
"IPY_MODEL_af5352e851294ab482b868f7be03d568",
"IPY_MODEL_3ce65ab0513c4775a4e9b150cec15b01"
],
"layout": "IPY_MODEL_24a2f51b403f4950b0c01e4b047d1730"
}
},
"8f36eac219104554a506e61c46171f89": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_e8d7126ea31541e694acdbfa050c89d2",
"style": "IPY_MODEL_e8c54d63e02545fa914d2ea21adfe6ac",
"value": "Save to:"
}
},
"8f3d61e90ec846c9aa32ec86e0872f26": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8f40e6d7446a4421b9ae137ffce99483": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Ore/39_Ore_Callinan",
"Ore/38_Ore_Dan_Owens",
"Ore/40_Ore_FlinFlon",
"Workspace/Inversion_VTEM_Model",
"Workspace/CDI_VTEM_model",
"Workspace/Data_FEM_pseudo3D",
"Workspace/O2O_Interp_25m",
"Workspace/geochem",
"Workspace/Inversion_DIGHEM_Model",
"Workspace/Topography",
"Workspace/Data_TEM_pseudo3D",
"Workspace/Data_ZTEM",
"Workspace/Mesh"
],
"description": "Object",
"index": 0,
"layout": "IPY_MODEL_67b9453a5765479698ebfa62beb6ad45",
"style": "IPY_MODEL_45dd9eea1a9c49d6a118b218f230e5b7"
}
},
"8f4c76012f9d4e19ba92a67c7e73faf4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "CG Tolerance",
"layout": "IPY_MODEL_7db05379854f47b885dd2c36c3c94389",
"step": null,
"style": "IPY_MODEL_849fbc5cdfa04db796d36e5b9a3a9c7e",
"value": 0.0001
}
},
"8f4c9a85dc9e489a922ccc2236b13c0a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"8f61218190a249b08e4bf112e17b90ac": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_4d761f1a05e84c5fad2711f3873db478",
"style": "IPY_MODEL_1711ce5f4e0e43e782257f0075bfa7db"
}
},
"8f7c57eb6b2a4fc78428c7c1e0697d46": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8f84ca4fcac54d9bb3fde672cf9637e4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_4b5babd4f6f045dda647ae0f1d97c5f6",
"style": "IPY_MODEL_464a43aced814c28b7d2bf131284dc98",
"value": "Save to:"
}
},
"8f8bdc2494ed422eb399b02b4a303e0e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8f958229f70f4734ab608e4c352e265b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8fa3b2d33601407ea2cda2282062c88d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_f9eeed564ca54073be86dd3992bd805a",
"IPY_MODEL_53b364de44644041a1fcd6a9161ec34c",
"IPY_MODEL_0c400c0773924f208c6a5914e3001ddc"
],
"layout": "IPY_MODEL_b6345bf68f7a4b2fab2c90dcc35b2a9d"
}
},
"8fabc7fe9d004d4da44b3dc5e82c874f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_e9e986f669c44b688e2bc392fbabc7c7",
"style": "IPY_MODEL_f9db9421064045208cc1306a7487e227"
}
},
"8fbfffb6246d44209d3ee54881c7e43d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"8fc4647a9ff4473ab8921a27b3ee7db7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8fc5533707474fd0b4a834f2ca38929d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8fd0257c094546f3a3234f9996ece1e0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"8fd7e9ceeb24453197c44ec40a80f0eb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_590f58a30ec244e6a601a70c813382c7",
"style": "IPY_MODEL_76c64d36ec794b98937241be19d90d18"
}
},
"8fe99eebf728431890050b0a5257327f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8fec414c6c81467cb984251367191b2f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"8fee0619e2b74ebe94de4f3c6ad211fe": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"layout": "IPY_MODEL_70acfb648a4f44d68aac886179405588",
"step": null,
"style": "IPY_MODEL_118bc86ec0a24048802b0f1489f60bd4",
"value": 2
}
},
"8fefd6eedbd64bcfa0764fbb4fb651d5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8ff196cfca8b4ee797cab0e3411b2847": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"9025e5ab876a47c7b8d63226efcc6769": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_15e4b793689845c1bc4ef27a8c5fcf94",
"style": "IPY_MODEL_71dd3791b98445e9a167a30bee0e585a",
"value": "Reference effective susceptibility"
}
},
"903658fe0b014781b1bd5b0cf9dc5830": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_2fa0aa817acb48af8fb23268d46e6587",
"style": "IPY_MODEL_3a3073340a4849ba959178c3019d7278",
"value": "Uncertainties"
}
},
"90385a6eece04889ae69fa9997dcdb9a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"903a288cede4458da5775c822f61ef62": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_c184786886ce4e22aa49da6733cbfd9e",
"IPY_MODEL_6476918ff97b477b85160350b4b5a123",
"IPY_MODEL_ddb208058d4b44cba1ad64a63b4bc5b3",
"IPY_MODEL_54d39ff93d4940e2aa1784a44de4385b",
"IPY_MODEL_72c866c66f1044cab4a92a56a655a9b5"
],
"layout": "IPY_MODEL_7935ced297e44ffbbaf171aa28fac8bc"
}
},
"903ce2c52e3f4591816286592ff279ed": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"903eefe695534267b1e6c80a8825ce20": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"903fdca037214f17bcd2e0fb92544dc4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Degree",
"layout": "IPY_MODEL_f7fda296b26247ed92ac840da5d21da6",
"step": null,
"style": "IPY_MODEL_49f681121a964a3c91aa7c065a761a9e",
"value": 79
}
},
"905862b9a85540c29a53253dc9da3bbb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9058d8602b744619b5d72c502077528a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"905c5b97e61041c3a25739f1717bdd90": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"90703bca3a794e778348e575169e4758": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9071cf8176a1412e83a9c028962bb540": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"907f398ab18640efb72843b727fce84e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_e58bceec93fc4eae83d43bdea519ddeb",
"style": "IPY_MODEL_f9f7e03d22534499b896493883169c1c"
}
},
"90880161620844f6bf0e9ea21d4b939e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_954723aa0ebb413abda9846738aa6102",
"IPY_MODEL_be86a7738d7b4ce7b59b15824d142deb"
],
"layout": "IPY_MODEL_011577028b7c405dbf94a5b8c9a800b3"
}
},
"909789300a814ac181d5bbd188ac659b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 0,
"layout": "IPY_MODEL_20fa4af2c4b143ae8106065531bfeaab",
"style": "IPY_MODEL_287ace88c20f4c1a8fa5bbde0fd29b78"
}
},
"909ee4bb4ea448d5ba7100f10499ccf8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"90a3fbbf3e844588a8440e47f29eea0b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"90ab35fd4f864b1787e9d726f6f13dda": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"90ba7f13c7814d1ab95b353fc5f5e2d3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"90bc191977fe4e6fa9f0fe890ddd31d7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"90bc863cf6f14dfdac6a097b6aeb4645": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"90bf32c9e2d4455db8c4334d24f4621e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_0ab09e71b1bb42b8900cac8044e40991",
"IPY_MODEL_7a858519283248a08ae9bf5d23636438"
],
"layout": "IPY_MODEL_f196df69a1bf4f388b43f4fd0d11aec4"
}
},
"90c12604ed0f40b58fca3a2b9764ebd7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"90c5e1fe7f2040dfbd05e9532a5a3482": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"90d189d052b94e5ab98911ec146cecda": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"90d92ec7e59042bba0fb64ba6b00c3c1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"90e0e8a362354598be426c6346f3515b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_a88b77dc001d466aa27042a7bd63447e",
"IPY_MODEL_87dbf01ab1ce42eeaa4cc9843d1449cd"
],
"layout": "IPY_MODEL_ae17b9cd31c1434697088e0a6dad3d86"
}
},
"90e11fbbfbe74007b3212159736ab8f5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_4a34e96070d34371815a0c288062636a",
"IPY_MODEL_f2d3f3131a3c445c8d2d8c97f90db2cf",
"IPY_MODEL_de23675b3e6444ddbe1ad0e11107cd07"
],
"layout": "IPY_MODEL_56ea308787a849509484ddd7f10a00d6"
}
},
"90e41b584d51442185710495067adb9b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"90e7345715664c8caca1ec43c4b80362": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"91008332182c4f75bc5aeb323009e576": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"91016b9339d14529a82b9f5c4da5a7e5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9101c8f64c02466eb821663500b6812b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"91092a97407b44ec8b9964774935da9c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_f1d5c141e87447669c2bc4e74cb63720",
"IPY_MODEL_a97929fe390e4156b9aac34cd36e87db"
],
"layout": "IPY_MODEL_87ddecd58b0346b78653c71ec78ad5bd"
}
},
"9109e50e59364b14a65c31193005c979": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_8fabc7fe9d004d4da44b3dc5e82c874f",
"IPY_MODEL_83fa9491376445a6bb1e69725c40d76a",
"IPY_MODEL_c0f1514a5aea4c16899791fa75fab06d"
],
"layout": "IPY_MODEL_e28ba1c7557c4049b9d53a19d9156c18"
}
},
"910d3e5157a743c0962c85edbaea5def": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"911041b0d14c43c6b2c2428b9f62f43f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"91105df1e37d4b61b345b8528a7b2137": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9122fd1aa79d4d97b22c7469601c40cd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"912794629785486fb254e8daa68579c9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_5b1bd6d89754419d9df348fd4c589f36",
"IPY_MODEL_ba387cd9e42e40fb98ef1ebc54d5deaf"
],
"layout": "IPY_MODEL_922e0b99709e4992879640d65a5b2662"
}
},
"9127f7c240e548b3a7401ca330b88771": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"91407400c2174078a8d153838b7703c3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_59b27c309e6d48afa0b6e4d822eeb786",
"style": "IPY_MODEL_6a2d5773419146b198a3aedcf6aca6b5"
}
},
"914e01de524c4b50ade3f79e78eba18d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"915b4c7cba2a4768852d922a8552effb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_a03734f646fc46098c1f6b8e40080d3d",
"style": "IPY_MODEL_11c0eae88105405cb979d5bfb1fbeb5e",
"value": "Data Count: 0"
}
},
"916579ae5b7140ffabb184cb67d51943": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_562a4bd67c7447688cedb2d7fa94b0a0",
"style": "IPY_MODEL_9f6e8e3550d94db7a005c2debed0f519"
}
},
"918d0679baea4ce9892f185ddcf1b70d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"9193face3c0c41f2ad12b60e1ca343bd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"9196326fcfd641479c571a2d0fee33dd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_792fab6230114565a24af2ec40f8f5d9",
"style": "IPY_MODEL_6fd8b468ba12470d9ac66ba8309d30e7",
"value": "Uncertainties"
}
},
"91975c7d8cd94303923b92376e513268": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"91a86a70c6c14d58a4d76de997e08548": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_e79b4afa259248ada318976c9d6ded74",
"style": "IPY_MODEL_50fb3ee7bff14e77a62e296226225e11"
}
},
"91c04f2d4aac49caaf5663c1f377c5b5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_d25a9e75d3284821b7d22fe04d022379",
"placeholder": "",
"style": "IPY_MODEL_e1437e6dc6bd4ca4a6a0d22d3e74b422",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"91c4c28c923d45389e78d2996cc66d05": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_b3e6ae1525f8472f8e8e4bd5b43f9978",
"style": "IPY_MODEL_60412f29f75348fcb9aff4494a2a72f3"
}
},
"91d533b2a4c345c4b4249dd7abf4dc7e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"91e0de99724447f68571dc1538c6dc33": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"91e6e58434854ec5ac5ba8855761a884": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"91e7939e64104a4fac5c13585c798c30": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"91f508d8b6594f5da3e0d8c51f02beff": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"91f62052d98c4966a9e88a7d65c51c96": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"921862f13c764bf7b90c66022617145f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"921c6e14f6e6477d92995e038205d1fa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"922045e650f8441a83abc3b911330356": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_a9300928d25c464cab362fb0c2234d61",
"IPY_MODEL_f2ede6d0843a4ac6aa488bcacce6764f",
"IPY_MODEL_55380f4e97f3453487786fbd4a75121d"
],
"layout": "IPY_MODEL_24a2f51b403f4950b0c01e4b047d1730"
}
},
"9226d2a8c33b4bc49f3fa734626fdeb7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_1207bef2644a4fc5a6bbfd071f6c9c02",
"placeholder": "output filename",
"style": "IPY_MODEL_7cb01fc2ad254b4a822413bd588ae92d"
}
},
"922e0b99709e4992879640d65a5b2662": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9248cef83002432db44d5324134432ab": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 0,
"layout": "IPY_MODEL_ada9a5dae68a437b85215af50f43c591",
"style": "IPY_MODEL_d45decbe0c0d4baaafd948c82f5cf842"
}
},
"924bb696601846daa4818d6822ddac41": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"92580d81cee3405bb26a1bdef2788ee5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_dbfa8dbf736c4dd484e08aa957f47c77",
"IPY_MODEL_4dd6eb002ec34dbc8f45075b52408581"
],
"layout": "IPY_MODEL_4f8ff2932c9648f489729cbe36bfe547"
}
},
"9261a778dc9045b28648b2d417b58a96": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"926a07d96176401aa9ab0262ac6c0d77": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_d915d6b2da4b4b8caf052e2a82895bd5",
"style": "IPY_MODEL_48739c54ceee4d3cbccffcbe670f5bf5"
}
},
"926f2220afe040af86b253eb0959ba06": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"9275f8ffc09245688a83f1aad87a7773": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_63115516e1f74549a259f19e41e46101",
"style": "IPY_MODEL_f23f3e1aee03418ca7ca51d798128ecf"
}
},
"927e9142b123400fb528a1d020b659ba": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"9283129daab24043b3a79ebc2153602a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"9284a54d15f945f49ecb90589b5f54a5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"928ada7a0dab43328cf6dd88526c6441": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9293995e870d42b2b1778aaec6a99129": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_49e4c4f920b248e9bf643b7988759ecd",
"IPY_MODEL_a8998fb2bc82486c95bc98bef8a049bd"
],
"layout": "IPY_MODEL_ba8e469d895745f89445c74a8d422adf"
}
},
"929451662c984c4e8f5b90ecc376d452": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatSliderModel",
"state": {
"continuous_update": false,
"description": "Northing",
"layout": "IPY_MODEL_6d86e3f0473a402eb8a823ac28a3555e",
"max": 6077578.83861151,
"min": 6063956.600608527,
"orientation": "vertical",
"step": 10,
"style": "IPY_MODEL_815bc491e38640bf81d5a1505d7657f7",
"value": 6072300
}
},
"9297fc30ab75421bbf4dc7ce05e46f1b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"92ac7321e7fa4d57a81a024d8e439462": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"92b7094f6dea4015878392da6ed44553": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"92bdf35f7adb46208b54edce83591b60": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"92d1395d246e4de49921ea2876fd20ba": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Units",
"layout": "IPY_MODEL_6910877ba97d4611a97a60ee2fa37bd7",
"step": null,
"style": "IPY_MODEL_0eecd408842f45168ab620edc912b9fe"
}
},
"92d38be3ff764124adc828cb38e4e36b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"92e402dd93bb494a93120a8d08942fe4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_80029314256648ac8762239efb527b20",
"IPY_MODEL_dbce98e647b542a9a434e651cc9a0fbf",
"IPY_MODEL_8514340da024419ba4bfbbe6c79e3d26",
"IPY_MODEL_5db84ea0643345b09130aa097a7d2ffe",
"IPY_MODEL_c89ab5290c3c429d98b721b032064a33"
],
"layout": "IPY_MODEL_27a7a7e10c5b4efc9a3c0a0c950a223f"
}
},
"92e47d715e46490eb73195ccba16908b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Degree",
"layout": "IPY_MODEL_e7f7bc0c3f0344c6b46d83324868b66b",
"step": null,
"style": "IPY_MODEL_17cf52fcc64041ffab2a678163c40e51",
"value": 79
}
},
"92f0fbf016e74c5fb45c128c9c4f23df": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"92f3dc55323f472182ac596fbe7ed2b6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_03de53185b9442eda857cdf123d9f3eb",
"IPY_MODEL_187734f02b9f4539b26bbc05a00d20ea",
"IPY_MODEL_3d65d6d4285a419bb9da72150fe88890"
],
"layout": "IPY_MODEL_24a2f51b403f4950b0c01e4b047d1730"
}
},
"92f9c15294f2488c82dac1087907a6df": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_10685432b86641adbcb40f4f75ea59fe",
"IPY_MODEL_6a200b553a704abeb7a3832bdfabe392",
"IPY_MODEL_c7bb05f3490e4b28b42d64067c68dac2"
],
"layout": "IPY_MODEL_24a2f51b403f4950b0c01e4b047d1730"
}
},
"93046823cc97479a991d8cb4de03af81": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"93180cc7cfc84ed4ba00ab3494657533": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"931b3f6dfc9c40cb9de97d3f05045a43": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_4df1984b877947c08349c86b9c69f8a5",
"IPY_MODEL_f3b0e8b8e48b490aabb55266c18204bb",
"IPY_MODEL_a59695778b3d40e1ac01303f9db801c6"
],
"layout": "IPY_MODEL_6f308d1875c4403893a33008cde8247f"
}
},
"9320f1c1c54747b0a3e29e7553e04303": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9332471cf67b4ba2bffb479c2f9c3587": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"934596882d23405eac1715e4033a87e3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"934d31ebbf434596bf05e8059ff06891": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"935b9358341e4cb7a4e4d8c04b568617": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"93700026b12f4d4ca271181a49103f32": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"9374d370b673451eaad6b146cc4a0324": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"93781f8835434108bd104329c413a116": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_7592b5e724204032a5075f41831ed9c5",
"IPY_MODEL_32cb0fbebe164e74952a637b5e51b7bc",
"IPY_MODEL_4f4b4a815160420d82a0f2101dfeed22"
],
"layout": "IPY_MODEL_738d14abf5cf4c8395d2addcc3d3b416"
}
},
"9389cb516a4440de94177cab8526d1d8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"938b7940a1e14d81b0e9431cc2211a07": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"938b7a773b19440c93e65541165d5180": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_6062df0fb4a14cdfb15aab37cd938c94",
"IPY_MODEL_cfa5b5295f7f40f5a9b94c553d9a050d",
"IPY_MODEL_daba4106c69d4fbfb39fc453803ec370"
],
"layout": "IPY_MODEL_42866d8ff22d49488d93b85c93faa5a6"
}
},
"938cb5ea503d46e3b307079f57d2ee9c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"9392f9644d594c32ae0d89c107c5bf36": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_d00903cf15ad45ac879722f3c5e0e451",
"style": "IPY_MODEL_52084436ca68457bbf11e0520c811e3f",
"value": false
}
},
"9399c25bb068487c8dea6d4cb5041b26": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_33406d7ba9094986bc0d929acd12e0a5",
"IPY_MODEL_b0cd83d4214949a392595d85317da2a5",
"IPY_MODEL_f97396588c8d447ba3fce599b2bdc0be"
],
"layout": "IPY_MODEL_3ae872bbeff5434b80b82f3d27dd439a"
}
},
"93bed2c24a0d495d91e3264b9f995a7f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Object:",
"index": null,
"layout": "IPY_MODEL_11e2f5dce9d94aa2b3237f879b4e52a2",
"style": "IPY_MODEL_99d1651da884487083ae941354ea2c04"
}
},
"93c1a5adc73b4d0dad2bd32035df2994": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"93c8ccee871e4cb396cbee063f613eaa": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"93d117b1c1ea4d129c348fe57fa1b54f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"93e7f3f563484109a0ee2fd76d534f82": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"93f21885f4cd4ca49e29a5e45a35d433": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_ee1892e4ca4e4940982f7736cee60910",
"IPY_MODEL_a98a2f11728d4ef7843e04471d667b1a",
"IPY_MODEL_3afcbe51096e444981e7cdeb9e1062c0"
],
"layout": "IPY_MODEL_12dd8dcc2da1465ba6eea67d7c6afbe6"
}
},
"93fdf5e485414d99afc3640ba358d078": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"940b4cbc64994bf48040adc444a0340c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"94196bbe37e04ec090e54a55e65f6829": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"941d9917a1484adc9f07af1b279e74af": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"942e5b37d5084d20a9861162860b1e13": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"942f019922f8494ea904786d6be43e5c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_837c5e7f84fc4e2eb2737dee17400509",
"style": "IPY_MODEL_c45d797d1eb943a6b5aaea2c87f86388",
"value": "Uncertainties"
}
},
"9436b9ee6ad545b69be9b84093067582": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"94398f18b80a4120be6f3a316d400369": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"94570283240a4b2b8a3d8abd614bd6aa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"Constant",
"Model"
],
"index": 0,
"layout": "IPY_MODEL_ed692e81c42247c8b0cb4dd1a4e8b341",
"style": "IPY_MODEL_2357fa6ac53440e6a22025e4de0c4323"
}
},
"94583866965141b196fd35435ca6aea9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_3e88b6a1a9cf48a9abe2cc26559cf48b",
"style": "IPY_MODEL_b3c0b94789794439acc59aef8a656c8f"
}
},
"945af7c8d14b43c3a0eadcc0f31f7dcc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"G:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"D:\\"
],
"index": 0,
"layout": "IPY_MODEL_66805b588e0e4a33b99200ce8290be3c",
"style": "IPY_MODEL_873b866f722c458c920e358e52d5d8cf"
}
},
"945b7aa7468543c98587c110d005143e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"946121c4fe2c4363beeb2345730dc5b6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_442028c6939e4863b619a3b8f30fa22a",
"placeholder": "",
"style": "IPY_MODEL_2ee6ef32d5244fe2862a00f76b349e43",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"9479811e32f941eb8e09cff9b4201204": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"9482bf24b9ba414db78f74727189b383": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"9495c56692314a1e9de7c1537dc28f48": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_e77d065a911e4de6ab5c1786e7a74f4f",
"style": "IPY_MODEL_b8f9e656ffd1402da660164680ec71cb",
"value": false
}
},
"94a04fa88b2b400dbe17d13bb2e9fc3d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_b697755d417c4fb684c0b239d9d0c547",
"style": "IPY_MODEL_7ed1129c518a4a938ef55bced56a093b"
}
},
"94b1de7eaeaf4e838029ffc76b5319f4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_cf7f75873c98415ea5d63ac9c83dcbfc",
"IPY_MODEL_dc893dd7e619400ab36ea16891f10ab2"
],
"layout": "IPY_MODEL_167a30c1becd4c89ba7b87d775b82925"
}
},
"94b74c4f03e64390ab7f3163c6f3bfe4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"94b8166b142441939cb3733ba806f40d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"94c8e33360934c0687d41f7d85004fdc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"94ca69352d614695b8380e1d99c2ae9a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"94caad78ae16479c970b33462f290408": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"94cd83a04cbe40a38dab1551b0831d12": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_50b33dc0c2f84699ad1313c4145eac25",
"IPY_MODEL_6c585ce2ce894038b8c130fa88fffa55",
"IPY_MODEL_f8e75f6e5d2c4848a1d3bd2a2ad1da07"
],
"layout": "IPY_MODEL_2ded96b474f0462290b47dd42bc9c773"
}
},
"94d3b9d209f94d87a044b7309285f5ff": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"94e2e970d0b143f48a935fbe6c935df2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"94e4b25030a543f199684c0b89afbad8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"94e5a60ecd5b4c459d31b7006b7cfce5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"94e6acbf16c849a5af6fff9928d6b45d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"94f36fbc7c004b3b8404e4403be68ca1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"94f65fcbc65646c493aae19a4c9086a6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"950ba2cb8e204f3cb35c56e160d3472d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_2a86a217beea44639e09a72ac0dd9d2a",
"placeholder": "output filename",
"style": "IPY_MODEL_15b78f91cad442a69852dde330009d59",
"value": "FlinFlon.geoh5"
}
},
"95177ceb8d864863b19a86e13e8eb96f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9518f652d50049cfa3a3e5af86e6f6f4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9520df617e8f4f8780162aa0ef866479": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"952245ac824d49dc9fa550f975f5cda7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"952776cab12e458eb75db7b55db5051e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"95348ac3f0d34f5981f7a32c0802e1ad": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 SimPEG_PFInversion",
"📁 Temp",
"📁 uijson",
"FlinFlon.geoh5",
"FlinFlon_dcip.geoh5",
"FlinFlon_natural_sources.geoh5",
"MtDore_TMI.geoh5",
"tem.geoh5",
"test_forward.ui.geoh5",
"test_forward.ui.json"
],
"index": 4,
"layout": "IPY_MODEL_c775116dc7e743d494629389be7455b1",
"rows": 8,
"style": "IPY_MODEL_eb9e859ffcb74beba93166c7a1065c29"
}
},
"953751510b38462facd59296e59311bd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"953dd8613a67479889d4e8df07cc3743": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"9541d1c413c24a609cb961f2359a5ff0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"954723aa0ebb413abda9846738aa6102": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_2d794bb460c949938bb43f8e015cfc71",
"IPY_MODEL_46eb851deedb4786a9942ebcc2f72465"
],
"layout": "IPY_MODEL_bc52064af9a24ad3af35bcf90d20e609"
}
},
"95691e5c444045f88aa60aba0b9e2fda": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_25cda8b3b0ce491bbc1a38eab2382628",
"style": "IPY_MODEL_6500519297234cc98091e1725b1bf675",
"tooltip": "Run computation"
}
},
"956a595345d44293b66cc49fa4fe0cf2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_433ec0cbc4c04410a75d098756bfdf59",
"IPY_MODEL_990e146dc4194925b67ae1f648289b0c",
"IPY_MODEL_92f9c15294f2488c82dac1087907a6df",
"IPY_MODEL_2624498a112e479da5d338350d899c4e",
"IPY_MODEL_3f2f53f9f0344b88b48b9466ecb4f453"
],
"layout": "IPY_MODEL_0a87a53ca45d40689bc757aab78e218e"
}
},
"956e527e243545be84f37b917f8d37b4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_0472986c017f4c2ea2425063f09e11e2",
"IPY_MODEL_1121081b4c5649b1a34f2f65a9b7405b",
"IPY_MODEL_1010c9305fb344b18aa1f9ab06430a49"
],
"layout": "IPY_MODEL_5efbaba784824795a1fe48bfa6a4ac33"
}
},
"957957dce65945ff926bada6d26436a9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"958862ce0ac64440bcd501c20bf264c3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"95a45d33f3c84d3ebe909eb5c57d539f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_1edb59d88efe47f3b120843c75b3a8ef",
"placeholder": "output filename",
"style": "IPY_MODEL_a076fbdc42fd41be9d7c9672fbb190cf",
"value": "FlinFlon.geoh5"
}
},
"95a48084ef8a4ac980c0bcafb5ace219": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"95ad1a392b92435f8fad9b25f35800f2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"95b129b751de4d52b2f832341465949b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"95b96c3a51b048868cf51aca5d2c7852": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"95bab137d34e4ba288fd559b1f6eb603": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_2f1be6593d9d4016add70fd3fb280029",
"IPY_MODEL_761dda0dd20a4a9d9dde308768f1eab7"
],
"layout": "IPY_MODEL_5d8dea060e0349d190568e04255118d6"
}
},
"95bdb7f9c0d149a383b5be66277fc52e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"95c862a2433344dcb0af8afe2df7c73d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"95d335a40ed44419923a988137556794": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_ca34c3d0ae90490b94c2705fc19b02d9",
"placeholder": "",
"style": "IPY_MODEL_74b892ae8a76407294d7c56ddf5691db",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"95d7a951af704cbc811e3fd61c443962": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"95d99e6ab976494ebc5407227b462b8b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"95e8911be867465ab39bb61fea43be34": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"95f45a7ddaa34492912da950758fd8b3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9601369733624d94ac5040d6951a94aa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"960c87406c5e4eeeaa74071ce3934bd3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"960d350cb8de4126a6b392858426fd29": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"9614856863b248c1ae4cd7e32daea8ef": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"9619847bbc3f4890b20a3feb4fa76910": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_af4d5535ab564f2ea960d40a97e9a3a5",
"IPY_MODEL_c6fb50f693e541618a98feec850e6687"
],
"layout": "IPY_MODEL_be09066e243c407dbdf854284dc84e30"
}
},
"961a9748190148fcbdfab21ddcc72876": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_45695fe1665f491b90ec017bec550a1d",
"IPY_MODEL_522ce5ba5d7b45299fa4c8d4bc6daac5"
],
"layout": "IPY_MODEL_2e67a5e8242347acb98feef2428cdf12"
}
},
"961c2f7d9620462981355766660cddef": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"962e7b3766a34308abcf7c606ef515cb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"962edcacc643481faf8a58f22e9e65e1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"963492f456744e36a376d337c53cde8a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_56b89703401248859ef5073e0cdb19d5",
"IPY_MODEL_a6aa5fd5f6574ac287acd375686c910c"
],
"layout": "IPY_MODEL_d5a991975d114031a5b31d8e01d3c4d0"
}
},
"9638deff01fc4aad9d20c72fcb56b3d7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"tmi",
"bx",
"by",
"bz",
"bxx",
"bxy",
"bxz",
"byy",
"byz",
"bzz"
],
"description": "Component:",
"index": 0,
"layout": "IPY_MODEL_747ca96dd57c41f29fcbe9f9020aa156",
"style": "IPY_MODEL_8a1bdfb64c2c4610b59a8a5414099171"
}
},
"963bae06cd5f448a8191d96da57bc435": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Values",
"index": null,
"layout": "IPY_MODEL_428d70a76511450092c0fad5e9fa87b6",
"style": "IPY_MODEL_f6e8350addb64e1c8227f2b9ed33d6dd"
}
},
"96401cec6171425bb394956802e48636": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9641adb3d66f4cecbb83f79aa73cf058": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_af591dfedba541fd9123b7051aaa7ced",
"placeholder": "output filename",
"style": "IPY_MODEL_f1d39a2de54d4f18b6d7f07c1309abb8",
"value": "FlinFlon.geoh5"
}
},
"964783bde46547aa96d1b3f9962859be": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"964e2f31d58b4891bae9342fe6ef7201": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"96655868c5984d4a847c47224ba99814": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"966a3449e0764c2f86f8f941f2389d45": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"966b345a16f543d5826807a5d600eabc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"9672743c21944d0098edd6c287ff8b9b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"9674f8aec64f499d85217497c9b4efdc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9679393648bc489fad06ad3d479c49cf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_05e9e4d6dee642d2b0cd625453990a49",
"IPY_MODEL_be15749d148046e5a8f37a00ff2aeadd",
"IPY_MODEL_1ea72bc962f545eda699543130c84363"
],
"layout": "IPY_MODEL_24a2f51b403f4950b0c01e4b047d1730"
}
},
"967d14189f98402d9919c04035dfb80a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"967ea79df09544cdbad2a19dcdf12303": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_e063272bbebb45bb82670191d82a470c",
"IPY_MODEL_bbdc7ff0a02b438c8956938f9cec0b71",
"IPY_MODEL_826bcbea2fd54a789d7951c371dac6e1"
],
"layout": "IPY_MODEL_3e25843ee7d64a7f92274ce4659dd4c8"
}
},
"96a2dc4028354ae0baf7d36440fc6c33": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"96b9079270bb4a2ba837dd40d73fa718": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_95d335a40ed44419923a988137556794"
],
"layout": "IPY_MODEL_fccc482763434e1b8de0335c3e6977f2"
}
},
"96bfe42ca8dc405b8f803c25dd226429": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"96c8845e165c41f883b22d28e78f52f2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"96ca87ce4f744a65a8d93dc27d371a1b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"96d043e2fb6b435b8ce7be9600007b1f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"96d2dae81c804ab79cde51fe28e8eaf1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"96d719a5d2d24b34bbf0c4a5356b6ce5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_3924ef876dfb4aa89d8a8232b07f9bc2",
"style": "IPY_MODEL_f56d6aad5dcd44039b1fe60a04512cae"
}
},
"96dae274fae54fd5b11f0cf16ab46d5f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"96e1fb52400a484580486fa860c490ce": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"96e7e334bee44b2c9ef5add83e22dd0b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"96e9bc737d9041878753f12731ea45bf": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"96f43e66c60b4714aba8acc35601b09c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"96f64c62081f40cc8882029dd3f04336": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_1885e7aa00364b168d1ab07faa5d1e60",
"style": "IPY_MODEL_b4ace61c4a3a4020b71d019f0c6fd4f1",
"value": "Uncertainties"
}
},
"9708c115757b40ec90f4618a2edc5c7c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9714a9aeb1a747e6ad7cb4388bc2b7bd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"9724db8c899d4bdaad82bd79f05ac47e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_de556b83bb0b4b7c9ca5b7c100260f6a",
"step": null,
"style": "IPY_MODEL_a8131663e9ea4d0aa9ac49713608c7d2",
"value": 1
}
},
"9728dc892b544ae59c87a38123a86448": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_10dcf99fc0cc4f3ca85d0ea6760f034a",
"style": "IPY_MODEL_816fe91312e2483fa22978e2ce43fafe"
}
},
"972df282463a479a9276d71577906d5d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 Temp",
"📁 uijson",
"FlinFlon.geoh5",
"FlinFlon_dcip.geoh5",
"FlinFlon_dcip_v4.geoh5",
"FlinFlon_natural_sources.geoh5",
"FlinFlon_natural_sources_v4.geoh5",
"MtDore_TMI.geoh5"
],
"index": 3,
"layout": "IPY_MODEL_31a8ab8c094144f4bd1b31388b5fb32f",
"rows": 8,
"style": "IPY_MODEL_2bbc4a5d1dcc4f588108aaeadad8e708"
}
},
"973203050d7648858c52cbce3bf68d07": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "IntTextModel",
"state": {
"description": "Number of tiles",
"layout": "IPY_MODEL_6a9128f0563f484bad4c3ceb0218eaa0",
"step": 1,
"style": "IPY_MODEL_717c2f5ea5b44429847de581178bd7d7",
"value": 1
}
},
"9733d1410d3d4b7b8250293efba2c25d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_57a2dc05047645aca79c5eb7004a5138",
"style": "IPY_MODEL_541349cc5c8f46febecb3d005aaac68c"
}
},
"973715c3fe0842af9560cc44eb92de44": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"973a76ade0db40c385ae76c4fe29f4a7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"973b5375dde3473eb049196cda7640a7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_40751a912a0b43d2a014354cbaf47608",
"style": "IPY_MODEL_b16a499d4e484ea890afa3364891c2de"
}
},
"973dacd62cc141b09c35272b42c5307f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"97424bbc18934536897fb8b0a1bbf6b5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_ef31a8a9deed407b9931da5f841b9e4c"
],
"layout": "IPY_MODEL_6a679232d3b543fc87d3b5ee83db40e4"
}
},
"97526cb9a140477eaa986d479269f718": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"975c33796e454dc59d671eb457e368b2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_b02bcf0f92ec44078f3f03fc66690f4d",
"style": "IPY_MODEL_0238dc183df347f09fb184d7766f0b5e"
}
},
"975c7ebabeb6429a9ed3b9466076874d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"975d5ed4a74a4b5a961f9c13f497c287": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_ecbbae17f86b499fb7a154312da46a0f",
"IPY_MODEL_1f2a7c48e9e5469685f4d6461ec49add"
],
"layout": "IPY_MODEL_7b6f07f6c6704547b19ddb98f769ad9d"
}
},
"97624e8570c145609c32c3f76b99b5d5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_08cbe2f89a34416d84cdde4785ff566e",
"step": null,
"style": "IPY_MODEL_0fd5116a6cc544b1bdfa4631d29c2b73",
"value": 1
}
},
"9765fc520c3f4b3d81d39da62b12db89": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"97697f1eb5884fc8992b07dba7b1a16d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_bf4d64e879ee4375a1e8ceea577b15dc",
"style": "IPY_MODEL_cf13dd1e9c6c4fc0adaf5d03c27a5f42",
"value": "Uncertainties"
}
},
"97705344b22f4a55b96c3ab1ef3bc953": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"978167f03e7346888a5fa1d8a8417f72": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"978506d67d7441e8ad2510f9d6e54b53": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"978a978427d84779b45eb68c91f3bef1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"97904ff11c58423abfc60467d6a79173": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"979aee4ec05046578adce02831ca41ca": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_3106471d4a8f4d52b54e802ead46c0a1",
"style": "IPY_MODEL_cc5bc2768ff042b394850f01595c6360",
"value": "Save to:"
}
},
"979b86182dc24733a7a1c88fe9010fa5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"97a6faf1d780409592f27195606974ec": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_0f90a5c839974f8b8f8f074bb72888e3",
"placeholder": "",
"style": "IPY_MODEL_e994ccdd0ecc4c8991a768f1058b2b26",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"97a87d8f28724784a6466bf4c86a2e18": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"97a9ad8e25284fc4b0b74d9d31c22eb0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_966a3449e0764c2f86f8f941f2389d45",
"style": "IPY_MODEL_722a018d08aa4735b6b4a9304d41e43d"
}
},
"97b16f6c9ae747508d1c910d13caa236": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"97b92511f278462b8ba9226c255386ce": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"97bd02e396c84769bd16c63d8e27dd21": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"97c4f04e16054fad8fabf53f49cf207d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"97c70a21f2b04bf5bd2da2195e9b2dfb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_536bede9e6f74206a34adae94ae28928",
"style": "IPY_MODEL_82c0b602aaeb408a8e244be1f345bad5"
}
},
"97d88d8f6ee64d239648a0837ae7e6ad": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"97e9e0f9f0834d8caabfaed1d6703131": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"9808426dce504b0cbab63c7bf7c113a9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"982929697cdd48a68f0d2ef1ae7dfe2d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"982cda3eb80e4b45a738fda26a27ee5e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9830224a38ea47aca4e239ac7465f59e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_3b2e00a716d84c81bb32ea29b520b322",
"IPY_MODEL_f0ea236129d149e58ac46a9fc3346098",
"IPY_MODEL_dc37fca7edb144088b475edeeeb2bb8d"
],
"layout": "IPY_MODEL_40e2d1c96e144270850efd960ad2abfa"
}
},
"98309ff03012436d854f840eef084b02": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"98403ea3c64a48f3b43d4b5a5427436a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"985441bfc0d3404f9537adf4cdc9fc21": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9860b079b8684b86a595caed8165d793": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"987012bc36f742d8bc44515e02caf5ff": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"98735e8fbed74c05b4397aa52f77c8d9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_7d4fc464b01a49a4b378ca5f3b56ab48",
"IPY_MODEL_1844bb348f634364ae02c7a78c537171",
"IPY_MODEL_9109e50e59364b14a65c31193005c979"
],
"layout": "IPY_MODEL_6946cec642c048439bb873a054b03991"
}
},
"987b908c8e6d49b38ed5cb33df870329": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"987ec6fb3a2146d5a9e378a3988f8b6d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"9883e343e7704785b8ace5f2326110d3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"988b6fa1cdfa4721ac204baa6f344c57": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"988d6151be544fd0b896d20806100a5a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_63fde1b030554d14af3da0047c481cf1",
"style": "IPY_MODEL_2f014398c61441dd932f8a216650383c"
}
},
"98a1fcc309c140669fb5a6d122e71495": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_ef8e70a2eeeb46dcad83b4829f85ae57",
"IPY_MODEL_01b60773b6e740f093ce29ef8fdefe65",
"IPY_MODEL_dff8a3b592a9455caa5c7d0c99117540"
],
"layout": "IPY_MODEL_2d428418fd75433f89d777731796a7a7"
}
},
"98a7eff04dcb48f0adcbf5c04146a0b4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_b9c69f6fcc1548b1b562086de648b887",
"style": "IPY_MODEL_ebbda4ad77a74e848b6eac0925e70417",
"value": true
}
},
"98ab012a59f84e4e93eac25affc67cc4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"98b162a2550b4b4a96ef9495e36db57a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"98b1e432e2734627810a14871139b920": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_91c04f2d4aac49caaf5663c1f377c5b5"
],
"layout": "IPY_MODEL_e9b196eaa9c44d22831f296e0ef9015d"
}
},
"98b459f633614fa794c04e7d4486dd7e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"98c31fd0487d4ac39dd466c4a7fd5a5b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"98cca78fcfbf41e0a82324f54b9045a1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"98cd50935aa7406d90e17e483a1b1cf1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_7ae0eceab2d24d39a42f6aca5955bdbf",
"placeholder": "output filename",
"style": "IPY_MODEL_acf1f9680467416aade551d2d00e17b6",
"value": "FlinFlon.geoh5"
}
},
"98d7df1a05a6491fbe0b95fe42000b18": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"G:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"D:\\"
],
"index": 0,
"layout": "IPY_MODEL_48e738f7c98749fa92c46ed25db9fdfb",
"style": "IPY_MODEL_aaae14da1595452390beec853058ea45"
}
},
"98d843327eed41e9838f21065aa36a53": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"98da229b5bd5405d9e69454a9d5f2d25": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"98e1d139b719416889509fa0ea0a84a9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"98e939222d1d4eb4b7d060dca0c5e41f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_88c18b6d5b1f416a8f567afb700b8912",
"style": "IPY_MODEL_1c139e43c3cd44429494601653df1a4b"
}
},
"98ec928b811f4e45ae246a5041c1cab8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"98efdb3435d5411ba73c56b200a01d11": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"98f4437459ea48a890bf1adcc7bd5f01": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"98fab007263146bea678c8a59ec89049": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"98fafad43f7c46b4919607cd60cd1433": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"98fe6979bcef487bb3f80e3339239589": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 .."
],
"index": null,
"layout": "IPY_MODEL_c2d6eb73e71e448ab6f9703e65595d33",
"rows": 8,
"style": "IPY_MODEL_fee5940a168349b399c598e860c89b96"
}
},
"990118d9c31e446e898d39f7e7d5921f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"99019cb9be404ac0b9a04a65c090e979": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_9f64256e72d24b2884411aff9cac7acb",
"placeholder": "output filename",
"style": "IPY_MODEL_baf5ebfbbe504f469adbba9412cb0952"
}
},
"9901a8b07fa9407ba37f6797908750f9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9903c29e0c714a52922c8b867668b313": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"990e146dc4194925b67ae1f648289b0c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"description": "Save as:",
"layout": "IPY_MODEL_dd9ca6e84b1e4803b5ba4c61725c76a3",
"style": "IPY_MODEL_17fc4ec5ee9a4a2d9abd42b1c7cef7d6",
"value": "MagneticVectorInversion"
}
},
"9915185c47c84878b95c775666bac4d9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"9917e90484734e27af4eb7da6b30b244": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"991a5d3ebd1144a2b054b1a9cb3f708a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"992535ec26bd46f79fc5e2f9c2ce6df7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"9927b3111c6a4315b3ccad854a47b2f8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"992ec6f0e23145679f733372757abf4a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"99312e6c225c4258a2c71779e00bc134": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"993249c2cd35443aa4af6d3d48afdaec": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"9934dccf7a6b4d82a36dcc61f4cca023": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "IntTextModel",
"state": {
"description": "Max CG Iterations",
"layout": "IPY_MODEL_964783bde46547aa96d1b3f9962859be",
"step": 1,
"style": "IPY_MODEL_85c5c88943f241d6aef220d16e140dcf",
"value": 30
}
},
"9941571c0dda40f29fd1c2b8f4944364": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"994a226bdf32445ab4c1abb1f823adf6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_a6801c595b2449c796789f3bbe319839",
"IPY_MODEL_d8f1fca7eb384391a795a65fa7433421"
],
"layout": "IPY_MODEL_964e2f31d58b4891bae9342fe6ef7201"
}
},
"994b00a4ffec409382ffc3fbf2df8302": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"994dab58ae50429d85d9c9987e3ea88c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"99603952d28d4992a6f09010c617f586": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_e1cf21dacfb24138bdb720b6e015e008",
"style": "IPY_MODEL_1488076b0c9446558208b2a11c28099a",
"tooltip": "Run computation"
}
},
"9966a8919be3459183a6c4a18b742d1d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_857c1fc7067740b1b8acaff9e8d59ca7",
"IPY_MODEL_3735683846294235be75642c13bcf19d"
],
"layout": "IPY_MODEL_f547a4e6f8e44711abcdd79051d20ffb"
}
},
"9966c62e7ec94b308b81b7d2eb08f3dc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_226ef355206d4cd79b34fa8cb679b30b",
"IPY_MODEL_0e00a2a5e51e47e0b2e914de5277fe96"
],
"layout": "IPY_MODEL_3656518e9458433084c606b9b60a45f2"
}
},
"9974be35480d463db4c88937484054fa": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"998435366d7642d89dd0713a07f99df9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_245a8f2fb6304d759b9514d053b4e447",
"style": "IPY_MODEL_023804b5c09a4c17a70d71e8d105bc0e",
"value": "Uncertainties"
}
},
"9985a3aaee124d12ba427872b290ecc3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9989b0849e384f749c406128bebba39a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_2b16d007fdfe4ebbaa911ef913d4d929"
],
"layout": "IPY_MODEL_9de81a3e301d461684200f5834246f85"
}
},
"9995ec9342264b53ac8d3dc532112035": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_2e281bc509714a2799c887dc11affc19",
"style": "IPY_MODEL_5b865478f82f491aa9d6b35ae47784d1",
"value": "Save to:"
}
},
"99993f9634ea48fb8a71552f431be7a3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"999a6e2826e84c2591d55e54795148c3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_8668a17a679a437fb2641152884c1ea2",
"IPY_MODEL_b02d71f42f1e45e98cf97d4b8d62c2ae",
"IPY_MODEL_2dfcec1c2b1e46938e7576166a2f3320",
"IPY_MODEL_23bc91b53e134c4389289c241386e101"
],
"layout": "IPY_MODEL_9541d1c413c24a609cb961f2359a5ff0"
}
},
"99b2593c8e0d4daaab1805d7add3d8e0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"99ba2b49896e4a4e94c0a48e0e656aca": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"99c89636f68e454e87c68ef99892ad2e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"99d1651da884487083ae941354ea2c04": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"99d2e897f78244aa89c2efbd50a4ea2c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"99e3f73ca48649c5b945b1cd2c1f55eb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"99e7dac4c92244a1afdef7ff86a79d0b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"99ed184676c34aefa31d946ff22569fe": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"99f1a62776c8484ba98b1660a1024a85": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"99f5c27a705e4cb98c444d5fed17906b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_bbfe0e81009247d2a31bac2a34a120ba",
"IPY_MODEL_7002a19e3a524e8baee61788e4a3e20b"
],
"layout": "IPY_MODEL_c98e9e503b244fbfbb3e8928f44f062a"
}
},
"9a047851263b4faf8e3ae853020cdc31": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_61fbba8a370842efa6c00287a4cfb8a7",
"style": "IPY_MODEL_cada81b527d44198b51a22d08fc47396",
"value": "Workspace"
}
},
"9a0c2634292f49d2a6b793a5d70f13ef": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9a0ed54fce5446b5be177f623643536b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9a0f351da03040b48c528923fe979bd1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_5f57e9ca982d4830a17a17450a3db086",
"style": "IPY_MODEL_1751c25600ac435591a2190c75c19b76"
}
},
"9a1254752a454db58dea4b3460be633d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9a1cd4e50ac9492aaf16e9c7b6e0b71e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"Constant",
"Model"
],
"index": 0,
"layout": "IPY_MODEL_100cb6df062e4a47b8f482a6279887da",
"style": "IPY_MODEL_2cce3c3967b74868b588b59d0ebbc035"
}
},
"9a270baac07c4de49c692cfebfa12cb1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"9a2b85ebfba04d889228eca7fb466861": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9a31611f748241d9880c62c78cb59ba8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9a3ed8b4fe3f4048a38dcf6394a9c968": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Ore/39_Ore_Callinan",
"Ore/38_Ore_Dan_Owens",
"Ore/40_Ore_FlinFlon",
"Workspace/Inversion_VTEM_Model",
"Workspace/CDI_VTEM_model",
"Workspace/Data_FEM_pseudo3D",
"Workspace/O2O_Interp_25m",
"Workspace/geochem",
"Workspace/Inversion_DIGHEM_Model",
"Workspace/Topography",
"Workspace/Data_TEM_pseudo3D",
"Workspace/Data_ZTEM",
"Workspace/Mesh"
],
"description": "Object",
"index": 0,
"layout": "IPY_MODEL_d5e30e5e6f8c46fba255e5e75fa5c15c",
"style": "IPY_MODEL_35f4b46760e74688a1db8b88efc110a9"
}
},
"9a42698d11ee457caa4429b8163d494b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9a44d674d83f4e7ba33c58f208eeff2b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Units",
"layout": "IPY_MODEL_1c137c3f23124ceba7d8f15b0c2cd1e3",
"step": null,
"style": "IPY_MODEL_45a85635b12f40a68ce4570d02a56460"
}
},
"9a484ef0f71b440fbcebeffd8db0a2c1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"9a51326cbd0c43d89443600fc9f92d9a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"9a56f1dc47f84a84976541e8bf9599b4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"9a6e9ba30f0e4b06a515b6e582de91b2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9a6f508ddcc44781b9453aefe4212a34": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9a7668caadc241d1ad1e4583d9d90fb1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9a8ace5b09024444a4187652309ab595": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9a8e12628bbc4b888dd57c1b5c4ab45f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_e7810121b5ed4a84bab7e67bf1c63190",
"style": "IPY_MODEL_eda0022802ac44ab9b5e7433b7953b94",
"value": "Workspace"
}
},
"9a9bc52c5e1d4aea99378d017c5813b9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"9a9c0c4f1da14e39ae10928eed42368a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"9abbb55e28bb45e5be1a72eb917251fd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9ac7c3c806c54ae5ab19960cf9eb9c87": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9adf6d2f6a1a431aa0a37935176fa266": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_c1002aeba0c4432687618caed209309c",
"placeholder": "",
"style": "IPY_MODEL_b226cee451d147baabc6ff0d65eeedc8",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"9aea0c76f41542f98ab60f6b16ef6bc9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_db325a9cf8fb4fa194bd0b1e2340d93f"
],
"layout": "IPY_MODEL_056a8dd722d4485e83b279b2889d3009"
}
},
"9afc1ca0e13544c4809699158a9b2a43": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9b08cc10130d4c67b93b26f49206a39d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9b0d5f25ff8044eb9118d0f7f0cb9d25": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_d387459e273542f49cd2b12770b63af7",
"IPY_MODEL_ad502e4a8f904e8782d39e7866c04c8f"
],
"layout": "IPY_MODEL_994b00a4ffec409382ffc3fbf2df8302"
}
},
"9b153ddc18554abab2947c61489fa46e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"9b15e1765537435f8f5ba2b2f15b727d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9b16bf9823d645d58329a438e5fa9488": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_f0ac61118f1744069ed326ad94f57ae9",
"IPY_MODEL_2603b232a01e4fde824de65897a18cdc",
"IPY_MODEL_37eaf310e07b49f8b39d378b7a8af752",
"IPY_MODEL_b8bf5257be41481aa238b471b06c06f5"
],
"layout": "IPY_MODEL_77c1b9284e3e457089a2ba994005d633"
}
},
"9b194423dc874343a9b5e5294f878f75": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_14c871756b8b401188d52602ab86c619",
"placeholder": "output filename",
"style": "IPY_MODEL_992ec6f0e23145679f733372757abf4a"
}
},
"9b1b5503eec948529979cf2dd1a4e8e9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9b26658f6350453bbd5ef05a3c6628f6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9b281c7ba9dd441a9e0c7456fe9259b1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"9b2d5427ba49442fb50378aecad18f7f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9b3262dc08894a65af023592db08c52b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9b3d22db778c49c6bfc5c7da048b4bdf": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9b3faedf7f594c41a074712ce6fc83b9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_d5ea3cdf8d92459abc1b621f900dbb39",
"IPY_MODEL_e1003a47725d4110a2c2b02a8a9315ac"
],
"layout": "IPY_MODEL_fe92cb19673145a7a58acab0e724b52e"
}
},
"9b448184c50649c28237e5fe4567bdb8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_64cc2bbef8f849aba40b1cf7d6ba7864",
"IPY_MODEL_b4d2b5d3e9fa4790817ab27d8764c07f",
"IPY_MODEL_ee36918013874b8aaf6d7f1a8a7fe7a9"
],
"layout": "IPY_MODEL_ad9fe9756e934a9883d50bf0e9726bf9"
}
},
"9b44d75456f14376bf26328c0b810b7c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9b4c5d3efd4c4d739bf6136007e79b66": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9b641611b60442faaeb525b395a81284": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"9b6c1e51bba044a2815e00354ad87056": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9b6c69d28934435db211b4f0346a5c1b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"9b6e6d224f064d9eac4b9e67d710a8be": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"9b772649d0c146a29e9603a6227fecc3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"9b8487c62ac1451dbd93ceb1d13f80a8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_40283afc14d944caa087e949670712bd",
"style": "IPY_MODEL_4b7ce057a6884d63b3c9efc55deb950e",
"value": false
}
},
"9b8a4cfc42e74fcf99f03da5152d21ca": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_ea026ab9e8f84c3790ff592a9f3efdda"
],
"layout": "IPY_MODEL_d57d7e69a7c3445cb06fd3388dceed2f"
}
},
"9b8ad57036524d5faf4f185a4074c9c1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_15915d7778844414bab1ae4e1393ad9b",
"style": "IPY_MODEL_df0e8ede66f04f09b0288eebe4cee432"
}
},
"9b974ec6162b47538228e8b2922cd217": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9b9b91b2bd604f57a54130e57f98a9e1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_9dffe2b695e145698ef5a2ac395e0bcd",
"style": "IPY_MODEL_077fcb99058c48b3b6de039618b87e91"
}
},
"9baca46f0792461abd628fa48aff1d36": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"9bafb07b9e804de891be45e2adae3aa9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"9bbded23b274498687c79c463bd81fe6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"visibility": "hidden"
}
},
"9bc1647eda904add8e32c6d79ea764a3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9bc76b8cca4241bc87a34695860b44b7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9bcae8bec9ef4a399cd87a18dba6dcee": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"9be750b2743d4b85b98ef17cde4dbdc5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_814fd20ebc404a66bbb30ec847983f9b",
"IPY_MODEL_1a7b4a8ed1d648d6a7ed5785c13b18a6"
],
"layout": "IPY_MODEL_a00ab33a4a1d4c35aa9467815c50abcc"
}
},
"9be811626b9b4a2599943a1cde541f61": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"9bed9ec8aa614b5da6788fd11fa610d8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9bf6e491d15f454fba0f16b458b44bc5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9bf908ce3da9430d99dd375d7903b6e9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"9bf92744e5cf4713914715bf93f3e4a4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"9c0bfc695a92493caabe080875c768c0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9c2352dfbc154867bf420863082193c1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_a18dbbcf30a348b39cb482be747fca21",
"IPY_MODEL_7f51176310b14e62aca692e808e55f04"
],
"layout": "IPY_MODEL_fc71e84ecad64d76b01b4d7989f8da92"
}
},
"9c2a44ccc2604a6cae0b1126e6e609bc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9c3a7660c1c747b1909719af8df06e6a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"9c3b472082a94c4bbd5af513fa9161ec": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_5b14c874fc6541f8aa2cb62b92a6034a",
"IPY_MODEL_45b3577f099f4e32b2a812ae1420bc94"
],
"layout": "IPY_MODEL_6be77a5fcbd24b9d8239554981e43947"
}
},
"9c46f64220ce4f02a18d286870f4eae7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9c48655062414defadd0830c64bd5672": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_1109080289704f779ac4df5d35407fe8",
"IPY_MODEL_e4d88de288ee42ce83785f6a172a2cad",
"IPY_MODEL_d016c0ea83ea467c8d9f92562ef9055e"
],
"layout": "IPY_MODEL_13c3c6f153b644d3b95aefd1cd412cdf"
}
},
"9c4b456e0afb4a798360995368c2d1d1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_bc158e0e746041e5b4cd28c914ef8fa2",
"IPY_MODEL_41bb8017ece3441a861f4e2c7445873e",
"IPY_MODEL_e981b0e57b9c465cb016e612314f2442"
],
"layout": "IPY_MODEL_cb378b6adef14c09aa48109142e4d1dd"
}
},
"9c543ade9e0a401287974c291a224ac9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_78f7a343effd4485bf19f172dac5b168",
"IPY_MODEL_7c8a81831fcf4af58a41595443ad5bd2"
],
"layout": "IPY_MODEL_12e151330e554e89be70f38c0acdbd72"
}
},
"9c5c2e2833e440edbf575c286d63b650": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_5cff7e6ec2ce4ea2af304a61aa768e13",
"IPY_MODEL_500f308ac6454f8a88379d779abbb4a2",
"IPY_MODEL_6a03b970e3ce460f89dae205462ec370"
],
"layout": "IPY_MODEL_24a2f51b403f4950b0c01e4b047d1730"
}
},
"9c5f9f1062e34be88409e0f646aff1e7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"9c7587fac40e481aa85cc234284716f9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_a0387a180bed41a5bc5503e591a3c61b",
"style": "IPY_MODEL_6384e22c1df64490976662e56eca3f29",
"value": "Workspace"
}
},
"9c7aa1fb044346a3940e23fcee482154": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"9c7da123ac5349608895328e8ce89fd7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9c823be070714bf2926d121edc7b2f42": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_58cfc402ce374b09a7df016178a7f3f1",
"style": "IPY_MODEL_6f31d09f71234b18a4ff17fc4a5e27cc",
"value": "Starting Inclination"
}
},
"9c93870d1eab4f5cb96335689b2026eb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_678789d217934498b389ca2430e7e841",
"IPY_MODEL_a3214efc210649bbb7cc8cf4b2eb7374",
"IPY_MODEL_938b7a773b19440c93e65541165d5180"
],
"layout": "IPY_MODEL_6946cec642c048439bb873a054b03991"
}
},
"9c9fd8c5f599460a884ed432c3880118": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9cabdc5c767b4acd9377cc15bbcbecbd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"9cacabd908654b498df2c911110e1e61": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_c1fcefe6925c497e91cfe80d1c498b82",
"style": "IPY_MODEL_70b2759b0db6497497517ba7fdc64445"
}
},
"9cae45597eaf479c8c8fa332199a4b59": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9cb0ef62c15248208fc706d96a27b74e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_fff08bcb47974544aa80a4d9f27f0350",
"placeholder": "",
"style": "IPY_MODEL_db54e7ff942e4d67857f87b6e7d6decf",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"9cbb7c1d90a74fc19864b84d73e0ecc0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"9cbce8cfe7b9467e97864102b84f2ca2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9cc2995d93974348ac397ea4fb8e6197": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9cc37a93dc954e6e96b2e7c90d3d301e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_34bdc152806b4298acdf630055d914d5",
"style": "IPY_MODEL_cec9047327bc4585b11c2c9f62f0c181",
"value": "Uncertainties"
}
},
"9cc9174cbb484b3d856ea63374693a1e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9cd643fe0fcd4c6489ebd614ce594996": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9cd6831d7f7442abbfe489c887b49718": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9cdd827ae58344f7a087d62d3721925d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_4cd77e71bf5f47eeb470cf0ffc9f7bfb",
"step": null,
"style": "IPY_MODEL_cb9370c05bf340c6b5fee3ff9a01b6a1",
"value": 1
}
},
"9cdf08280e324b65a1cefc0db2768210": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9ce59d9b83df4912a15c6f528ab01140": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Bxx",
"Airborne_Bxy",
"Airborne_Bxz",
"Airborne_Byy",
"Airborne_Byz",
"Airborne_Bzz",
"Airborne_Guv",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 15,
"layout": "IPY_MODEL_38e85500c7d84e978f39bc332027f5c5",
"style": "IPY_MODEL_ae125212de0a4efba5216aba213136cd"
}
},
"9d0996d4e4f345dabbd9197b75de4988": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9d0d847bd51044b190f0ece73161c4a0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9d18fd300651440b948cd967302abfe1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"9d254727e1f04b259a73c89638f63749": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_1ec613f1844c4fc784df0241d338b6a9",
"IPY_MODEL_0adc1aa5ee8a4537a31637781cf3e82c"
],
"layout": "IPY_MODEL_9a1254752a454db58dea4b3460be633d"
}
},
"9d2829e51a6f45038a90348d59387901": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9d3b8cb83a0c4b218139cf65c4201581": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 SimPEG_PFInversion",
"📁 Temp"
],
"index": null,
"layout": "IPY_MODEL_769fff05752b47e099d10e060c5e5339",
"rows": 8,
"style": "IPY_MODEL_8874870b85c948a2b611cf61ac2df1e5"
}
},
"9d511d3466b94964bab929b8cdbe5587": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9d53e47d4bfe4a2bb38ce1cc8a832beb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"9d616f5361eb4dc6a4bf1831b0c9fde9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"9d621103d3e24d668ea972d4c813f445": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_a3220f4eab4a40acb447e21fbbe95d95",
"IPY_MODEL_b66a5dc3398e46e9a3043f9eda90f652"
],
"layout": "IPY_MODEL_7d31d3cb56c14a459d9bb823b4754b08"
}
},
"9d671cd21ab14a76837a3671e719e599": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9d6bc6e3a1b04438937dec00e45f140f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_d68c320803be43d7a49f514912ac8423"
],
"layout": "IPY_MODEL_007c5278a287482686bb9ca2c7d67882"
}
},
"9d81c7a72ebb4df284d5b61550f71d87": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9d83e42f0bdc463a8fec191c8cd7e5a1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9d8a24da01bc403abc3b7cfe6adad469": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9d91200dc7d64645bb36f24eeb439780": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"description": "# Cells below topography",
"layout": "IPY_MODEL_a2ab119854064b16a10b3b19e42089de",
"style": "IPY_MODEL_839b82f92f9244dea8546beabc58a84b",
"value": "0, 0, 0, 2"
}
},
"9d9639ab6d444a6ea94266732f1b2c23": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9d980462cf1e4ace9cfc34f783272a1a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9da4ec63e47c411d946c8a712894e678": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_ea22399a636f4f10810a3efd02dd1bfd",
"placeholder": "",
"style": "IPY_MODEL_967d14189f98402d9919c04035dfb80a",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"9da62f3f5c0447918f091e292fbdb8ed": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_66d454fe3a9d4089a5c59e341820ec8a"
],
"layout": "IPY_MODEL_f0db81f2ddb34af8956ef40b568769a3"
}
},
"9dbd6cba95fa4993ae2420eec94ddc83": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9dc06ef88d14476097a8362ad1852697": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_8267aa484e7241389fe1c8f8477cfe01",
"IPY_MODEL_6282644b046a45139db8aa5c870e3095"
],
"layout": "IPY_MODEL_8c5e3592d46d4be9b81fde23a2953eef"
}
},
"9dc9a7ba058f48a3ac74ac1a45034ee6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_53694fd3cbc64f2aa3e7dd4add31deb5",
"style": "IPY_MODEL_338a5f2f76da46b79be1468edf947310",
"value": "Workspace"
}
},
"9de3decba9d3490ba28bef69ef57c9a4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"9de81a3e301d461684200f5834246f85": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"9dec2f6ba4e54ae5b2319872c4e1801b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_1154df7172724ba8bd1f8c08c294bf21",
"style": "IPY_MODEL_6317b8f0026b4f04b96489215235cb3e",
"value": "Data Count: 418"
}
},
"9df0e407d19943c2a0b22d4c3299a6ba": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9dfadb8a9910467d80f988a984481895": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Set Z from topo + offsets",
"disabled": false,
"layout": "IPY_MODEL_18a1b41e3d1d42899822986b1e50150a",
"style": "IPY_MODEL_c7b77b01be184c1e9426ac00641626e4",
"value": true
}
},
"9dfd1552df84464f8c0de923b3e76d22": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9dffe2b695e145698ef5a2ac395e0bcd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"9e0cd3bebe9b4aa49c8f0f9c4923194e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"9e10fdb3ec5542c1b6437ec4054b3ba3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"9e1665e525184d0fa1e0bda5906e0fc7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"9e1de3e38f5d4d6e9ff4e6648a957689": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9e2f167addaa4fd196ae249d6b26348b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_0bb1cf948b8a477386a74a64eb30048b",
"IPY_MODEL_79243313576d433aa8efbf069005608a",
"IPY_MODEL_35697fe32d4b445aad28021460f277d6"
],
"layout": "IPY_MODEL_fac5a48f160248fa8f399fed6ca5ac94"
}
},
"9e3cc10e00ea44fd86741eaab8375d68": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_ca2a3779efe6479990d59e5e216ae6e1",
"style": "IPY_MODEL_31a6f68635444e039b6b4545e94b7afc",
"value": "Workspace"
}
},
"9e46ddbf7e8448c49b21fda28a1b0eef": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9e4a0cf7974c43d0aa63cca89f822bd0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_8cc2d608c3cc43c5b11619a2a1c102e7",
"IPY_MODEL_2f60137cf3744fc6b52de67117dcb7a9",
"IPY_MODEL_98b1e432e2734627810a14871139b920"
],
"layout": "IPY_MODEL_3600a23f03df4a5181d3b459fb7b1f1d"
}
},
"9e58afbd8c8b4decaa987f4971e95bc7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_10d8e8a42cc84bc0ad5bb89e59376a3b",
"IPY_MODEL_49098ae50db541bf817e1b08e93421ce"
],
"layout": "IPY_MODEL_bd0b0964b3a8414d9a42c133d748858c"
}
},
"9e5e4c8d75c94fcdb9561ccc6d8721f0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_485dfe6f19c14ab4874c1a691572ae1f",
"style": "IPY_MODEL_7f0524bec68d4accaa50cef1845ff290",
"value": false
}
},
"9e72b85c8b7044398551cbb7d0d92736": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9e7996ceae124bbca7ad264a0d7246b0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9e813f374b52442e8e0b392cace897d1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9e8daae1b9704a03bbdd627608d08d74": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"9e8edaafa4d8463bbde99fc97d031a1c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"9e926e078ee74c2aab4cd21f15638256": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9e97c372e1b84db799719cecc6f7a517": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9eb038995f7a470fa4114b67716dc11f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_7c0c41691162450681867b9f47750c1c",
"IPY_MODEL_4c29f4e0acdb4db38262314ff454671d"
],
"layout": "IPY_MODEL_1b3dba4bf6574a48bd5d831fee5b9057"
}
},
"9ebe6675caf84856bb50d34f0c4ead8e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_f8da77d8537a447282f9be7b769d1d66",
"IPY_MODEL_3c21e58af75a40f080e2d5d2396a7049",
"IPY_MODEL_6c884f4fcb2d4d1190974a9219255ddb"
],
"layout": "IPY_MODEL_24a2f51b403f4950b0c01e4b047d1730"
}
},
"9ec37b9444ab4c3cadb38eea8d5bd5bf": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"9ec71fd657c3428780e6ec7615f435fc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"9eca58ce45a742208717f3abb22271d2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9ed201826c56486882fcbc7f4f788fec": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"9edaeb1f800e4b34954d075d85ba8e2f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9eee2c39d81b4ef1bd363e4a18a3148c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "IntTextModel",
"state": {
"description": "Max CG Iterations",
"layout": "IPY_MODEL_ead01f479a644064821c2252d76eea00",
"step": 1,
"style": "IPY_MODEL_3f72c1e3859b45dfb5c8d1b19ecf2dd4",
"value": 30
}
},
"9eefe57b76294ec4b259c199374d0ec6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"9ef24db5a14d41d58232dc7b4af24715": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"9ef26b3efbbb49578b6beffc97a47963": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9efc5700b27d4a1fbfcd576dd9ce5d61": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_cfa727f1c71f496caeb24bb0511426c5",
"style": "IPY_MODEL_0aecc02972b141db9dc4ae4aaed7c058"
}
},
"9f057373f20a4e1a9bd8973783e0b514": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"9f0574df578a45039d7e0599bc69bb84": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_7e032652883e4bd480abf3678c856497",
"IPY_MODEL_04abc0b90813406c8f2b7e33d2be452c",
"IPY_MODEL_45605442ce95459abefa79cc7c4ee6f5"
],
"layout": "IPY_MODEL_595883820d964b3c8863c842e87d095d"
}
},
"9f0dd80a695448e89d84cfb9dbb67dd6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_babd1e7bdb834bc28690866533e0d352",
"IPY_MODEL_076ef3b1b7274b399fb153241ac6cfed"
],
"layout": "IPY_MODEL_ab857d25664d40ab805f4bd4582c6a8f"
}
},
"9f0fc031ac88469186e26c9c2aac6985": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_dd0ed87feef34d909d23b2b0aff789c3",
"IPY_MODEL_98e939222d1d4eb4b7d060dca0c5e41f"
],
"layout": "IPY_MODEL_3a7a65467bf84b3a9bbc50aedabfc130"
}
},
"9f38adf9db7c4dafb46429b76ae1bddb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"9f3ee5afa640474093aff3625810206f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"9f418104690a47619b13cba57c978197": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_3687db2bbd854af2a323a6f6e359a18b",
"IPY_MODEL_174bed7dc0204a1a9e1c3704f064ad47",
"IPY_MODEL_ad554f5a1d06467bb93fd3603e94a4fb",
"IPY_MODEL_6a674f2afafc47ea8fc4f4f03bc5de33"
],
"layout": "IPY_MODEL_edd394993a794f2dbf5133004aa18d1b"
}
},
"9f42641ae0cf4db5808f48ef5eba38eb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"9f4c73db91e546f4a9ca13df8e97c3c4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9f516673e3a149ae9c8a99c86f93d891": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_9da4ec63e47c411d946c8a712894e678"
],
"layout": "IPY_MODEL_0fc37e23bc754438bad445790d7aadd7"
}
},
"9f64256e72d24b2884411aff9cac7acb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"9f6e8e3550d94db7a005c2debed0f519": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"9f79617e1c344ef3bebcf63ba4582657": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9f8a191673294cd0a53ea83cc5f8d903": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9f8f4491a950476e90e318d184984cf4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9f9373b371b14d8982fc7096a56c3b76": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_eec045cf73944713a5a2113fdad1fe4e",
"IPY_MODEL_d55f26523ea4418d90bd0960f5c7a72e",
"IPY_MODEL_9cc37a93dc954e6e96b2e7c90d3d301e",
"IPY_MODEL_2d609fde71214a2ba4fcc99099a05705"
],
"layout": "IPY_MODEL_29388ff0a8d749ffb8e5fa17851087d3"
}
},
"9f9696dc120847e6bfc2b81f3dbda96f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_9724db8c899d4bdaad82bd79f05ac47e",
"IPY_MODEL_14a6a731698e4c84bdee7d7f1c03c190"
],
"layout": "IPY_MODEL_25b5b337ca044460a82a26e7a800d460"
}
},
"9f9ef1d2181149deaf586e0dcd563ef8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"9fa35de2c55741eda7160951276d8e22": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"9fb3ba633d4443e3aab34dd01ca457d1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"9fb548db3837458698161518422d34c5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9fba5ccc288a44fc912a88e250afe1ec": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9fc2aad2a2ab4c00a5a7b9c9e26c48f1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9fcc74936f204048b0e0df1cf39ce230": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_dbe511f97fbb4150881af38d15ce2b8d",
"style": "IPY_MODEL_f4fef40503a04a6c807d43419c7fd3fc"
}
},
"9fce2f0d78d146f782a4dfef1c0f979c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_ec9e1151b2c5472f9ae7d803ac6949ea",
"IPY_MODEL_5c3ffcf815ae4744812e2e986c9ae724",
"IPY_MODEL_db19329766f6451ea9e009921c745e08"
],
"layout": "IPY_MODEL_f73d1f3a8a994adda6811285a2fe81aa"
}
},
"9fd5d7730a784f18b2c686dad0b34649": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9fdb37e43d8f42138aa01b1c7985b451": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"9fe79440945246a882d1f8af29a92dc7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"9ff5d50adb13497db87cf375e090f215": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9ff681ea3a5b4c2b8294e2d96470c1a5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9ffcef2dec984d75a8cbb7d0dda3d6bb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_605038d87479456ba146b2a5b5526283",
"style": "IPY_MODEL_5ee0b370c16741ad94bb35848f0a1373",
"value": "Workspace"
}
},
"a0041488bdd04d568f277326599e941e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a00628f5082c4079b1b85221213941e4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_4d98feb3241b400a8f4101a0fb573c2a",
"style": "IPY_MODEL_7ac5f1c493e845edaaf6ab5160c9bb1b"
}
},
"a0090a0c9bab4df1ab40bc2719047078": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Bxx",
"Airborne_Bxy",
"Airborne_Bxz",
"Airborne_Byy",
"Airborne_Byz",
"Airborne_Bzz",
"Airborne_Guv",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_ef5b793050814adca275d67e4ce862ef",
"style": "IPY_MODEL_a5906ffe22dd48ce8f53476bd53edd97"
}
},
"a00ab33a4a1d4c35aa9467815c50abcc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a01395e6bbe049c3a1fd5f4b818bd4bc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a01cd77241a14df29daf9d9e117874b5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a01d0b2bb5314271a6986944a8acfd0d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a024fe75e3d94b73b66a38e26068d7fd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a028b8f12f27439da5953125dc14ab82": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_a6e7dfb661984028b4a47099943433bb",
"IPY_MODEL_e96511d5298b497fa795f06696ee8078"
],
"layout": "IPY_MODEL_447588991bc243a8a8db9653b7230097"
}
},
"a03734f646fc46098c1f6b8e40080d3d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a0387a180bed41a5bc5503e591a3c61b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a0439f94efa04f13861bda093c1aba55": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_ed25f47e293949c29527d1bf04cd18ee",
"IPY_MODEL_02d4967f183c489b9d73025cb5a25ad4"
],
"layout": "IPY_MODEL_9abbb55e28bb45e5be1a72eb917251fd"
}
},
"a053bda28e894f75a13ecd0b17e7620a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a06462eafe7d460a98499bfb10d8c245": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a0723f010c7442c4ad25bd9301ef6cd5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_0e1264a0f4b34e6da49758025d310c23",
"style": "IPY_MODEL_6a2159ed34f44345a6dd99c641e7c485",
"value": true
}
},
"a076fbdc42fd41be9d7c9672fbb190cf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a082536bd8fc47baacde2bc10a1d3ea4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"a0855e82e4564a6fa28b9ad8380410e6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a088c915288147cb88a786d07c8b8374": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_12883641a9064b65b575761be439be27",
"style": "IPY_MODEL_c3f450822f1346a68df283c1d8bae5d6"
}
},
"a08eaf8e21fb404bad67e4a3db15be7a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_6c0099ea38ca45998e7b05952cf47cbd",
"placeholder": "output filename",
"style": "IPY_MODEL_6d14fee2fc174171b92faead4fc1f90c"
}
},
"a090b3d9e5974808be98fdec5819694c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_3556f4e672bd4d809b2fc85e2aeb9071",
"style": "IPY_MODEL_65229b55c4ef4c44a711bb72aa3fab36"
}
},
"a0a1148edd974c2fa9a6274cb91d0e75": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_19f056e73bcb4abdb6d7ba6fce0e1b52",
"style": "IPY_MODEL_052fc32bb9fb4632a6453a0f27b68ef7"
}
},
"a0bc2a9c10e54659a936fc46b66cf37f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_bf637916d795476d968eee0127682e9f",
"style": "IPY_MODEL_27f9cfad76594cf9bebaa33e343ebc7c"
}
},
"a0c50b8716e74a36b478abb4aa38ec1b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 Temp",
"📁 monitored",
"📁 uijson",
"FlinFlon - Copy.geoh5",
"FlinFlon.geoh5",
"FlinFlon.omf",
"FlinFlon_dcip.geoh5",
"FlinFlon_natural_sources.geoh5",
"FlinFlon_tem.geoh5",
"FlinFlon_test.geoh5",
"MtDore_TMI.geoh5",
"bug_mre.geoh5",
"geoh5_to_omf.py",
"new_data - Copy.geoh5",
"new_data.geoh5",
"omf_to_geoh5.py",
"test_file_2.omf"
],
"index": 5,
"layout": "IPY_MODEL_339c05b8fa8f4c768bae7f3947cadfbc",
"rows": 8,
"style": "IPY_MODEL_8a8688baffdf43aebff04ae3db14f943"
}
},
"a0c9110ce15240719cc5bdf783faedf9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"a0c9b1cb0f3d4d0289ffcfb060e6a88f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_14a53051c7f7423faee40ef37467c620",
"IPY_MODEL_1255fa65d6674d84bcd8d177050ddf31"
],
"layout": "IPY_MODEL_6e9441ed43fc439682abacb54ffa8c88"
}
},
"a0d390753ce643718ebb8f5e11e82a3a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a0e03b6e559c468ea5bdecd3e0a466ac": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_3af42aa3f907452ba3aabc4d4d461f05",
"IPY_MODEL_1850bd9f1e9b4462b560680077640b95"
],
"layout": "IPY_MODEL_22c9d166a7a943f8925d256fab7acf5b"
}
},
"a0ef0355fa4549b0bf7a862607fa9589": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_b1b67afffafe42b4b177e581adb7f561",
"IPY_MODEL_aeeea1c9ed5f45ddaa3c3ce1501eb233",
"IPY_MODEL_cdcb2b07aebb47ee9136f208d306473e",
"IPY_MODEL_413f69c39c8140aeb9ce15bd11b9383c",
"IPY_MODEL_56b0fd7e8f30401cae63d74786381b98"
],
"layout": "IPY_MODEL_43f89ab959144a02931cde2febbde612"
}
},
"a0f5e7863aa7464091068644ea9904cf": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a0f8b2046864443991f0891f3323696d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a100ac0da9324d7183e02a5027b4d573": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"a1058d3fe38f44e99cfe24607b0141ff": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a116c464f72446649f01dcc10505c636": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a1196dbfb0e448469aef67246c763804": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"a1198f3a96614e5a86f83edb44875949": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a1199c680ea347f7a5026968e77fde05": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "IntTextModel",
"state": {
"description": "Max beta iterations",
"layout": "IPY_MODEL_d03c40b4c0224bd181e2df71ea146196",
"step": 1,
"style": "IPY_MODEL_01edcd85527c460aa2381d495aa142b6",
"value": 25
}
},
"a11d8fa10606414aaa236ce9ef630281": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"a125029ff37249b8bc31892eeb9f035c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Vertical padding (m)",
"layout": "IPY_MODEL_b286828f947345d7914ef4d33a159882",
"step": null,
"style": "IPY_MODEL_a64b783fb3d14fb3a8e9557a1e2e20b0",
"value": 1000
}
},
"a12774a99eca4b24985f43210713d2fd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_0940b1eefb17456795f5e1a54848293b",
"style": "IPY_MODEL_26424ab400414e4194abe35fbf7829d1",
"value": "Starting Inclination"
}
},
"a12a7bf0ac004c48bf4630f4180f38b3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "EW-gradient (x)",
"layout": "IPY_MODEL_a1eba16c8b35418a81779082fda16c99",
"step": null,
"style": "IPY_MODEL_c0e8a4f590e04b7d88703fd84e25a09b",
"value": 1
}
},
"a130a5c1fbc54a78ac51a32e922f15b7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a1343748a00e43b0b87b03c56f443cfe": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"a137dc7e7a664ac1bc248b8e6a062f9b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a14f7a47598649b9a478686e0be13be8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a15e353e446a4e8797e10f8bd112bf96": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"a16e61cdcebf40ba9c6656d45864e3dd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a18c31c45bc44284947cc0d31601ce95": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"a18d71493bbe4d679c39bf25ebe99375": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a18dbbcf30a348b39cb482be747fca21": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_cdebae91e4ec461188ad4d1b437a8f26",
"IPY_MODEL_072d6f59873d43afb415ed724ffca3aa"
],
"layout": "IPY_MODEL_24fc237283ba4b529704a8981ec0c0cb"
}
},
"a1973fc149f34999adc59f668cdfabbe": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a197eb21b6bb4ab8a27b39a4328bc7c0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a19f954c6540464b912312e4652348cc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_e48241d9d7784d84bb38600fe7435691",
"IPY_MODEL_434390409d004955bc688a014e2e579f"
],
"layout": "IPY_MODEL_b51d2293dad34c2bbc4912e7d68ace4c"
}
},
"a1a1edcaada74856b7a0a09f2828af00": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_b2806cbf8cca429dac90d0391a4ddab5",
"style": "IPY_MODEL_e114e308550744c4ac87f5a2cff01f77"
}
},
"a1a4b08f4eeb4f948c18180678d77c8a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"a1b1a696f1eb47639e1730976c709946": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a1c41457d1544b08858ce02a4f534c42": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_cbbabd686ebf419a9b95deb3ac9abcaf",
"IPY_MODEL_3d465a6bb27e47b998642c90d95cc58e"
],
"layout": "IPY_MODEL_0601505acec04934af8de45cc4eb15c1"
}
},
"a1d740ce87184e6a82fd9869c0475512": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a1dc175829424d6d9ca0424e4f4802e4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_cef3d57cb0514464b5ecf7626ec84d83",
"IPY_MODEL_dd5ec78c4e0b4b6d81aa1e2a0a400097"
],
"layout": "IPY_MODEL_a3c725f282654ae7b14a06cdf85b9ec1"
}
},
"a1e7c8608cbd4e00a6c24a88883d2193": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a1eba16c8b35418a81779082fda16c99": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a2092280cbeb42f7a4ac4726833f9a52": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a20b0f1a6d8b484bb50c182a10d813c9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a221c08938c44b8cb4600b13f2894765": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"description": "# Cells below sensors",
"layout": "IPY_MODEL_d4612f51ba2c42de8c8f82692b76c82c",
"style": "IPY_MODEL_4d573fa1bb5445149504727657bf1e04",
"value": "5, 5, 5, 5"
}
},
"a228082277804cd2a35f255a91cb8d26": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a24248599fa54dbc8ee3995d8dcf8b1e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"a24f24d669584f2d8f9bbbcbe043381c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a252ea0afe224fbb9b44b4c60b9f8cc7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "IntTextModel",
"state": {
"description": "Max CPUs",
"layout": "IPY_MODEL_a2b7a37d5726431eb6974380249180d7",
"step": 1,
"style": "IPY_MODEL_f7f807f9777e4f4582237aa0776da8e6",
"value": 6
}
},
"a25a9434d1fe4a4ab4daaa8f0db98e39": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a262548be75b4b4fa987b5904ed871ba": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a26fbfda2ae840b79c8d1ca292045556": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 .."
],
"index": null,
"layout": "IPY_MODEL_180586af85484564a802be0dd3784141",
"rows": 8,
"style": "IPY_MODEL_bf67addef91d4c4cbd1ed2efd39d500f"
}
},
"a270a3af629f4a32a6b94fda241d2667": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a27268be459e4083a0e05f6c249a0748": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a27b5a26a32a4c208d21986e3d9966f5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_2d33d12eaed34c91b5c79d7cad0d4653",
"IPY_MODEL_5fcb9e7a0770407c98104597a693b857",
"IPY_MODEL_6da1f75b2ff849508d10fb2a379baafa"
],
"layout": "IPY_MODEL_8e5c4c3711b542079752d92d590ad0e7"
}
},
"a27f95f8a7b1492f91260582110fb62f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a281f225555e41cfadc40fa075d0148b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a286866db9ce4fadb049bc899f4969a8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_805efcff5a6540748ec36c160217cf21",
"style": "IPY_MODEL_cdd5cef249634b0bbda3789901534ca8"
}
},
"a28ceeb959bd4b0a8d587cd81c945148": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a28f451006de4b77b0e406dcdd8fb17d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_9df0e407d19943c2a0b22d4c3299a6ba",
"style": "IPY_MODEL_0bda5d1df0054176872e280270b77624",
"value": false
}
},
"a28fc37f2f6f46faadeca52a7a038d07": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a2a5bade43e5451ba32ea42218339131": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a2ab119854064b16a10b3b19e42089de": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a2ad56813c614793b657662e2f767698": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_504c4c3040054ce7a3de18e0c87ec0c5",
"IPY_MODEL_5ae98574a04a478b9938d29a44d0a1f3",
"IPY_MODEL_3b9ce5dd7bf04ccc897a25e05c47b3d5"
],
"layout": "IPY_MODEL_67187df6b38b4469a68c9b0ef0f01b2c"
}
},
"a2afdcd17aea438a80f6da3932335d36": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a2b40a44f71f493a8ce3f5240bfe96b3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_38194eb3e2aa4a39861e56d330975eb0",
"IPY_MODEL_4d93367eeaa94baaa38fbcfbfb84fc29",
"IPY_MODEL_95348ac3f0d34f5981f7a32c0802e1ad"
],
"layout": "IPY_MODEL_81dbea05537444e7bed031787a767b5c"
}
},
"a2b7a37d5726431eb6974380249180d7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a2bba509d2d34296ac25e6a7c40ce67e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"visibility": "hidden"
}
},
"a2ceac028b884225bdf9a79b0eb72e38": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_267bf8adddaf459091e9988fd9555194",
"style": "IPY_MODEL_26678c19d992413c821f14ba788de82d",
"value": "Reference effective susceptibility"
}
},
"a2dbab519adc4057a0b1ccd1a54e6605": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_b7dc8f6c3bb543ee969bb61203a10fe5",
"step": null,
"style": "IPY_MODEL_395a23b570cd40f9934a54c4ed77b225",
"value": 1
}
},
"a2e1f13dc9d44c588f2d8bc531310510": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_179f6b536abd4c9fb6f0e0877507058f",
"IPY_MODEL_b269962202ed47b98c090b17d23722fa"
],
"layout": "IPY_MODEL_7e551f58673c4497b6faddf16bf0af40"
}
},
"a2e58063c8264785817097bd3644fe62": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Values",
"index": null,
"layout": "IPY_MODEL_f1342d4dc05e4941a85a6f54cd6d8b12",
"style": "IPY_MODEL_306309eddd1845aa832b80fde450ba3e"
}
},
"a300960c585244418ef95aa77fd2aaeb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a30773487ea547f2a26f0c79ce052753": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a31a1a3d4efd4de6bc9278ff17bd09af": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a31cb17a771d4e03bd8ae9c27ecaf77f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_7b4a1c7f9c5a471fbc52d0c7a9de13be",
"placeholder": "output filename",
"style": "IPY_MODEL_7bb2b67b12db4925891eaf9eec5386da",
"value": "FlinFlon.geoh5"
}
},
"a3214efc210649bbb7cc8cf4b2eb7374": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_1d2a53f5b5684a9f9cdfcf8b123e3d6d",
"IPY_MODEL_99019cb9be404ac0b9a04a65c090e979",
"IPY_MODEL_fe267d56d132445c94a554af22302f9c"
],
"layout": "IPY_MODEL_76850c2bd32d49838d4a1e2daee2eecb"
}
},
"a3220f4eab4a40acb447e21fbbe95d95": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_2154873dcbeb49f1aed503c0ce90ddd0",
"style": "IPY_MODEL_14e1ae0b197e436fbc1772b7c806142a",
"value": "Save to:"
}
},
"a32ba49411d6458896356b423d0448d9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"a336181f8b2541efa3b7ed0ae4d70704": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a33dd5705970424ba85e2849fe842ffa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_37db1adebbd94c9e852ce904654e9d6e",
"style": "IPY_MODEL_78065716cd5e4c98b98608c9f7208051"
}
},
"a341ed8f2d0f41b58f052d0add81c3ea": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a35b12208f98480d9f19e95ccb4352bf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a35e8f8bef494ed9986d2a237fa5caef": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_203b9530373d4183988fedeaf9ad79fd",
"style": "IPY_MODEL_411b2f1c6b3748ffa21868417bcbd598"
}
},
"a361a59bea7f42f29d29a9267f0a9d0d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a37e49f2f9e644feb22e82ad9e6f1f69": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a382eb0a598f4d158f97fb01d42fadc1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_71e04b88d2db41e3a032deb3bfd91c48",
"IPY_MODEL_d68c00c60bff4e4d8fc3bb88dc9bdbf6"
],
"layout": "IPY_MODEL_a6321bf3d019485ea258c6ebd37d2a4e"
}
},
"a39123610877472a9cd3d3cfa5d47471": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"a39cdb1075c74d2e850166d56697d988": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a3a14ef6f6384fecb7e8bcaf335e7607": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a3a1b559571341598f3af56e1ecc0aae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a3a5ff9899ec49edbfaf763e6b257e01": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"a3a8678a7f8947d6a65546ee78924e39": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_e60bc0a9649445ff93517942fa8a7828",
"IPY_MODEL_cf4b2f3678c84ee6a121eb7117896a11",
"IPY_MODEL_903658fe0b014781b1bd5b0cf9dc5830",
"IPY_MODEL_4050a9afddcd43cbbace5aa7d49a1e5e"
],
"layout": "IPY_MODEL_c16a858c170b41289ab3e67f0fe30835"
}
},
"a3ad647cfeef404282a8043ac644d321": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"a3b6decf1f7843158958b9892f42aaa9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"a3bfd54da116476ca5eef9df1b732097": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_7ab81316c5c448f991c7b8b99014f7f9"
],
"layout": "IPY_MODEL_9974be35480d463db4c88937484054fa"
}
},
"a3c030614cb649f6aac2e7118d6df008": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"Constant",
"Model"
],
"index": 0,
"layout": "IPY_MODEL_928ada7a0dab43328cf6dd88526c6441",
"style": "IPY_MODEL_339a2e345a02440fa40d9514a9025f2d"
}
},
"a3c524ee8147412bbcb45294909c8252": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_f61e00a80cfd4188858e94e1e0c0e01d",
"style": "IPY_MODEL_1daba7e319be451794845779384b4c19"
}
},
"a3c5445289e4444aacb7bd74cf953750": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_a970dc0c416d45709a487e564075550c"
],
"layout": "IPY_MODEL_bbc13e9a61c9456f82ae4a20c30e707b"
}
},
"a3c725f282654ae7b14a06cdf85b9ec1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a3cf3cbcce6e4656b9f8d265619031bb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Object",
"index": null,
"layout": "IPY_MODEL_0442610c8b5745db932e81bd8c14c5bc",
"style": "IPY_MODEL_b5a3c3b901194b1abd1fb7b3efebd517"
}
},
"a3d316312e0d4c2ea35b81fed46ffe54": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"a3dd0d71571d4ee1873c0c4fe5286406": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"visibility": "hidden"
}
},
"a3e4c20c1c7c4251bc89d46df40262f8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 SimPEG_PFInversion",
"📁 Temp",
"📁 uijson",
"FlinFlon.geoh5",
"FlinFlon_dcip.geoh5",
"FlinFlon_natural_sources.geoh5",
"MtDore_TMI.geoh5",
"tem.geoh5",
"test_forward.ui.geoh5",
"test_forward.ui.json"
],
"index": 4,
"layout": "IPY_MODEL_ad33b46b42f84b109cad4db7c67e0c0c",
"rows": 8,
"style": "IPY_MODEL_bfbeb6e7616e432bba19bbe2eee4dd3c"
}
},
"a3ef2572ae294bcc86a06c638b95c71a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a3f0e8a92a73488fad52b8b4ffd86fef": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_3196b61c96644d3ab33cd4972bf3f855",
"placeholder": "",
"style": "IPY_MODEL_4308faa1d6644749976edd01e286919e",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"a3f7020aa81343a8bd53c3b098c458a4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a3f7c8469f1944618f3ddf8613b7962d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"a3faf28827e540999cf74a0ef07bfe12": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a3fdea1663c940018b21a6bb999616cb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a3ff1745dd4a48989fff5f23050623a1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a409162e741c441b964a6bcca655b3ea": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_1a9644ac95c0469ca1fa9cf454e97f4d",
"IPY_MODEL_0e226e769d2b45c896c3ee8e440eea4a"
],
"layout": "IPY_MODEL_32a12a7f042c4a1b9b43a7e84f860608"
}
},
"a4128deeb70a4223b7484979b1cb3870": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_7c208fc742224d66b21723d2f049f4af"
],
"layout": "IPY_MODEL_ab651af4566048cc88262e5873945946"
}
},
"a427af81ceb94a58bb3fa2ec2651e2e8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a432fbc059724fe484a3517f745ad9fe": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"a433e82c8c4c41f1860fb04c2da015cf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a43aa015527f48a9b1745c2c6c1895bb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_c7006b36fa21459ca26cdb49330274f0",
"IPY_MODEL_2164972ad1aa41a6887fbf7097d8dac8"
],
"layout": "IPY_MODEL_b7cda6f81a66456b8b43e83232d8924a"
}
},
"a4433e75b2e94cccaee8a798773b9e93": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_cdbc049ba6b645759b524cc7eeaae107",
"style": "IPY_MODEL_bbe46111b10f4e7b8b5deab3af5f48e9",
"value": "Workspace"
}
},
"a448174523284f85ad82cdea8d6e3be8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_de4037361c56490faf67fbf18e2ae1cd",
"IPY_MODEL_dc2a1da1a5874301a0a3fe9a91ed7b1d"
],
"layout": "IPY_MODEL_5e16526a23cb4a18ac74a317c3ae1e9f"
}
},
"a455cf787c0d435c8db30ee2676c5945": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"a456edc714b04e0d8996e0d586accaa2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"border": "solid"
}
},
"a45ba3e0fcc64184ab5fdf9fb04ba547": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"a461914c9ec347bc8107da694258dde9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a469f5b3e38b4fa4abefb6d04adf39a7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_22ed23a57cbc4bccad0b4b8c945d855a",
"step": null,
"style": "IPY_MODEL_65b097d373c14a399eccbf6e2a2cb987",
"value": 1
}
},
"a47970031a4f41c281043ea96b1f0bb3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"a47f0afd37ad4ebc8ea6e1134a208fd5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_a281f225555e41cfadc40fa075d0148b",
"style": "IPY_MODEL_d83c113a86404ca3b8a6827324522fac"
}
},
"a480835e2c804dbaad9db4e05a4453d9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"a489dae667db431980e6d05268e3760e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a492af685d344479a00ccc3742b5780c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_47be8df87bf94fafb2888c3498a04c21",
"style": "IPY_MODEL_2fc4e083f0f345c1832985d618780852"
}
},
"a4a46519b25941d194c9ce5c28535501": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a4b8a8dbfdce4599b202c36ea4a47f69": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_f8c69cdfe68b446c99c7deae1c1682d5",
"IPY_MODEL_0bd023f5f5244e9bb80439f1f1ca8b09"
],
"layout": "IPY_MODEL_fa420194a8d24c10a7e77779d6e28b68"
}
},
"a4c38f443ded4122aef45671584444dc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a4c3b291a9414e1c99f0f3c0dc220ba4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_b8626502f78644e1a9e11891695f381e",
"placeholder": "",
"style": "IPY_MODEL_39f6a523a7d54a47afe5efaa9166cb02",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"a4c47ebf80234ff5993f10ac09dc89df": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_f0556e121c64498e9a3bf9936dc94ecf",
"IPY_MODEL_6574e3422f8e4a31b0e7a6461faab0c1"
],
"layout": "IPY_MODEL_a862fd3cc34044e1b28550e03e84aa5a"
}
},
"a4cd187f6e3e42edb0af9b4fe0595c6e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_bbfa4955e4a640ffabc58d80f3a762e5",
"placeholder": "",
"style": "IPY_MODEL_1fa6f6692eb84fd9a0b6adbb19fbfc6d",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"a4f7d6a8fa964d818c19d2ad87b7883d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Bxx",
"Airborne_Bxy",
"Airborne_Bxz",
"Airborne_Byy",
"Airborne_Byz",
"Airborne_Bzz",
"Airborne_Guv",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 0,
"layout": "IPY_MODEL_6a3056756a4646d4ae9d7d9e61213da1",
"style": "IPY_MODEL_bc47b1605ecd4e6ba809f964010b4535"
}
},
"a50777cbf24c41d4bd66801539471084": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_a409162e741c441b964a6bcca655b3ea",
"IPY_MODEL_9c3b472082a94c4bbd5af513fa9161ec"
],
"layout": "IPY_MODEL_c93c3dcf640a49148153fc7fd1eaa4d6"
}
},
"a50dc97e2acd47b092f3cc9321ee2ee3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_6230845b57254a55b2c96b9a281bf9f2"
],
"layout": "IPY_MODEL_c41ec92bb0c64af4aa3aaa564d90902f"
}
},
"a51038f0454b4b1498e643d82b153efd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"G:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"D:\\"
],
"index": 0,
"layout": "IPY_MODEL_d474bd233c584f8e8b4edab7f24e28da",
"style": "IPY_MODEL_c307698690994462a962fd28fcc84e74"
}
},
"a514308e96d345bfb188d3f66920f9e4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a517fb72c49e47b1b1e8d94ba657de44": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a5258a5a35d34287bebf540eb2418f06": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a52fb972c3774a328eaab1ed2fd7204e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a531dfc4e73740188eab527fcbd48545": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a533548fdad044f395c281fd6ab28d2e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a536aab8c70c4d89a86c685bbdb41cc1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"a56b7872cfd2445c9288ad34a1b8600a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a5773c5f50be432e8316faee787359e7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a58916e50ade488faecdbe0dc8906888": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a58d31259cfb4d25b115dc8271d9663d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_ab410e4582194e528f0d58b090643c3c",
"style": "IPY_MODEL_2a97fa574bf847c9be491f0f10d7eb01"
}
},
"a5906ffe22dd48ce8f53476bd53edd97": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a591932cedc241b988c07d52c37c284a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a59695778b3d40e1ac01303f9db801c6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_c67bcac7bac14954b254f97bfc68ca11"
],
"layout": "IPY_MODEL_cffc6be3f9864bafae2d4593cb5dcd10"
}
},
"a59bd3e419a54563a15f1b4f5b546a6e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a5ad6f50a7534e78953100b64e317966": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a5b071f1135a4a7b8ceb4eebb87ecf0f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a5b0d95a52e2410a9b9d72c12dd26e68": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 .."
],
"index": null,
"layout": "IPY_MODEL_be3404ead7514f51899c3fe53bd96e29",
"rows": 8,
"style": "IPY_MODEL_b4ce6ff37c2448bcbb28fb909621ab20"
}
},
"a5df103d95df433c945dc000a1698d13": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_4505132a81ad4b19b43b45c750da6168",
"IPY_MODEL_5e949653647f4c7e81181985bf126b74",
"IPY_MODEL_d8e80be83e86410ca382430e5db03a37",
"IPY_MODEL_68f6653b361d49a7a28f70c65e5818c5"
],
"layout": "IPY_MODEL_50b0ca23038649f5b2d8f7e1755e5b78"
}
},
"a5f2e187f4454d94a40c93b230285101": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a5f9b4ed51644b35bb621bc1672d7c63": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"a61599869c2f4a46b999e222ca1e2818": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"a618a0dec71b4ada91f9a6952cf87da2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"a627c464cb3640638e350bed2eddc11a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_b0e56ed2e074434a908aded80e63f2a3",
"style": "IPY_MODEL_4443178a3ab14ed3b9e721873cac23bd",
"value": "Workspace"
}
},
"a6286ca9e3274c1ba807656b3e1df3e3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"a6321bf3d019485ea258c6ebd37d2a4e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a632d69f8c4243d08bc63bfdbdf8d836": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a6364a776609402891839e5772a2936c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_3d345e7673dd4ee2b86d647c03d0b1ca"
],
"layout": "IPY_MODEL_81ad485aaca9409280816f9b37a3705c"
}
},
"a636b2eeb20f4da1a65b2a91c452a4cc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatSliderModel",
"state": {
"continuous_update": false,
"description": "Width",
"layout": "IPY_MODEL_d7894bbd070044e6af050f9b1f753495",
"max": 8802.607126275985,
"step": 10,
"style": "IPY_MODEL_150e0224eb3e4c819592d93761f63125",
"value": 1000
}
},
"a63fb3a2bd0d4682ad288f4ec404e090": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "SI",
"layout": "IPY_MODEL_f1e6ac434d7d45b8970dbd4909493d41",
"step": null,
"style": "IPY_MODEL_c31b248ca93d41259ef7fe34240ec05c"
}
},
"a64b783fb3d14fb3a8e9557a1e2e20b0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a652a90585c04c73b3a37c4a67533d85": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_dfaa99fae547429b84a6777efcd60976",
"IPY_MODEL_a3c524ee8147412bbcb45294909c8252"
],
"layout": "IPY_MODEL_782df0fd2d53473ba32a57d5e961e708"
}
},
"a654097f41ff400d94ba57c906b99da2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_5196e80c40ca4a7db5c4cfbe9d001d6e",
"style": "IPY_MODEL_0d0f31396e4b4e59a19ab4e109940616",
"value": "Uncertainties"
}
},
"a6632eeb54834fbfb49ea4d5bd2d25a1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_a6c954e0f84846be9b95da31e2cdf252",
"style": "IPY_MODEL_6078b9da5ca2484e8038de50fffa8fae",
"value": false
}
},
"a663d75f9e2640e5984b5f83302bed61": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a6731cfa09d04f37a0f65d03e9e521d7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_f6019e4ac78a48fd85a9bd1b3a5a4e24",
"style": "IPY_MODEL_ab7072d059cd4638a8090240daeb45ca"
}
},
"a674f8fddbe84d84abba73d8f5d7a9ce": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_7066ba0d88814eaa9974a5009ede31ef",
"style": "IPY_MODEL_bf636b438c654adba9683330ed3367f9"
}
},
"a67bec85c32749b880d31dc6c44e9e52": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a6801c595b2449c796789f3bbe319839": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_66e373b0dfc9472e98dae675a63386c5",
"IPY_MODEL_ccea9f133a7843c793b970a27e878e2c"
],
"layout": "IPY_MODEL_80ce4071458b4e9ab8d25fbf89fdd5a6"
}
},
"a6870a0d6ae2436fa3ccb5b0254510b4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a6876756f39447658177c708b5f5cb19": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_5fb4eba6b0db45e4a1a80eed46c28f6c",
"style": "IPY_MODEL_efce4bc0086e4bf59d800e1799b0e725"
}
},
"a6896984f57044469c74cf1d67e155ba": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 Temp",
"📁 monitored",
"📁 uijson",
"FlinFlon - Copy.geoh5",
"FlinFlon.geoh5",
"FlinFlon.omf",
"FlinFlon_dcip.geoh5",
"FlinFlon_natural_sources.geoh5",
"FlinFlon_tem.geoh5",
"FlinFlon_test.geoh5",
"MtDore_TMI.geoh5",
"bug_mre.geoh5",
"geoh5_to_omf.py",
"new_data - Copy.geoh5",
"new_data.geoh5",
"omf_to_geoh5.py",
"test_file_2.omf"
],
"index": 5,
"layout": "IPY_MODEL_7adc1cebb8e94bffadf9a1d3324e45e8",
"rows": 8,
"style": "IPY_MODEL_7174bc8f4ccd4a1597413b1b7c343a57"
}
},
"a6908f2586194f89ab326957565fd674": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"a6aa5fd5f6574ac287acd375686c910c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_41350ebdc6e34e88b9418bee96b9cb3e",
"IPY_MODEL_acdfa7c6d46f4619b0ea4b9a05dfa152"
],
"layout": "IPY_MODEL_e67e445442e24cefb70346470a7c90cc"
}
},
"a6af8bff052c43e1997f4d4f10912843": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a6bea12bc7d34f93b664f75fce94ac8d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a6c954e0f84846be9b95da31e2cdf252": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a6cc7a2214464a7b8384b102f589da47": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"a6d326fe7c0c4f2697e5264365c7de55": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 SimPEG_PFInversion"
],
"index": null,
"layout": "IPY_MODEL_e806b75930614a5c994fcbdc45955574",
"rows": 8,
"style": "IPY_MODEL_0b0607af9604406b89108fc152ead5b3"
}
},
"a6dae697c0e340eeaae9dbd4b84ed328": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Forward only",
"disabled": false,
"layout": "IPY_MODEL_216218762409467cb609e43aeb3751e7",
"style": "IPY_MODEL_dce240583bb4458f84fbc1f3dcaeeb36",
"value": false
}
},
"a6e7dfb661984028b4a47099943433bb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_2c9058f40dab4382bb2b6a9ff1a262ce",
"style": "IPY_MODEL_5c0f58531535472aab085da03475fabd",
"value": "Workspace"
}
},
"a6ebf53cf91f4dbdbd9faf6a35fb686b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a6ec087e7eee44679e3faeb695226369": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_e662b39f319b461bb843000a75ef011b"
],
"layout": "IPY_MODEL_2a0371361cee41dd8d454d8856b32aa5"
}
},
"a6f19c5d422c410b9cb1fa0585df844e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a6fd72515a55478586e179733e6c4014": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a705f2aab16b4d649e7eff563d4fd7a7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_59c8a3f4d5bd4489854fab3a68754923",
"IPY_MODEL_85974808d4e04f158a674aa897d913a2"
],
"layout": "IPY_MODEL_050d2ef361674baabf48324c436a7835"
}
},
"a708cba0345746129533325d3719db9e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"a7189f64748745eb9665fd59c10fe04d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a728be244e3247fea8656fd48f3e250a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"a73215d7d9a94a83807977beba769932": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a73dae806ca44d33975bd632e56e2792": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_0cf4fd24232d4038ace7e3f402b7e8ec",
"IPY_MODEL_183c39347a9e41b0a909b1045977d2d1"
],
"layout": "IPY_MODEL_c222a537723b43af9fe4b37cb6bd4112"
}
},
"a74bd0d8906949fbb4e858d1ee28c2f8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"a7704cde712c495cb10408db06b6587f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_09c86d4c6408419d80ba3f705a3bf51a",
"IPY_MODEL_7c9e4cd4d85642e2b59386ae3d7f4788"
],
"layout": "IPY_MODEL_910d3e5157a743c0962c85edbaea5def"
}
},
"a7722e5bd6704739985dc0405a357db0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"a77582de0ba147138f21745b89ad2beb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_49030e99fa4f41f892e3e97842e97a8a",
"style": "IPY_MODEL_0e11add96351459c877affef61d5ed1b",
"tooltip": "Run computation"
}
},
"a77ac6b9c9524fe79bebc47658c98967": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a792b7b59df549f2994254dd848b600b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a798e67280cb459f8e31d5c59ea6a3ce": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a7aae4ac3e7948c485baf656773efe73": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a7bb01ddc06041baa146c4c12389dff2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_011f3f53e1f84b7bb5b9b1616ab84864",
"style": "IPY_MODEL_3b131f173a494298bf881f269472a7ac",
"value": false
}
},
"a7d193f6981f483ea48bb0aa78fadadb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a7d81842ee0642a6b7eb68b2e1668e60": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a7e897ab3a1c4e0f92f92cb9304e8435": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a7fe8f496dee479980e64fa701d03495": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_295abb438f7b46d6b8d5458b1c3b4472",
"IPY_MODEL_43365429e972461e8a39c7dd6ae86490"
],
"layout": "IPY_MODEL_c6579097bba548bfadc2cc8f0b0cb5aa"
}
},
"a8131663e9ea4d0aa9ac49713608c7d2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a81610b8318442e2be08be4ecc78d891": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"a81cf8a3fb364ce98c4800491d51e18d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a83a8b8794c543edb56e21e11ed361db": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a84ce719498141a0b092dfd0f6373c28": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a85e3fc0052e47418f0a049fa6d45f4b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"a8620b6d988a4666949fdeb76f8e18da": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a862fd3cc34044e1b28550e03e84aa5a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a879b7511da747658851a7f35000f5b3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a87d8c72cc5a4bb9930b95e2d3946a65": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a8846ecfcf9240fd93f0bf323ed34552": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a88a971e500e41ef82dd5840cce88b67": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a88b77dc001d466aa27042a7bd63447e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_9eca58ce45a742208717f3abb22271d2",
"style": "IPY_MODEL_11261d2b3928426cbad0e97694a09548",
"value": false
}
},
"a88c6e094b0844818fd5e1f8fa1e8340": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a8998fb2bc82486c95bc98bef8a049bd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_4157f50ee5d142c88d2a9bbb7b0e09f6",
"style": "IPY_MODEL_8968a722736046b3bd8bef7d905bcc58",
"value": "Data Count: 418"
}
},
"a8a0787bfd4f4b22af15e6143ead6c29": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_24388a5522624241be15324c0d0492f7",
"IPY_MODEL_6df53b1d882f43798d826a43a8905de8",
"IPY_MODEL_6c1780d998b3495c9729f2605e543af3"
],
"layout": "IPY_MODEL_bccefc6d21b945d3b072ce5104ade8ed"
}
},
"a8bc839a0eca476880e008cd932d61a5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_34f939f28fe1499489591d5027ab0ac6",
"IPY_MODEL_66e1e0f5a09e4a55be844abd1c2bc7ae"
],
"layout": "IPY_MODEL_fbcc85cd484e4285a60561aca94ab484"
}
},
"a8c3881e965c4f57a493e38fcf5c0855": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_42a086bf775e45759a91e12acc46c001",
"style": "IPY_MODEL_2466a1d9fb9d40528fd94fc8fee522f1",
"value": false
}
},
"a8c3c79048054e139613953a59c77d77": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a8c4a2323b9346ac8d731ec594bb2bd1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_cab87b908cd041a9b6c464d552033b64",
"IPY_MODEL_1d6c7275bfe6429b94a1a745cf5925dc",
"IPY_MODEL_a50dc97e2acd47b092f3cc9321ee2ee3"
],
"layout": "IPY_MODEL_d52e04aed0fd455f808ef61f4ab1a43b"
}
},
"a8cb965d91964d50bc3184caf8760103": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_dadbd07ea26d4f579cb7312b7ec8a448",
"IPY_MODEL_ed3c029666c04c98995ceb2bf79b2dd9"
],
"layout": "IPY_MODEL_a228082277804cd2a35f255a91cb8d26"
}
},
"a8cd6a66d62047e18d6763247bb91a36": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a8cedb30dcb3472db0477fb50778ba7d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_689172a02f314a6c8821a6d203f132d9",
"placeholder": "",
"style": "IPY_MODEL_e7e27cf8433a40f9a8731cba8e2580d0",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"a8cee4e93098459eb980edab85595c03": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_2d11a4d344984de0a97e8f797dd76801",
"IPY_MODEL_1cc30e5afac749108a00e85b1a36a359",
"IPY_MODEL_9d6bc6e3a1b04438937dec00e45f140f"
],
"layout": "IPY_MODEL_71bdccf267d847c1b963eaa94dac3fce"
}
},
"a8d0aff295e04f0e95a3826570e00ec7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Object:",
"index": null,
"layout": "IPY_MODEL_7f5b75dbe45e4465920f220a771663b8",
"style": "IPY_MODEL_300da78168694ec7b62f5ac01902f70b"
}
},
"a8d4707c132c447081416f8258e968e4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a8da717945ab4df2898bd6ae0363c99a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a8f4212a8b134410bfaa08eb4ec1a76e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_f31b5115e55b4057826017a7779c5fbd",
"IPY_MODEL_94a04fa88b2b400dbe17d13bb2e9fc3d",
"IPY_MODEL_1324799407ef44c2aae7ca7147f2e253"
],
"layout": "IPY_MODEL_cd4c25fe9b204d19a2a567d5b2231211"
}
},
"a8fc70ae1b96461193860605fb8c0ead": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a8fd70c453474f20ad8ae27b5f431b68": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_e83a75d08d604b69958c8ee51b29698f",
"style": "IPY_MODEL_2adc350c268d46a68de41deeb2528165"
}
},
"a90129ce44a049b7a3afd84b2e940f08": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a90ca4cff06143a98ae139630b504ae6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a915281991634da9ad857deaa6c05915": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a9300928d25c464cab362fb0c2234d61": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_da42c571531641feac1b6f09d6e79664",
"style": "IPY_MODEL_982929697cdd48a68f0d2ef1ae7dfe2d"
}
},
"a93f0868c42e4e52afd9080cb622674f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_b396d41465d14f9085bbaafe5ca8ba2a",
"step": null,
"style": "IPY_MODEL_b7ae875898c643debae7503326bccdd2",
"value": 1
}
},
"a9545ab1f6b645a5ab6aa760dbf7f568": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"a967bfa46fda4537b505ee936306afa4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a970dc0c416d45709a487e564075550c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_a618a0dec71b4ada91f9a6952cf87da2",
"placeholder": "",
"style": "IPY_MODEL_0637617274ca4fa980b4f5076de9396b",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"a97586b761ca491d89bc109dbe4bce7e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a97929fe390e4156b9aac34cd36e87db": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_0f8517b999f3414eb7f5bf48726c4e52",
"IPY_MODEL_5e6f306fb5c743ee8bd96b927ea726be"
],
"layout": "IPY_MODEL_ace05856724c43449e9c677e8f3a43e4"
}
},
"a97d9d23c7a74e69b859393c06b43794": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a98a2f11728d4ef7843e04471d667b1a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_ed233d00b63a4386bc7593275cb59987",
"style": "IPY_MODEL_25fc8a51fdab4b1ca9ce1387430d300c"
}
},
"a9958eb647eb4d46824e54386560eec8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"a99e272c01364da8be9beffccfe6fadf": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"a9a8af443f7e4b75b7d76e47dfd91cdc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a9a97531e5534e47b3129f1ff8a247d0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_9495c56692314a1e9de7c1537dc28f48",
"IPY_MODEL_b25bda5f64134e4193c10cd33812057b"
],
"layout": "IPY_MODEL_e702e5b4998443a4b4444f898f1c7b5b"
}
},
"a9b517a811724bd18fd97ceaf823de73": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a9b88dd388054b378619fb4d0f7e1650": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"a9c71f8608314eb095c6d4b64dd8ddc6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a9cd892fb4284f95a37a65718e28925b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_85e030b3f58e4dca9a57cb808167044f",
"IPY_MODEL_1fa11e122d834cb0a714e4324d65c38b"
],
"layout": "IPY_MODEL_e954e42d3ffb4a2e9fc1a1de443bf557"
}
},
"a9daefb59ea641008b77eada2b1249bf": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"a9ec8478b34e428a89b88a4b3f4affb6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Reference Model (s)",
"layout": "IPY_MODEL_ef6aab5fc378416790bff587a3cf1259",
"step": null,
"style": "IPY_MODEL_693a17c52c8a44e999bdc4a76e348a4d",
"value": 1
}
},
"aa03f703046c4fd980b08c0f5a86396d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_c2c7587094f14653b368607e43d229da",
"IPY_MODEL_1707660c573b4d5ca6fd0b01fc127ac6",
"IPY_MODEL_942f019922f8494ea904786d6be43e5c",
"IPY_MODEL_cd785553c200419498f9e966a5f733e0"
],
"layout": "IPY_MODEL_2d5f1d07a9fd464d88c827a1fdfba962"
}
},
"aa098a55c58245519566d08d09fa610b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"aa1068896c3e440f8f12ef70d590bd40": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_111ddabcb65441f4914b25c56d20d6a2",
"IPY_MODEL_67896359d40f4cc999b09947af37ed04",
"IPY_MODEL_649d97c6b47c49d8b130c986aa43ba0f"
],
"layout": "IPY_MODEL_60eebe67c64b41dbb07e090655a0020f"
}
},
"aa1248e17ecb4ed4af3eaf5fb2869d86": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatSliderModel",
"state": {
"continuous_update": false,
"description": "Easting",
"layout": "IPY_MODEL_9bf6e491d15f454fba0f16b458b44bc5",
"max": 319967.7557301139,
"min": 311165.14860383794,
"step": 10,
"style": "IPY_MODEL_a3b6decf1f7843158958b9892f42aaa9",
"value": 314600
}
},
"aa2062245db04845bcf1676a67b2f232": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_7581272dd5ce486db147323a2be0f303",
"placeholder": "",
"style": "IPY_MODEL_7bde965a23804bd0be46dde4a11968fa",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"aa27aae784a744d598b8b357f6ad8a17": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"aa3283ccc7d24ddeb05396a0a4fcecc2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"aa3444ecc7dc40979d6648aab8908cab": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"aa40699ff16d4022a0b3a9257ac39ea3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"aa49706f16704d8c86fcaa9bb81790a5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"aa52a30f851944c5a8f4fbfdab2b1ee8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"aa651ef6142142278cd3a328005363ba": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"aa66620d88284568b293213fa3c5afd3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"aa7d35c7573d45e49c23a3f3dea5a5ed": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"aa8da0241ff840a7a01eb6019839a34a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"aaae14da1595452390beec853058ea45": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"aab05cecae5f402fb85ae7b072ca6ef0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"aab655210fc0497bab98fe3950384051": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"aabde6330fc8463793932fc5587efba0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"aabf84ec1a334d93948ddad0530351c1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"aac2aecc6fae49ffbc5301cacd90b824": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"aacc9971d4a54411a8965c5142552736": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"aad700979ecd4d258764e3c9d089ee67": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"aaee47c4866c4557b116e1dbe0b19e6f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"aaf055900bfb43f1a957048d573bc52c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"aaf85fcedf5f4a3a8c9c125b7772c032": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ab00b504997240f2a446ea4acd82b32a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ab023672f4ad4592b7ec8e9251a50e77": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ab11babaf9f94d73a4e4ac1bb8e14fc2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_eed802c04b73478c890bb8603c8ad9c5",
"IPY_MODEL_f67ed35afd894687a6ba22bd04b617e6",
"IPY_MODEL_80c8426f61f14dd3956f47d98f727cf1",
"IPY_MODEL_e20cd8c7f0d14ffba84771b2eec665dd",
"IPY_MODEL_bc14e0ac4c6541a092f79c5c907b12c7"
],
"layout": "IPY_MODEL_896c192df9c044d6bde4b23b950b7e02"
}
},
"ab1c1557e4e84716921a01f8a8873986": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ab1f02c0d9e6490284ae35d02bc57ca4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"ab410e4582194e528f0d58b090643c3c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ab48917c7f83483fbdaa15573f55cfab": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ab4a2d03e4a4425bb38bca4b6f3ee6fe": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ab5d95370b2c4155ae8a05caf55ee882": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_5df320fb57bd4b0381c8a054532aa0a0",
"IPY_MODEL_e0003ad8d52b453b8234b09350b48804",
"IPY_MODEL_2890cd726b1b49f38ec141f5ab0de8eb"
],
"layout": "IPY_MODEL_92f0fbf016e74c5fb45c128c9c4f23df"
}
},
"ab651af4566048cc88262e5873945946": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"ab69201d46ea4ce4bf409f434db0eb35": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"ab6b14382f854b3388be1180e7333a7c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ab6ec431beef4906bd2df3bb81633b86": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ab7072d059cd4638a8090240daeb45ca": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"ab708a1ede4b4a9d865ba8b099a2fdf2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_695b4abfcdff4ab4ad88054cbf380d50",
"IPY_MODEL_d9b632942819484b9bf922572dce3a30",
"IPY_MODEL_81d0e8d7c80740d69106d4c25d5790a3"
],
"layout": "IPY_MODEL_6946cec642c048439bb873a054b03991"
}
},
"ab709689de6f450ca94327135051f7d2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_68c81629ef684bfebb16a470e63554e7",
"IPY_MODEL_c9892640bbf0427a8fe7a4a08a16f9a0",
"IPY_MODEL_f8ecb7d98cf641d089a13735d97a34ce"
],
"layout": "IPY_MODEL_8301efd0f3754807ac6f4a0edc80c27f"
}
},
"ab75b98474024504bb09c5f414b963e9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "success",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_80b81ffe3b2747b08fa45c0a77416777",
"style": "IPY_MODEL_3909aef83bf5425abb760f4257b2bcd1",
"tooltip": "Run computation"
}
},
"ab802c672d3a4cea9c8a65508b6d2215": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ab857d25664d40ab805f4bd4582c6a8f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ab8b5a6f66984693a53796b4fd209ec2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_b51749f3f65143b3bf6443235723ff52",
"IPY_MODEL_58a9dcc11d4848fa93dffc9aa5a4e518",
"IPY_MODEL_2631ff0819be425c83cdc45f143b28f2"
],
"layout": "IPY_MODEL_2ded96b474f0462290b47dd42bc9c773"
}
},
"ab982a202b194b48acfa044e178a8bdb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"aba61c1cb6274a51af5397185a34504b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_27b42bf3305d4d09a16b1803cdbb9211",
"style": "IPY_MODEL_1f27c16fb2db46a29bd85d504ccd0a45"
}
},
"ababc91b0a6f4c54a8aa980fd0a430d5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatSliderModel",
"state": {
"continuous_update": false,
"description": "Easting",
"layout": "IPY_MODEL_69ef6a43012945d8965a9d62deac0b86",
"max": 319967.7557301139,
"min": 311165.14860383794,
"step": 10,
"style": "IPY_MODEL_1a9d9b90e47d4799934c515ac172ff6e",
"value": 314600
}
},
"abac1130a3c44133be12db80ee87b351": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"abb09dea88ff4735b60a158530449fa5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"abbc2da4860145d892c80739d9e433c6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"abc42a3dffbf4a97b107802b31766cb5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"abd42a61f51d4ac6be08667303c7ff69": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"abd4a0639d21431ebca61391d36e65b4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"abda4b8debb648ec80b3f7f481a9a97c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_305e923b62204a58844284371072626b",
"IPY_MODEL_f4e1ab0f7ebe40afaeef8e355499dbf2"
],
"layout": "IPY_MODEL_3ffd2860b6fb4c5d9ae9915bbd534e84"
}
},
"abf0ca74d554498f9684b4a5d81d3cff": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_543fd92c1ba24c44bbe84924f9cf4add",
"placeholder": "output filename",
"style": "IPY_MODEL_9f8a191673294cd0a53ea83cc5f8d903"
}
},
"abf902fadd224f0f850cceb462719335": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"abfd55981e6d433cb3486fadbdd351a4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ac0d3c435e2b4d30ac30573f22632c31": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ac0f50c0519b4d92b386324ca0223179": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ac12231773424033a517305e5ed26f13": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ac146147641146f5a5217f9139919332": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ac1db457967c4af7858744933858b92f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ac21f853143c46809a0527628050b918": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ac230a19f080483088101c106400663e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ac25d3c0087947e4bc9e361d0de9d135": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"ac312e3edd654462abb99ef1dfa58adf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_35771c3693e1450589f2e3234a986dcf",
"IPY_MODEL_736f60fbf78e4698aa4fd2239d41801a",
"IPY_MODEL_658a39ace3d84092aac45e849ad53172"
],
"layout": "IPY_MODEL_fc21318869134fabb52e976222d763fe"
}
},
"ac40520d68ff447cbff72a589355f02f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ac45dee9c6f14c77bfdc0e4c1c9b7da9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"ac4efc2478ac45739db151efa9f2cb76": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ac60b285db7e43e2860ee624752d66a5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ac64b7f06cdb46f39d1b9585584015ca": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_75b584b935e94ba7bc34449bfb0cd83b",
"style": "IPY_MODEL_bdaa1aeb7f394dcd87afca6cea45dcca",
"value": "Save to:"
}
},
"ac68ee00b9fd4741b17231f4553d90c4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_4e1629a46c284e7ea944d3d673303fbe",
"IPY_MODEL_4552c2d1d8fb4ae0b03a6827e7bfe157"
],
"layout": "IPY_MODEL_005d8f68eb584f1ea3d21e636624f490"
}
},
"ac74d10d978140b0b8ec0693fcdc6747": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ac78a7ee31fb487f9314d6a226ea56df": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ac8a0747c22a4eab9a215ac9f68a3106": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ac8ac3e1797f496dba636300403ef278": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ac8b6e05370641dc89ebbee41ddd8b26": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"ac9180c50025460c889be59f98b26f9c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ac9e00ab28424dff8bed56114500e142": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_9a1cd4e50ac9492aaf16e9c7b6e0b71e",
"IPY_MODEL_ed8c187d2e93423d848dd51f40724f59"
],
"layout": "IPY_MODEL_d405b179440a458498cb046216d68824"
}
},
"aca5b01ca94e4cee8e94075ed17b2c9a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"acb43a1e94d148b6ac9a70ba59b604cc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 SimPEG_PFInversion",
"📁 Temp"
],
"index": null,
"layout": "IPY_MODEL_be7273b976514dc1bd56b5120a94d167",
"rows": 8,
"style": "IPY_MODEL_d769264ef6b54193adb883dd5eff7878"
}
},
"acc29caaea9143a4b5a62a4b011596fd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"acc3a1a78c224a06924f78bb532a946c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"acd242a6c1814bff94189cafae37c1b0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_506f87452a0a409b8cf7cf60786a65d7"
],
"layout": "IPY_MODEL_26952e88ee914c8fbb7ee475cb777aa5"
}
},
"acd269be38aa45b0aa422ec682032f28": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_5a43cde579834132bd752c0cccafc7db",
"style": "IPY_MODEL_3ab493baa2b54716a5a7ccc8fddee335"
}
},
"acd44bea31cf44c1bfd9ac577bf63e4e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"acdfa7c6d46f4619b0ea4b9a05dfa152": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_42340f40d06c4fe291da88bb5943a9c4",
"style": "IPY_MODEL_1c5cb80f622147c0a300fcaf7bd1b2be"
}
},
"ace05856724c43449e9c677e8f3a43e4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ace17762f519468ba7cdb45f9b6a19f2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"ace6338cc53a49438de122b726f498eb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"acebc8faed4943d29902da10576083c7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_c6e2719dc88149aba023ad4f76c5df42",
"placeholder": "",
"style": "IPY_MODEL_a88a971e500e41ef82dd5840cce88b67",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"aceea1731b5b4f92968999f21a4c5592": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"acf1f9680467416aade551d2d00e17b6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"acf484034d0a4269b4a25cc672ce3202": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "IntTextModel",
"state": {
"description": "Max IRLS iterations",
"layout": "IPY_MODEL_7b342286deda406d8cc64bcd95695c2c",
"step": 1,
"style": "IPY_MODEL_4f09783d7e274933a3e86e2135e78e50",
"value": 25
}
},
"ad048bdb03424a6cb6d8fa1a9a63e036": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"ad0a0fd09c5d4288a21a580616395eaa": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ad0b3c4e84b94852979a983a726ea41a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"ad1445cb4dc942728718e7aedc78df3b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ad17c61fbb794a648aa8244601bd265a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_382db5d485a5417ea1363812a65971f8",
"placeholder": "output filename",
"style": "IPY_MODEL_02b8103bcaed4ddbb7cf59a1f8c936de"
}
},
"ad2cae3b8b8d4fd7a54b5ae0b339a975": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_6c5cf42bda80499cab797b340609bf63",
"style": "IPY_MODEL_fc38144f3ac34baea5488a862e25ec21",
"tooltip": "Run computation"
}
},
"ad33b46b42f84b109cad4db7c67e0c0c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"ad3dd2a06b2e40868abca2f40abeaf9b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_d3c4e2817f3a46649dd60a4477695842"
],
"layout": "IPY_MODEL_f6c480dfdc764030920f259402bc6b04"
}
},
"ad45d5538aaa494188a4212aff58f34d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ad4b5f49e6a942ddadd06559943722f8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ad4e4597afe844d087538db880b177b8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_761b5dd0f2ed4d53875d727622d80e62",
"style": "IPY_MODEL_136e63c58ebb4baf9be45a1603f20d68"
}
},
"ad502e4a8f904e8782d39e7866c04c8f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_6f34e17f230541a7beaad6c9b29661df",
"IPY_MODEL_3bf04f371dea434c86d3e3f4a649705e"
],
"layout": "IPY_MODEL_399f4e930c974e79a03fb1257dcd4e6e"
}
},
"ad53df788cb8415fa634ed7364fc3e55": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ad554f5a1d06467bb93fd3603e94a4fb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Inclination (d.dd)",
"layout": "IPY_MODEL_787e61e310424891a1e896d952987a4f",
"step": null,
"style": "IPY_MODEL_62e044cea280425f841d21b12187fd4b",
"value": 79
}
},
"ad55f2f8e1a346168f7cf2420126cd42": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ad5f65d8ed564c1aaee442e1f276bd74": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ad72e2d8457f417da2a55bcb8cb345a8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ad834789c51441378ae6646acf79923a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ad887a7ad3aa454e86eb2c720d7b7298": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"ad90556e43ed46afb86431328818b66d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_e7d83d87fccb4de29e98d98eaaf8abb4",
"style": "IPY_MODEL_d788bdccda6b4dad86155f626d17821e"
}
},
"ad910da725ff4f17bec09023ae27efe7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"ad91fe80b68d4316945303d13c38b7fb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_8b16c675a01f485db99f400cfe5bf88b",
"IPY_MODEL_db008ae5837d4dcf9781ff86619a9867"
],
"layout": "IPY_MODEL_a2afdcd17aea438a80f6da3932335d36"
}
},
"ad9222f471254c2aa509900dff1d034f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ad9ba3d6215f49a5872ad11fa91033d4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"ad9f5ef1b95043d18f1a9bfa1a158e2a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_81476fdbe92644c097b275d91e490301",
"placeholder": "output filename",
"style": "IPY_MODEL_448e7d6a1caf4fd1ad86f6a0cdc41ea1",
"value": "FlinFlon.geoh5"
}
},
"ad9fe9756e934a9883d50bf0e9726bf9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"ada467e7e45943429981f09016668348": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_1295291757b4419287b882da4731fa6f"
],
"layout": "IPY_MODEL_ced3f0c3282c4a0f9322defcfd0439f9"
}
},
"ada9a5dae68a437b85215af50f43c591": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"adad10d2f99f4d53931036db532a314b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"adb816ca8dfb4ff8a7adb8f6b654475b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"adba4e01838f4d34894661e3b548a0c6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 SimPEG_PFInversion"
],
"index": null,
"layout": "IPY_MODEL_8b36c3fd77374c36aaf8ca3125c340e0",
"rows": 8,
"style": "IPY_MODEL_5b5d61dcf11740eb8dc3f334a14efe64"
}
},
"adba6eafaab64386800d6a40d78db11e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"adc115af5e2149d6aeb58ee44441274b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_5fa1eb73c39b47ac9d45bfba8b3ddefb",
"IPY_MODEL_e9e47b1336504d22b3ef089273f52e3b"
],
"layout": "IPY_MODEL_734e6f64e891430eab98bb973a9851d0"
}
},
"adc9876fdf214dd29efdf0063be9c004": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"add5f316cfa94cb7a369f034d501508b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"add942153eb441a3b9722d700cdafd7f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ade64f0c24df4cf1aeeaa29d11c447db": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ade9665d81c04db1a2eb0219d1afd9da": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Labels/Label3",
"Labels/Label1",
"Ore/39_Ore_Callinan",
"Ore/38_Ore_Dan_Owens",
"Ore/40_Ore_FlinFlon",
"Workspace/Inversion_VTEM_Model",
"Workspace/Gravity_Magnetics_drape60m",
"Workspace/CDI_VTEM_model",
"Workspace/Data_FEM_pseudo3D",
"Workspace/O2O_Interp_25m",
"Workspace/geochem",
"Workspace/Inversion_DIGHEM_Model",
"Workspace/Topography",
"Workspace/Data_TEM_pseudo3D",
"Workspace/Data_ZTEM",
"Workspace/Mesh"
],
"description": "Object:",
"index": 13,
"layout": "IPY_MODEL_73c9d009def1427e8e7658b4d1243742",
"style": "IPY_MODEL_be865f99f5954442bb57455074ea05c6"
}
},
"ae0926e7c5f94b8293872c150904fcb1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ae125212de0a4efba5216aba213136cd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ae17b9cd31c1434697088e0a6dad3d86": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ae1952fec2294a30ab0a666163f9898f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Degree",
"layout": "IPY_MODEL_1c532b989b8f4e629d61427f0bf226be",
"step": null,
"style": "IPY_MODEL_36362a62b2354d51ba730793ffea766d",
"value": 11
}
},
"ae1f9beaaaca4941a40a6834d6465cdb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"ae2b4cb5a56c43d8992045664cc89247": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_70d17098592d42589edd9d6b2247a2bd",
"style": "IPY_MODEL_bd17a0ca3e7041f984823c3893eccbe9"
}
},
"ae397ff9977142cbb3d297105fc6e0f2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"ae3f9af09aba459db4686a8f225b880d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_19611ad0bb3943e5b34073067a47f86d",
"style": "IPY_MODEL_555fa77108d943abb2551bcac184c37b"
}
},
"ae4a9a0a35f14f0889d3f42c3b50bacf": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ae59a4043f074f50b836824b669b77dd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ae5bdecda2af47f382de6a398c05d544": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ae5c55cfd4854a34a491064c25c592c0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ae64477796694ec1b88317813f7ea453": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"layout": "IPY_MODEL_57c8d2b3d439415b9facb89daf17aeb7",
"step": null,
"style": "IPY_MODEL_b4b085563a4d4bd290e57db55153bba7"
}
},
"ae7c70fa9a2341cd86d570a2d417d2f3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ae7f656e41f24d079b4e688eb00f3aac": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ae8b3042d4a84dd19a377e76c590ceda": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ae8e6605e3a44566b8b2f9a2773cc677": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ae9bba22af5b486f8b42c6124ced8793": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"aebfe4493aac4a1ea5488932def20854": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"aec2569cf3c64eda9d7d023cc0121c54": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_db111329e03549509cf09745c7ac20ce",
"IPY_MODEL_0603deba3a9f4f04ac41943a73bee6df",
"IPY_MODEL_8bb5ae2754ce4148918cfc391b953f40",
"IPY_MODEL_78fce94f298f4687993372af7a889702",
"IPY_MODEL_a0e03b6e559c468ea5bdecd3e0a466ac"
],
"layout": "IPY_MODEL_61e0eea4f57c4ba1aa22e49cde0436f8"
}
},
"aec89ff7faab49278c03992794d78e83": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_62b7482dcd4245b9a06f24250cf7e213",
"style": "IPY_MODEL_b53a0e2c3e5443ed881b29b5f5e3ed43",
"value": false
}
},
"aecde64563cf45ffb74076ee4682447e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_8b76909574a548da90e503e64479377b",
"style": "IPY_MODEL_4dbce9521ea149ba915a20ee520c148f"
}
},
"aed4f7310f49492e864ccbe7d69de04a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"aedbef5b01714a33b3633eb5c9f1756a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"aeec13205923400f897885b7b469f2b6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_bd1394cbbc0848f580b46a32b5e57257",
"placeholder": "",
"style": "IPY_MODEL_cc2788c634404ba48a97ec1a75eefbc8",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"aeeea1c9ed5f45ddaa3c3ce1501eb233": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"layout": "IPY_MODEL_1e3a036e6325488e93f30d2fb2f71e49",
"step": null,
"style": "IPY_MODEL_bc98dc6ab5b24b34bd44a756a64323b6"
}
},
"aef15f3e2f254f6281afedf3c70b0dd9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"aef2c4b3d93b431dbbf282eb378aa9e3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"aef50a3497aa4e6998f1bd89a8a7f8da": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"aefae14b630c47c7b7ecddbe61771b7c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"af03ccf713e94d7c99c6d5ca5dad7e21": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"af091ab26b344a63b95e4845dea59f93": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"af0d4b75ee9a4489819a26152395d686": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"af0f54139bca415daa00f7472defc278": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"af169923121b4623a3d1ac5adafc40c3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"af2c60052f27457994910a59691e2256": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"af34bc2f3ec14c1c8666ab8f0d64b6bb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"af37412282f1420892bde15b14016cb6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_c70e932742714cdf9599dbbf3ab95252"
],
"layout": "IPY_MODEL_13790e1d96114ab98bf68b69af23b82b"
}
},
"af38c478b4d645c6aeb1d4a47fc930b0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"layout": "IPY_MODEL_abac1130a3c44133be12db80ee87b351",
"step": null,
"style": "IPY_MODEL_fb304d59fe2c46529c1e3f2bf1378a00",
"value": 25
}
},
"af47438d2a7542c487fb58c35044f77a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"af4d5535ab564f2ea960d40a97e9a3a5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_1d249860104e46ffa8baeb9a0ac7d3ba",
"step": null,
"style": "IPY_MODEL_73a1a29cbc224c9f8c72fe755452fcb5",
"value": 1
}
},
"af5352e851294ab482b868f7be03d568": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_cc4ca478a8834c7f865831982c9baf22",
"IPY_MODEL_bca3a6d5037a4f7a8139333832d7aa6a",
"IPY_MODEL_87905e7b09674c5a87df59f8dcfdc1a4"
],
"layout": "IPY_MODEL_6c6b37ac5a044b42970a67f4895ccfbb"
}
},
"af591dfedba541fd9123b7051aaa7ced": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"af59a5d069c54adda2c920c12f36a9af": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"af6f63e8dc854caeb7b38225f7353239": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Bxx",
"Airborne_Bxy",
"Airborne_Bxz",
"Airborne_Byy",
"Airborne_Byz",
"Airborne_Bzz",
"Airborne_Guv",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_885ddc6626184d64ba776735391f4ead",
"style": "IPY_MODEL_30cb074ac7a943e68794fabe56d1f3bf"
}
},
"af75f4cef415454e9d7fa31641e8edc7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Elevation (m)",
"layout": "IPY_MODEL_6cfecd44f1b34885b0e6973618f33bcc",
"step": null,
"style": "IPY_MODEL_8f7c57eb6b2a4fc78428c7c1e0697d46"
}
},
"af76893f9e01404f965ec86c85b067b2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"af7bab61a58b4da0bf39a18f162de8cb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_f380f5233aa348a9ba328a3cd0c58836",
"placeholder": "",
"style": "IPY_MODEL_6ed90dfdfc8c4769bc167c1fb9377228",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"af7ff47343e245eaa9c762a02992d551": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"af808231c9a94448afaf926336bd3c27": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_f6ea2cc1e21a430e9e24deeb70a8d0a3",
"IPY_MODEL_f003f440caab4933842668a684ab03f1",
"IPY_MODEL_f014ad3caa8f421091a5d439a53f0b38"
],
"layout": "IPY_MODEL_6f7e7e1d99124e80a87ee12dd9742ea6"
}
},
"af8ba9f76a494198accf78244318d0f5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_fec0fe9b58554752ab0c723b97a279c6",
"style": "IPY_MODEL_a8c3c79048054e139613953a59c77d77",
"value": "Monitoring folder"
}
},
"af8e9902ba3f4d1da4e1fd73d4c533d4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"af8ed66f844e43d2b6096bc756d3928a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"af917625f4f549d8a6842c137b047194": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"afa4d65bdc84414ebc312e7719b29864": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"afab9cb858c84466be7a3389cefc6a31": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"afadf08ac7c749b3a80beee72a0673c5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Values",
"index": null,
"layout": "IPY_MODEL_e3880cbe391b4067a1b8e7e729434d7b",
"style": "IPY_MODEL_597139abbe7d4337ad36753e3d45859c"
}
},
"afbe0064402a4c4e8fc27c8c8bda662a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"afd31a12fd3940e3b30937b8f614d70c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"afd9a3607a364982a112d69137e6ba20": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Bxx",
"Airborne_Bxy",
"Airborne_Bxz",
"Airborne_Byy",
"Airborne_Byz",
"Airborne_Bzz",
"Airborne_Guv",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_d8be4e99eb3f494fae187cba6efe45a5",
"style": "IPY_MODEL_2b38f1903bdf451ab45581a0932ec03a"
}
},
"afdf26d4f58f432ebbbef25a7210f539": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"afdf38a0583f41b293f6e128a4061b9d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"afe1a3bc431d481a8409adf97f312974": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_ff2d300fa21849b4ace1b327ee31378a",
"style": "IPY_MODEL_06880bd94d4444a7bee1b91090b751f4"
}
},
"afe1a75a42f34b91ae19b4f16fd89a57": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"afeb8c7f184b4ad5bae69bfeb7fe9282": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_e4d8aaef64a4413da294a0c638173d26",
"style": "IPY_MODEL_d54b6763b63040a89798c8ebac6f38c5",
"value": "Workspace"
}
},
"aff0461f6ec74282bb738e510af12df7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_ee24cc4e73064c6289ecb04ab605ccee",
"placeholder": "",
"style": "IPY_MODEL_6a3840d07f1348f88298f7da81104240",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"aff8e6d3c7f14ea8a5d45a99a1c31835": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"b01056bf2e7e4469a701eaa99287afe0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"b016c5d13cea4780b4808b17ee184e24": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b020ac1b53004ba4a1607ed04674fc53": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b02bcf0f92ec44078f3f03fc66690f4d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b02d71f42f1e45e98cf97d4b8d62c2ae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 8,
"layout": "IPY_MODEL_59a15f8215d64717b83cbc5ebc9a21d3",
"style": "IPY_MODEL_cd37b80b34644ec5aadb5c4d3f7d2ae5"
}
},
"b02fe8a6b609450393b095dbfc52b487": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b04b05b1f84c45358f7bcb50ca089425": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b04bbd7106ec471d9801d19472868919": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b05deb2646ff4999a0c6c5e774f91002": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_489e62f10d444d0f91f9159953a68812",
"IPY_MODEL_d051a9bd4b4b4e8e86b0f396d9375283",
"IPY_MODEL_f8cf5fbe601c4719a35a9d86086031ce",
"IPY_MODEL_471aee515db94afd82de7c9fb3280441"
],
"layout": "IPY_MODEL_ce0d9460443f4b5f9aca7a49d68a542a"
}
},
"b064be51802744e39fdf2cf5026081e1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_8f36eac219104554a506e61c46171f89",
"IPY_MODEL_59ed6c63019541ecbbd95b6f14e490be"
],
"layout": "IPY_MODEL_0020c82bb26d4ecbb09c09c3be0a4bdf"
}
},
"b06f820d922c4f748fdf4825e5c47b72": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b07aeff443f64153a3ea0543dcd9b569": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"b087e087f03148f4887d114e39da0a9b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_00e05df3d0dd496e98457021e0ce152b",
"IPY_MODEL_ec20c7f4f3934e348f4722ab2a95608b"
],
"layout": "IPY_MODEL_82eb4ffb61f646d898a08cc8008c071e"
}
},
"b088dc4a262d49a8a44310565d2d3221": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_20e52552435e4b7a8f36f86d760232a7",
"style": "IPY_MODEL_2b2b2b2fab77449da7884547266c7c67"
}
},
"b08c11eac54445c5b32cd5c82ffd265f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 0,
"layout": "IPY_MODEL_e1b39626705247fb982e6dabd71bd2a9",
"style": "IPY_MODEL_9b6c69d28934435db211b4f0346a5c1b"
}
},
"b08eec91a861431db08925a7be2dafc1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b0924e67e63342739f996096347c1f65": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b0ab16cd46354176b888011a7c6ceede": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b0afe2d9b52b41ae97c62145f6b6981c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b0b2749b033a45249b02fd686fec8e42": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b0b40af15d4d41fdaf4077f458c6594a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Reference Model (s)",
"layout": "IPY_MODEL_c1f2752e67644bcdad0162997e13dd89",
"step": null,
"style": "IPY_MODEL_5a8fcaef80044d37a22d16344976cd9b",
"value": 1
}
},
"b0b7caf51e50441cace56042c4e93191": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b0cd83d4214949a392595d85317da2a5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_be3244d3c2ac4bf98f26c92534f55ad5",
"style": "IPY_MODEL_706279df8ce347b6a2278bb2bc8ed9bc"
}
},
"b0d19e729849443885754e431dfe9898": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b0d1ca9646204aa4ad221f2cda6b1d1a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Target misfit",
"layout": "IPY_MODEL_120478a06d1441e190a3368c9e8af09f",
"step": null,
"style": "IPY_MODEL_3515bbc1a1544e508e216d5ea03fc68a",
"value": 1
}
},
"b0d63a8b76c849009042be1e0b6e5b1b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"b0d77f3655084aa0a3ea42f3c0cf47d0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b0e35d5ad6a348c08c0ed5351d82df9a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"b0e56ed2e074434a908aded80e63f2a3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b0f7fbf95ec140419d4ecdac5ed1bd34": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_945af7c8d14b43c3a0eadcc0f31f7dcc",
"IPY_MODEL_c48b6d3c9d8041159a91ca98aaa2047f",
"IPY_MODEL_4fa0134a8ca64493a15165772db9ef80"
],
"layout": "IPY_MODEL_fd3c85a1beb341d3ba581de8465e99f1"
}
},
"b10a4c38b4bc4ca5a2bb8db64abd5b0b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b10d5cf19ea4404ea3ec6347c35ae6ac": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_e7400bca464045a3bde7500fc158e5d7",
"style": "IPY_MODEL_31218dce20414e228abc8cdb47bcfdfa"
}
},
"b112c64d45704066b4bd220d588e4e9b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b120c566b3654500ac9e57153d3f3613": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_3f5b70f2a50d4b72a65a97c6e51f7775",
"IPY_MODEL_896ab7530f844935975afff053ff1d65"
],
"layout": "IPY_MODEL_50d77d3be15941898d2e6722ee2bcf6b"
}
},
"b12553e607d34f9db2355ffa2e7b5b36": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b1266ecbaaf145bf921ab075a44cdefe": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_aa2062245db04845bcf1676a67b2f232"
],
"layout": "IPY_MODEL_f61a9c83d5f7416895a12096ba1d64a9"
}
},
"b12aa202c13b448f91f6b2ccc15bb6d0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_874330aeab134893b4d6732d82a94e45",
"placeholder": "output filename",
"style": "IPY_MODEL_cccc45cba7be4ab8ad8e55f4c8c0bf26",
"value": "FlinFlon.geoh5"
}
},
"b12b8d45864946c38c5c49d593e9fb34": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b13b4455f7634601a0ba404bc06e91fa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b141441b31a443b6bedde21f4ebc87d4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_e6b038dbbb30490691d1f4a9b916fd0d",
"IPY_MODEL_0513e2637f46454a8fd9f891037527c6",
"IPY_MODEL_b585b3be62604b12955f7e74d5bdca20"
],
"layout": "IPY_MODEL_b6345bf68f7a4b2fab2c90dcc35b2a9d"
}
},
"b1441e2e38fc41f8acadd376e0490e4c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b14902153701452ab112246174c941f3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b1588f9b4fbd4e369b5dd1544c0b0cd4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b159a0ab79d142648de141f68662b599": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"b15ede626216444ab310508f0f68424e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b16244f6c31c447a9d2fe521a0eb7e34": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"b16a499d4e484ea890afa3364891c2de": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"b1795a604566469e95fb3bce0209e7dd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"b17f4488f7ab417db18d1ba972cc62a9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b1863cd5604d4cb0bfde651ec014178b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b1899bf9ce3f4cd68ec86e5d46cbc3f5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b19116fa319448aa9f8698e1e4747efa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b1915f882e0f481e9479d3fbdd234024": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b1921b4735674e329a9ebc1aeb1c37a5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_dd945a239dc646fb87836eae913a242c",
"placeholder": "",
"style": "IPY_MODEL_b735995ca63245eea645ee5f4577f782",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"b19c98b0d8f7402383ea27a0129a08ef": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_5dc04cf633af4900bc7654b1fe658c43",
"step": null,
"style": "IPY_MODEL_6d06ffc11a77472bb90f987d0290189f",
"value": 1
}
},
"b1a3c0aaa7224ca0b208883238d910c9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b1ab0438694b4189a35641b4fdde0406": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"b1ac56b2429e476fbe51370082b4a66a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_9e3cc10e00ea44fd86741eaab8375d68",
"IPY_MODEL_061f3341dd6045e6b4a3dad41cee83c4"
],
"layout": "IPY_MODEL_bdf53ce2dac342c0a188e43579901538"
}
},
"b1b0fa3897184dfd801d1511437b4d3e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_d5e85c4e73214ceab65278879beaf471",
"style": "IPY_MODEL_627c9a12a2544c8fac7dc608163b6d31"
}
},
"b1b67afffafe42b4b177e581adb7f561": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_b59247f1b2da474a83355571953ddc30",
"style": "IPY_MODEL_6f1e29c81dff47d28185f158a96ff0fb",
"value": "Lp-norms"
}
},
"b1bd60bc13e049e48a86517b1bc1c5d9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Ore/39_Ore_Callinan",
"Ore/38_Ore_Dan_Owens",
"Ore/40_Ore_FlinFlon",
"Workspace/Inversion_VTEM_Model",
"Workspace/CDI_VTEM_model",
"Workspace/Data_FEM_pseudo3D",
"Workspace/O2O_Interp_25m",
"Workspace/geochem",
"Workspace/Inversion_DIGHEM_Model",
"Workspace/Topography",
"Workspace/Data_TEM_pseudo3D",
"Workspace/Data_ZTEM",
"Workspace/Mesh"
],
"description": "Object",
"index": 0,
"layout": "IPY_MODEL_3e3308ee923b4861be54b169731bf452",
"style": "IPY_MODEL_b7c24b76cec14afb883cad1e30523906"
}
},
"b1d42b73773849e38961e0a3e0e373bb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"b1dfa9330cd744a8a638a1836b0bd548": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b1e968431e334ce6a00d68b160e0e031": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b1f4947b00d64a5d8557ce6c7b3e7cbd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_4d97a45210a54c958c5c189e6e20dbe6",
"placeholder": "output filename",
"style": "IPY_MODEL_45b506e3b90a45e0ad054b54afb14a70",
"value": "FlinFlon.geoh5"
}
},
"b1f8392e3e3847f6ab00012a0b272717": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"ISO/Iso_Iteration_7_model_5_00e-03",
"ISO/Iso_Iteration_7_model_1_50e-02",
"ISO/Iso_Iteration_7_model_2_50e-03",
"ISO/Iso_Iteration_7_model_1_00e-02",
"ISO/Iso_Iteration_7_model_2_00e-02",
"Ore/39_Ore_Callinan",
"Ore/38_Ore_Dan_Owens",
"Ore/40_Ore_FlinFlon",
"CDI/COND_surface",
"CDI/COND[8]_surface",
"CDI/COND[18]_surface",
"CDI/COND[3]_surface",
"CDI/COND[13]_surface",
"CDI/CDI_",
"Workspace/InterpGrid",
"Workspace/Inversion_VTEM_Model",
"Workspace/InterpGrid",
"Workspace/CDI_VTEM_model",
"Workspace/Data_FEM_pseudo3D",
"Workspace/O2O_Interp_25m",
"Workspace/geochem",
"Workspace/Inversion_DIGHEM_Model",
"Workspace/InterpGrid",
"Workspace/Topography",
"Workspace/Data_TEM_pseudo3D",
"Workspace/Data_ZTEM",
"Workspace/Mesh",
"Workspace/InterpGrid"
],
"description": "Object",
"index": 0,
"layout": "IPY_MODEL_64515ab651ef42a8bf8e76c8c854a25f",
"style": "IPY_MODEL_16f91704f83345e391e3700350b0040e"
}
},
"b2094d766b77408eba10bbdee843925b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b20a3c0bbab94b7d96f758c6ca5fa1ea": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b223ab4591bc4a7f94169d0d92b6cb26": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_b8dcf08309174df78f723e5d4d03c9e1",
"style": "IPY_MODEL_699c34e33f8947daaf9d96d7746ac5e1"
}
},
"b226cee451d147baabc6ff0d65eeedc8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b22a569888ed4b019d1b5ac971524326": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b22fff3f071a4b46ab35252d4d8d4c01": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b243562c5be04ccda1b215cb69d20952": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b250011be7a84d009a39c88f1a0403cc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b255d7d8eec946ab9e6a15ec7218d96f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b25a9c6d7bf44537aef712fb0213c6c6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b25bda5f64134e4193c10cd33812057b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_ba113c553bef4d40a9f720e00149f935",
"IPY_MODEL_5e877e4f61d24f4eb490f03505e7765f"
],
"layout": "IPY_MODEL_a81cf8a3fb364ce98c4800491d51e18d"
}
},
"b2690f28cf384d86b7013b7e699ca442": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b269962202ed47b98c090b17d23722fa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_6d9fa03924b94f6fae3d77bc0ed2e61b"
],
"layout": "IPY_MODEL_070dc511dd5a44fd933f34f594fc899f"
}
},
"b275c6a199f24d0183d00b0eeb00e604": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_023df751e1cd49ff96455190cc11588b",
"placeholder": "",
"style": "IPY_MODEL_134e6a350f3e44f4a862271579036e6c",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"b27f4f92f1ae4713bbdde91ca56f5bf4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_0d5e2bb308a14e1b92692aa3465d662c",
"style": "IPY_MODEL_a25a9434d1fe4a4ab4daaa8f0db98e39"
}
},
"b2806cbf8cca429dac90d0391a4ddab5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"b286828f947345d7914ef4d33a159882": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b299279f8be64e46acb8aa50878cecec": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b2a213e188a54869a5a54d754be96eaf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_8bc23f3a9b5c48099eb2eee1a47fa028",
"IPY_MODEL_f0bcf77f48714ae4b3d188d7becf9b16"
],
"layout": "IPY_MODEL_ba23fe3ddfc14195b1e02b8b5f767a5f"
}
},
"b2a6d95497ac402f8261e534555e668f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b2a95c889f914488b5b9d810763aefca": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"b2aaec5a524e450f8ceabc1f37974900": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"b2aca1c318254115898c3fc6df36ba53": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b2b7ee60f151481fb3b978d2c3a11cb4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b2bf5e7ad48a4e38a3097f332fbd1cf6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b2c914d5480a4295b8a0e8e508c79fc3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b2c9e153228a48e98b2c7dd95da0d432": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_f4cd78fb3346432f896161d9663ea76a",
"IPY_MODEL_1f42e98dfe26497f9c83b8544d709929"
],
"layout": "IPY_MODEL_8053906c54664415898f7b2c38382813"
}
},
"b2d48e3e5a6b4fd0aaaff4ac8222cf89": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b2d8322ae3634fae99a4ee12452ee32c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"starting model",
"mesh",
"reference model",
"regularization",
"upper-lower bounds",
"detrend",
"ignore values",
"optimization"
],
"index": 0,
"layout": "IPY_MODEL_35c8dd3ce9e24ec99c93f1da4262ee6a",
"style": "IPY_MODEL_d287878ec6e041efb5963d0c0d10c2f9"
}
},
"b2d83ccada9346f2943e18449b6afd54": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"b2da7a5a10bb48608066341460983225": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b2eac11b109f4ac1b57309532a5b5980": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_e7c2450be492493381cde7ae3ad0082c",
"style": "IPY_MODEL_f6b2d666c4ba4d52a8e5265d32470943",
"value": "Uncertainties"
}
},
"b2eef64718fc432c9c4ccbef6aaad2dd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b2f7ae5b98e9420d99d6fc056c01cfa2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"b2fcc74fd61740dc870847f1f06eb0f9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b315b94c697c4e128e764beca8c869dc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"b31a418f919940eca0c9408bdcc8772a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b32838505de64627897397db69a13e53": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_bb2615173e604147b38d99f4c379fab0",
"IPY_MODEL_999a6e2826e84c2591d55e54795148c3"
],
"layout": "IPY_MODEL_83a34bfec62d4d23a849b8fbf81da1ce"
}
},
"b331102f472a4a23a3a465cab97807df": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Target misfit",
"layout": "IPY_MODEL_6d7bb5bf6a0a4d2890a770c155b05efd",
"step": null,
"style": "IPY_MODEL_7c0981220248434ab3396670d87dfd06",
"value": 1
}
},
"b33b43c353fa451ab7833744dbe587e1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_da6c16ba769d4c52ac881fd5dc77a15f",
"style": "IPY_MODEL_6f5c1d731637471ebd651e2ba7ba44c2"
}
},
"b34a23caab444d32895e1bf5d3f653ac": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b34b1e25f0a44b56be4a034dad6fbf8c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"b374cee2ad3f44b7b79217e9ddbf45f3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b385def2b1e94f6b931d644707968c13": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_4389d3f0fbda488cb05181551067d037",
"style": "IPY_MODEL_a024fe75e3d94b73b66a38e26068d7fd",
"value": "Starting effective susceptibility"
}
},
"b38f658cdda549ae92b95dcfdcb0e7b6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b3940d57d504457e8abdbdc8834ca8f1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_2389645564f445c4bbdfdf402603c14d",
"placeholder": "",
"style": "IPY_MODEL_e20d48f727204c02b05150b222753567",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"b396d41465d14f9085bbaafe5ca8ba2a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b39abb7440cd46bd85e92ed45c657f96": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b3a253055ea54fe683f1518cc96f8aef": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_dcf3553acd024cd0861c6e8fce1e354e",
"style": "IPY_MODEL_4caf9ada43744125b2665590e209d870",
"value": true
}
},
"b3a3e662552a42abb81f3e2b3bdb0f9e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_d931bda232d642d4a194c3238e536028",
"step": null,
"style": "IPY_MODEL_2f1ba6dd095e4fc1a1970f5d8544157d",
"value": 1
}
},
"b3aee76d10494dae9f0416a97cfbd6f3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b3b902b4b1c743bcb28e9e33e11cadf8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_2554b2c84b77463c98d28d968309582b",
"style": "IPY_MODEL_13b7dbb6b0d640c3b24c484e90546f99"
}
},
"b3bc747cef494362b2b60a23003bfd8e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b3c0b94789794439acc59aef8a656c8f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b3c65beccec946b9a0b28008636d4a9f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b3cc84a6f14841519cf8697bb9a07c75": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_9284a54d15f945f49ecb90589b5f54a5",
"style": "IPY_MODEL_20d430499ce0403f9a3c32b933cc1834"
}
},
"b3d97f852b5440cda738e8d37ab35b24": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b3e6ae1525f8472f8e8e4bd5b43f9978": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b405ef605add4c3185e50815c12fc721": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b4211677f9a744bbb9c82fe617107d7c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"b42cbc38fde04aad8956892ec08cf973": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_8f84ca4fcac54d9bb3fde672cf9637e4",
"IPY_MODEL_cde68bf3d1274cfdb036ca80ae9b1569"
],
"layout": "IPY_MODEL_697b2aa3b0ee4febb5c2874b1946195a"
}
},
"b431783223f74b5981191b4e7338fcfc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"b4334509a9414b73a8e31d34d674109d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b44168613695428998b9f9dc0b90ddf8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"b4419dfa42ee4d6083ddc152c238f6a4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b44dcf3cb04444899a0e7cb179f7bf76": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"b45df2b80c674899aeb47aa5b3e2a811": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b45f230275364f8d9cdb5449e0089be3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_b51126a987bd458aba31c9f8bfce7923",
"style": "IPY_MODEL_2ce3cd1eb4574669ac7139f67f54cb55",
"value": "Monitoring folder"
}
},
"b4609dcb5aec42b98a470029cc3c759c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"b4691e4f1ad54205827a656703353839": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b477a4dab6414f64859db4ebf9ca82d7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_8a0c426dc3cc4609bd24e91498fe1c2b",
"IPY_MODEL_00c484e941a740158452d453f20b558b"
],
"layout": "IPY_MODEL_2e0b36e79b574ecdae6efe155dcd88eb"
}
},
"b48352d10378490d837be3de244b219d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"b483f2f8b6fa48b7b481ff0a53ec7ba9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b48e5695435a447f99a625c7b33a78ad": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b49bc02eba4341628cfcb17108947661": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_a87d8c72cc5a4bb9930b95e2d3946a65",
"style": "IPY_MODEL_6ff7f3342fcf464ea509529251933e21",
"value": false
}
},
"b49d1bbeacad48a598d4108e35d4f9c5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_2fb235ea7e824dbeb1f4a8aa57a1238e",
"IPY_MODEL_c7065f1b942d469da2e5269ebbc7ce62"
],
"layout": "IPY_MODEL_df961c2e6b4a4e7396adf139e62e64fe"
}
},
"b49f220a477a4a488e16367e7edf95f1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_e7ac2b02afa64f7bb9e9e7dfe866191e"
],
"layout": "IPY_MODEL_a728be244e3247fea8656fd48f3e250a"
}
},
"b4a287a01d9f457d96356e48a3e9521b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_df414f661c9f4110b4edd26b82ba0d17",
"IPY_MODEL_e6aabaee22764e50afe8cfbc2f0ab293"
],
"layout": "IPY_MODEL_6aa9c8e400bb413e8f6b54b991ed768f"
}
},
"b4a7343885a04e19be58d4b66f401718": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b4a9d10f0f854a18b2a271c9cd140ff3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b4ace61c4a3a4020b71d019f0c6fd4f1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b4b085563a4d4bd290e57db55153bba7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b4b529b63e1d43a8baf45b6e5eae7103": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b4c32a7ddc15445da08dbe6ee8bffcdd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Values",
"index": null,
"layout": "IPY_MODEL_79734b71041745c0a9080fcd0372fa73",
"style": "IPY_MODEL_04611f62efe44de0adb316ac4a3a8116"
}
},
"b4c577e495a34d4c9e5baf0aa8a56ee7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_f6ec75d7471c49cfb8f07c02e3b7ef2d",
"IPY_MODEL_4a9ec190af8f43c48f56068c9607cb81",
"IPY_MODEL_f5368e2fb7044f49adc0aaec729252e2"
],
"layout": "IPY_MODEL_6946cec642c048439bb873a054b03991"
}
},
"b4c99dcadb2b4671a43e14e1144df57a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_7834969699684ac1adbc21a552acbefa",
"style": "IPY_MODEL_79157a2f46574597ba0fd60867f70970"
}
},
"b4ce6ff37c2448bcbb28fb909621ab20": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b4d04eafa3e54851bf7490488abcdf9b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"b4d1c2df233e4abf87f293e923ebbc22": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_c7e98aa6528048559f42f66b3d24e237",
"IPY_MODEL_5dc4736f20384eb983137cb507c407c2"
],
"layout": "IPY_MODEL_ac8ac3e1797f496dba636300403ef278"
}
},
"b4d2b5d3e9fa4790817ab27d8764c07f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_99e7dac4c92244a1afdef7ff86a79d0b",
"placeholder": "output filename",
"style": "IPY_MODEL_fb3c772ebfd543dcb37dceeeed92ac85"
}
},
"b4e308a1fd1c40aba8fcee4c2ac192ad": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"G:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"D:\\"
],
"index": 0,
"layout": "IPY_MODEL_8883c81708c94dfa9652a4c2979e4fd8",
"style": "IPY_MODEL_03998f129d6e4e05891d7d0a6a4c5cfe"
}
},
"b4e6699fa41443b8b9320fe2d4cfeb4d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b4eafa794e69436cb6f4ef353ebfd9c6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"b4ee416c06584f46a0e3ea9406269dfb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b4f4259ad24346219d8b982492d825ea": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b4f7865a1b2c49a4a01e915faa3b45d7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"b4f875a3b201426da90bf056ba2f55d0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_94583866965141b196fd35435ca6aea9",
"IPY_MODEL_3ebfc5e3b20c4455905b998d32f8e2fb",
"IPY_MODEL_09a8edb583e44ed6b6f4ded0f5f0abc9"
],
"layout": "IPY_MODEL_2ded96b474f0462290b47dd42bc9c773"
}
},
"b4fbf245ec0b4bb4a5452e093035efa3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_98da229b5bd5405d9e69454a9d5f2d25",
"step": null,
"style": "IPY_MODEL_84c7bcd31daf427c9fa8aebd9b8b89bd",
"value": 1
}
},
"b4fe37b78941407593c37d037f0626d5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b51126a987bd458aba31c9f8bfce7923": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b51749f3f65143b3bf6443235723ff52": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_1463761cf4e94be9bd050e6ac3bd5c9a",
"style": "IPY_MODEL_d58af0b6bfcf4b8b8a39a7cef0347d57"
}
},
"b51d2293dad34c2bbc4912e7d68ace4c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b52e70b8644942ef8c09345fc0c75ec0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b5374d1351594eddbc948fd4694a4695": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b539a5ffc1b9402d8f0ec60a32d18059": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_625651005dff4b27827f5db38b17a743",
"IPY_MODEL_a2e58063c8264785817097bd3644fe62"
],
"layout": "IPY_MODEL_45c65331e49a403b8f51935408b421e5"
}
},
"b53a0e2c3e5443ed881b29b5f5e3ed43": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b53a8f84e30c4e669987bf4046755668": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b540565fb18b4c83ac3352be03f6f2e0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b547eed06d2e4f1c802be59f067e2b55": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b54efe8c935e484b9ee47c60a105352f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"b566fab94d39401c994c652e9ed356d8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b56abf0e8fc34b7d9352593847eb66d1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"b56e5157b31e48cdb876121c08b6be55": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b56fbf2a6b554edb8f51b3430d2ce680": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b5742d276d8f4ce2a48f2afdf6b32c15": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_94ca69352d614695b8380e1d99c2ae9a",
"style": "IPY_MODEL_04d8247e9f8845b8bea246275967b901"
}
},
"b577eff4a8504a558b534952140be614": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_ef3a51e010724f30b9d13206a8d1213b",
"style": "IPY_MODEL_0d97086f4e58476c936463ba442a82c1"
}
},
"b57ca0a05cf54a5a97407614db74d644": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b57d3dcf4a584dfdb2d0436c996957ca": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"b585b3be62604b12955f7e74d5bdca20": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_34f81a4a98114deb80e5e5bf49094ae4",
"IPY_MODEL_85e7598e92ff438ba30dfab2eb473622",
"IPY_MODEL_155bd82afcee4dc9a10e6754554a0858"
],
"layout": "IPY_MODEL_5aa4f3f8b96d4c7ca7888fb15e63db5d"
}
},
"b59247f1b2da474a83355571953ddc30": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b59b86c63fd54b1fba2209ed81f8aadc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_f7b71873886444299d05f2017ee8042d",
"style": "IPY_MODEL_e42f8a46876042ff965583d17cf9abc5"
}
},
"b5a172027b5a46c88e0b12974aa264fe": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b5a3c3b901194b1abd1fb7b3efebd517": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b5a7f85cbac342fd8ce5b74093ab366c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_10f2215b0d234d5ea3aca545660b112c",
"IPY_MODEL_a47f0afd37ad4ebc8ea6e1134a208fd5"
],
"layout": "IPY_MODEL_ccb5436129274a7ba5a05009a9253d47"
}
},
"b5b1cefade2145889e8ea44991870d7d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b5bef15f192b49f381775ce75678c97c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b5cb9e4e7bda49deb00800961ee38389": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b5cf21ca3d3242e3a5f133c2cc777a9d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b5d3d339b7b14fb9a179463e0042fafb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b5e9f687feb145309845942019484b76": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b5ef4ec1d1ba42649237172bf6f0cb0b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b5f66bdb1c9749dfa4b0cfd76b8d0536": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b60554ac6d9543df97f92e1ddaff7e7c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"b60ac0ca46864469ba51ff817ebd2827": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_60347535befe45469fff94154653d045",
"style": "IPY_MODEL_42315fab53af4f55955f7c5beaa14699",
"value": "inversion Parameters"
}
},
"b616c71bbb624dea8f0cc2f7fac8a03c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"b62d8c7c4b634a75a7e503909bf72ec3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"b63375bad894412f897e20117014c96a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_52f7f18b22f444da97a14ff337266df1",
"style": "IPY_MODEL_6c06b4c4560242599f397ea7cc2cc4c5"
}
},
"b6345bf68f7a4b2fab2c90dcc35b2a9d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "500px"
}
},
"b64dcfc441ef46c48d99e06909704b3d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"b65995f05a844974bee2444eaf27172e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_23e58611892348e3b792d533730f4e09",
"IPY_MODEL_a492af685d344479a00ccc3742b5780c",
"IPY_MODEL_9da62f3f5c0447918f091e292fbdb8ed"
],
"layout": "IPY_MODEL_d78085f4b7bf49479a8c01110f047914"
}
},
"b65f048799e046d9bc3a1a9d068d19a9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_27e71ec56a9740299b74627fac99a038",
"IPY_MODEL_61005ad6372646b986076284d7695134",
"IPY_MODEL_11f3c8022c37498681657edb9f14944f"
],
"layout": "IPY_MODEL_df189b70b8904e978809edff22bf4462"
}
},
"b660d79137324676857f184054e86c8b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"b66a5dc3398e46e9a3043f9eda90f652": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_d3d05b4c12f74ca4b17c131b8d2fab1e",
"IPY_MODEL_18c28828c61b4abfbfa1991d13b359bd",
"IPY_MODEL_8d02e049aa0144fcbbf373ae8a870788"
],
"layout": "IPY_MODEL_24a2f51b403f4950b0c01e4b047d1730"
}
},
"b66b2cd2ef154bd3b85f1f3e2992d70b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_2998b8fe865c4e53a1ffbaff62eea800",
"style": "IPY_MODEL_04c2a46c242541588dbe0f032808df38"
}
},
"b66cf2983ef04c02a371b81deaf54517": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_054c79da26f24442ac1dbf9eaec400b7",
"IPY_MODEL_4700b7dfd8cb49ddbdc9fb93177113f9"
],
"layout": "IPY_MODEL_dbe28c60021641ed8a09a32a90debefe"
}
},
"b67424bd099a450685e759bfec674759": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_a6286ca9e3274c1ba807656b3e1df3e3",
"style": "IPY_MODEL_fbfa60fa4d174b358fb46b655146d966"
}
},
"b67c3c4973b8402ea7c524d89d4310ba": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"b67d130b468d4e999d6e711d2b9b9ec5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b697755d417c4fb684c0b239d9d0c547": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"b69d524bbe154eeca2250e4bc3f5bf35": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b6aba8dff0d9456989415353a4e3c7b4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_7d164253156e449f8d3dc0e095257967",
"style": "IPY_MODEL_19b047631d3144a59aa6bc9869242f8a",
"value": "Topography"
}
},
"b6ac430320e9441480a3f3284bb64c92": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b6b00fed1135410fb927423835f1b258": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Values",
"index": null,
"layout": "IPY_MODEL_3cbe121dc0a8449abdde1f0613b542b4",
"style": "IPY_MODEL_c6d37704234b481cbc1bfa6ae22ef403"
}
},
"b6b0f6b5e3ec4666bc5fe8859939ab02": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b6b78d2aa0364d0ea9d30d817bde9e5f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b6b9c5ae26c24aca9a62b80f55ac0372": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"b6c30a6280d0432d856ad2621b39c5c1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_3365a49d692e42c59a597dccea5f4129",
"style": "IPY_MODEL_895ce2ac9cd24327b7ca9d73a7d19ac7"
}
},
"b6c400b26a774be69acc33112eb65bd3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b6c888c201fc40ee9052254046548259": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_e2c0d05de5c54a6dbbd8dc216055f681"
],
"layout": "IPY_MODEL_307797d4ad354f928bde7478e2a6a630"
}
},
"b6d00d9214ef42f99d5f4bc1d19262df": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b6e2bdf1065c4bd2b3c81eaac890840d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b6e60691c95845ec86e759f2822e7230": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"b6eb92fbb84c4fa583735237445afbff": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_16a926418d4e403dae76e9df82b9d556",
"IPY_MODEL_31cdd56a92df4f1cb722780e1bd5bc65"
],
"layout": "IPY_MODEL_74aa0a549fcc41ed9dba106f9e99ff3b"
}
},
"b6eb939e273b4eed85c18a7a8faee479": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"tmi",
"bx",
"by",
"bz",
"bxx",
"bxy",
"bxz",
"byy",
"byz",
"bzz"
],
"description": "Component:",
"index": 0,
"layout": "IPY_MODEL_8b97f4df363f49359d470244ba8cb9d4",
"style": "IPY_MODEL_95ad1a392b92435f8fad9b25f35800f2"
}
},
"b6fbc205ec8f47e19f77e5e2a6219c13": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b6fde39fcfc24cd49d39d692d34fd2af": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b70349922a594100b45c56900293374d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b7057ab04a86442f90f4112a11a7e567": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b70af40cc01e4fa287f207bf0c09cf37": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"b72d4d9118024c3a851f35486c3cdfcd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b735995ca63245eea645ee5f4577f782": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b73f878496894d1d9b7ecac9234db642": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_0ea0cc7ca8fe4183a396c278c9aa6c84",
"style": "IPY_MODEL_fd05ccfa5b604545b163dcf8f0a6e5ef",
"value": "Uncertainties"
}
},
"b741002902c04b4d9f6b6201d1dd17d0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_ff5d3ac876e14c088fbea3a2de84e231",
"style": "IPY_MODEL_7e6e72b14d394028b3c39be0f70534b0"
}
},
"b74d00e3c1f84e0f8d466ce69a63363e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b74f1c15c4584b6cbc674f922faf9622": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b75bcbd772b3466cbda0cf6e72eca1f6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_a1198f3a96614e5a86f83edb44875949",
"style": "IPY_MODEL_edfc45c0549a432fa9a33659ee476b1c",
"value": "Uncertainties"
}
},
"b763d133839a42ca8843ca3b1e847df0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b7650f9f69804075b54e95ed6df4ada8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_4f0e24701a184ebe8ae587a37493b388",
"IPY_MODEL_62e026f117e5408a869b0b56f63cc0b9",
"IPY_MODEL_f48996224b934eb3b9d775ec6da04b16"
],
"layout": "IPY_MODEL_24a2f51b403f4950b0c01e4b047d1730"
}
},
"b76ce6164f5841b3ac9d8ec6e9e9c13c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 0,
"layout": "IPY_MODEL_cbe2400a53e94801a98894204ada9db0",
"style": "IPY_MODEL_8bfaf8af2e6c4fb48da0ddde391518b7"
}
},
"b7834764d40241a3a6b59b2c33595906": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"b78f7e9ceaa443849ed087d5205b4547": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"b795df31a470463c8cb1be0a6d980660": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"Constant",
"Model"
],
"index": 0,
"layout": "IPY_MODEL_2e1f8417f29749ad8dad440b941c8550",
"style": "IPY_MODEL_3b32727e310345669a4dd8a6a1f5e14c"
}
},
"b799521c1db441aaa411c065bab0a398": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"b7a372498cc54783bd85aeb023fa704b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"b7a387de13d844d0ba18c3c218dc6e44": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b7ae875898c643debae7503326bccdd2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b7b4f0de13ca4a708cba98e683b7d7da": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"b7b92f7d62f948b3bca9beba603abfb1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 .."
],
"index": null,
"layout": "IPY_MODEL_92b7094f6dea4015878392da6ed44553",
"rows": 8,
"style": "IPY_MODEL_4e596a688b44494c9fcede3610c56426"
}
},
"b7bcd03c8d234dc69c4a22095da85400": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b7be0656f4d74cd5b7bbc4013e430f40": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b7c24b76cec14afb883cad1e30523906": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b7cd012e3eab417da2ed4551dcd07e88": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_43e65e2a2d184bf1ac2fac425a869492",
"style": "IPY_MODEL_dbaf53243e0b4a2aa53cf1c3bb3275a1",
"value": "Topography"
}
},
"b7cda6f81a66456b8b43e83232d8924a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b7d5ba616d8f47b187094ed0dddddef3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b7dc8f6c3bb543ee969bb61203a10fe5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b7ef46d02ac9444db43fe5f48291d4c9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b7f558b4c54d403596f2cf9c633d7b84": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_3eea69d80add4cda94eec2fc0f0584bd",
"style": "IPY_MODEL_8c1a3b2e6f3b44b1b17aa9bde753f218"
}
},
"b7fd9f4775b44634a68ee506d056300f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b7ffd34f419d4611a58fcf7c34044d8f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b808d65fcc9942c5a78d4ab101d09331": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b812c07d81bd471590a4ee1e9dc982a3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_1f019f86be4e42f6aa812d84ed598d53",
"IPY_MODEL_8ecf0c2476a045159cad0d72d18b9dfe"
],
"layout": "IPY_MODEL_5ede405d8f6e405c8333b28fc267d9c7"
}
},
"b81320745ef04909944f9691054975d9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b8147b2582e241caaaabd1ad52475b03": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b815bd7c49644d969b41d175b11c376a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"b81eb425ac8a4a94a541de945b148083": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b83f1bf800a4463fae525da06ba531ea": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_c6a72a6f62c747fb85b48c263d177193",
"style": "IPY_MODEL_c1d56938018f462ca0452a8d01f9032c"
}
},
"b841447987e24c03a3b111f6959896db": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_6c82ca0548c44d9d998aa91c45829d3c",
"IPY_MODEL_eceeb72c09fa49d593a91a655eb6431f"
],
"layout": "IPY_MODEL_c7f829e414244f96a9c2261ba5744939"
}
},
"b848729602934aada4cf4f4915b34f84": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b84ad7ca8dda4940848413dc71bc6a35": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_06e5c28ab9684b86aa5a3f8a9090cccf",
"style": "IPY_MODEL_d2acd348b73b4af8bc229838fd835cb3"
}
},
"b85e4787b3ed46c5b41323e229f8d80d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 Temp",
"📁 uijson",
"FlinFlon.geoh5",
"FlinFlon_dcip.geoh5",
"FlinFlon_dcip_v4.geoh5",
"FlinFlon_natural_sources.geoh5",
"FlinFlon_natural_sources_v4.geoh5",
"MtDore_TMI.geoh5"
],
"index": 3,
"layout": "IPY_MODEL_94b8166b142441939cb3733ba806f40d",
"rows": 8,
"style": "IPY_MODEL_93046823cc97479a991d8cb4de03af81"
}
},
"b8626502f78644e1a9e11891695f381e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"b86db129946e4b559c398812cf456353": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_9ac7c3c806c54ae5ab19960cf9eb9c87",
"style": "IPY_MODEL_4a22032bce8248dfbfe7463db0cedaf5",
"value": "Save to:"
}
},
"b8753a41c7d64709837a73ea37a63b62": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"ISO/Iso_Iteration_7_model_5_00e-03",
"ISO/Iso_Iteration_7_model_1_50e-02",
"ISO/Iso_Iteration_7_model_2_50e-03",
"ISO/Iso_Iteration_7_model_1_00e-02",
"ISO/Iso_Iteration_7_model_2_00e-02",
"Ore/39_Ore_Callinan",
"Ore/38_Ore_Dan_Owens",
"Ore/40_Ore_FlinFlon",
"CDI/COND_surface",
"CDI/COND[8]_surface",
"CDI/COND[18]_surface",
"CDI/COND[3]_surface",
"CDI/COND[13]_surface",
"CDI/CDI_",
"Workspace/InterpGrid",
"Workspace/Inversion_VTEM_Model",
"Workspace/InterpGrid",
"Workspace/CDI_VTEM_model",
"Workspace/Data_FEM_pseudo3D",
"Workspace/O2O_Interp_25m",
"Workspace/geochem",
"Workspace/Inversion_DIGHEM_Model",
"Workspace/InterpGrid",
"Workspace/Topography",
"Workspace/Data_TEM_pseudo3D",
"Workspace/Data_ZTEM",
"Workspace/Mesh",
"Workspace/InterpGrid"
],
"description": "Object",
"index": 0,
"layout": "IPY_MODEL_49b1b113503f459eaf3aa08db5cb741d",
"style": "IPY_MODEL_aa7d35c7573d45e49c23a3f3dea5a5ed"
}
},
"b87d3986968f439db34652bd3f1292a8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"b880e2203e66495a9966307b8e6d8351": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_2df2fb4eee6340ee85b18d9ba1eb8dbe",
"IPY_MODEL_fbfb786d6b8f481fb1b6e38625831f27",
"IPY_MODEL_a3c5445289e4444aacb7bd74cf953750"
],
"layout": "IPY_MODEL_e8205f86f61443a99d5389fd4ce1fc2e"
}
},
"b885aa9d02ea4c28b4812dd43d78bda3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b8931b88bdcf4a38970e78787130a39e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b899255ca93c4bedb990f8678f6cc3c7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_86064ed38c1e412eb210a3c22d8d3e8c",
"IPY_MODEL_8aeb22b97d9f470681ddaa8abcd43d5c",
"IPY_MODEL_82d71fe6b33c41e9bccf8fc3eb23843a"
],
"layout": "IPY_MODEL_43019cbca9db4eca808a950897cde21f"
}
},
"b8a5e6ef7c964df380a608252f7795e4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_4290eb013f6e43a4b33e26d231fe511b"
],
"layout": "IPY_MODEL_cd793b986d274f5897a4a4f0e4860228"
}
},
"b8af190dc13747e5a9a49da9c7595cae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Degree",
"layout": "IPY_MODEL_5b8df329c1244d8694a479bc9558fc5e",
"step": null,
"style": "IPY_MODEL_dc6eee4ff9174559af5a91926b0931c4",
"value": 79
}
},
"b8af951d12d242049b88f76b3e304f3f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"b8bf5257be41481aa238b471b06c06f5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_a469f5b3e38b4fa4abefb6d04adf39a7",
"IPY_MODEL_2fe703b205ca4e5ca528a73ed7a299d3"
],
"layout": "IPY_MODEL_155bb3f68c694e0e84dc3a836d7051e3"
}
},
"b8c52ef4e5524eeb8a4e427da3863f7a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b8cc28ca20e34ed098fba5296d0a9f2d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b8cec5caaa21450cb595c0ad840486e0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b8db9d479f6746889897ea440942e75a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Vertical offset (+ve up)",
"layout": "IPY_MODEL_4b4aa6bb222f4cf7be9d940602fad701",
"step": null,
"style": "IPY_MODEL_3bf213534e604dc78015cf29486313ca"
}
},
"b8dcf08309174df78f723e5d4d03c9e1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"b8df4f06633d47e8a7200f393b9e93b7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_cb0dadc8a2ac4afda5d9d99240126cba",
"IPY_MODEL_17379063000c433eb8acb736ab1895b0"
],
"layout": "IPY_MODEL_443e00e92e9d4e9bae6af7e95e0cf162"
}
},
"b8eaa3d2749e4b4f86bf1430445c65a1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b8f20895c4304e20b61baca881dae0d3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"b8f62ec63351495cabff22a22c05bb3d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_8e4cece4216b4e32b7194707880aa4ed",
"IPY_MODEL_f691d91bc1024a4daea1a6bb59e4fca8"
],
"layout": "IPY_MODEL_3a5c2dd6d63b485491222193e6ed3639"
}
},
"b8f9e656ffd1402da660164680ec71cb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b91188950ca040ed8bcb9f488a960808": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b915d53930ed411aad908a78a3105b09": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"b9294bb5a8d2488a88b9c6ffed3967b1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b931d230d4904d139904b9b41b885e42": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"b9341d4f91ef46b8a48b365a4e1b7f0e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b93423d825c8440096e528311c920a71": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b936c938fdeb4cee968fdcc3d91dd91b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_b5a7f85cbac342fd8ce5b74093ab366c",
"IPY_MODEL_bc505e0752a14f59945dcf22d4d61404"
],
"layout": "IPY_MODEL_96a2dc4028354ae0baf7d36440fc6c33"
}
},
"b949f79613514873ba5bb155fc84d639": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 0,
"layout": "IPY_MODEL_12ee60f6e7804e46bc9a7f4d852a77c7",
"style": "IPY_MODEL_56a3b67eef634a87bcfe519e7fe848f3"
}
},
"b94c0bd1d2bd476382d62a89690a7e89": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b94dcc9a26334be6b6f139b902c7f923": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b95d1e3f15ab43b2af6d2007329dfff4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_afeb8c7f184b4ad5bae69bfeb7fe9282",
"IPY_MODEL_6887ea6e71c84936b283ad40f089959c"
],
"layout": "IPY_MODEL_57ad4b21f6424f01bcfceed2211e0bbb"
}
},
"b970a01648164127b973f7cfcbad3e4c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b975e587705142558a549bc6b129efb1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b97bc96b44074d818d3ab43de1dba573": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b98815e323e647b69f436ce3fddd9b29": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Contour max:",
"layout": "IPY_MODEL_840ffdf582df4058bfa1cabc9e40c086",
"step": null,
"style": "IPY_MODEL_0928ab2219c54ed6a39240d7a97e8246"
}
},
"b99328f88f2f4178af95ea066aa3178f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b998b826e0534136aa4333e614555c0a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b99ae69c142b442ea9e587a517acf47a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Elevation (m)",
"layout": "IPY_MODEL_0167b29eaced44f9ac72cb8564a11ac9",
"step": null,
"style": "IPY_MODEL_31627e901dd441659b87891ec54594e6"
}
},
"b9a069e194e941189e3521dd40684913": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b9a3c593fe874791aa04c4482bc68e47": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b9a707d648d84b6a89646d8d55a29856": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b9bac5fd61fc4179a232ed6aa2ae6c54": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_472d7c6a0480466898c99e873a2db5ba",
"style": "IPY_MODEL_488984385e104b409a12c238ba249013"
}
},
"b9c69f6fcc1548b1b562086de648b887": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b9ceac58e184484f82536f82727a5d76": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_0f38e9a4988942ff9367b1caab66b2fa",
"IPY_MODEL_b4f875a3b201426da90bf056ba2f55d0"
],
"layout": "IPY_MODEL_0d1c865bf48844bcb4370b456eb1edb8"
}
},
"b9d502349d1c4e9b9fcd79e9addb0bca": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b9d62b014f8d4875946006e1464d8bf9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b9e087ebe16f4f57966a6b721fe70bb3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_132e941a40a1403c9e7ebc2dc74492db",
"IPY_MODEL_1d55e243433e419bbb6c2fecada11dc7"
],
"layout": "IPY_MODEL_a130a5c1fbc54a78ac51a32e922f15b7"
}
},
"b9e35f991b0f41f0a2969766c5a4d20f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ba113c553bef4d40a9f720e00149f935": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_8597add91c0e4cf592d1bcaa413e104d",
"style": "IPY_MODEL_8715b9af6b614fbc90f129f512353ad1",
"value": "Save to:"
}
},
"ba2343c64e704a648667c98f5979bfba": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"ba23fe3ddfc14195b1e02b8b5f767a5f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ba24d42e9f7940058f109b75a25156a4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ba29f251f7ba4221a7fd627a7f2d29d8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ba2b1661093b42c296aed0186ac95282": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_46a391cab0d444538d5ae54d3618ed79",
"IPY_MODEL_d980bd1e89624496a7706396d8d923da"
],
"layout": "IPY_MODEL_1a17c9f345684f5ebc0825b0ace85fdf"
}
},
"ba2da0ac9911449394502f4577cd4acb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_b795df31a470463c8cb1be0a6d980660",
"IPY_MODEL_43d579ca09084e76881f65d1d16d774f"
],
"layout": "IPY_MODEL_a461914c9ec347bc8107da694258dde9"
}
},
"ba387cd9e42e40fb98ef1ebc54d5deaf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_3925db8c756a468d80eb3380e1529561",
"IPY_MODEL_e82de3dccb624cb884f53c0784c23144"
],
"layout": "IPY_MODEL_4f37c2f5436c48b391a5c9de17ee625f"
}
},
"ba797465ffb94523a1d6b91cf44022f5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Forward only",
"disabled": false,
"layout": "IPY_MODEL_b9341d4f91ef46b8a48b365a4e1b7f0e",
"style": "IPY_MODEL_619648e2cecf46868231cc5df2917ad9",
"value": false
}
},
"ba7f0ffc503741c9b2ff9008bf7ebb77": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ba7f4bda1f1d46cf9d5c16edffcfedf7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ba820b18547146b4b2092707e23daf59": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_42dfb1db66874fe6925eb9257449f21b",
"placeholder": "output filename",
"style": "IPY_MODEL_3d9f538997014215ae0bad0bee4dfad7"
}
},
"ba8e469d895745f89445c74a8d422adf": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ba9518df9cfc4244817377d174d33e2f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"baa1c9898c5b4080a53c64e040caf243": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"baa2de2f648e4485a9b7363b1c0781a1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_577e053298f6493c86b032c3a14d6fd9",
"style": "IPY_MODEL_aa66620d88284568b293213fa3c5afd3"
}
},
"baa753b5c2cd45dc8867b5c304ce660d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bab91a82746340f1b92aa24c7c553f37": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"babd1e7bdb834bc28690866533e0d352": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_cfe470d6e4aa43d19aa862c9ad3043ef",
"IPY_MODEL_16abb95659b84c50ac0c6bc46e27827e",
"IPY_MODEL_014eb10ef82149e4a9280024ef2b4931"
],
"layout": "IPY_MODEL_6946cec642c048439bb873a054b03991"
}
},
"bac03be769a54b1b90baeff7bb943369": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bacbe58bcac146c5a096e943395b13c8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bacd3ee2b63f4447b529c67fd4864d7f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"bad0e7d5fe9746028ede3aeeb9ac500c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_ab1f02c0d9e6490284ae35d02bc57ca4",
"style": "IPY_MODEL_f9c23ac6542d47a3b4d968eae6076ae2"
}
},
"bad714010c2146efbd274fc28a4fab34": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_fe904445f1ec484cba9c8f805e81b3aa",
"placeholder": "",
"style": "IPY_MODEL_cfbf615c2c4944648b95be5aa2958f8a",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"bad7f0d1d51744c68082cf190df88961": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"badc0f52b33f450aa704d026ef87113c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bae1c32240404b4cb9202accd889898a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"bae3fc43c8e04f54bbc0a93ae4656518": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_8240ccd5367b476ca2bc392614881ed4",
"style": "IPY_MODEL_24df895c6b6843c0ae599a05bc49e26f"
}
},
"bae825c326f44e8490ae68c30b1d7554": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"baea28416f294a07a044495c9ac176da": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"baf10f101ae64bedac420883daef8975": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"baf49717850048bf8d611ef601d63aee": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"baf5ebfbbe504f469adbba9412cb0952": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"bb0bde7733a54f30899511817a59c759": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"bb176c33119447cbbb132da14663ea72": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"bb1787f49d25469cb4b48ae98e940d97": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_398c7639f2884dd1b28c0c5372afe1b5",
"style": "IPY_MODEL_4716496694b94c1897295babecb4019e"
}
},
"bb194a5715b3431987dac35bb3343fca": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"bb1b1806075442a5937b547af36b083e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"bb2615173e604147b38d99f4c379fab0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"tmi",
"bx",
"by",
"bz",
"bxx",
"bxy",
"bxz",
"byy",
"byz",
"bzz"
],
"description": "Component:",
"index": 0,
"layout": "IPY_MODEL_a3fdea1663c940018b21a6bb999616cb",
"style": "IPY_MODEL_b19116fa319448aa9f8698e1e4747efa"
}
},
"bb283b5c7a194956a62e365d1bb17103": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 SimPEG_PFInversion",
"📁 Temp"
],
"index": null,
"layout": "IPY_MODEL_75906497453d48a8bb9821f12b4b4cc7",
"rows": 8,
"style": "IPY_MODEL_7019c86569f744f7a1cd90ecdd209f5b"
}
},
"bb2bb23b33cd43f6a62e1f121391025c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"bb2f06094c414190b6509ceafe4ff47e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"bb3210bcfb474861a77e0e50ed812d7c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"bb322f89fd6b4b7e97f9f97c2c25289f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"bb34c3d5c63e4e79ba0b434f0eed987f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"layout": "IPY_MODEL_4c13b3cb25964438a443076498c8b817",
"step": null,
"style": "IPY_MODEL_95a48084ef8a4ac980c0bcafb5ace219"
}
},
"bb39fe6afffa4f2c9e8b8a1a64c8dcbb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_9cd643fe0fcd4c6489ebd614ce594996",
"style": "IPY_MODEL_18f2dc050dd8463fb4a0dd06e0633a60",
"tooltip": "Run computation"
}
},
"bb3a6b74b104408c9daa471b3f888844": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 Temp",
"📁 uijson",
"FlinFlon.geoh5",
"FlinFlon_dcip.geoh5",
"FlinFlon_dcip_v4.geoh5",
"FlinFlon_natural_sources.geoh5",
"FlinFlon_natural_sources_v4.geoh5",
"MtDore_TMI.geoh5"
],
"index": 3,
"layout": "IPY_MODEL_e5eb246dafed4a93ae49a001e92aff28",
"rows": 8,
"style": "IPY_MODEL_77d76245ff824a8cabc14d9688b53a03"
}
},
"bb44fa9927d44af0a00e0a5c5c410a04": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bb4b962ece494f788712892392355509": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_16812e47074d4faf814bde1d8be9bc4c",
"IPY_MODEL_cc2e8afaf5664a0f9b437ddc9e0c1aef"
],
"layout": "IPY_MODEL_9261a778dc9045b28648b2d417b58a96"
}
},
"bb5c30df69ee49499139b63f2496dcaf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"bb604b763f9c48e08e744fddad736120": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"bb6727a759d947b699e20b6fdfd8e6fc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bb6f0a32ab2548b491b8f818875cecf0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"G:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"D:\\"
],
"index": 0,
"layout": "IPY_MODEL_a6cc7a2214464a7b8384b102f589da47",
"style": "IPY_MODEL_34a03bf085a9401fa4dcf62f9112c89d"
}
},
"bb82f4870de34ada9e892b3b7417d2b2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 Temp",
"📁 uijson",
"FlinFlon.geoh5",
"FlinFlon_dcip.geoh5",
"FlinFlon_dcip_v4.geoh5",
"FlinFlon_natural_sources.geoh5",
"FlinFlon_natural_sources_v4.geoh5",
"MtDore_TMI.geoh5"
],
"index": 3,
"layout": "IPY_MODEL_196df46f932643b5998a2fbe969d908c",
"rows": 8,
"style": "IPY_MODEL_7eadf5225d564be2ab59a6b9d399831f"
}
},
"bb845357401d4b98a8347ba11fcbbc94": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"bb8868a0cfde44f4ab42668e9b612e1c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bb92238990d14fb183fe5028dcd2349c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_4bf5120edc6046f7b5c3b6cd9d120928",
"IPY_MODEL_20fb2b2a0e7c466f8600c1ef0ba797fb"
],
"layout": "IPY_MODEL_11df7d9e3d4a41b2899bc88060ac32c4"
}
},
"bb9dbf1c53914e67964227a7ec98c6fe": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"bba18989c9d7414f823baa15b4b48d94": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bbadaac69ae04ab0a2a162d6ada1e3a2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"bbae83416a9a481cae8a1fdd9b40c048": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"bbb5e16b14314d0f83b03ecca3b11caf": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"bbb76145671a4e618f0306b7ca632032": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"bbb959f4c30d4c889f9dc190d835313b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_b7a372498cc54783bd85aeb023fa704b",
"placeholder": "output filename",
"style": "IPY_MODEL_33e488e4a2f744f0a897fab93aec0496",
"value": "FlinFlon.geoh5"
}
},
"bbc13e9a61c9456f82ae4a20c30e707b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"bbc15402850241a29a80c69aaf38db81": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_c46700edf94641d4a92056cfb0927467",
"style": "IPY_MODEL_8c8d9cfc472e45c9ab3ebfa391017f74",
"value": "Reference Declination"
}
},
"bbd5d5d8e2c34ec1b933a39fafa29600": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bbdc7ff0a02b438c8956938f9cec0b71": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_9b153ddc18554abab2947c61489fa46e",
"style": "IPY_MODEL_aabde6330fc8463793932fc5587efba0"
}
},
"bbe46111b10f4e7b8b5deab3af5f48e9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"bbe7a3a296bc48cc84f1c63987158aa7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"bbeaa991a20c4a6dbaf3799bcd6067b8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_1a61556063964e5794e174d63773d781",
"placeholder": "",
"style": "IPY_MODEL_cbab2b81463349fdb1326ac5de2cbd16",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"bbf8a4f3da0c4b3094e403c98a1e36bc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_72bae4d6e81f42dd95e36aba7a627243",
"style": "IPY_MODEL_94caad78ae16479c970b33462f290408",
"value": false
}
},
"bbfa4955e4a640ffabc58d80f3a762e5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"bbfc2f3dc06443e8ba768ffe17f1e658": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"bbfe0e81009247d2a31bac2a34a120ba": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_1c870a94ec8c49038641e64707339dc2",
"step": null,
"style": "IPY_MODEL_c3c6dbc9f35c4cc0b36dbf386fb12adc",
"value": 1
}
},
"bc052ba9784449d293c35a2dde7a7a7b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_6669ca1bc3cd40dbb64ad5837b30b094",
"placeholder": "output filename",
"style": "IPY_MODEL_da3d329ad71745149c165570f3bd21fb"
}
},
"bc13e55346964059a2e7c0fa481c7caf": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bc14e0ac4c6541a092f79c5c907b12c7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_7f024e6e109940a5abd8d2fcb8c61fed",
"style": "IPY_MODEL_4382f58470764442be43eab5e6804f2a",
"tooltip": "Run computation"
}
},
"bc158e0e746041e5b4cd28c914ef8fa2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_94d3b9d209f94d87a044b7309285f5ff",
"style": "IPY_MODEL_1f50e05750d8413796b5ae353be07886"
}
},
"bc1b7847698140369d01f1fec561a263": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bc2539b03ff44511aa8e316321db9899": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"bc287d19528f452c8768f8ae77a5f030": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_fbc67c44dc1b4e8a910f9f6757d1b719",
"style": "IPY_MODEL_4c8e9ceaf4284a779413e9ad28891f85"
}
},
"bc30f77d74464a3094c9d076fd0ebdc7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_8167af62dd3a41768763b2a33f5f3fdd",
"style": "IPY_MODEL_aabf84ec1a334d93948ddad0530351c1",
"value": false
}
},
"bc36b7260f2640b69430c369d2bc356f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_89085582c5bc431788b2e019430e1988",
"IPY_MODEL_cdadf7b3e11145ca9522c035cc12ecdd"
],
"layout": "IPY_MODEL_a1b1a696f1eb47639e1730976c709946"
}
},
"bc3a0440b9104389b793b6e5e188e09f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"bc47b1605ecd4e6ba809f964010b4535": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"bc4b5cfeee164b24b89dc6517a2058e8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_c55b677f081148588267bc97d207ffc2",
"IPY_MODEL_62def65b542742a9bbb416901df20695"
],
"layout": "IPY_MODEL_97c4f04e16054fad8fabf53f49cf207d"
}
},
"bc505e0752a14f59945dcf22d4d61404": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_82a45cf1426a4cd79fd96516211b9b42"
],
"layout": "IPY_MODEL_14d5c2fe3e1d4e70932e4b04df84fafc"
}
},
"bc52064af9a24ad3af35bcf90d20e609": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bc575c53519745318b980950e5295143": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"bc5e822721a2438ca4d61713f5e9c2fd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"bc69c822e1734f529029b8e3e538921f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bc731477601349c4beac50a071c3fedd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"bc7376ced2994701b69876f42dba7ee0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_67df307e574749d8b3b8fddc3b800f7c",
"IPY_MODEL_2fe5a05cde2d477bb3773e5499f878e5"
],
"layout": "IPY_MODEL_ece28dff76264df5a0c490daa7eef65a"
}
},
"bc7bb24ae9384132a1d957bd32447c86": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"bc87537b13aa47768cbd93def7d67905": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_40a9bdb077374ad09ca83c09695dc4ea",
"style": "IPY_MODEL_d8fdb3b83bf14364aeb6cd5bd11265b1",
"value": "Workspace"
}
},
"bc98dc6ab5b24b34bd44a756a64323b6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"bc9989214038460681a018d6623dacf9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_3bc2052fe8b6471b8406d7e2099ca96e",
"IPY_MODEL_07ac7b1c97b24226be475a8dcd971d9f"
],
"layout": "IPY_MODEL_88d543e48e8e483b81f05f489d457355"
}
},
"bc9d4737f3fa4935a8a24e2918fc4841": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"bca3a6d5037a4f7a8139333832d7aa6a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_2171289ccbf0409e9758c36c044bf8a2",
"placeholder": "output filename",
"style": "IPY_MODEL_593d185f93794602b66842027cc0e36c"
}
},
"bca4415ff5674aa0a7b4811412f384c4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"bca5c243ee664e86a988fdc8eeb2dd70": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"bca5cedeacf94a0784f4a9221430c6a1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_eeb5b1318e7a4e6390f71e9802d2fbcc",
"style": "IPY_MODEL_62da26d6a62440cab8a235c783568f2c"
}
},
"bcc240478f5b485ab5e30e7148c58d95": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"bcca7effbe2746e1b75442e7f12473ff": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_2baae891ba574d1882f2cf5c19272e87",
"IPY_MODEL_12e7ca31e8fe4be88b66cc4b8badf480"
],
"layout": "IPY_MODEL_98efdb3435d5411ba73c56b200a01d11"
}
},
"bccefc6d21b945d3b072ce5104ade8ed": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"bcd4cd3948c04ba5b70b7582de7fd6a9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_b6b78d2aa0364d0ea9d30d817bde9e5f",
"style": "IPY_MODEL_e7806f5263aa4659ac5dfc6550b005de"
}
},
"bcd514b2f85a4977aa547d71c8f66c34": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bcd721b28cc54d20a7d21daa39128ab9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Write input",
"icon": "check",
"layout": "IPY_MODEL_1b2caca1aca541caae1a68bb70217de0",
"style": "IPY_MODEL_227793c71ae24127a2cfce4baab23e3d"
}
},
"bcd95fcaaca047bcb48c6ec264f30898": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bcdfe3f5b28d4356a927f53aaf9d32f8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bce047bd2e674b39a1a7e7f11ab9912b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bcebb04a9e3245698fb75e1096b98fb7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"bcf1dc8808ef40b69758cdd668ea666f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bd005855abd6418d8de74af8d1931236": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bd052ac5aae54ab4a1900cde6a3c8cda": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_6e576993260e4e83a0bf9a08370c2c12",
"IPY_MODEL_ddf89298f8a8480480e0a2041879dfb6",
"IPY_MODEL_098a6233fd6b41228125b8a734e19429"
],
"layout": "IPY_MODEL_8940482aee974b0a96136d76d9e7f863"
}
},
"bd05442bde8948df8a565eeb5e61360a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_451fc84834bc473ea88979d417b1f433",
"step": null,
"style": "IPY_MODEL_39002b00b9164ebcbec6afe2870b4f2a",
"value": 10
}
},
"bd07ab1293dd44639327185f31154c53": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"bd0b0964b3a8414d9a42c133d748858c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bd11382448ce4e26af360bb533358b38": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"bd1394cbbc0848f580b46a32b5e57257": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"bd17a0ca3e7041f984823c3893eccbe9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"bd24aad85532402299b5722e78aec08e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bd330b269d864fd3bd6dd95732f89e04": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"bd37d2e117a349d6a10901aa859ae99d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"bd3fd3500a804c6b95eec775467c35ec": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"bd6e63591496454e981c56d8ce1040e2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_f6e2ffff930d48aa84cd32139cf004d5",
"IPY_MODEL_675fca35c820403daf5339bd9a83a764"
],
"layout": "IPY_MODEL_9e813f374b52442e8e0b392cace897d1"
}
},
"bd74886039fb45f9b219a45ee0b3ec88": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bd74ce30376f44cb967231a1e2365091": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_78e58f4a345549e999f38a3a627ecda0",
"style": "IPY_MODEL_e18930075f49419dba04dd1008a66eda",
"tooltip": "Run computation"
}
},
"bd85a3f97b0445c3b808516359fd1cb6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"bd86f5442607434e984140124a0a8ade": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bd8baf725aea44bc8d55ed85275725a1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_a7722e5bd6704739985dc0405a357db0",
"style": "IPY_MODEL_cec1762bb114459f899041ea6f51c364"
}
},
"bd8e676c62af4ea39dad7aaaec8001db": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"bd91b11ce38040c39a529f2466dfa461": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_d2583094677a407488cd405da3985f3e",
"IPY_MODEL_368f4d1f7949427b8dc8518329623ef0",
"IPY_MODEL_bb3a6b74b104408c9daa471b3f888844"
],
"layout": "IPY_MODEL_35d957bbda8243129f560cb050b5b3b9"
}
},
"bd95a095ef184549a4c42e7dbafbe0c7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bd9e24092db642bca5785b64b974fc28": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bda504f3b5a94ef482deba0dc721029b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_37aaa6e0abf04613b9595263c12c53ac",
"style": "IPY_MODEL_0c0ea0d12082455a95e4dca2fe8f4ed1",
"tooltip": "Run computation"
}
},
"bda7b5182b4042ddba06535f2bbd8bb5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"bdaa1aeb7f394dcd87afca6cea45dcca": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"bdb295527afc4dd3a2fa1a9483945d67": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"bdbfa87e62b449fe872bdf17c80b0e03": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_2169fcff878c42b6bfccb31ed70a9214",
"IPY_MODEL_b741002902c04b4d9f6b6201d1dd17d0",
"IPY_MODEL_e587a725f75147369621a97ada3478dd"
],
"layout": "IPY_MODEL_14b39c459aac49a79d3eb3dff23cafe7"
}
},
"bdca7c4e68614b1092029561f11416f9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"bdca90838f1a465f8131ffdfa59df5dd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"bdcfc2c18e4b4f41b73bc429fd5bdfc9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_14795bf300584dee9bfee4c656dde689",
"style": "IPY_MODEL_98cca78fcfbf41e0a82324f54b9045a1"
}
},
"bddbf8ce060e40d9a24d284ea8c649e8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"bdf53ce2dac342c0a188e43579901538": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"be09066e243c407dbdf854284dc84e30": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"be0f7f2ac0d44ee589ca36897edc1a19": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"be15749d148046e5a8f37a00ff2aeadd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_b577eff4a8504a558b534952140be614",
"IPY_MODEL_29d6d5d6d0a24c85a939089b8cda6be2",
"IPY_MODEL_7438159f55074a7eb48e6250eef85aa7"
],
"layout": "IPY_MODEL_2b4e0cc4cc1a4f06bb0ab027069db29a"
}
},
"be18e7c135314318b380c9fff3ba1d39": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"be2143fd99d746b1bfb6c15910e440ac": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"be26375676c64a25b036cc7627479c5c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "NS-gradient (y)",
"layout": "IPY_MODEL_9cbce8cfe7b9467e97864102b84f2ca2",
"step": null,
"style": "IPY_MODEL_d9b08e04c2794c97bfd12a146e1bb9dd",
"value": 1
}
},
"be27fbb89e9441208b6ef37ca65f20bc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"be3244d3c2ac4bf98f26c92534f55ad5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"be3404ead7514f51899c3fe53bd96e29": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"be3f09e8f0b14457b49681fa0579a97b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"be42b4fdbe2d46b0bd7ed3cadaeb64d1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"be497603e7d842e4b5412895d7ab1294": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"be4a7ea46b694bfaa845b31980408cd1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"be587a6564c6496389527f9fc5b44e04": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"be5d28df6b6d4bedb9830628533dfa8f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 0,
"layout": "IPY_MODEL_bf044f9050844f7bae5a1344ffbf5c09",
"style": "IPY_MODEL_8f1dd08d5721427eb47418bed0c2f767"
}
},
"be6a95124e37443d95bd0a53974c2361": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_fccda43a625841d79b767482c61d7530",
"style": "IPY_MODEL_a082536bd8fc47baacde2bc10a1d3ea4"
}
},
"be7273b976514dc1bd56b5120a94d167": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"be745cd3dd2c41918d4a50748eac0a74": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"be757433f696496a94a3a057ddd8d909": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_d760b9d6f77c445ebd0b8de47ca4f6b1",
"style": "IPY_MODEL_29cc948ddc944c5088832325638b2e00"
}
},
"be7b89f2488a42e793e634f27c60f621": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_8bb71db5da574964ad2f35eae81b0041",
"IPY_MODEL_f8af64650fe74df092adee95fa7249b5",
"IPY_MODEL_e6ed328b40ec45f1a93a5e00108d9da3"
],
"layout": "IPY_MODEL_36fc0bcb62794a57974a5ad8eceea1ac"
}
},
"be7f24606e5e40f383e9e1b7d92d36c3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"be865f99f5954442bb57455074ea05c6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"be86a7738d7b4ce7b59b15824d142deb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_1159314092584b24a35b570189be0f0f",
"IPY_MODEL_b087e087f03148f4887d114e39da0a9b"
],
"layout": "IPY_MODEL_bcf1dc8808ef40b69758cdd668ea666f"
}
},
"be87aed4b4a44bed97d2ec8ab5839ada": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_8e20e52661964077a5df9bccc25828f2",
"IPY_MODEL_0f58ec13cecf444bb065a3e9785be691"
],
"layout": "IPY_MODEL_3286feec86e7491c8fc93d72ddf4e435"
}
},
"be8b97e36b3b4d5dbe6aa1906d03c327": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"be997590015c4aad82114c35c3fd0d8e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"bece60edc20548459a4293df082e2be6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bee3cba32c2f4baa8a3322504640f9cf": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"bee6c987d06540d0b099b01e8d148b2e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"beec7cf35f0149869d1ad98ae68293de": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_532a1b945d8f462ebb2f86b3039e1f07",
"style": "IPY_MODEL_4aebf9cb15074b0fa2dac4c57c7ce431"
}
},
"bef363721e1e47aeab2b2bd13d25e279": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"bef66664b2f843b18e62f5988ae94f6e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_5f6681fd41de4472b505ab0d22c67bb6",
"placeholder": "output filename",
"style": "IPY_MODEL_833c9291c4dd4dad8dce970a6c8a884c",
"value": "FlinFlon.geoh5"
}
},
"bf044f9050844f7bae5a1344ffbf5c09": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bf06f1a501f74e03bb30aee30fd6b11c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"bf0c076eef064be8b5648c890a8c5fd6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"bf1cddb6a31641b2873b89584f6a486b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_049326b0976e4053af5be11553252eae",
"placeholder": "output filename",
"style": "IPY_MODEL_99c89636f68e454e87c68ef99892ad2e",
"value": "FlinFlon.geoh5"
}
},
"bf2f90699e6b425c85d86088cefa87a7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bf32d278afff4e109b065a247a774353": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"bf43d2f5386c4cc7bdfea38d4e0abf17": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_c0ced3e0be5e4edc84c8c00456109c8a",
"style": "IPY_MODEL_0578fc9e4b0c444ca2cc5bba2aba5498"
}
},
"bf4d2e7822ac452a95767638af78f216": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"bf4d64e879ee4375a1e8ceea577b15dc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bf4f1c0f7cca4096a6e37b852f00e4dc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"bf57eb7d2c9640d4b52b0b89bf10c99f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bf59487b634f497eb7c1adf6d0329ccc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"bf5a3840491c41a6817a67d2c4a5dfa9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"bf636b438c654adba9683330ed3367f9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"bf637916d795476d968eee0127682e9f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"bf66a8d1310e4495a61453faf86ba83e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatSliderModel",
"state": {
"continuous_update": false,
"description": "Northing",
"layout": "IPY_MODEL_f2390d828f304c849af10524ab9f3767",
"max": 6077578.83861151,
"min": 6063956.600608527,
"orientation": "vertical",
"step": 10,
"style": "IPY_MODEL_70db53a5e8894cb782d85349b6f51237",
"value": 6072300
}
},
"bf67addef91d4c4cbd1ed2efd39d500f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"bf6c944e3cc64de1beb7ed509efe8333": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"bf781744ac0d4e548afdb26ec3c60bcb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"bf7883c445fc4e32ade8a907d62f315c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_274e389ee868477495c8a5ce119cd7ec",
"style": "IPY_MODEL_dc524602de8f4349aa778c44808564cf",
"value": "Uncertainties"
}
},
"bf858838d9864f959acf7f14a013fd3a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"bf876cd47d8c4f23a12dec4b3ee9c094": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bf880cd84e1f4f089a004035a7741261": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"bf8eceb3b9d242309daa556ddda14a49": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"bf926474a1c04bfe88b93d750541bbc7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"bf9385f0b8014ea0bf039cbccf7a5859": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bf93e7e5f7f04a41becb1c82e52bdb34": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_9995ec9342264b53ac8d3dc532112035",
"IPY_MODEL_8f32d6c4f6db4079833b60c34bfe7ee5"
],
"layout": "IPY_MODEL_e653ff64a7d545359ded503b21dc7f1d"
}
},
"bf94c4eee160440eb8a0cab97429989e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"bf9b0f761db14b67afa1455338850ffc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"bfa1c64d741743599c7129fc9b585e3e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_dc8996d876924765b68bf033faebdcc3",
"IPY_MODEL_2fbce7785cbf4917b2ea1a6a09f252b5"
],
"layout": "IPY_MODEL_846f2e32e5004efbaa17e9d2cdb940da"
}
},
"bfa958de3e1044ec9eeb8b0853e0219c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"bfb32a902cea491a97bcbb3da6cb8fe7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"bfbc6ce2c85c4d5e879b0ebebbc6af5a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_46db2398354d495b88d220568963750f",
"placeholder": "",
"style": "IPY_MODEL_8914d5ff7e19413ba5a48623ba2c1510",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"bfbeb6e7616e432bba19bbe2eee4dd3c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"bfc45d6616e840799e4a2c51f50194c8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"bfc49dacef874747ad0954f67b2526d2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_69f1318e0dfb466fa7d21ccd1c9181a5",
"placeholder": "output filename",
"style": "IPY_MODEL_6baa2ac7d22e4103afa566113e7446cb",
"value": "FlinFlon.geoh5"
}
},
"bfd81a459a42458db9ab7c7c9584ea7c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"bfda5cfd0be243e895fd329b0e6d0f64": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_bc87537b13aa47768cbd93def7d67905",
"IPY_MODEL_9f0fc031ac88469186e26c9c2aac6985"
],
"layout": "IPY_MODEL_f0955199bab944c9aa0fb44d140f9a1c"
}
},
"bfdabd09ab0f49419eae6fc9b99bf541": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bfe0ad4fe3c94a5dad8be257c31d7e71": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"bfe3be083ca54baeaadea2249b53f3a7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"bfeb0d1e70a3423b81a8cd2ee9f35ba2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"G:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"D:\\"
],
"index": 0,
"layout": "IPY_MODEL_a47970031a4f41c281043ea96b1f0bb3",
"style": "IPY_MODEL_eb685de529604a949c1e73e653985f21"
}
},
"bff6d0bcd9a249b0b86f1701735fc1e7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c000847d8b504a8db0433615fb98620e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c0041e88dc4649a492c752469e9a39e3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_7c0fbda343b14e6b9e82f64d0ce30b47",
"style": "IPY_MODEL_30ae156fe46643c2a4f269d359e4d296"
}
},
"c0054cccf60f4a97a31b476b9aa25e8f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c0291699a34c4b53b95f05a05f137d93": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_235f0a7d10c34b0c919b879ef3f75212"
],
"layout": "IPY_MODEL_111bec1eaa0d47c4a01b2618d39a4f48"
}
},
"c02b75f40d5f45c4bf5d724d40aaf178": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c0309ed5d7cc42ed87f92fa43efa8727": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"c031807af33a41279bf762877abae3dc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"c055699b93934562bc34a70ab4d8aea9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c0725320dfe94e4582b26e947746954c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c096605c0a2a483b85565f3dda640138": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c097fa62f7ad43ec9bac0418ac9a8083": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c098b0691e384a3fa3756e85405daffc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"c09c35e1627f4f32989c9ac7a080497f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_fe67c716adbe42fc9684ebbbc7e1cdd4",
"IPY_MODEL_9f418104690a47619b13cba57c978197"
],
"layout": "IPY_MODEL_73e5ccb3e69d4c75bb5a77b9a8e0c6a6"
}
},
"c0b0e08c5c12413f9b6a8bfa366acb7f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c0b51f14ba254e18b5534e207a1bc803": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_c1bf68e60d6a4058a2af7bbc1e4017fe",
"style": "IPY_MODEL_2d41c0974e794718af6dcdec37aaeb70"
}
},
"c0c922c73953481e88d0fae5d5ee4ed0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_b3a3e662552a42abb81f3e2b3bdb0f9e",
"IPY_MODEL_e0552beb6a1c4e629a094a82ce6f8129"
],
"layout": "IPY_MODEL_8d0c86fd4d814b3dbca3504abc7e21cd"
}
},
"c0ced3e0be5e4edc84c8c00456109c8a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c0d223e248f540e6819b043c6d9aa264": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"c0e2675305c34d91944fec699818afe1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"c0e8a4f590e04b7d88703fd84e25a09b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c0f0fb74fb4e4e73b1c1d17ed7e588e6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c0f1514a5aea4c16899791fa75fab06d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_2f64efc6d05d4cdaa52cde717fbf43f4"
],
"layout": "IPY_MODEL_2bbbe392971c491b876b242e17772e56"
}
},
"c0f1e6682fd345cbae7e2af85f51f8dd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"c0fc8d3727224f229b388d337552b97a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c1002aeba0c4432687618caed209309c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"c1040d9b53464388b6b182f247b14048": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"c11cadd4fb6d4a1a80969551993900e1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c12a17a33e6a4731a2734ef18bf21f8f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_2a5c811515b74e0e9438dacf002cfacc",
"style": "IPY_MODEL_bf858838d9864f959acf7f14a013fd3a"
}
},
"c12e4ab5f7674e54bf29bb855f6e2eae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"c1360f54721049d4bab5c842668b5742": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c13d69e95b944503b1e44a3b01da6280": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c14240fd90004da39b87bfc23daf4504": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c145bc80fbef4330bfd858f3f97b618d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"c1618653a6954b92a8a95ab314964fba": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c1673fa6b68d4f4487bde82998f5f371": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c16a858c170b41289ab3e67f0fe30835": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c16d3f27609d468b9e3fb5ed26d99837": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"c177032f932d41d7845cbbd1dc2c884b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c178021ed3054986857f3373a515aee1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c17d45387e7c4a8cb475e4e4e6cd5ee1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"c1800c0f3a25497f8c18c07352b4f53f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c184786886ce4e22aa49da6733cbfd9e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_28facb2a6eda4b69aa593549d62ae111",
"style": "IPY_MODEL_4fcf9bcb03ef41658a7f4ce423de90af",
"value": "Lp-norms"
}
},
"c18ceac352ab4c5ab8b41f648bf72723": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "EW-gradient (x)",
"layout": "IPY_MODEL_0b96a6ea4cad46a48affd8acd8765026",
"step": null,
"style": "IPY_MODEL_e28c512d2fb341febcd383de03344251",
"value": 1
}
},
"c199091397c64572933e0a884cf2f2f4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_2ee8091aa8254b30abb83d9251010d29",
"step": null,
"style": "IPY_MODEL_fadd91bbaf414fa39c062925ee6bb465",
"value": 1
}
},
"c19a166411414d589ecde7f00ea328c5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_46094ad1e3cd4bec8f97223a7998a19f",
"IPY_MODEL_050e333dcfba4e488e26b4090c8795cf"
],
"layout": "IPY_MODEL_898aaf76aa5c49d2b9d035ec5d475ba3"
}
},
"c1aaefc4ac714f57b61578609beedc74": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c1bf68e60d6a4058a2af7bbc1e4017fe": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"c1c037db492a43b0b33abdf49554bdb0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_6162b2c2e5be43739022311ddf3ae10c",
"placeholder": "output filename",
"style": "IPY_MODEL_ac40520d68ff447cbff72a589355f02f"
}
},
"c1c6233cb6bd4ff3b07a9d20eefe067a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"c1c82578c88341938c03a8b8e1c208c0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_a088c915288147cb88a786d07c8b8374",
"IPY_MODEL_a8a0787bfd4f4b22af15e6143ead6c29",
"IPY_MODEL_dd3f190dd470441ba7a20ba25fd8eb54"
],
"layout": "IPY_MODEL_b6345bf68f7a4b2fab2c90dcc35b2a9d"
}
},
"c1cc0e8cc06448b9ac320cb35ac923f3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"c1d56938018f462ca0452a8d01f9032c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c1d86aed93f7469c8b31c8ecbc6a2ddb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"c1e22b90950e4580bf4d06d8413faa19": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"c1ecf301d50a4a9f8e999f0b6135a4b7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c1f2752e67644bcdad0162997e13dd89": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c1f5fb65e22d46b593332900e4e2dc68": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c1f6768af59347ddb5441ad05e29c787": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_fc43d67851014cb8822d7220cbcc8acc",
"style": "IPY_MODEL_a77ac6b9c9524fe79bebc47658c98967"
}
},
"c1fcefe6925c497e91cfe80d1c498b82": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"c20143979e224c29a4b862cd2aa5a1aa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c20237579b5944258a1e517a7baee93d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c202470b884f4fe7bdac67700cca22eb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_a73dae806ca44d33975bd632e56e2792",
"IPY_MODEL_3483dcc534ec4d09b58e1b90c7c0286f"
],
"layout": "IPY_MODEL_82d3ee8a666b48299bfc2e42496b6dcb"
}
},
"c222a537723b43af9fe4b37cb6bd4112": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c2249171adf94ad8a443bbcb42a77fb3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_2a6b92d2dbac4dbf87a066049c16de85",
"IPY_MODEL_d8615d8c069b48e694e23dc33adf9d75"
],
"layout": "IPY_MODEL_905862b9a85540c29a53253dc9da3bbb"
}
},
"c22a48cbb81f4a039ae019b701b01793": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"c24a37b7987a4a65b9499ee75cf48397": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c24d82bcbc1042d29f384226f7584a57": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c2551056530f4e78ad00f08ae79b9bc6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c25c4edcf2394e54baaa682c42cbc713": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_99e3f73ca48649c5b945b1cd2c1f55eb",
"style": "IPY_MODEL_7c6d5ff6394245e6a2afe4d383814835",
"value": "Offsets"
}
},
"c270405d7557431c938fff89e1a64dc8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c280c782a2cd43f8939c4a4157803936": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c280fef72ed94e44b633ef4339daf457": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c28b30e0d40b4312b9e1aa1b7472b3be": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c28c73b4727b49a5b47de2e888bd0d8f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c28eec4947224c0192d09f217a4f2abc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c29e99aa9ed441008cd32bf4f919d044": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"c2a0d24f78fe421f80cd05e13d2f12f9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_bd05442bde8948df8a565eeb5e61360a",
"IPY_MODEL_6c63200e078f4eb99b7cafbc2694269b"
],
"layout": "IPY_MODEL_ca7886b6a99347239ec921905e555dd1"
}
},
"c2a799db10b747c1acd6e5f2cbf8aa43": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c2a9acbb33c74183bc613b258e950347": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c2ad1c7aee3c4d67b6b00055a5248e9c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c2af48b2406245fa92de7742257234f5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_3d5a88b3ea6f4c65918eccc2d802212e",
"step": null,
"style": "IPY_MODEL_8d00c4a9a6254f33ae370a2c9850e6b2",
"value": 1
}
},
"c2c7587094f14653b368607e43d229da": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_a0d390753ce643718ebb8f5e11e82a3a",
"style": "IPY_MODEL_4416c51f95d74c068a2854b8b37edc14",
"value": false
}
},
"c2d08de3b76647929346363c0265d3a1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c2d6eb73e71e448ab6f9703e65595d33": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"c2de8645d1ea49388ff6b0ef57588c41": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_e1915a0468674d998d79fbc5517b1b29",
"placeholder": "output filename",
"style": "IPY_MODEL_6b2edf43a3344870ae1da93b8a2efd2e",
"value": "FlinFlon.geoh5"
}
},
"c2dfa38d3344466190def2c8547044cd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_879be5a0af5542689ca385d17a49ab17",
"style": "IPY_MODEL_ae5c55cfd4854a34a491064c25c592c0"
}
},
"c2f10d28a5e5479b91e3a02e8f2b8919": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_2f6a9212f48b47a5be91063c485d81ce",
"step": null,
"style": "IPY_MODEL_94b74c4f03e64390ab7f3163c6f3bfe4",
"value": 1
}
},
"c2ffe80aecda488db902a2f171f91480": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c3070fa5399c4d09a6a9ce73d0951460": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_f434bae0ca494ed48a2afb2826a7e1fc",
"style": "IPY_MODEL_1fafc176179c45ca9c20b49f864ad2fa",
"tooltip": "Run computation"
}
},
"c307698690994462a962fd28fcc84e74": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c3081b6fe4ec459a891e003225e14a66": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c309fc1f6c8640d0a79c4784de69082d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c30e6757f6a94ebab632ccf06cff7942": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c319600d13d94e9f8563394bd2451422": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c31b248ca93d41259ef7fe34240ec05c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c346f07e0d7a4d0299c271e8da4636b6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c35a3692817c48229d3b373a2a787b08": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_ce68f6f06a6d4f72bea3c4ada2180fc9",
"IPY_MODEL_6fe51962258342d890031da10cfd4c27"
],
"layout": "IPY_MODEL_8c0b7fc967714d4b9baad40f8e4d605c"
}
},
"c36d27f0e2164080adaf6090f4abfbec": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c3788a1cd0b34593b133a16a40198ac1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"c3996070e66740648d9f7e10e84f752f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 0,
"layout": "IPY_MODEL_57f42f68f514480ebb17e818aba88011",
"style": "IPY_MODEL_3a22cac64b4d4773a817c10ab67f4b3b"
}
},
"c3aa9ec53ea24778b02cf73d2ccf11de": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c3ad4f5327c84bac8fbb2cf0d2c7394f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c3b11767f98b4eb992d593ca4df03fd1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Labels/Label3",
"Labels/Label1",
"Ore/39_Ore_Callinan",
"Ore/38_Ore_Dan_Owens",
"Ore/40_Ore_FlinFlon",
"Workspace/Inversion_VTEM_Model",
"Workspace/Gravity_Magnetics_drape60m",
"Workspace/CDI_VTEM_model",
"Workspace/Data_FEM_pseudo3D",
"Workspace/O2O_Interp_25m",
"Workspace/geochem",
"Workspace/Inversion_DIGHEM_Model",
"Workspace/Topography",
"Workspace/Data_TEM_pseudo3D",
"Workspace/Data_ZTEM",
"Workspace/Mesh"
],
"description": "Object:",
"index": 13,
"layout": "IPY_MODEL_e36e44d2ffe74c79b16f910dc21ede52",
"style": "IPY_MODEL_1bdbc3c626834f85aa56558f6813844f"
}
},
"c3b63484755242a49462085de43c07f7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_2d49d640ac50449993afb7ccf5eebbf9",
"IPY_MODEL_dbf8d088814b4017bae203e2f8e1d86e"
],
"layout": "IPY_MODEL_b848729602934aada4cf4f4915b34f84"
}
},
"c3c6dbc9f35c4cc0b36dbf386fb12adc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c3cfaf5ec43b4e85aced27d723df1448": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c3d857eb253647e490a5a5a01c27d35c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_377e9ff863054e4c9c3209d352f07ec7",
"style": "IPY_MODEL_602e9e7a638a4f67b73ada499821ce87"
}
},
"c3e0f706500a4937912348b79f24f2c3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c3f450822f1346a68df283c1d8bae5d6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c3fb68188e7b4e34ae266d81d083b1dd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c40773576726450ead7387464a129290": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c40a864263234307a26715ffa813ee61": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c411310172eb4601880fc556cfaf1a64": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_d1e3d44eb83e4eb0955e5b5d708859ef",
"placeholder": "",
"style": "IPY_MODEL_b566fab94d39401c994c652e9ed356d8",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"c41a95dcbdf040cfb9ad045348de413d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_8ac132fd4bab44f9bf1f8722dcb9d0c6",
"style": "IPY_MODEL_c1aaefc4ac714f57b61578609beedc74"
}
},
"c41ec92bb0c64af4aa3aaa564d90902f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"c420e00dda2c44f9ba4a69e199c146af": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c425b6b0b8314d9aab69049eb2206e60": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c435ad8c43a04db4aba405c762ddf0d4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_d5650faa2ce54dafac85aa5e8b15eb78",
"IPY_MODEL_45bd501a8ab744538bb738fee2d8c1a7"
],
"layout": "IPY_MODEL_3c96700046254101baaefc151de9c592"
}
},
"c43e7d4059bf4937ad7d5ea7aeeccc8b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c4427f1c4dc446b1827769f8b2cedd86": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_69aa755ddcb244fdbd30d4abfdb70bb6",
"step": null,
"style": "IPY_MODEL_fb05c8f0db7e4e32a234fdc796a1735b",
"value": 10
}
},
"c45d797d1eb943a6b5aaea2c87f86388": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c46506bf7f51491aab401e9904e6394d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatSliderModel",
"state": {
"continuous_update": false,
"description": "Easting",
"layout": "IPY_MODEL_05ecaab2b17643f989da93037d6e78a8",
"max": 319967.7557301139,
"min": 311165.14860383794,
"step": 10,
"style": "IPY_MODEL_586da6f3454e4f81b479f57ed25d1d76",
"value": 314600
}
},
"c46700edf94641d4a92056cfb0927467": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c46de2d14caf49b897db3b763f8a56f3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatSliderModel",
"state": {
"continuous_update": false,
"description": "Width",
"layout": "IPY_MODEL_0437b66eb4594a4287f67820630bf08c",
"max": 8802.607126275985,
"step": 10,
"style": "IPY_MODEL_3da11ea0afe545cdb643d62178d6c26d",
"value": 1000
}
},
"c474e53e54984282918ea5973926344f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 .."
],
"index": null,
"layout": "IPY_MODEL_e8141fe312394bdc8a442faf664cf138",
"rows": 8,
"style": "IPY_MODEL_253079c6dde847439edbe573bc05b4e1"
}
},
"c479c9fef0214f189c0493b0e8170152": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"c48806e4a11e45bca257ff3d4547de11": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c48b6d3c9d8041159a91ca98aaa2047f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_7bfdf10ec402449e80593116d2e3ca16",
"placeholder": "output filename",
"style": "IPY_MODEL_a0855e82e4564a6fa28b9ad8380410e6",
"value": "FlinFlon.geoh5"
}
},
"c48d349f69ed4e93a691d0b65c884a92": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c48f1f8fd0f9476f841dbb29051040b8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c4926a98c3ff460e9cbff6c4a8e6f473": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"c492bcc91012472397d879f250069c7f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_f19b419f67da4dff8e7520ae3b6adce5",
"IPY_MODEL_48c2dde70855469b8b2c6667adf2f74a"
],
"layout": "IPY_MODEL_9e7996ceae124bbca7ad264a0d7246b0"
}
},
"c4933b16d3bc480f9935b7793c2bf3f0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"c49bf00fed4f47c182e3af4df896a835": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c4a0e040307b4029aa8fd66754383138": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_0449cd4507fc48cea81a9f9afc83342d",
"style": "IPY_MODEL_2b039edae4d34e8fb58d1e5b00a39884"
}
},
"c4b5559bebe14ee8a5d6dd19c1b29fc1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_dd4d914f483b4b249fd04a84d6ec8a6c",
"IPY_MODEL_048519f9dcb9409cb5d1ffb0394428f4"
],
"layout": "IPY_MODEL_f3bb98551cc64450b73618dae4c0a313"
}
},
"c4b992dd8630426aa4c5236495093ae3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatSliderModel",
"state": {
"continuous_update": false,
"description": "Height",
"layout": "IPY_MODEL_800de3b2ad7342ebb6849e590b8033ea",
"max": 13622.238002983107,
"orientation": "vertical",
"step": 10,
"style": "IPY_MODEL_9389cb516a4440de94177cab8526d1d8",
"value": 1500
}
},
"c4ba5f4cf74045be8986dc00010432b4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_4d8d9230337447db9f803459b2b63ca6",
"placeholder": "output filename",
"style": "IPY_MODEL_0c75c7aebd0b4c77ab9425cc772dbc65"
}
},
"c4c347aa238d4a93bf055b793529a36f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"c4d6424895874a0db23fd7429ced17bc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 Temp",
"📁 monitored",
"📁 uijson",
"FlinFlon - Copy.geoh5",
"FlinFlon.geoh5",
"FlinFlon.omf",
"FlinFlon_dcip.geoh5",
"FlinFlon_natural_sources.geoh5",
"FlinFlon_tem.geoh5",
"FlinFlon_test.geoh5",
"MtDore_TMI.geoh5",
"bug_mre.geoh5",
"geoh5_to_omf.py",
"new_data - Copy.geoh5",
"new_data.geoh5",
"omf_to_geoh5.py",
"test_file_2.omf"
],
"index": 5,
"layout": "IPY_MODEL_60763af3384846f498fb7a8ffd5fc369",
"rows": 8,
"style": "IPY_MODEL_9601369733624d94ac5040d6951a94aa"
}
},
"c4e0e249dce64405969279ab71200966": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c4eadd609afc41e9978d92db1d527bd6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c4f1c6887c564b5793f8349140acb47c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"c4f810fe3e084fc084aa67a9e0cd6ef4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_310a72fbdf75490191f0e8f058c35164",
"IPY_MODEL_61a233ed583e4291a141b7e4713538f7"
],
"layout": "IPY_MODEL_0de3e68e65ce4af183ad7eb4a29e8b70"
}
},
"c4f9fc1599a14e16be0168c38cbdb655": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c4fc0432bb7b40d3961b6f4111b44b5d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_018367cb36fe4939ba033667e6249313",
"IPY_MODEL_ebbce21283154387be2c8571988d541c"
],
"layout": "IPY_MODEL_c346f07e0d7a4d0299c271e8da4636b6"
}
},
"c50e1d7b5188460499820f290e57ab0c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_26c10eb83fe943fbb8210b16a4ea4224",
"style": "IPY_MODEL_ebfc2d57a41742f19136361118cf67d1",
"tooltip": "Run computation"
}
},
"c51621d6f764477fb1d37a9d099fa952": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c517406460f9446fb6aa0e7c3d3a6085": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c523eb3cca2c409d84869db0c5f142f4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"c52d75464afd4470803ec50a1f8b2e7d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"c53d0d9ae8f542f3a794318cdd419459": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 Temp",
"📁 monitored",
"📁 uijson",
"FlinFlon - Copy.geoh5",
"FlinFlon.geoh5",
"FlinFlon.omf",
"FlinFlon_dcip.geoh5",
"FlinFlon_natural_sources.geoh5",
"FlinFlon_tem.geoh5",
"FlinFlon_test.geoh5",
"MtDore_TMI.geoh5",
"bug_mre.geoh5",
"geoh5_to_omf.py",
"new_data - Copy.geoh5",
"new_data.geoh5",
"omf_to_geoh5.py",
"test_file_2.omf"
],
"index": 5,
"layout": "IPY_MODEL_94f65fcbc65646c493aae19a4c9086a6",
"rows": 8,
"style": "IPY_MODEL_1ca728e276e0419cb2f905e0a808257a"
}
},
"c53ec80455d8428da5afa88c659993cb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c5423513c1b049bba25ec097fdbd2216": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c54ea11e238e4064b7d92e25a3e4cdad": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c55b677f081148588267bc97d207ffc2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"magnetic vector",
"magnetic scalar",
"gravity"
],
"description": "inversion Type:",
"index": 0,
"layout": "IPY_MODEL_bba18989c9d7414f823baa15b4b48d94",
"style": "IPY_MODEL_c7040123602e4389bccc0c7668797131"
}
},
"c57f366b7aae4fcc981a9c67578c16c9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c58c0f09c5144a399f57e37cda9a106c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c5914b91f91d4be4ab2ec0e974c44a73": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c59ae16f1bdb4e29ae7c7b2c85fa2e30": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c5b0428d6f0e406ca5d0028e65b1a94a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_22196cc7dee54c399bce4833dc006ba6"
],
"layout": "IPY_MODEL_00a87a2614634e4c82a7a02cb47d9d48"
}
},
"c5b07a23ef5f4112aeedf8d236745adb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c5b09d0120134860833ac88111cade83": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c5cf51eda3634c35a2c25d50cdcfecbc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_ea70a84ec6e8483791ca1189023d770c",
"IPY_MODEL_34115c1421fc4556874c18428d3fc983"
],
"layout": "IPY_MODEL_055991dcb043453eb7eee635d1efc59b"
}
},
"c5d40ccf6f834e4dbc2fede8f1fd0096": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_f90d883ac1c84a64801e3965e0c9138b",
"IPY_MODEL_61cb9fc8cd5749adb6e0d8aee3f69380",
"IPY_MODEL_f4e0feda7f144eff8aa8fb11d315cee3"
],
"layout": "IPY_MODEL_6946cec642c048439bb873a054b03991"
}
},
"c5e55d2062684f68b9d18ac865abd7c3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_0739c5ea06f349ddb9ef81d5d6a2f796",
"IPY_MODEL_8aa27e002716407a96f69d4cb186d3bc",
"IPY_MODEL_e60e779b2ad04096863594b2bf815edc"
],
"layout": "IPY_MODEL_2ded96b474f0462290b47dd42bc9c773"
}
},
"c600acdd254447caabcf5ee5651fc0e2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_88a33c265b2a4242ad20d8ee9e3b864d",
"style": "IPY_MODEL_60a02637a7a042dead8e5c35e41a5feb",
"value": "Data Count: 418"
}
},
"c6044780d2dc434499a5fa20f8fc54d6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_9e46ddbf7e8448c49b21fda28a1b0eef",
"style": "IPY_MODEL_ea38158319ac4f93af3a6b97a6b33339",
"value": "Input Data"
}
},
"c6061657d6cf4d78b9d0dffd2534a973": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_d57be2cbd97d44ec8b36a0f72b013900",
"style": "IPY_MODEL_6d958e02302b4c09877297bebc5cf36e",
"value": "Output"
}
},
"c653731fc8334675a35101dc1dc117de": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c6577554fbc643b88a819b44d7eed216": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c6579097bba548bfadc2cc8f0b0cb5aa": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c65b168bc7d84a3aa0b5c8a5ffaa32dc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_878f7291a2c14d10b18d24f6c055e775",
"IPY_MODEL_5e78ad47de4e4cffb335b0ddbccd18fd"
],
"layout": "IPY_MODEL_2ce767069e384eb88f49bd8f47edb367"
}
},
"c660d934fccc48728d584d80098f6b68": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c66d579ee87d4ee881448a3ee082cdfc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c679c6edd6594079b5292ac25af5d99e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_5fe45dbd55284cab86d50f3258c211c8",
"IPY_MODEL_628dbaed192443b299e26728f8894d88"
],
"layout": "IPY_MODEL_1eda5449a19943b881979d0f398b633d"
}
},
"c67bcac7bac14954b254f97bfc68ca11": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_1cab13f61df344db86090d17ff49c7b8",
"placeholder": "",
"style": "IPY_MODEL_e9e82b46c53947ab855255fb858be8df",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"c67f8f60052146898ced9f517204b723": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "IntTextModel",
"state": {
"description": "Iterations per beta",
"layout": "IPY_MODEL_b020ac1b53004ba4a1607ed04674fc53",
"step": 1,
"style": "IPY_MODEL_c40a864263234307a26715ffa813ee61",
"value": 1
}
},
"c690c1c93a5546dba30f152eca418512": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c6a164228a274de894fcc9966fadb53c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c6a58420e5524c81831144847b2465a6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Degree",
"layout": "IPY_MODEL_01d9abe842144eb5b4058305c9d041e6",
"step": null,
"style": "IPY_MODEL_7ab3f88b3cee4889a23a63d7c1d63415",
"value": 11
}
},
"c6a72a6f62c747fb85b48c263d177193": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"c6b084d8159346aba24b67e7d5f3fb5f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c6c15e1d2490493eac9c49c25a659b5d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_3757daeaa8834828a9771863159dc9ed",
"style": "IPY_MODEL_7aff67011fe249f8a5a5f99d184183ed"
}
},
"c6c7ab5b83c048468ea5ac91327b9346": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c6ca8b265d534fca985c099b69a70037": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"c6cbd2d35e8347bf85097f76696843d6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c6d37704234b481cbc1bfa6ae22ef403": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c6d89370f64746749c3c061e5aba7ed2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c6db284c24684568baaf7be9ecfe9046": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_75e79afc119b43d2ba8797a7b586bea2",
"IPY_MODEL_e51c9b7fe0a64af39f83559a8776a09b",
"IPY_MODEL_c80026454e974df88cff7f6c11ec0509"
],
"layout": "IPY_MODEL_00f0d22eb4d74d759bd7253325fc0db3"
}
},
"c6dec2fdf17e454db758a3dce30efe87": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c6e136ae67c945c9a069efbc85fd1f93": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c6e2719dc88149aba023ad4f76c5df42": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"c6f2243970ae4432999259f86fcad455": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c6fb50f693e541618a98feec850e6687": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_6d7c0cc2625448328a4b8ba17c015d45",
"style": "IPY_MODEL_70010f79593d4d618786da0db3ac8b4b"
}
},
"c7006b36fa21459ca26cdb49330274f0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"Constant",
"Model"
],
"index": 0,
"layout": "IPY_MODEL_9dbd6cba95fa4993ae2420eec94ddc83",
"style": "IPY_MODEL_2638d02c6cf54a3d8be67593d1c4403d"
}
},
"c7040123602e4389bccc0c7668797131": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c7065f1b942d469da2e5269ebbc7ce62": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Values",
"index": null,
"layout": "IPY_MODEL_e1e7df19fa9c4a708d013f05e617d4f1",
"style": "IPY_MODEL_c8cc361236f84b1485b60b09ab3dd3d3"
}
},
"c7091873bd944169927714511b0791be": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "dy (+North)",
"layout": "IPY_MODEL_90385a6eece04889ae69fa9997dcdb9a",
"step": null,
"style": "IPY_MODEL_d6e427f688824147b43ee21573183484"
}
},
"c70e932742714cdf9599dbbf3ab95252": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_80afaa56ca4b47729387d97c4bfc4a8c",
"placeholder": "",
"style": "IPY_MODEL_9d81c7a72ebb4df284d5b61550f71d87",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"c7278bf78c434593b2c91a1c9634f4b8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"c72984b983c74434978e6b8148381f82": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c73e00ff7f614811a9847f4ddc26e18f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_a6632eeb54834fbfb49ea4d5bd2d25a1"
],
"layout": "IPY_MODEL_a2a5bade43e5451ba32ea42218339131"
}
},
"c74b706347f34f09ac828f08d9acce8b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c74bf34e07a4467ebb405a2ffdfd5856": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 .."
],
"index": null,
"layout": "IPY_MODEL_03b812ded04348e9b3bdeb2b85787320",
"rows": 8,
"style": "IPY_MODEL_5b19ded338a04d299db1405368ce429e"
}
},
"c750ac21ed034d19baf3e009e23a5c61": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c751aa4dae144fae898155f97b514389": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c759663d8c7b4b8c9b21b0f856872ae2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c760803dac8c434ab372de03813237ed": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c76bbca1cfa943b487d67288b819c6a9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_8cf51de271a04114bc02bbaee129f98f",
"IPY_MODEL_0e3d82013e5649c08506a2b0a8c2f72b"
],
"layout": "IPY_MODEL_d81f99f6ae174956a940eb22b109fbfc"
}
},
"c76e6ff4edb74011a8aa5a4757ae44a7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c775116dc7e743d494629389be7455b1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"c77babab0f424e48a86aa28fe0d6ef01": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"c77fb55c6db84c54a0d42ae996490ab5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Values",
"index": null,
"layout": "IPY_MODEL_80e30208b40944f69580fe819b9837b6",
"style": "IPY_MODEL_7ec892cfd6b14a489aa0e221b499bd8b"
}
},
"c78062fbe9cc4e54929cd1f2e8050b4f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c79e700c4a134b7b956f7f9b399cfeef": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_35d9feba87fc490fb3e0bd1474fe6758",
"style": "IPY_MODEL_bbae83416a9a481cae8a1fdd9b40c048"
}
},
"c7ac5120cf17475585075fef0093ea19": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_6d5de105bb8b47c8a615f0348a39fc06",
"style": "IPY_MODEL_3478bcc1d466477a9950ee78f4d083a8",
"value": false
}
},
"c7ad19da20d2471d808f074bfd9085ea": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c7b16192c18f48e39e1fbf4c86aba79e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c7b4a97845e740a2afdd38e0a72a1ecd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c7b77b01be184c1e9426ac00641626e4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c7bb05f3490e4b28b42d64067c68dac2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_725ee8d8e3cb40eabf3e1a6116355d47",
"IPY_MODEL_0f26ea3988d74bba96ecb3cacfa52987",
"IPY_MODEL_d0367bcff1af45cc81b2e0f2e7325fc1"
],
"layout": "IPY_MODEL_9bcae8bec9ef4a399cd87a18dba6dcee"
}
},
"c7c9e9381647402ba69078489eb63c0c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_66ce7ec3c3e5464eadf2937ca38a2347",
"style": "IPY_MODEL_0e138a8ee1c0425780f3450fd0f7a204",
"value": true
}
},
"c7cf51ac53d94602acc2c6d9187379b5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c7e561dd5e7647fc9b075b25add7ebdd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c7e98aa6528048559f42f66b3d24e237": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_7ba224f209dd4d53a4ceb3dfdfdb4801",
"style": "IPY_MODEL_37d4eb8e909243c1963f10cdb148b359",
"tooltip": "Run computation"
}
},
"c7edf91624bc4833930df7003fd62955": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c7f15e22c4eb4271be60598d34df193d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"c7f53d00be614c5a8667a61801f006b7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_5a687c0810a841b093c562f7d7242285",
"IPY_MODEL_ed2fe8fa2c2a4413bfe2d6b8b481ddec"
],
"layout": "IPY_MODEL_3b8f579e7668476595d7d33572aac888"
}
},
"c7f5d0386e834babb3f3e59d799cd0d6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"c7f829e414244f96a9c2261ba5744939": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c7fbd4e58c004333ab4900257d6a40bc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Bxx",
"Airborne_Bxy",
"Airborne_Bxz",
"Airborne_Byy",
"Airborne_Byz",
"Airborne_Bzz",
"Airborne_Guv",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 0,
"layout": "IPY_MODEL_34c087260a8f482d81013ea2791f3c35",
"style": "IPY_MODEL_a8846ecfcf9240fd93f0bf323ed34552"
}
},
"c7fc1bd717f8408ebeb9512c7e85bb9b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_042c8c2f085049aaa505f6b480bf80ae",
"placeholder": "",
"style": "IPY_MODEL_be42b4fdbe2d46b0bd7ed3cadaeb64d1",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"c7fd8b1f057a42c793f16c34e42ed978": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c80026454e974df88cff7f6c11ec0509": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_c7fc1bd717f8408ebeb9512c7e85bb9b"
],
"layout": "IPY_MODEL_8d74756c95db4b298c4f8642bde0e22c"
}
},
"c805caa257cf48aea6bc22c7ba9070b9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c808b58d4d1845e5969bc905d3136149": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_3fbd53d7ab0243c987edb3d9240ac45d",
"IPY_MODEL_b7f558b4c54d403596f2cf9c633d7b84",
"IPY_MODEL_97424bbc18934536897fb8b0a1bbf6b5"
],
"layout": "IPY_MODEL_ad0b3c4e84b94852979a983a726ea41a"
}
},
"c80a8b757d8d430d9f4a0d5e1cc9a28b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c8171a87dd28458daeeeb6ccc0e78f3b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c8254da8cfb54025988374037f4976a8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c826c84c863c44d8a54f8e903efd133c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c8278d1c8e8a48f7b150435f0bb16db4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c82e0b84343746c89496bc5c2d9da8e9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_d5b3736de75b4ba4b44a37cf8fa49949",
"style": "IPY_MODEL_aa651ef6142142278cd3a328005363ba"
}
},
"c82f92c43f254ccd88fdf592cc9419cf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_91e0de99724447f68571dc1538c6dc33",
"style": "IPY_MODEL_bfe3be083ca54baeaadea2249b53f3a7"
}
},
"c83ea9a982824b27852c761861ac17c2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c8432e62eee94178b7b151ef7dbf65e0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 SimPEG_PFInversion",
"📁 Temp",
"📁 uijson",
"FlinFlon.geoh5",
"FlinFlon_dcip.geoh5",
"FlinFlon_natural_sources.geoh5",
"MtDore_TMI.geoh5",
"tem.geoh5",
"test_forward.ui.geoh5",
"test_forward.ui.json"
],
"index": 4,
"layout": "IPY_MODEL_2d27c0a20825457eb18c829c9cbf3fd7",
"rows": 8,
"style": "IPY_MODEL_80689e4116eb4d2ea776753e6badb829"
}
},
"c8557869b0094aabbe17719c3e3b1c1e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_b6e60691c95845ec86e759f2822e7230",
"style": "IPY_MODEL_b374cee2ad3f44b7b79217e9ddbf45f3"
}
},
"c8562f0d8e0549ffb10c0c99bf8d2b24": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_fc6515b7402344e5949dc1eaedeac389",
"placeholder": "",
"style": "IPY_MODEL_2fd5941829a24535bb2c5045fd7ae119",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"c85a3172da734e6cb71263895b803c7d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c86900348d564a00a7f11782e6b8c2fb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"c87906b16c2043ea98118fce5322643f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c88c6093ebd14b83a0c6128547cb9588": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c890457dee7341d9bc2909453d361fc7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c895039cc33f47ac953a5162253dda40": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_7fd4e978f9c34e7ab2413fe89fb1b3a5",
"style": "IPY_MODEL_57c0ad26f9954c4abea86c5afcd97811"
}
},
"c89ab5290c3c429d98b721b032064a33": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "success",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_f316e093fc5949a28d12daa1208579a6",
"style": "IPY_MODEL_f2c90087ac784911bdedbcfacc7f944f",
"tooltip": "Run computation"
}
},
"c89ebd0c460e49f98b45ba99913f7269": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_27d36a906c834acfb861ec5d42111c1a",
"IPY_MODEL_87e022ff9283408a96266d6c72dc25d1",
"IPY_MODEL_bb283b5c7a194956a62e365d1bb17103"
],
"layout": "IPY_MODEL_550687077d16498a9878433ab0b02d25"
}
},
"c89f9b6cc8f14a1ab601233ddb2a72bf": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"c8a7f13b7b3f4c46b6425d141ded87c6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"c8b31042c86c44339e8f4a31a6e9abe3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_b49bc02eba4341628cfcb17108947661",
"IPY_MODEL_f357c30ff34943b5884bcdf66b82d701",
"IPY_MODEL_bf7883c445fc4e32ade8a907d62f315c",
"IPY_MODEL_95bab137d34e4ba288fd559b1f6eb603"
],
"layout": "IPY_MODEL_4720b59bb27d4b0d81a9b7139ef4b4d3"
}
},
"c8cc361236f84b1485b60b09ab3dd3d3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c8e52a734efc4793abb8c1deec3bdfa5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c8e909f74fc6430fa4f1939491defaeb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c8fa6ff8e8c14924af2560c630f52705": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c8fdb37838fa4cdda40c545220239ba8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"c902c53acb6f465fabee6f557877b280": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c91a7d51fa8f49a5a2dc940da9d40d9d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"G:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"D:\\"
],
"index": 0,
"layout": "IPY_MODEL_b431783223f74b5981191b4e7338fcfc",
"style": "IPY_MODEL_c280fef72ed94e44b633ef4339daf457"
}
},
"c92bd4d4d7fd434b98cc5df9bdb578d3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_ed5d31b160274ff283f288a55d1e61d8",
"IPY_MODEL_d9a186a376904b0b8cdbbc3f3664e25d"
],
"layout": "IPY_MODEL_adc9876fdf214dd29efdf0063be9c004"
}
},
"c93c3dcf640a49148153fc7fd1eaa4d6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"border": "solid"
}
},
"c948fac2f0f44b519a65ee46c7721d4f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"c949f1d0bb7144b58c8afc7126b33fec": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c95ea054cdf54bddbec294298052f652": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"c96b98d4658b4f25802fd38f06efc63e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"c9742cf426184ac694ba355ab8d9a55f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c9892640bbf0427a8fe7a4a08a16f9a0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_c22a48cbb81f4a039ae019b701b01793",
"placeholder": "output filename",
"style": "IPY_MODEL_223f442898534ddf8cd4f1baba6d6597",
"value": "FlinFlon.geoh5"
}
},
"c98e9e503b244fbfbb3e8928f44f062a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c9914059ccbf45a587e3ace5b747f4e5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c997c424f7914ae3921609378fb12bdd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_1a942b1c0f904e4fa04d8fbe2e2fcd53",
"IPY_MODEL_0918cb292bf646609c05cca99f7a470f",
"IPY_MODEL_3f276612a2b94694b5ce679411728771"
],
"layout": "IPY_MODEL_98c31fd0487d4ac39dd466c4a7fd5a5b"
}
},
"c9a0c4d20d2146f1a8c3cb117722b2bd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c9b54ad3990d4b4c980edeb4df1dc90c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c9c8b5454be3483d96479bd1409b19d9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"c9d3423a01e44340b9e13c3f30bd4ce3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Bxx",
"Airborne_Bxy",
"Airborne_Bxz",
"Airborne_Byy",
"Airborne_Byz",
"Airborne_Bzz",
"Airborne_Guv",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_03dc0086ab0f45789be392463b1ba85d",
"style": "IPY_MODEL_8c81a4c6fb2f4406a875617a65a0a107"
}
},
"c9edb52d5df74a69a93f8224c5e858b5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ca08a55cbd5e4f04b97ce7714f10f8ee": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ca1dc8db67944b4d8967a880174b9aac": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_f46fd4bf500b41e3a905ed4d30761987",
"IPY_MODEL_77f1eabba78f446d8ae8b0e47fe8e004"
],
"layout": "IPY_MODEL_0d753409db0b44969a567264da0cbe4d"
}
},
"ca269173ed254653b542f8abb6460699": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ca29796d0cc949ddb9616e0c0caae86b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_39c0a4a8bbfd498fb62794f4e469c3b9",
"IPY_MODEL_a6dae697c0e340eeaae9dbd4b84ed328",
"IPY_MODEL_ea6e734750634192bada73a8b514b6cb"
],
"layout": "IPY_MODEL_4727b76eb3de4856b6b12564714ba298"
}
},
"ca2a3779efe6479990d59e5e216ae6e1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ca319ef5ea604aebbf05954f09ee87d1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_0bc811e83e47406989a042e9845043f5",
"style": "IPY_MODEL_84740b3fe7c2455f8bc62f40f6505ca8"
}
},
"ca34c3d0ae90490b94c2705fc19b02d9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"ca41466e5ebd46dcb967e3de90f59577": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ca4fcbaa2e644f89aa03c95d1ff9ce0b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_66345fa57a9743568734c89c0cf4e8da",
"IPY_MODEL_3765de0e147b496b807e6c2cb18ba177"
],
"layout": "IPY_MODEL_65f7fe4a52794b5ab4aec472ac1124ab"
}
},
"ca54806cc6f44894adc1f802eba2c83f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ca56e9be0cd34ea4873aab64877e7231": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ca7314c8595e421d89361ab0fcd21c83": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ca7709b8510f471ab45fd1bdf7278f11": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ca776165af0d45fca25638e0a0005d6b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_8a148e878742451295810724bec1fc67",
"placeholder": "output filename",
"style": "IPY_MODEL_cdd2c9be9dfd450495a2e7e49b851b42",
"value": "FlinFlon.geoh5"
}
},
"ca78174d9ba94056aa0c94df3ea452b7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_c0e2675305c34d91944fec699818afe1",
"style": "IPY_MODEL_764b7a5dfa5e424db3d2b97c8579acbb"
}
},
"ca7886b6a99347239ec921905e555dd1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ca78c386c50547cf9cc07b4114bb3ef1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ca873f85b84b49ef8549c5a49c2d5185": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ca8b662ef48f41389f0e5b10c8c54f36": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ca9c5f4e12e8422bb348e7cc30d3f549": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_629227a9bc3c41848453b13f40220cf3",
"placeholder": "output filename",
"style": "IPY_MODEL_57d4e8b9e35b433a9ea44f57593b6f92",
"value": "FlinFlon.geoh5"
}
},
"cab6ac37686a441c9885696899e7c8c4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"cab87b908cd041a9b6c464d552033b64": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_d2530e505f624222a0a6849140ca2083",
"style": "IPY_MODEL_afdf38a0583f41b293f6e128a4061b9d"
}
},
"cace3e9a8fb442998d2a62408506f7ac": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"cad4bcf5b109415bbccce3e7c56e4d3b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"cad68a3f7c8546c1a77aef6c8f614edb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"cad846014bda45279c18d8834e865a9d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"cada81b527d44198b51a22d08fc47396": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"cadde8548d4542368440d139e3f096f4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_734207ab76a8495a99ecf47b35d45369",
"IPY_MODEL_e14f4311175e45b996b84547c6334c21",
"IPY_MODEL_acd242a6c1814bff94189cafae37c1b0"
],
"layout": "IPY_MODEL_9c3a7660c1c747b1909719af8df06e6a"
}
},
"cae7c22f60cc4614ac67d71605e13870": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"caf09afb89da48d6be4d70051f26fda6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"caf79259138142e29ceed39dda0bcd97": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"cafe1354b2374f44ae958d6135d55ee9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Degree",
"layout": "IPY_MODEL_a2bba509d2d34296ac25e6a7c40ce67e",
"step": null,
"style": "IPY_MODEL_d180501d84ca4314810fed067704ec09",
"value": 79
}
},
"cb0dadc8a2ac4afda5d9d99240126cba": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_2de79e5180be4050aee13b657f9a0d38",
"step": null,
"style": "IPY_MODEL_fd1af070bf6c476abbf1f391489a4863",
"value": 1
}
},
"cb0f514d8ca94a4195a8bf6b617e7184": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"cb23cdb101264f1c9e131ee88c7f5969": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_93700026b12f4d4ca271181a49103f32",
"style": "IPY_MODEL_112e2a1cc5654e25a9282877ebc31a51"
}
},
"cb378b6adef14c09aa48109142e4d1dd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"cb5026856a614c9e95c783131b337c1c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_9ff5d50adb13497db87cf375e090f215",
"style": "IPY_MODEL_2c1dff44bc214239a1f785cd61b2b9bc"
}
},
"cb54e97e1e564df892075cd1a7479a76": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"cb5647d23c464d298dd4eb96413188ab": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"cb596c3277454d2ba8d818bc7860d910": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"cb73a844380748bd9cdd1837652c6187": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"cb9370c05bf340c6b5fee3ff9a01b6a1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"cb98124632614ba2b1907043830cc052": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"cb9b61fe5e68434f8af9671e785d8f3f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_ade9665d81c04db1a2eb0219d1afd9da",
"IPY_MODEL_6c90be53d8ae4961a8739729dd6b84cd"
],
"layout": "IPY_MODEL_6fbe09df009f44978569e062e87c03e5"
}
},
"cba131a61e2b49949a8fbd173c921337": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_6ebc89f23cc841d9a40d05dbe180d6e3",
"IPY_MODEL_81ac7dc92d374e1091ada6b46779fa7d"
],
"layout": "IPY_MODEL_d711331ded6e4b1d88f41c74df00e1a6"
}
},
"cba53efbd12c4ad28ef70e00ed9e4651": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"cbaab5e2b79441399a34bbde0653df3f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"cbab2b81463349fdb1326ac5de2cbd16": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"cbb58d2d52654ccda82a5e712e1b62b7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_cbcc067651314c89a7cc750e183aea93",
"style": "IPY_MODEL_b39abb7440cd46bd85e92ed45c657f96",
"value": false
}
},
"cbbabd686ebf419a9b95deb3ac9abcaf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_9b3d22db778c49c6bfc5c7da048b4bdf",
"style": "IPY_MODEL_aad700979ecd4d258764e3c9d089ee67",
"value": false
}
},
"cbc2871e0cc34080aea848b370f4476c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_2406ae29739c4e438ad8af22a931fb90",
"IPY_MODEL_8acb128f66ec4b118a8e68337bafbcfb"
],
"layout": "IPY_MODEL_42a6a3df19e54070bf4bcf627bd7433f"
}
},
"cbc3cdf3ee8a4f489a9db64c9be0331c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"cbcbec73aa494b38b8d12fd213ed71ef": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Beta ratio (phi_d/phi_m):",
"layout": "IPY_MODEL_a7189f64748745eb9665fd59c10fe04d",
"step": null,
"style": "IPY_MODEL_5e78ea09afe54a78915e8d9a6ad6de40",
"value": 100
}
},
"cbcc067651314c89a7cc750e183aea93": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"cbccf27122544c97b56194e759917b5c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"cbd1e0662db94f99bf3f7ef19e65a2eb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"cbd6beda1c6b4f8da911bd5bc7c3b616": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"starting model",
"mesh",
"reference model",
"regularization",
"upper-lower bounds",
"detrend",
"ignore values",
"optimization"
],
"index": 0,
"layout": "IPY_MODEL_0c457efc7e0c432085a0de597e2bc523",
"style": "IPY_MODEL_ee8de1cd4acf4319b9d3f887c693e1b3"
}
},
"cbd7f21b36d7459cb59e92ea441fa952": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"cbdff528b9c8441db17026215cfd5f41": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"cbe2400a53e94801a98894204ada9db0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"cbece31416024b9e855bf25650b1af17": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_92f3dc55323f472182ac596fbe7ed2b6",
"IPY_MODEL_4d85d88a945e450089de1a6099b7d487"
],
"layout": "IPY_MODEL_6338a4d724dc4bd699dcbabc3f6df455"
}
},
"cbf52377f4184d459dba133ecb7beab4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_9b6e6d224f064d9eac4b9e67d710a8be",
"style": "IPY_MODEL_27c857996a2343c585f6e7e4a2a7e32a"
}
},
"cc0249fddbec4ebaa2623ae0579be9d7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"cc151ca67fb14bec9540fc5c5258a414": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_e2bae9c8f72c40448f78d049c9f67087",
"style": "IPY_MODEL_417a30b13fef47788ad4e8b0fa9cde51",
"value": false
}
},
"cc19fc59a528496bb718e8bbf2b6ee27": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Ore/39_Ore_Callinan",
"Ore/38_Ore_Dan_Owens",
"Ore/40_Ore_FlinFlon",
"Workspace/Inversion_VTEM_Model",
"Workspace/CDI_VTEM_model",
"Workspace/Data_FEM_pseudo3D",
"Workspace/O2O_Interp_25m",
"Workspace/geochem",
"Workspace/Inversion_DIGHEM_Model",
"Workspace/Topography",
"Workspace/Data_TEM_pseudo3D",
"Workspace/Data_ZTEM",
"Workspace/Mesh"
],
"description": "Object",
"index": 0,
"layout": "IPY_MODEL_f10da71cb1364202b426d93ee0185905",
"style": "IPY_MODEL_286f6c248f524c5689ffbd326627456a"
}
},
"cc243223d70d4a4ba40c1d5b2cb81c81": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_ad2cae3b8b8d4fd7a54b5ae0b339a975",
"IPY_MODEL_a33dd5705970424ba85e2849fe842ffa"
],
"layout": "IPY_MODEL_d6205d61d2454aa2b82e51dc781d86ee"
}
},
"cc2788c634404ba48a97ec1a75eefbc8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"cc2e8afaf5664a0f9b437ddc9e0c1aef": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "IntTextModel",
"state": {
"description": "Order",
"layout": "IPY_MODEL_80fe59ef7ea34d85ba9695b7906c9bfa",
"step": 1,
"style": "IPY_MODEL_1170bf5ce16d431bbe21e8fea942af82"
}
},
"cc370fa82c454c66890fba1301da057f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"cc3ab1ff7f0e406fbdbe43e298cce2f8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_4875b0641d8f4a50ba3559c6970626da",
"style": "IPY_MODEL_176252a1a9e14a32baf4f15452c9163d"
}
},
"cc3ca330fe164b0c96d4a9b1ce1d33f0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"cc4ca478a8834c7f865831982c9baf22": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_482880e304da421b88df252c3698b2e5",
"style": "IPY_MODEL_97b16f6c9ae747508d1c910d13caa236"
}
},
"cc5967a658f34a278755e537bf17d2c5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"cc5a53e841394a7b80a13cfbe6794dd9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"cc5a775186e540dab239d8ef4517fd97": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"cc5bc2768ff042b394850f01595c6360": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"cc5c38687456481a9ae70aa20bc9fd72": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"cc6813f3b08e4eacb58dd864a81cfe4b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"cc727f8c872649d696e40e6d0cb562f9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"cc751a18b9d847caaffdab9f7c92fb11": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"cc92b3ad62f6498aae054aceb0dac23c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"cca3e9e9a6bc4e21800bfa9d3a4e8ae4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"ccad3907b8bd481f8ad772d199bba6ed": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_a90ca4cff06143a98ae139630b504ae6",
"style": "IPY_MODEL_ec9b83448beb49278260646c78a8e203",
"value": false
}
},
"ccb5436129274a7ba5a05009a9253d47": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ccbd30c632c7415197f1337141b20719": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"ccc5f01d491145eabc9f9cfc2e633d55": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"cccc45cba7be4ab8ad8e55f4c8c0bf26": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ccd19d75e19b4663b6a5358a1101b61a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 Temp",
"📁 monitored",
"📁 uijson",
"FlinFlon - Copy.geoh5",
"FlinFlon.geoh5",
"FlinFlon.omf",
"FlinFlon_dcip.geoh5",
"FlinFlon_natural_sources.geoh5",
"FlinFlon_tem.geoh5",
"FlinFlon_test.geoh5",
"MtDore_TMI.geoh5",
"bug_mre.geoh5",
"geoh5_to_omf.py",
"new_data - Copy.geoh5",
"new_data.geoh5",
"omf_to_geoh5.py",
"test_file_2.omf"
],
"index": 5,
"layout": "IPY_MODEL_b44168613695428998b9f9dc0b90ddf8",
"rows": 8,
"style": "IPY_MODEL_e0e6183e25054798a99004ddde80784a"
}
},
"ccda6d5e2ea5417e9563a1de12d0c815": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"ccea9f133a7843c793b970a27e878e2c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_feadf622188d4e25941632cced978acc",
"style": "IPY_MODEL_e68b81ff1fae4ee08f071b578572e85c"
}
},
"ccf2735fca274909b5860f5bba5f0710": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_8915b9395de4419cae8493bbcbaf8563",
"placeholder": "output filename",
"style": "IPY_MODEL_fca0a68d98b747fb8fd1ee7926517c2e"
}
},
"cd06ade3e1a5426b9fa61f09a52a5cd2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Fixed contours",
"layout": "IPY_MODEL_748cf3a562c9491ca441dea80bfa765d",
"style": "IPY_MODEL_138112097552464ebacd2cd2aa0e8a58"
}
},
"cd16e5f67ba743b1b30e30e46decf595": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_b1921b4735674e329a9ebc1aeb1c37a5"
],
"layout": "IPY_MODEL_618cdd6cd62a44629d22ffff86c79006"
}
},
"cd1e1602c9c340b7a6078eb4e0e6a5b3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"cd1e3c16a72048c695ec423b205d7cb1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"cd203a6be6fc44048cf8791f6f831b4c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"cd278d8647484e93b961f6aba1e4b4ef": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"cd37b80b34644ec5aadb5c4d3f7d2ae5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"cd4a50f3d2f445f4896b321d74f53b23": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"cd4c25fe9b204d19a2a567d5b2231211": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"cd58b2fe4d354a92adf34aaefd667b69": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_76e32bbf549344af9ec5c16bc07578a4",
"style": "IPY_MODEL_8e2c7b3f81b44e1a81b918a607ce6148"
}
},
"cd5d15df78734c91984bc9737597cbfd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 0,
"layout": "IPY_MODEL_d443dbc21865433d936fc9ef11446381",
"style": "IPY_MODEL_1b764c2e4a22409e9ef5f9083ce4fc4f"
}
},
"cd64c1c691cb4c44b204cf9d96eeeba5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"cd6793b99ba14c74961628ee0f296093": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"cd6c5e8f32494b97997ea90aaad50756": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 Temp",
"📁 monitored",
"📁 uijson",
"FlinFlon - Copy.geoh5",
"FlinFlon.geoh5",
"FlinFlon.omf",
"FlinFlon_dcip.geoh5",
"FlinFlon_natural_sources.geoh5",
"FlinFlon_tem.geoh5",
"FlinFlon_test.geoh5",
"MtDore_TMI.geoh5",
"bug_mre.geoh5",
"geoh5_to_omf.py",
"new_data - Copy.geoh5",
"new_data.geoh5",
"omf_to_geoh5.py",
"test_file_2.omf"
],
"index": 5,
"layout": "IPY_MODEL_de305b17f18d412f867688d64b9e5d39",
"rows": 8,
"style": "IPY_MODEL_62282c1cfe95441198a0b69b65475b84"
}
},
"cd73f45632e44fb794f57874c126ecab": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_76379eff601a4c629cc6045cc812bede",
"style": "IPY_MODEL_7818087dc43041198c1c70c64b5de4d4"
}
},
"cd785553c200419498f9e966a5f733e0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_789ea25e2fd04231893afcaaf0967055",
"IPY_MODEL_a6876756f39447658177c708b5f5cb19"
],
"layout": "IPY_MODEL_24d96d7001c34ef38564b188af0b3009"
}
},
"cd793b986d274f5897a4a4f0e4860228": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"cd7b8085376c4daf810a1be86df3868f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"cd88375da7614f3f99eb826007f095e7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"cd8e2278c63a436daf23afccb2609a7c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"cda8a7a486294b109d6e24845f241796": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "IntTextModel",
"state": {
"description": "Number of tiles",
"layout": "IPY_MODEL_79a231861c02421f9134a2af6e61b1d6",
"step": 1,
"style": "IPY_MODEL_e4ba991edb524c8b99b6a37347e2f0f8",
"value": 1
}
},
"cdadf7b3e11145ca9522c035cc12ecdd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Degree",
"layout": "IPY_MODEL_7125db85a1ea415cad6658c997946cb0",
"step": null,
"style": "IPY_MODEL_f677182181ce44a3ad0926e3587357ad",
"value": 79
}
},
"cdb4373226424b06a106a9a928134af3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"cdbc049ba6b645759b524cc7eeaae107": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"cdcb2b07aebb47ee9136f208d306473e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"layout": "IPY_MODEL_bb8868a0cfde44f4ab42668e9b612e1c",
"step": null,
"style": "IPY_MODEL_03cf3a8254794ab0b9c576a4956788d4",
"value": 2
}
},
"cdd2c9be9dfd450495a2e7e49b851b42": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"cdd5cef249634b0bbda3789901534ca8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"cddd781b9b354844b21c96849c056153": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"cde2d58bc0444e8eaa7f92778c6c9aee": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_42a6783ac322488298ed93d45e07ffcf",
"style": "IPY_MODEL_3c2f9272a321477eae3e0bd005d8a759",
"value": "Reference Inclination"
}
},
"cde68bf3d1274cfdb036ca80ae9b1569": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_f2c2fab33e92428495b1f166028ef7e0",
"IPY_MODEL_749a951bb621490bbecf614456e6844c",
"IPY_MODEL_c6db284c24684568baaf7be9ecfe9046"
],
"layout": "IPY_MODEL_b6345bf68f7a4b2fab2c90dcc35b2a9d"
}
},
"cdebae91e4ec461188ad4d1b437a8f26": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_edfe2cbf47714b208ca88de567d276fb",
"style": "IPY_MODEL_6f8c0836d88c4e17b9ea4b71268973fd",
"tooltip": "Run computation"
}
},
"cdf12363fae94ab39742084951fc86c4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_0d3cfcbaf4d044eba616b4811f0976a1",
"IPY_MODEL_29f7da131e4644adb0cbe0cf80d9a1cc",
"IPY_MODEL_96f64c62081f40cc8882029dd3f04336",
"IPY_MODEL_8bea41ba924e47f59694d19f11067326"
],
"layout": "IPY_MODEL_e1b198a07839409f9bbb285056af355c"
}
},
"cdf41eb61dc449ffbb0fde5c2e628dc3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_aff0461f6ec74282bb738e510af12df7"
],
"layout": "IPY_MODEL_bd8e676c62af4ea39dad7aaaec8001db"
}
},
"ce0d9460443f4b5f9aca7a49d68a542a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ce273e52926645fbb79778812c2a1b38": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_d0b4140400984f42aee8d429ce7375c6",
"IPY_MODEL_324d268600f14cafb2d05166028cb35d",
"IPY_MODEL_4f0843e60c484cda990772c8d7fa7670"
],
"layout": "IPY_MODEL_7e73b26f347a409aaf5b18a1b44079af"
}
},
"ce36d9b93e6f49e78bf1c800c96794f9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_b44dcf3cb04444899a0e7cb179f7bf76",
"style": "IPY_MODEL_f4a2b7d6979d4b8195346b77f3fb34e0"
}
},
"ce3d19d56dc04e1aabb2a144edb2a27d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_5af865d72e9b41aba39cc656cdb9083f",
"IPY_MODEL_5a415718e6684e9db5e0a631ba25b8a7"
],
"layout": "IPY_MODEL_00de60a855a242d79aa37167e6fa4047"
}
},
"ce4df7717a4e488196e7e4ea66098cd2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ce5906df4c294603af9cf4fa93eac261": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_3ffee1a52e044d64b8edad2744c156c0",
"style": "IPY_MODEL_4503136c4e0b423e9c86fa2544a07b06",
"value": "Save to:"
}
},
"ce598500a940464f8345ddfabaab2fa4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ce5cccab546c48cc808e941e7239121f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"ce5da5a8cf6946c7aef965b9282fa65d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"ce5f83aacdf04fdf92e4b958d0d777e6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ce619bc7e751451c87fbe4591a05776a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"G:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"D:\\"
],
"index": 0,
"layout": "IPY_MODEL_19e26fc6dbc34fa2bbb59b84d6cde843",
"style": "IPY_MODEL_310619d45a0b42158d9826d10d679c57"
}
},
"ce67bce5590f43c7a1087be391747056": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ce68f6f06a6d4f72bea3c4ada2180fc9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_bb39fe6afffa4f2c9e8b8a1a64c8dcbb",
"IPY_MODEL_0f16ae0f0b3c4265adba20344a2cf9cf"
],
"layout": "IPY_MODEL_ad4b5f49e6a942ddadd06559943722f8"
}
},
"ce6cb67786e4456db641e1dea100348e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_4fe5a341bfc146f18de6328e87b661fa",
"style": "IPY_MODEL_8c8684846217464f83a946e8b5fb7a75",
"tooltip": "Run computation"
}
},
"ce6e134a0d164184a559d2369d40eb39": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"ce791df85e024c8aa9cb3de629cb21ce": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ce7d5026b1b840a0978bab69661cd3c3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"ce7f7c541570412baa0eee218b296f6d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ceab192c8dd2450f825c9d1d59c0d210": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"ceb6602c77764f7cbbef3d8c363fb3b3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_61cc8545fa684af18bd7a26e8deacfb0",
"IPY_MODEL_f17bd667144a4dd083fac2d6a7c2ffca",
"IPY_MODEL_44ee01329a92483987f1fcae3c24bc3f"
],
"layout": "IPY_MODEL_0ac9e159370d42b58337da6340899c98"
}
},
"ceb8e0e904d34783a716a288ec98cae9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"ceba0559096645dbb394a0321cf0d784": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"cebffcfde0194a3ebc65e16ea1145969": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Forward only",
"disabled": false,
"layout": "IPY_MODEL_c9b54ad3990d4b4c980edeb4df1dc90c",
"style": "IPY_MODEL_e7550ba2577340e2859df00d30e15380",
"value": false
}
},
"cec1762bb114459f899041ea6f51c364": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"cec3b25b58b74ae5b6b9f0a2b8f6d6ed": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"cec559554aa74048aadac81da060524e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"cec9047327bc4585b11c2c9f62f0c181": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"cece28b348eb4922821b203000031e9d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ced3f0c3282c4a0f9322defcfd0439f9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"cedd6e9c8af949d9bede275eb32d234e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"cee2f55754d44b0087eaa1a3a075d97e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"description": "# Cells below topography",
"layout": "IPY_MODEL_0711cb923aaf44bda53e0ba9bb8651ed",
"style": "IPY_MODEL_caf79259138142e29ceed39dda0bcd97",
"value": "0, 0, 0, 2"
}
},
"cee34393711f4a4486b3f2ad14f25817": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_f0292901768f44b581c1b0db45320a69",
"style": "IPY_MODEL_54b014975f2f461da25fdf931ceeff47"
}
},
"cef3d57cb0514464b5ecf7626ec84d83": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Ore/39_Ore_Callinan",
"Ore/38_Ore_Dan_Owens",
"Ore/40_Ore_FlinFlon",
"Workspace/Inversion_VTEM_Model",
"Workspace/CDI_VTEM_model",
"Workspace/Data_FEM_pseudo3D",
"Workspace/O2O_Interp_25m",
"Workspace/geochem",
"Workspace/Inversion_DIGHEM_Model",
"Workspace/Topography",
"Workspace/Data_TEM_pseudo3D",
"Workspace/Data_ZTEM",
"Workspace/Mesh"
],
"description": "Object",
"index": 0,
"layout": "IPY_MODEL_3a9ad5138e35402bba5379581144523d",
"style": "IPY_MODEL_6ea14637379f43e8b7d1f702199cc0ef"
}
},
"cefac0d546a04d52bd1faada769b1180": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ceff662a53824d1ea98d51c9131e60e1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"cf04fd7223ee4e1282ad7a0e5acfcef6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"cf06cc76f88141439ce863c2b368f051": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"cf0b03675a9c4c36adf93975ea81ebca": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"cf11fb456b204446ba8ca4fcb6699d8f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"cf122f6c6aad4214828427b950f8983c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Object",
"index": null,
"layout": "IPY_MODEL_9d83e42f0bdc463a8fec191c8cd7e5a1",
"style": "IPY_MODEL_725c7e9bf7464b148ebb406fbb10031c"
}
},
"cf13dd1e9c6c4fc0adaf5d03c27a5f42": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"cf1a9bcd8a7649a49d1f1e12e740db06": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_11882a70299742ef9b235e3aa6966de3",
"placeholder": "",
"style": "IPY_MODEL_9afc1ca0e13544c4809699158a9b2a43",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"cf1cca163ec542fb86d8db4213789c2a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"cf265564f42442e88cfe0710e647f80b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"cf2c56c14c89422ab6c68b029c4c519a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_233ccba72cd34d46b0e8cc6316cf81c5",
"style": "IPY_MODEL_76d2b5c668a9463db8b6c8859710bc6c"
}
},
"cf4b2f3678c84ee6a121eb7117896a11": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 0,
"layout": "IPY_MODEL_a5773c5f50be432e8316faee787359e7",
"style": "IPY_MODEL_5164f5fd242c4dbb8342a9ff23067b8f"
}
},
"cf50743381a24478850d3d88de3b945f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_eccf1b88b8844eea8fa7b888301f52d5",
"style": "IPY_MODEL_5aca6cbd1c3e49049f22835f995c6664"
}
},
"cf5514c1ea724f6196128ca52f16fe20": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_7d4b13062b1b461b9e94e9a2ab38215a",
"IPY_MODEL_db2db342253b41119a538668a75d76b3"
],
"layout": "IPY_MODEL_54edc06d5f614d039bea19f17f4b0cbc"
}
},
"cf560e2710714094a3c998b690b71846": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_f1ffc849c6734ae2b4e7f5746d99f31f",
"IPY_MODEL_b7650f9f69804075b54e95ed6df4ada8"
],
"layout": "IPY_MODEL_b3aee76d10494dae9f0416a97cfbd6f3"
}
},
"cf575f00cbe94446837464d9ed86fb69": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_528c54f4a0664785ae27f0f9dacc5abc",
"style": "IPY_MODEL_60b1724c511d402fa83782be3d8bc7a5"
}
},
"cf5ce559a33043eea27e30e2f2c432b1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"None",
"Object",
"Relative to Sensor",
"Constant"
],
"description": "Define by:",
"index": 1,
"layout": "IPY_MODEL_0b142fb8d9e3475fbf97c573e7b069e5",
"style": "IPY_MODEL_71acb776f85543178f50fcfb009718d9"
}
},
"cf66a7af02054f22a6a9a2e53f5f470c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"cf66f4d8443b4ff3a47fc674aeb0e9cd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"cf6825c5c11e4deda07b2aed2e80ae11": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Values",
"index": null,
"layout": "IPY_MODEL_87523de1cd6d4eeca1b3369a7974e2b3",
"style": "IPY_MODEL_50cb4db8fd63417c855a9c8bdd6c087f"
}
},
"cf6f7ca79e7b429e958dcd9851258b46": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"cf76939e563042dab1531e4961e29b7a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"cf7f75873c98415ea5d63ac9c83dcbfc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_6a75f5c882e04954b49211073d0eb1e0",
"step": null,
"style": "IPY_MODEL_68e6b53df9354099801663f89b67ec36",
"value": 1
}
},
"cf8b429d8df340ce8c3b99e41f359f96": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_ece60626e39545aeba32d4b16b0f9747",
"style": "IPY_MODEL_2e80124e076d4d72a4a8433b52787fe6",
"value": "Save to:"
}
},
"cf8fe2efea0c43c1b662f4ced33ca806": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "IntTextModel",
"state": {
"description": "Order",
"layout": "IPY_MODEL_bece60edc20548459a4293df082e2be6",
"step": 1,
"style": "IPY_MODEL_130863b87ccf442f80d4436b331c17b8"
}
},
"cf96f0460614489bbd44f3cdf8cd2b77": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"cfa5b5295f7f40f5a9b94c553d9a050d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_b48352d10378490d837be3de244b219d",
"style": "IPY_MODEL_ee29fdbf4bc540cfa56b3274307ec04e"
}
},
"cfa727f1c71f496caeb24bb0511426c5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"cfb7fc7c919c48e38a71bdfc5e07afae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatSliderModel",
"state": {
"continuous_update": false,
"description": "Height",
"layout": "IPY_MODEL_7dc5a06060f94081a09f4fcfeafc0ac3",
"max": 13622.238002983107,
"orientation": "vertical",
"step": 10,
"style": "IPY_MODEL_90bc863cf6f14dfdac6a097b6aeb4645",
"value": 1500
}
},
"cfb92d5f86b34728b0426fb7596ab5f5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"cfbf615c2c4944648b95be5aa2958f8a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"cfcc73ade3b547de99cbd80e8238bf48": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"cfcd654436364c678793cd5b30c5d8f4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"cfce8043bb964a7abd1b7cc80e7423e1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"cfde9a3eb89246b99411eff48970465b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"cfdfa8a52c664b3fae658a828ade16f4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"cfe470d6e4aa43d19aa862c9ad3043ef": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_54ec8254fca042e48b1a45c0f61931a5",
"style": "IPY_MODEL_d0ac16fe956d44e2b8d95ac72897fc04"
}
},
"cfeeaf0263d546a4a3507019dced61d5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"cff2c77fc03546f396ed5007b7e7877c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"cff65d38346f460ab17c51c846ee80f3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_2ea5c011bf4e497b99228239886077aa",
"style": "IPY_MODEL_9f3ee5afa640474093aff3625810206f"
}
},
"cffa69afb7544f54a62c6a8b34373ee1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"cffad106c181465baca5c75c14a6e2b5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"cffc6be3f9864bafae2d4593cb5dcd10": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"d005eb9df6ff43928f751678c10b15f0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_c3070fa5399c4d09a6a9ce73d0951460",
"IPY_MODEL_10055127878e4b3b89970a6032cd15cf"
],
"layout": "IPY_MODEL_120ff982dea047e4952bc54e5e287965"
}
},
"d00903cf15ad45ac879722f3c5e0e451": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d00bf601ffec49dfaa6e407ea6d6ff4e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d016c0ea83ea467c8d9f92562ef9055e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 .."
],
"index": null,
"layout": "IPY_MODEL_ecafadbf555b40f1a51c5adc44c400c4",
"rows": 8,
"style": "IPY_MODEL_4151ddddf4f742a992885f538a4f0341"
}
},
"d01823806e984bcf878dc5a11b3f70af": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_512627e0ddc54752a1be7ac56126ebc7",
"IPY_MODEL_4a9acc61b3194db684d7dfce1506fdd2"
],
"layout": "IPY_MODEL_34ce396184764f7baa7d0cb8b52ae1e3"
}
},
"d0214c6dbb86402cab38fa6c97e58219": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d022c93a6c054a4c9add7e9a0527a178": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d0239cbb75b14b079185722316aa2a31": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_0ccbd1ae7dd543e4bee67d5d8c7cf6ba"
],
"layout": "IPY_MODEL_4a7513283f4a4faa82bd976ca3383dfd"
}
},
"d03407ef39ae4d798438a0988a355f65": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"d0367bcff1af45cc81b2e0f2e7325fc1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_1f05a711b30d445bb1f2b928e2889102"
],
"layout": "IPY_MODEL_e68943e5c25f44dab37cb565d977f294"
}
},
"d036b70fba4b42d6a893e09b38029a2c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 SimPEG_PFInversion",
"📁 Temp"
],
"index": null,
"layout": "IPY_MODEL_79564b506bd648768cf3aadfdb2fa4a8",
"rows": 8,
"style": "IPY_MODEL_359d5dce41ef41f9aaf8802277a10c5c"
}
},
"d03c40b4c0224bd181e2df71ea146196": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d0433fbc0ff6458bbe1e3e2bfeb3c316": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"d048301f8a4e49a997bb34222bf553fc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_2fb799e2af8747c9bcf338bbb6536061",
"IPY_MODEL_a9a97531e5534e47b3129f1ff8a247d0"
],
"layout": "IPY_MODEL_383c0dc1678c4ac18a23b2d202ff58b9"
}
},
"d0486adb8bc149a087311b37ff428550": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_0a2d93a24b9244f28684d60f22c8da8f",
"IPY_MODEL_91c4c28c923d45389e78d2996cc66d05"
],
"layout": "IPY_MODEL_9f79617e1c344ef3bebcf63ba4582657"
}
},
"d04d431a69bd4d74921b03e7c92934b0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d051a9bd4b4b4e8e86b0f396d9375283": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Bxx",
"Airborne_Bxy",
"Airborne_Bxz",
"Airborne_Byy",
"Airborne_Byz",
"Airborne_Bzz",
"Airborne_Guv",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 0,
"layout": "IPY_MODEL_bc13e55346964059a2e7c0fa481c7caf",
"style": "IPY_MODEL_184dca5face84c6f81abb9fc8605c229"
}
},
"d073fa560ba24c848709b05456a20f45": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_5b51e988d7ff4a55a6f1a38c8e0a80ce",
"IPY_MODEL_05265d62537744149f7e6ad602e03c59"
],
"layout": "IPY_MODEL_71954b23553d4f18b0b69a33a2b8675b"
}
},
"d089aa9fe23743eba9594b9c9521f2f3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_9392f9644d594c32ae0d89c107c5bf36",
"IPY_MODEL_332d67dde28040f09c1df3b3a54f1b24"
],
"layout": "IPY_MODEL_7651f98dfdca48b08e4f757d0c8e601a"
}
},
"d08ef3db29a64975be8fd009e0c5168b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d090f49fa02c4e44b7b2687a4a1b85ea": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d09435eca686481ca18fa14b81674346": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d098174f1c994369b0060f66655c8f81": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"d0ac16fe956d44e2b8d95ac72897fc04": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d0adebb800d74d62b1d609a24a1150f2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d0b4140400984f42aee8d429ce7375c6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_ea9ec1ac5cbc4bf4957f3757ac732350",
"style": "IPY_MODEL_c6dec2fdf17e454db758a3dce30efe87"
}
},
"d0b87b7b71864c6db318fda8556e11ab": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d0c6264ac12c4d62a3586f8a7a96a53a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_60892dfb4baf41769b6f203127519828",
"style": "IPY_MODEL_c890457dee7341d9bc2909453d361fc7"
}
},
"d0fc20b9b0044839a5e992c4bbe4cfa4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d0fd313579834f28ba6919ba95cc740d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d118aabf233943eb9f875801ceac8374": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"d118d02e7bfd4e9d845f28f994de25d5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_f8929f0c7f264b44b45f595b5b946a62",
"style": "IPY_MODEL_c17d45387e7c4a8cb475e4e4e6cd5ee1",
"tooltip": "Run computation"
}
},
"d13fa25a079846c9b01b6354c68914f8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 0,
"layout": "IPY_MODEL_96e9bc737d9041878753f12731ea45bf",
"style": "IPY_MODEL_41f8f3853fa34759a1be25651e7714e2"
}
},
"d146f35738e44cb0af893b79cf9cdee4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d15e7e947f5143a5bf6d054eca98e25a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"d15fe80221774824b308a9cb946ef189": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d160cc08f5e843acba9e7ed6dc886aaf": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"d180501d84ca4314810fed067704ec09": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d19e9f19e4974ac699a40fc984229f18": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d1aab47ea9ef4ce0b89aeb57e8da88ca": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Horizontal padding (m)",
"layout": "IPY_MODEL_bd24aad85532402299b5722e78aec08e",
"step": null,
"style": "IPY_MODEL_90d189d052b94e5ab98911ec146cecda",
"value": 1000
}
},
"d1b7064ad7c84987bbdc0cec44af1958": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"d1bc7c34a09747e1996b4453b72e8eff": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d1daf90c040540ccb3a8cf950d364b2b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_e8e6efd2c80043cc9a11142c29e475d1",
"placeholder": "",
"style": "IPY_MODEL_e5b72cafd3294b9e90ba312044717cb4",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"d1e3d44eb83e4eb0955e5b5d708859ef": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"d1ec88954b8d40f39d910d5d62dffd89": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_4c02ecaabb3d464a8e1f13289ef231b9",
"style": "IPY_MODEL_e343eca40e41446d88a114457ac12610"
}
},
"d1f81526e15c449ea051dc83f9bb7f2a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 SimPEG_PFInversion"
],
"index": null,
"layout": "IPY_MODEL_1086b202ad9540c28ca311a7c68f3020",
"rows": 8,
"style": "IPY_MODEL_201731583fa643f7976ee7c353f9b096"
}
},
"d209cd6d770b41649e67beed5ef965cb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"d20d45024cfc4413b24dfc15d19d8748": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"d2101e9a637040348a635d4b8c53b2b8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"d21695c28ecd41ef85eb71428fc2f31b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Object",
"index": null,
"layout": "IPY_MODEL_e00e033b8b2a42d985b1fe23e6807868",
"style": "IPY_MODEL_d5cedd766a5749dc8dde220b0fa5e442"
}
},
"d2530e505f624222a0a6849140ca2083": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"d2572252b0aa41b7962aeef67afc0967": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"d2583094677a407488cd405da3985f3e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_c86900348d564a00a7f11782e6b8c2fb",
"style": "IPY_MODEL_3e1acf5272fc441ea7031630a0dc4737"
}
},
"d258813120384cdb9429f90c5dcface5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"d25a9e75d3284821b7d22fe04d022379": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"d25ce0933e09492aaf3e82d5998ac13f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"d262697263fc4129abb8340e9175d894": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d26332a3e53a467193047f5f2124d40a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d267b2877c494aa0ad2bff4180ff6a6e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d2695bafe9314bd4a94297905ca6e0bb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"d27060b45b71432884959393179626d5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d27551605c644f97ba3e20f26c08b589": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_787a40ff1c3045b483f3c14f05d25196",
"IPY_MODEL_d35c1ebdc8b1481f9f7ca374b3f16656"
],
"layout": "IPY_MODEL_c000847d8b504a8db0433615fb98620e"
}
},
"d277ac8e0f09485c80bdceb202b789d3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d27a31234b044d24b0bf9e7a4980c17d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d280983595324a3aa3499c5717e3ede9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d287878ec6e041efb5963d0c0d10c2f9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d28c20bb766d4c3984139ce946dab7c4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d28f8b4d2dc042ffaf45877b0877ec6c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d2a0c0ef25cf4f4f99e7262f48a79d15": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d2acd348b73b4af8bc229838fd835cb3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d2b42c5b6eb34f06bcac06afe2504636": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_d7780f0e43c5443e92f563a038210abb",
"style": "IPY_MODEL_89ef32d0cea344b9beee8da5a6e9be57"
}
},
"d2b4bcebc41241afa7daca7d49bf3cc5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d2bc7a273ec84504b0c3de50919674a5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d2bd6fe767ec4d0cb88ba31e095cdfb9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d2c1824f35db4c7ba25da578afbda474": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d2cf214e29e645d4a3a52852857cde11": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d2dda284a2f34168ace162b54a2ea3c4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"d2f95bbb57674972b5f386d11f4a2e40": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d306b982f6e74c8dab15cc43477ee581": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d31d153c515a4f8a9de003e70a09c2c9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d3365943038842d987360221769bb0da": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_0e5e3252bc044efaa8e8400b66f98326",
"IPY_MODEL_781d1c5eb6b54f61a9f3a9d59b9a9a48"
],
"layout": "IPY_MODEL_7ec60e0d90014b6baf4abab69c8994df"
}
},
"d341d0c2977e4803866229a31464865f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d35b92bad57448f1b4a763bb79b4e82e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d35c1ebdc8b1481f9f7ca374b3f16656": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_bbf8a4f3da0c4b3094e403c98a1e36bc"
],
"layout": "IPY_MODEL_af2c60052f27457994910a59691e2256"
}
},
"d36ba40c59ea4e7db52c2a755aa3833d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_f8055395a7d944659a4b3cd169bd3214",
"IPY_MODEL_5a4b2d527ec94811a59dee25b4babe15",
"IPY_MODEL_97697f1eb5884fc8992b07dba7b1a16d",
"IPY_MODEL_2f2207a5245d4666935582b7a9217803"
],
"layout": "IPY_MODEL_ae5bdecda2af47f382de6a398c05d544"
}
},
"d36bc65d89e74d24980f6b796b4af0d9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"d375939ef9c44f23b1bcb3d80367fb82": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d380b8bb2bf44e52b7a4a256cf104406": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Set Z from topo + offsets",
"disabled": false,
"layout": "IPY_MODEL_ddff767ee54e4c0982609cdae97caecb",
"style": "IPY_MODEL_93e7f3f563484109a0ee2fd76d534f82",
"value": true
}
},
"d387459e273542f49cd2b12770b63af7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_50c67b9553eb4e64ab9f32987f42f37a",
"style": "IPY_MODEL_560cd97a9b71443e9109e7170ee256ce",
"value": false
}
},
"d387fb2000ba4c3a898dc9a3653d500d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"d38d8b314e104f98909992f1dcf2c4b5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d38f41e06f974b29a3f43f388a26f6df": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_f5bdde79e75840689f1e826aff2836da",
"IPY_MODEL_93781f8835434108bd104329c413a116",
"IPY_MODEL_39422bdb2764439fbe031e55fdfdbed6"
],
"layout": "IPY_MODEL_6946cec642c048439bb873a054b03991"
}
},
"d390ba2490274c34a1eedfbb2cd10e61": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d392481e9cde4f7d83cdb3ded3cbf73f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d397b99ac6ce42e988223953f73f676c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d39a2415f965431bbfc3544d015d7c92": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d3a8cf570d034d1db34c0a9181afa398": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d3a957cd6b2c48149d0f01c92b2165fd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_7b1b78eac02945de847fa00df2f97a14",
"IPY_MODEL_5ae9b79133d54fc092993a59eeb6c5a9",
"IPY_MODEL_76aec09391d9425180edf2bc474eca7d"
],
"layout": "IPY_MODEL_f8a4b451df8d4e49bb542f8226839d0e"
}
},
"d3b561bc0a274d8992e8745c8ddb8bc0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_62af62fa53064566a890537a33b577bc",
"IPY_MODEL_f46547da0a2542c08780122e17aca834"
],
"layout": "IPY_MODEL_6b86a6c832c440208c86886f752cd384"
}
},
"d3c4e2817f3a46649dd60a4477695842": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"description": "Value (i.e. '<0' for no negatives)",
"layout": "IPY_MODEL_8590890ace384882a7e7eaa10b147eea",
"style": "IPY_MODEL_b74d00e3c1f84e0f8d466ce69a63363e"
}
},
"d3d05b4c12f74ca4b17c131b8d2fab1e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_9baca46f0792461abd628fa48aff1d36",
"style": "IPY_MODEL_c1800c0f3a25497f8c18c07352b4f53f"
}
},
"d3d620b99e944544b4382068c32c0e1a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d3db3008378d4f868bc90ed8f577a077": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"d3f472e80fe74f0991659a57b8b4a9ce": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_232a44ec08e8421eb8a6d3551c8edb0e",
"style": "IPY_MODEL_4c254b6e47be40ae8715cc421ab2c3dc"
}
},
"d3ff895671124ec8bf50bf1faa916415": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 SimPEG_PFInversion",
"📁 Temp"
],
"index": null,
"layout": "IPY_MODEL_16a2490b2e184b7d804b468b5cf70697",
"rows": 8,
"style": "IPY_MODEL_cc370fa82c454c66890fba1301da057f"
}
},
"d405b179440a458498cb046216d68824": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d406076f2de144fba305930c977dd6c1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_a8cedb30dcb3472db0477fb50778ba7d"
],
"layout": "IPY_MODEL_492398b1fa2246fd97dbb89d4e70a127"
}
},
"d407f508d765445d84bb551416eef47a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_451d8db9ee5b4bdf86eb1ca5d6863ff8",
"placeholder": "",
"style": "IPY_MODEL_7f02375641f141928dc0280760e89db4",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"d4252a7fd472405b87725f74fe10d2d0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_2257235934084ce686148475a50cbd44",
"style": "IPY_MODEL_63c718232bfa4dc48f7346259ef0dfce",
"value": false
}
},
"d42ab6bd7fba4f55a7fe6ac32b753854": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_0eec0edcab35482084827fe72ec28bb7",
"style": "IPY_MODEL_52cc5d19a8044a528489dbecd37653ad",
"tooltip": "Run computation"
}
},
"d42eafb286f448c58ed9b2840697992f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_e92f95a0c32f4c329f843d2a4be4ccbe",
"style": "IPY_MODEL_0a6af98faf20489295c4a85b7d64a5a9"
}
},
"d435f95f246e405da09d023cc12f224b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d443dbc21865433d936fc9ef11446381": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d45decbe0c0d4baaafd948c82f5cf842": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d4612f51ba2c42de8c8f82692b76c82c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d46d219f0ecb4127aa96bf3a9fab460e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d46dd416ac194704b769e3a1e0e0c045": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d474bd233c584f8e8b4edab7f24e28da": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"d47abba78f254f48b770e9fb376b8b82": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d47fb808ca2445edb724d79b581012ed": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_20aa074a0e604bf397d0329f6e709e52",
"IPY_MODEL_08e273caa0f549639b9d69ba5ab16df7",
"IPY_MODEL_9196326fcfd641479c571a2d0fee33dd",
"IPY_MODEL_88b35940c8b444e69a3e53cd407493f3"
],
"layout": "IPY_MODEL_1a9edd5c74d14d798c73701182b89d66"
}
},
"d4ab91dafddc4cd482442e887e080fe8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d4ac254a0b9347e6a7cf2a3c57349d29": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Ore/39_Ore_Callinan",
"Ore/38_Ore_Dan_Owens",
"Ore/40_Ore_FlinFlon",
"Workspace/Inversion_VTEM_Model",
"Workspace/CDI_VTEM_model",
"Workspace/Data_FEM_pseudo3D",
"Workspace/O2O_Interp_25m",
"Workspace/geochem",
"Workspace/Inversion_DIGHEM_Model",
"Workspace/Topography",
"Workspace/Data_TEM_pseudo3D",
"Workspace/Data_ZTEM",
"Workspace/Mesh"
],
"description": "Object",
"index": 0,
"layout": "IPY_MODEL_c8e52a734efc4793abb8c1deec3bdfa5",
"style": "IPY_MODEL_ee7a1e9cac8b442b9f15fcfb1b2820ca"
}
},
"d4b082dfd7164ff4ba2a8a6e79104bc5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d4b29ba9c9544f6ba6c30180296a55ba": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"d4b5d7bd77354a539f0672fdfae332b5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_d022c93a6c054a4c9add7e9a0527a178",
"style": "IPY_MODEL_eac458e1f7d84b4484c4711b8f7e72a7"
}
},
"d4b6f231221e4523a130fb34deaedc4f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d4dcfcb47c4c4ce891a65b065b05b2e7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_06bb6ad2d9394723a254e1e65ca6a326",
"IPY_MODEL_b949f79613514873ba5bb155fc84d639",
"IPY_MODEL_631f892adfeb4a6babb7aa52b4c6568a",
"IPY_MODEL_9619847bbc3f4890b20a3feb4fa76910"
],
"layout": "IPY_MODEL_05bdd4dd540d44dcbbac66e07f069497"
}
},
"d4e16e94d4d74967abf1d0c36abad491": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_b4b529b63e1d43a8baf45b6e5eae7103",
"style": "IPY_MODEL_c098b0691e384a3fa3756e85405daffc",
"tooltip": "Run computation"
}
},
"d4ec6aca0dd0435480b4162ab6283c17": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d5089fafd3894204a94bcea60834f0c6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d510070c1205424dafed49a478ceeadf": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d512241aef524d69b7ffffb1d1f5bf84": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d51cb19f109c420581162f630a91308f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"d51fe98a7b9b46a2b975f4b1de9f15ed": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d5202b02612e4d2fb6f0eff9f4f34ca6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d52e04aed0fd455f808ef61f4ab1a43b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"d5305ae67a644f2b8ece9455c75ae1ce": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"d54b6763b63040a89798c8ebac6f38c5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d54bf3189a2f4ba395c8e2517f36c8bb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"d55080478eb8414399735740f73661bf": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"d55389e7fa424332937a71e67f67bcdf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d5597e8dd7ac4383a607d601aab7adea": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d55f26523ea4418d90bd0960f5c7a72e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 0,
"layout": "IPY_MODEL_1d4329ef10f0494d9672c8cc9a54a12d",
"style": "IPY_MODEL_16af47e1e16649fd8fae2dad6fd8f6c8"
}
},
"d55f764521d84a5cba12011fd5f22c0d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d5650faa2ce54dafac85aa5e8b15eb78": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"None",
"Object",
"Relative to Sensor",
"Constant"
],
"description": "Define by:",
"index": 1,
"layout": "IPY_MODEL_6bfdee7cec4846a380edd1b76ae47704",
"style": "IPY_MODEL_f2c4549be8a04f548429eecd593018cb"
}
},
"d577aebaf22c40f9abde26e4cc99ac28": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"d578b621c37644b4a47856ca8e91de04": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_1bf59df635cb47409426e1b05634452e",
"style": "IPY_MODEL_e4e0d0d59c544d168492be3013b9fb9d"
}
},
"d57be2cbd97d44ec8b36a0f72b013900": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d57d7e69a7c3445cb06fd3388dceed2f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d58aef57f00840c6944ab7c47dbc6e7a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d58af0b6bfcf4b8b8a39a7cef0347d57": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d58fdbe72bb84147a5708cdd66977d3c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_53cd6f16173d48a090d32c1045bf3460"
],
"layout": "IPY_MODEL_894a7fcbd12542c4abd2393ae3c68551"
}
},
"d591460e7140462cb47f29a4d5267269": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"d597ffe23f72462f8b88c831162d86fb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d5a2b916a2c84ee99ef22bd67b96dbd7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d5a991975d114031a5b31d8e01d3c4d0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d5aa7edea13e4724ab04eb7f19086ffc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d5b0b225d4c04712944e05c938b03155": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_b78f7e9ceaa443849ed087d5205b4547",
"placeholder": "output filename",
"style": "IPY_MODEL_4ff118a8d69744d99cdbf87e1f0c2438"
}
},
"d5b28ec59a99482b82e4f3f2ee3e81d0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d5b3736de75b4ba4b44a37cf8fa49949": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d5b54cd30f8b4130abbffbc5a6380c57": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"d5b9fd35dc6441f5a8d7c12a51f1c23d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_8b78fc7ba5f945a1a0fde8db4cd63134",
"IPY_MODEL_4ab566847c39469ebd9de0cc1beecea6"
],
"layout": "IPY_MODEL_7af8c1ee1442472dbe9364cde6b8259d"
}
},
"d5ca8a6aca224cd9a3bab86c21764a52": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d5cedd766a5749dc8dde220b0fa5e442": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d5d73349e436469fa48dcd0d44fd88eb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_03cfd651a6b2499eb47271b8142d79a2",
"IPY_MODEL_7f147d10a04c4ba7be93e04a6f65d660",
"IPY_MODEL_8e900f23951b4be4a8e9bd13f2fd8430"
],
"layout": "IPY_MODEL_b64dcfc441ef46c48d99e06909704b3d"
}
},
"d5de2e0e93064a1ea9bab1fe0daa5eb4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d5e30e5e6f8c46fba255e5e75fa5c15c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d5e85c4e73214ceab65278879beaf471": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"d5ea3cdf8d92459abc1b621f900dbb39": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"ISO/Iso_Iteration_7_model_5_00e-03",
"ISO/Iso_Iteration_7_model_1_50e-02",
"ISO/Iso_Iteration_7_model_2_50e-03",
"ISO/Iso_Iteration_7_model_1_00e-02",
"ISO/Iso_Iteration_7_model_2_00e-02",
"Ore/39_Ore_Callinan",
"Ore/38_Ore_Dan_Owens",
"Ore/40_Ore_FlinFlon",
"CDI/COND_surface",
"CDI/COND[8]_surface",
"CDI/COND[18]_surface",
"CDI/COND[3]_surface",
"CDI/COND[13]_surface",
"CDI/CDI_",
"Workspace/InterpGrid",
"Workspace/Inversion_VTEM_Model",
"Workspace/InterpGrid",
"Workspace/CDI_VTEM_model",
"Workspace/Data_FEM_pseudo3D",
"Workspace/O2O_Interp_25m",
"Workspace/geochem",
"Workspace/Inversion_DIGHEM_Model",
"Workspace/InterpGrid",
"Workspace/Topography",
"Workspace/Data_TEM_pseudo3D",
"Workspace/Data_ZTEM",
"Workspace/Mesh",
"Workspace/InterpGrid"
],
"description": "Object",
"index": 0,
"layout": "IPY_MODEL_c30e6757f6a94ebab632ccf06cff7942",
"style": "IPY_MODEL_689e3e20462340e69e84bcae8623009f"
}
},
"d5f3be8c3199419ab732e8578089126c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d5f46da03d294b258b1e246929cf5a0b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d60504bb27644c8ea6130343166b0062": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"border": "solid"
}
},
"d61b4654b76d4313981e2e25c3e859ab": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_5e52572856254f9480556b7024e04cca",
"IPY_MODEL_3c20563f704b4ef697e6fd78b6f81f97",
"IPY_MODEL_4bd8a3daf2a94088bf003071a83ec567"
],
"layout": "IPY_MODEL_ddf40e83f84c4f6fb54470dd7ab567b1"
}
},
"d61c02b3bd8f4e8e9f71e3e7d5340130": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_c8fa6ff8e8c14924af2560c630f52705",
"style": "IPY_MODEL_3463851655dc4dca9b6cb4e8825f9627",
"value": false
}
},
"d6205d61d2454aa2b82e51dc781d86ee": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d620ab495b6044bebc999d74de05ff24": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d637e4805019476bb1b98d7ef537961b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d63e2241a4d94cf19e9e697c9c76cfeb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d645b900f1d54eb2aa134bd8a9e31c17": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d6691062bec34101b643753f8879bd96": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d67f99e70613422abd3fcb3af1f57ef3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"d68c00c60bff4e4d8fc3bb88dc9bdbf6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_dab7fca32f604f0fbb528b1362093ed3",
"IPY_MODEL_5a9e87c8ead14022b30b4cf24220140d",
"IPY_MODEL_e347fac34cfc4672bdcc3f3c568a7c83"
],
"layout": "IPY_MODEL_2ded96b474f0462290b47dd42bc9c773"
}
},
"d68c320803be43d7a49f514912ac8423": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_a3a5ff9899ec49edbfaf763e6b257e01",
"placeholder": "",
"style": "IPY_MODEL_84fcc91e4f8d482c87d333be5d9f9c1f",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"d69c4b147cd346dfb1b5aae7892b2291": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"d6aa725f001d4d63ab19e53ea430606a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d6b5c85fe47148b88e9804d06ad206d2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d6bc1a016cb0495fa7c46ea9a84275eb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d6c0dd0045614b89b4450959a1a75d16": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"d6c4269bebaa45de8a9048e99eded7cb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d6cc00880d6340a38ad302134736fc0f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_c48806e4a11e45bca257ff3d4547de11",
"style": "IPY_MODEL_4aea53bd85e54b5b885416b64463cb3c",
"value": "Topography"
}
},
"d6cc8db9bc8e42f6aa21c69b4ef6a856": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_830c652beac64540ac52434d14b6ac84",
"style": "IPY_MODEL_5d97fe92d5b04806a8f05c0fec3fda02"
}
},
"d6d09a9eb10b4a648e67c9d8f583cc42": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_a28f451006de4b77b0e406dcdd8fb17d",
"IPY_MODEL_6b3d9961a5ea4654bd0fb078ca3d53fe",
"IPY_MODEL_716d9f4662c44ba5ab6e4dc0eaef33e9",
"IPY_MODEL_7a68ca38dd794f0f91e804a8388a9212"
],
"layout": "IPY_MODEL_a6fd72515a55478586e179733e6c4014"
}
},
"d6d393662486486bad2b1d11781d5466": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d6d49ff13afb4253b68eb3dde19c00ab": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d6e003f6818a4110a97dd1533489e411": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"d6e427f688824147b43ee21573183484": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d6ea67bdbd6547e5a2132c758bd329d5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d6f3b092a27144889bf8b8c55ca78dc8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d711331ded6e4b1d88f41c74df00e1a6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d711f2450cbe49199588848443d097c6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d71c11e4755846739fe80bdb48e01c8a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_65dec8e6b7d54e1ebeaef6c57252a669",
"IPY_MODEL_fa80b3fef8c34273a99ccc41cb43dfcc",
"IPY_MODEL_d1f81526e15c449ea051dc83f9bb7f2a"
],
"layout": "IPY_MODEL_b4eafa794e69436cb6f4ef353ebfd9c6"
}
},
"d722a0fe46284047bb11d7460244c033": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"d72472962b854cc4ae6fb00701737708": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d72ef7c141444ca38144808182024c5c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_d4b5d7bd77354a539f0672fdfae332b5",
"IPY_MODEL_4248bfd08e0d4c4aa8eb318eb2b18bd9"
],
"layout": "IPY_MODEL_02312683842b468a991eeb1355a7a9f2"
}
},
"d7467481bff045b08d8890e0c6c108be": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d746f4fc21ea476c823ad1902c60f3b5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d749c5ce6ddd4f7ca2040cd652682180": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d7592318819e4d4f842746895de789fd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"d760b9d6f77c445ebd0b8de47ca4f6b1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"d769264ef6b54193adb883dd5eff7878": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d76968874b254665bce87f3280d3dc1a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_83bc00637ed641ddb85efc4f95face8f",
"style": "IPY_MODEL_d6b5c85fe47148b88e9804d06ad206d2"
}
},
"d76add184f1c4e93a8b4caac69510861": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_ab48917c7f83483fbdaa15573f55cfab",
"style": "IPY_MODEL_8c71ac675927496cb82e196d5d7c9599"
}
},
"d76b44229e894793b00c430619d6709e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d77362626b134ed489adfe932ead25db": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d7780f0e43c5443e92f563a038210abb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"d77f86972273459eaee8cfa6a3425171": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_da2e4172715b41988940bc9fd14989bd",
"IPY_MODEL_b08c11eac54445c5b32cd5c82ffd265f",
"IPY_MODEL_dace2d4eafeb44b0ba30f0f928e65e4f",
"IPY_MODEL_99f5c27a705e4cb98c444d5fed17906b"
],
"layout": "IPY_MODEL_6c4f10a050f343a18aa8eca38317a40c"
}
},
"d78085f4b7bf49479a8c01110f047914": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"d788bdccda6b4dad86155f626d17821e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d7894bbd070044e6af050f9b1f753495": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d78f0a4e64954572a5879e7ddab4d9d8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d79725849d79461eaa3c225e4a4860e9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d79cda6f71d4445db6bfb410a58dff09": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d7a64909a4e24f98a0978f843e75b4a2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d7ba6bfd4ae9484ca74ec4e4bca2bc99": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d7c8516be53f48d1ac0d52c62c49eb6d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_329c9609274d4d9eba58f6010fb663ec",
"IPY_MODEL_01eb974b1fa549fd88adc80c6dd4c9d7",
"IPY_MODEL_e3e05e90c96b4947a3c250aa29e3324b"
],
"layout": "IPY_MODEL_8348700ac3c3414d946d0c17648895c6"
}
},
"d7d303be28294c8ab4fd71157771c3a4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d7dece0a87f94d8a984a392abd957f47": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d7f145a111b94c358209464fde859b44": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"d7f7b1378fdf4bb585f1e3a1de7c292a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d8085e6b69c947718f885a05430f2d7e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Inclination (d.dd)",
"layout": "IPY_MODEL_e4bc949c58204b569a11d3a57ecacffe",
"step": null,
"style": "IPY_MODEL_0ea265a1bb1d47b2850b4c75539a9d81",
"value": 79
}
},
"d80dadc9d92c47d5af28a04e3ef194d0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_62d77f1f2bd34d34bcad3679460b07e5",
"style": "IPY_MODEL_c6e136ae67c945c9a069efbc85fd1f93"
}
},
"d81f99f6ae174956a940eb22b109fbfc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d82d3f0d00754483a02a1e3f1e34f795": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d83c113a86404ca3b8a6827324522fac": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d83ef761ae364c648289eff0ec8e827e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d83fb98df3e5495b92bd6e806f30d907": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d84569cefa5c431ba8788d11f66e27f4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"d85385969ada469b9f7bc0091d03ccd7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d853e4906c0b43a6a9dada5afd5c1fcc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d8615d8c069b48e694e23dc33adf9d75": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_6a0abd79fbec4faa878087bb404d86d8",
"style": "IPY_MODEL_61a4b5d9c63d4f118750509b6394ec6f"
}
},
"d8646e8ba53b43c6b4335e88effda6ef": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d86c90177ab2436c94d6ede4132aced8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_f8e2f3b3e3ab4b809fccacc269b32149",
"IPY_MODEL_c5cf51eda3634c35a2c25d50cdcfecbc"
],
"layout": "IPY_MODEL_de4036bc153044f2b0fc2677d1d900ff"
}
},
"d87b4b40e54041d8b068f2a44de62a51": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d87df37dc7bd4395bbb91f15ca23b98d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_cec3b25b58b74ae5b6b9f0a2b8f6d6ed",
"style": "IPY_MODEL_605e01c20f9f430ca0adf3fa23a48b1b",
"tooltip": "Run computation"
}
},
"d881d454a8a14113b94150e6d644e020": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"d88b3b283d4e42e092afdba7109c209c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"d891fdaea9dc4b469289b9f269450dc0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"d8bb741e2e1e45a5bac39db98de9889b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"d8be4e99eb3f494fae187cba6efe45a5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d8bfad1a9b7040fc8a01e27f53bd1452": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d8c84a506d9544229ecb9aaee012b605": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d8ca03cf253e4af59e372356ca1e0a89": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_de2fe9df952145c8a3e626e7fc53fd66",
"IPY_MODEL_0f8e474db9904d1fb712c3fe1f705a04"
],
"layout": "IPY_MODEL_9bc1647eda904add8e32c6d79ea764a3"
}
},
"d8d9c9c5a3b542a1aab006d97db11eb3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"visibility": "hidden"
}
},
"d8db56aea07e4ce5ae78edd9565b425a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d8e66f13db6a4fada8449cf356baea11": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_73553ce5e8534800b0d154cf487a3abf",
"IPY_MODEL_3546a479ebff40c19eb910ff7cbc992e",
"IPY_MODEL_d8085e6b69c947718f885a05430f2d7e",
"IPY_MODEL_039fe55e88d240f3a6abe61fbb084151"
],
"layout": "IPY_MODEL_2cfcdd8e85dc49fbad98b5161e4805f0"
}
},
"d8e7417dae66497dbcc80fde571f3d14": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d8e80be83e86410ca382430e5db03a37": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_9e926e078ee74c2aab4cd21f15638256",
"style": "IPY_MODEL_349ad99f24c441e79c40d3d4a24300a9",
"value": "Uncertainties"
}
},
"d8f1fca7eb384391a795a65fa7433421": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_da262041dad940b88e7483a0b11da25a",
"IPY_MODEL_7332535fd201495b83671d4a266f9894"
],
"layout": "IPY_MODEL_fe372d109a5441108c0fdd09d474b94a"
}
},
"d8fdb3b83bf14364aeb6cd5bd11265b1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d8fe3aab91bf4aa793f8a69fe2188da7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"d904b254c7af4db1978350ea9d64055b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d912b8266b68405aa5f30787b0e50f89": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 SimPEG_PFInversion",
"📁 Temp"
],
"index": null,
"layout": "IPY_MODEL_7ad595fb3dad4133b05030c64583287a",
"rows": 8,
"style": "IPY_MODEL_d78f0a4e64954572a5879e7ddab4d9d8"
}
},
"d915d6b2da4b4b8caf052e2a82895bd5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"d92467aa71b743f68f606705e8a729c7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_68a239c7a7a34f1fb8348303c5f5bb69",
"IPY_MODEL_7ea3a8118d254accb45ad147859542eb"
],
"layout": "IPY_MODEL_6cbcaafee55e48bc89495c38d143d25d"
}
},
"d927255786b24dada6b68534eaa6489b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d9280bad7596493c969a3eb725f4b697": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d9297603109c41c89fa1a2dc0d5cd2bc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d92ced59e550461da6f377c53d0e03a7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_372378d4f4ba475ca74468f4d98048ba",
"placeholder": "",
"style": "IPY_MODEL_cc5a53e841394a7b80a13cfbe6794dd9",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"d931bda232d642d4a194c3238e536028": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d937d2e4dc8f43bfaae5af5792227bc2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"d944460832114a748f62694b9705ba72": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d94578954cb845efbf77e13a16f18a88": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d94899e6d7744b48b0b3ab805aaaf3f4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"d9501def4cce41ecaff2bbb582faf90d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_97b92511f278462b8ba9226c255386ce",
"style": "IPY_MODEL_5f6e32c2e3c742dcb373134c5070de4e"
}
},
"d963479674ca4e6ba70e42f9b3eb05cc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_8b654d25d9bd4202ad51982a314dd8b7",
"style": "IPY_MODEL_eaa35cd6dec54696a745283415550c26"
}
},
"d966c6cfc8ec4947ab3064e63c840ce3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d9694364bcf44db194008af5959a9816": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"d971c5620886421e867fdba7d6983109": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 Temp",
"📁 monitored",
"📁 uijson",
"FlinFlon - Copy.geoh5",
"FlinFlon.geoh5",
"FlinFlon.omf",
"FlinFlon_dcip.geoh5",
"FlinFlon_natural_sources.geoh5",
"FlinFlon_tem.geoh5",
"FlinFlon_test.geoh5",
"MtDore_TMI.geoh5",
"bug_mre.geoh5",
"geoh5_to_omf.py",
"new_data - Copy.geoh5",
"new_data.geoh5",
"omf_to_geoh5.py",
"test_file_2.omf"
],
"index": 5,
"layout": "IPY_MODEL_6bd85c4a406f46b3920465d07a93bcff",
"rows": 8,
"style": "IPY_MODEL_0885e5b0d18748808a8ee6dd411fcbbb"
}
},
"d9733476325e4c109a088f40d1f1f325": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_05ae573a7b444dbd8dbdb15d4426fe64",
"style": "IPY_MODEL_91f62052d98c4966a9e88a7d65c51c96",
"value": "Save to:"
}
},
"d9737f3fafcb4a84969848fe99698fa6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d980bd1e89624496a7706396d8d923da": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_ac64b7f06cdb46f39d1b9585584015ca",
"IPY_MODEL_8514340da024419ba4bfbbe6c79e3d26"
],
"layout": "IPY_MODEL_6c36dc3fe8ac4fd59894176e177c0726"
}
},
"d982de08d9f54248a51f49ff0ce3f56f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d989b867d159434fa89fad4e3173d867": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d991c34c13b5480eb9e2d8d342ffcc26": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d99304fa198b4df2926031c890e06b5c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_b885aa9d02ea4c28b4812dd43d78bda3",
"style": "IPY_MODEL_33f8e0cfa7a64b9d852cb4cad7d36be5",
"value": "Data Count: 418"
}
},
"d9a186a376904b0b8cdbbc3f3664e25d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_d61c02b3bd8f4e8e9f71e3e7d5340130",
"IPY_MODEL_27c534325d6940b3824363d9a76c9c47"
],
"layout": "IPY_MODEL_03117fea1044492e9a4ba4c9be56217e"
}
},
"d9b08e04c2794c97bfd12a146e1bb9dd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d9b10dcc9d2b495ab3121d079e895404": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d9b2e9a36dce435fa1e23595afae7047": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d9b632942819484b9bf922572dce3a30": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_acd269be38aa45b0aa422ec682032f28",
"IPY_MODEL_2e5e2785a7be4775b0987cb477ba7518",
"IPY_MODEL_63d29837b42a481e91f089228683c6d5"
],
"layout": "IPY_MODEL_3dbcd7010919416e889b2db8384881e0"
}
},
"d9b65537eff34af2b2a7947c08cb81f1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_6800fafb364e400aaebcfb1e0d0e27ce",
"style": "IPY_MODEL_baa1c9898c5b4080a53c64e040caf243"
}
},
"d9ba3e8ad04e4ef8b0369e2c4af93ff8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"d9d8554aff3e472093974bdda2abffed": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d9e496cf77f34b54aae4396077d83492": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"Model",
"Constant",
"None"
],
"index": 2,
"layout": "IPY_MODEL_4e4696c08f2d4750ba63b61e874282cc",
"style": "IPY_MODEL_7e81a596ad8046578109807b063dcb15"
}
},
"d9ee23c8068447759dc3bfdfecf6bdf5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d9f3854b6889499db775656f32356a47": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"border": "solid"
}
},
"d9f91b464db64396bd7366884884788d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d9fcea0c99cc4301b70c59129118974f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"da15f3c1ce9e4d4881fe3ec6b8f7b568": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"da1b42ab2ad34d9f9c2150fbd4256ef6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_13a73177973e48aa8a29e469a3cf10a1",
"placeholder": "output filename",
"style": "IPY_MODEL_1b5a56760c644d97879bb5326b28f9dc",
"value": "FlinFlon.geoh5"
}
},
"da222917054144bd924df3fad5b59b1a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"da262041dad940b88e7483a0b11da25a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_cbd7f21b36d7459cb59e92ea441fa952",
"style": "IPY_MODEL_00928bb7972743b48f4fc7b01a244589",
"value": false
}
},
"da2e4172715b41988940bc9fd14989bd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_f2ea8d815e9a45d084b8e7a5096e867d",
"style": "IPY_MODEL_3ef4774c524d43b8a895431c8dbb0814",
"value": false
}
},
"da31d7d1ac9b489c9e9e0c3264da86cb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"da3bd60513b7497faaee9bf118be96e5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"da3d329ad71745149c165570f3bd21fb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"da420691afbc44dcacaaf0814b6f35f9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"da42c571531641feac1b6f09d6e79664": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"da4b0342132d4da9815819f352bf69c8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"da4c11c089d64d1a9ad7233b7dad9db5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"da67e6e50ba1437aa14424f0065ffc35": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"da6c16ba769d4c52ac881fd5dc77a15f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"da6e425f59e24a8fb1f2d79d0068fb36": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"da7f9829651a450789ccf95226c60dce": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"da8093b6eb5c49be80bc6e3d468d79b4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"da8a7c9edf764f84beefe91f70d838fc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"da8e8af3507f4c858be3a40a7b60943b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"da8ef4c587b94faaac2cea0bc1bbf1e5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Vertical offset (+ve up)",
"layout": "IPY_MODEL_bf2f90699e6b425c85d86088cefa87a7",
"step": null,
"style": "IPY_MODEL_2c24680317424b4ab499bfed11ff870c"
}
},
"da9e7ecf271d4b9c90c79eeade6338b8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_8a6e4015bf184fb4afb4c1e1fa4a62a8",
"style": "IPY_MODEL_3a7d55e599d84b539f7225b56e87d43d"
}
},
"dab7fca32f604f0fbb528b1362093ed3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_116d0e979d6440d7bc6aa98b97622a2f",
"style": "IPY_MODEL_34826dacecd34cc7b990b133d3051612"
}
},
"dab84744fdb64eb98e100bb683b9b8bc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"daba4106c69d4fbfb39fc453803ec370": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_bad714010c2146efbd274fc28a4fab34"
],
"layout": "IPY_MODEL_89caf35877464436acbce41804d62311"
}
},
"dac59f81359c44e4b2adaeab11f02dd9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_241266f9db8f4347aa10afdb82dfcb1c",
"IPY_MODEL_a8fd70c453474f20ad8ae27b5f431b68",
"IPY_MODEL_9f516673e3a149ae9c8a99c86f93d891"
],
"layout": "IPY_MODEL_5d5a322509124cb988986e51784a563e"
}
},
"dace2d4eafeb44b0ba30f0f928e65e4f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_7472d0460d8345daaf5e1eec9e9fcbbb",
"style": "IPY_MODEL_706ca36806a042a2a245ff84466f89c9",
"value": "Uncertainties"
}
},
"dad33488a3d7409688b845308f9802f6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"dadafbf2042a4b34851007f924573394": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"dadbd07ea26d4f579cb7312b7ec8a448": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_4d9f059a5d674db2a4c537664de894dc",
"step": null,
"style": "IPY_MODEL_7749e471939c4f3c8439efcbd0e2ead3",
"value": 1
}
},
"dade9208e6b0444ba238f2f3f060ff56": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"dae3fc482b7a467f8fde89d6c7c22fc3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"daea71361fd24820824d55da912db0ad": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_5ade6c1032894c2b971f8461e98737c0",
"IPY_MODEL_4a94666a41ce492cb9143f58b2adecfb"
],
"layout": "IPY_MODEL_500691897efc48de86f3392e64298991"
}
},
"daeb760e83ec4343b805eb03aeb9dfaa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"daedff73a42948eb8ec971521b866850": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"daeea7582787473fb8c684a542d967d7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"daf377387a59406e940efc0160ec4915": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"G:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"D:\\"
],
"index": 0,
"layout": "IPY_MODEL_50eb14cf24a44be6a3fc2fdb10d261f7",
"style": "IPY_MODEL_d853e4906c0b43a6a9dada5afd5c1fcc"
}
},
"daf4415522fb4d289fdb9c57aa6eea1b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"db008ae5837d4dcf9781ff86619a9867": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_da3bd60513b7497faaee9bf118be96e5",
"style": "IPY_MODEL_1a2473678dfe45a1a14651a30b9f69e2"
}
},
"db0282c48a364e0bbe4e941e6861e3c1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_894d6e5885e0446eb266faf5eb21a1ee",
"IPY_MODEL_c09c35e1627f4f32989c9ac7a080497f"
],
"layout": "IPY_MODEL_05ff304ffbd743f08f776ebf38c19ea6"
}
},
"db0a797a0e3f4d40a5ea4e0152d3e258": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"db111329e03549509cf09745c7ac20ce": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatSliderModel",
"state": {
"continuous_update": false,
"description": "Width",
"layout": "IPY_MODEL_b17f4488f7ab417db18d1ba972cc62a9",
"max": 8802.607126275985,
"step": 10,
"style": "IPY_MODEL_a3d316312e0d4c2ea35b81fed46ffe54",
"value": 1000
}
},
"db116092fc1f4b92be09b45a6784582a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"db19329766f6451ea9e009921c745e08": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_524aa5c81ce1464c8b0e558e4f6265da"
],
"layout": "IPY_MODEL_304dc38a0b124aa6a1b48c0e86f300ee"
}
},
"db2151d0c1f3408899559a06d2aa794d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Workspace/Octree Mesh"
],
"description": "Object:",
"index": 1,
"layout": "IPY_MODEL_ffadd86d687e45a8843484697fea9bf9",
"style": "IPY_MODEL_0dcbd4a3c7434134bc1c070cf808421f"
}
},
"db27eb56d6604d0d92bbe29791795345": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_0d51408952b44e48b2e093a2f7e87357",
"step": null,
"style": "IPY_MODEL_5c85e4350cb9473987910ccefc7b0648",
"value": 1
}
},
"db2db342253b41119a538668a75d76b3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_5861bcba62254c5087981e72df328a3a",
"style": "IPY_MODEL_8c72d7c982284d34be395aeb18d175ba"
}
},
"db2e5ee55900481696663e27f9c486cf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"db325a9cf8fb4fa194bd0b1e2340d93f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_918d0679baea4ce9892f185ddcf1b70d",
"placeholder": "",
"style": "IPY_MODEL_8345dfdfeb6d4588ac85259b038f4ead",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"db3819c33a154cae88f69f49a66c80ae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"db398a70e5f2420182c838527353629c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"db54e7ff942e4d67857f87b6e7d6decf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"db5bb11dac0d405aa0ea6d871cf66b8e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"db6261732a474cf6b824daa5ded40a60": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"db6776900e304bd8b8254cdc0c16e798": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"db79b818d03243189a694b3bdfcc914c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "dx (+East)",
"layout": "IPY_MODEL_7ba0a6684ed64b4da4105bee13ae85a3",
"step": null,
"style": "IPY_MODEL_0ae25df45ea0411a9da0f9f23b1560c6"
}
},
"db820aa91e9941d8861fdff9a0277708": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"db8cfbf2f01a4c91a8c713e78bda254a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatSliderModel",
"state": {
"continuous_update": false,
"description": "Height",
"layout": "IPY_MODEL_ea67cbefdbde468385a0e04b58548d98",
"max": 13622.238002983107,
"orientation": "vertical",
"step": 10,
"style": "IPY_MODEL_18f8a8e6381b45ad87c11d0894d28dce",
"value": 1500
}
},
"dba1929a09304a4191b3d6b137892bef": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_7b5224a244134b6aae2d68a2b86db529",
"style": "IPY_MODEL_99993f9634ea48fb8a71552f431be7a3"
}
},
"dba3d34645964e5786e19d3bce8634c9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Values",
"index": null,
"layout": "IPY_MODEL_b8931b88bdcf4a38970e78787130a39e",
"style": "IPY_MODEL_105a1018d5bb48419ef7b88e9e216b58"
}
},
"dba6b4fb1bb74ecc9054f569fbfe3aa7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"dbaf53243e0b4a2aa53cf1c3bb3275a1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"dbb5bfc278b74807b78c3bbb4dd958fa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"dbbbf35a6f7a44dd822e8247d51075d0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_e589797288844ca494fbebdad638ef24",
"IPY_MODEL_90bf32c9e2d4455db8c4334d24f4621e"
],
"layout": "IPY_MODEL_ad5f65d8ed564c1aaee442e1f276bd74"
}
},
"dbce98e647b542a9a434e651cc9a0fbf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"description": "Save as:",
"layout": "IPY_MODEL_01d174f3a3b94915b2d3bd47e1b4533b",
"style": "IPY_MODEL_1dcc6040edce4d7681e318054561211e",
"value": "VectorInversion"
}
},
"dbd8037a966947148b8a94f46edb27f9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_7b98e899e9354b6c97f4036ee0c34921",
"IPY_MODEL_de09c38bb13746ecbffb79d236a034a9"
],
"layout": "IPY_MODEL_2777c6523c5f47838a5743225e6b576d"
}
},
"dbdf27d6525f4915b5ab15f61bb03622": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_59453d8522d14e5fb8eedf5b1764627f",
"IPY_MODEL_7c866f1f8d284437a95dabbee88297b5"
],
"layout": "IPY_MODEL_f39f1274bf494dee80326458eb139422"
}
},
"dbe28c60021641ed8a09a32a90debefe": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"dbe3635221ca40f4bdc75529dbd7f33f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Grid Resolution (m)",
"layout": "IPY_MODEL_d5202b02612e4d2fb6f0eff9f4f34ca6",
"step": null,
"style": "IPY_MODEL_3942e96684884e778f00ac12f76ba522",
"value": 50
}
},
"dbe511f97fbb4150881af38d15ce2b8d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"dbf4bd5611d446a9803ec2f1aa1f0af4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"dbf8d088814b4017bae203e2f8e1d86e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_6a782b8a1f79415182a7b82d6f77974a"
],
"layout": "IPY_MODEL_d28f8b4d2dc042ffaf45877b0877ec6c"
}
},
"dbfa8dbf736c4dd484e08aa957f47c77": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"description": "Zoom on selection",
"icon": "check",
"layout": "IPY_MODEL_d711f2450cbe49199588848443d097c6",
"style": "IPY_MODEL_af59a5d069c54adda2c920c12f36a9af",
"value": true
}
},
"dbfd1d7ab5904743bb6d9e21d869e69d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"dc0518a9b4644ab0802a390dc32ecef4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_f88f87149727499ea848415e35cda343",
"IPY_MODEL_78378bc073cb4125ab0ebc872b486d67"
],
"layout": "IPY_MODEL_ee8428a0e9314abd990d47ed8c16cb9b"
}
},
"dc2a1da1a5874301a0a3fe9a91ed7b1d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Values",
"index": null,
"layout": "IPY_MODEL_848c99d47a8d4f1886e26584a7d8b4ad",
"style": "IPY_MODEL_331753aa739c4b0ab50dce020debfe25"
}
},
"dc2c6e0dd2fc4d8e9feebbb7e3e9ad69": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"dc37fca7edb144088b475edeeeb2bb8d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_088618fb2b78453cb33fe05e1719b5e1"
],
"layout": "IPY_MODEL_c031807af33a41279bf762877abae3dc"
}
},
"dc3eab531b8f4c12906b58ebb42494e6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"dc46c5022a7540bfad6ce9fbf4e72019": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"dc4bd32b83f148e99089c56e3d87739a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_a2dbab519adc4057a0b1ccd1a54e6605",
"IPY_MODEL_0221cac79ae24b2ea886731145e5b5a3"
],
"layout": "IPY_MODEL_f36e21c2c8ec49ecae657c8b149f2326"
}
},
"dc524602de8f4349aa778c44808564cf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"dc5ffa30eda8464d89aa6bd5c3030680": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"dc6113148b5c42a69a619fbfed38e5a6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"dc684e5aa60a403f8ad79a21483cec8e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"dc6eee4ff9174559af5a91926b0931c4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"dc75af810b324be1ad7b59d4c86651ff": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"dc76e5316c4a4ffd90b422cb22375776": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"dc77734d1f4d408daaba2c4cb4ea399e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"dc81bf00cd7c4890bbda9e5450c4826f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_be745cd3dd2c41918d4a50748eac0a74",
"style": "IPY_MODEL_e975bbf21cfd40fa9373974a5aa1bb68"
}
},
"dc858ff1bff6494698162f98acea0729": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"dc893dd7e619400ab36ea16891f10ab2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_0d39340af29d4809bcea7d124518cee3",
"style": "IPY_MODEL_56933a6ef8cf429f977c60304cbd574b"
}
},
"dc8996d876924765b68bf033faebdcc3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_ce6cb67786e4456db641e1dea100348e",
"IPY_MODEL_096b5012c5c14195a5112384bfe9f525"
],
"layout": "IPY_MODEL_566a5c2adaa84f64a08d672c49625939"
}
},
"dc8c9cd1238a49feb8d4afb535703515": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_3157c3e7beda43c0ba59b7b73a9698dc",
"style": "IPY_MODEL_aab655210fc0497bab98fe3950384051"
}
},
"dc91809b7bd643c5917f6a7b345ccc2d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"dc9491973d8d4d71a53994c2ee02091f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_055464b1b27a49c88a15b1d2ec17885d",
"style": "IPY_MODEL_1dc10b92ad494a4eb686f7369be010d9",
"value": "inversion Parameters"
}
},
"dca1d034d2ad46398becf8e4fb77145c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"dca439bcdf0e42aea95b5e332e35aa2a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_13861f5c1cea4b719ce90fb1f5729d26",
"IPY_MODEL_27328a6217e348109ae4fcdfd635c71e"
],
"layout": "IPY_MODEL_49d31407db494e5aa6882d45d63c069d"
}
},
"dca4eacc13ec4a6f83bd29f8c2da47e1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"dca501337c6146638c33024fff91280e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_6a20e2e76a26465da234813eb25b8a23"
],
"layout": "IPY_MODEL_ceb8e0e904d34783a716a288ec98cae9"
}
},
"dca5ee99e27c4b21871670c50c47ac2b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"dca796802c7f4f2bbb77af64a44b4335": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"dca827d855c1453ba0ad2b876650bf06": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"dcb32a608ce149629c767f25dcd9238b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"dcb410a6974a46068327e83245d31f0c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 SimPEG_PFInversion",
"📁 Temp"
],
"index": null,
"layout": "IPY_MODEL_93c8ccee871e4cb396cbee063f613eaa",
"rows": 8,
"style": "IPY_MODEL_9c7da123ac5349608895328e8ce89fd7"
}
},
"dcbf76c4dfc04e479c744ca7442d4be8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_4d5e98eb650a41c7b5b39e298fbd3cd3",
"IPY_MODEL_578cccfac5174611945033f7f27a25a2",
"IPY_MODEL_254d05da2d6d4ec2a38fee0fc4a9d689",
"IPY_MODEL_edf487d0fdfd4ac59466ff7138bec601",
"IPY_MODEL_0f9f200f7da4416c85df85d26457ebf7",
"IPY_MODEL_9d91200dc7d64645bb36f24eeb439780",
"IPY_MODEL_62cddf074e7841ceb22b32e8589b5efd",
"IPY_MODEL_34a41f19fa29452eae891781b4c07f5c",
"IPY_MODEL_f09df2cdb3414ee18e97ae8833c51390",
"IPY_MODEL_820f7e0f20d2440589e60d974303e00d",
"IPY_MODEL_ec0a6722e9854709bdb133b85ab3935f",
"IPY_MODEL_111764515f7549939037f86da6dcb2bc"
],
"layout": "IPY_MODEL_eef8e6859f3545678ac105f1016e6a75"
}
},
"dcd59bed33704dd182c540757fe63ca8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"dce240583bb4458f84fbc1f3dcaeeb36": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"dce3fcc769d843aba8e7606279407673": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"dcea81aa364e4ca5820f2e2d07fea144": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"dced7e30f35745f7ba9c9fab122606c3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"dcf3553acd024cd0861c6e8fce1e354e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"dcf503ed607948ae87e92e3524f8ca48": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"dcf63b1b1bde464e985bd239ae9532c1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"dcf8ad576f1c4408851e25a49c025dda": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"dcfd37a840454e7fbfd53ca5d2ef3f6e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"dd0a32010fff4efa8e2ce0f557261c5e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"dd0ed87feef34d909d23b2b0aff789c3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_97a9ad8e25284fc4b0b74d9d31c22eb0",
"IPY_MODEL_4c2e6f8898294624aaab68d06d4acfdf",
"IPY_MODEL_c808b58d4d1845e5969bc905d3136149"
],
"layout": "IPY_MODEL_6946cec642c048439bb873a054b03991"
}
},
"dd2771d8453048848125ddbe73496547": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_6b7ab604c35f4e9cb94c4b48fd4f1172",
"style": "IPY_MODEL_02298b9bc9dc4b1eb0a4596cb5bb616b",
"value": "No topography"
}
},
"dd2e0cd7361d4a2a988d3eb4817086a0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_da8093b6eb5c49be80bc6e3d468d79b4",
"style": "IPY_MODEL_e1db457c1b504221837b3c2eee550dfe"
}
},
"dd3f190dd470441ba7a20ba25fd8eb54": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_f719737817444d55aeb693b390a21597",
"IPY_MODEL_973b5375dde3473eb049196cda7640a7",
"IPY_MODEL_8ddaf9acfd924b5880dd9342a65f8536"
],
"layout": "IPY_MODEL_eceea67a3145480a910c5f3adb3f18f3"
}
},
"dd3f66d79e2447abab0dceae81855e9e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"dd3f909f817b4d8e8a39facb65647e21": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"dd4d914f483b4b249fd04a84d6ec8a6c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_2d13f132cc174fff8044f0704a6b1557",
"style": "IPY_MODEL_7a8fe4b7d0064a9aa36783675c6ed4e4",
"value": "Monitoring folder"
}
},
"dd4da196064740b480538989583a6587": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"dd4fcdbcad9a470e8950366a5c0c3a7c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Vertical-gradient (z)",
"layout": "IPY_MODEL_39d14815d74847f89ba67114ad943bee",
"step": null,
"style": "IPY_MODEL_56116e705e2a43fdb2b187fff0622e7d",
"value": 1
}
},
"dd5ec78c4e0b4b6d81aa1e2a0a400097": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Values",
"index": null,
"layout": "IPY_MODEL_34a67f3ad6df4a8bafb784fb3fd59f9c",
"style": "IPY_MODEL_c280c782a2cd43f8939c4a4157803936"
}
},
"dd62fe3c7d654064b1c02ff94da99de5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"dd7619823db24a3596f35c1c2ce9133a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"dd8b58e802fe42d284a43883468c7d0c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"dd945a239dc646fb87836eae913a242c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"dd9ca6e84b1e4803b5ba4c61725c76a3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"dd9fd5d869014d8db8208977344a2b8d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_46ea9abedda54b07b7e481405194df64",
"placeholder": "",
"style": "IPY_MODEL_106621696c344535a3e0f20ec2ad2a16",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"dda7be4a00834048ad02fb2d48be8a54": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ddaa289c286c4b0e8b135eea72adfbae": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"ddb0ad3e541749f39af1f5358fcd99fd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_84d5b2a26e2f4efea227143e7bef719d",
"style": "IPY_MODEL_93c1a5adc73b4d0dad2bd32035df2994"
}
},
"ddb208058d4b44cba1ad64a63b4bc5b3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"layout": "IPY_MODEL_705aa546d0aa4119b6fd3378ca40c584",
"step": null,
"style": "IPY_MODEL_d4b6f231221e4523a130fb34deaedc4f",
"value": 2
}
},
"ddb7eaa44fed43ba963fe279a0fdf11b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_9e10fdb3ec5542c1b6437ec4054b3ba3",
"style": "IPY_MODEL_85d100c3bf7b4f36a4b7642a9d4c4a6b"
}
},
"ddc1cafaa9834beeb61212c4a4554c8d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"ddc553ef447047d0bfb149e2a14ab7e7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_a4c38f443ded4122aef45671584444dc",
"style": "IPY_MODEL_6769290a7a0b44429cbf32af46f5dd67",
"tooltip": "Run computation"
}
},
"ddc84e6ba68940ba83beebd952847465": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_2ebf0bbbdb314e9093f94d5b4568f2a1",
"IPY_MODEL_0089fbf658fe4c2fb0a957b5cfd393f0"
],
"layout": "IPY_MODEL_2443a2e8949d44a19f95c70056893391"
}
},
"ddcd7de3bb054a7dbe6bde4aa7b68806": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"dddb99e7a60b4fd5ae2ee689e1023567": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"dde45c0b7adb46bd96c0a83d231e4d1a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"dde5da6104c94a30998fe6a5896106d4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"ddf1396694244ff29123c2c02ad869ed": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_8cdb932884c2484ca0cfdf84aaafd20f",
"style": "IPY_MODEL_4c25b7f16db04355a8749ec532a9ea26"
}
},
"ddf40e83f84c4f6fb54470dd7ab567b1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"ddf6397a774846e19b547e9fc586c2a9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Units",
"layout": "IPY_MODEL_d8d9c9c5a3b542a1aab006d97db11eb3",
"step": null,
"style": "IPY_MODEL_1b0a1cf2906b4c6cb1c38e9e3e01d2a4"
}
},
"ddf89298f8a8480480e0a2041879dfb6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_fe27d29e985349b5b3d76e6169b6b7db",
"placeholder": "output filename",
"style": "IPY_MODEL_90a3fbbf3e844588a8440e47f29eea0b",
"value": "FlinFlon.geoh5"
}
},
"ddff767ee54e4c0982609cdae97caecb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"de0576271e2e4717bd667ef3391a19ed": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"de09c38bb13746ecbffb79d236a034a9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_6db12d73dfec406ca964293053647d75",
"IPY_MODEL_ecfbdb47ba0249e2805f107a71596c2b",
"IPY_MODEL_8e2e7cfffd5c4275a4b9a828f8e38dd5"
],
"layout": "IPY_MODEL_b6345bf68f7a4b2fab2c90dcc35b2a9d"
}
},
"de0d30f99aea44a0819ac7a42ec49ea3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"de0ff9feb6864248aeba34a201f89d0c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_0b289f3b41e54fbe8d5ac36300054b93",
"IPY_MODEL_4ce21b873cd943f98a68da1cb2e59d8c"
],
"layout": "IPY_MODEL_838f72ea0fcc438384df4686ea32c88d"
}
},
"de1014820f45453392b5f8dd9c10082e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_a93f0868c42e4e52afd9080cb622674f",
"IPY_MODEL_68ecba13e9054cb3bb5223bc17389ae1"
],
"layout": "IPY_MODEL_2e32e518406249f2a5d2298231cc81ef"
}
},
"de2283bf55914cceb18efd085990980b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_ec273506aa36481ba58764afa205ef9f",
"style": "IPY_MODEL_f563b845c27c46959aba5fb95c81e9e1",
"value": false
}
},
"de23675b3e6444ddbe1ad0e11107cd07": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_8ef470ebd142412ca344405195f13e9c",
"IPY_MODEL_8a76439f82de4cceb89a249365d0311e"
],
"layout": "IPY_MODEL_84d118c7d27a444f8c68cabba9101399"
}
},
"de236ffbfecf4ca78136583a09c45425": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_58dfce027a204061b02f644a6b54b329",
"style": "IPY_MODEL_1f580d97511348f38c92396e99bdd38c"
}
},
"de2fe9df952145c8a3e626e7fc53fd66": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Labels/Label3",
"Labels/Label1",
"Ore/39_Ore_Callinan",
"Ore/38_Ore_Dan_Owens",
"Ore/40_Ore_FlinFlon",
"Workspace/Inversion_VTEM_Model",
"Workspace/Gravity_Magnetics_drape60m",
"Workspace/CDI_VTEM_model",
"Workspace/Data_FEM_pseudo3D",
"Workspace/O2O_Interp_25m",
"Workspace/geochem",
"Workspace/Data",
"Workspace/Inversion_DIGHEM_Model",
"Workspace/Octree Mesh",
"Workspace/Topography",
"Workspace/Data_TEM_pseudo3D",
"Workspace/Data_ZTEM"
],
"description": "Object:",
"index": 15,
"layout": "IPY_MODEL_b6b0f6b5e3ec4666bc5fe8859939ab02",
"style": "IPY_MODEL_e39875db5a21438486164ee0d30eb0e9"
}
},
"de305b17f18d412f867688d64b9e5d39": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"de336add38ef4d07960acbf5af78c748": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"de33f052493d40babeeb1c785c03cf71": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"de4036bc153044f2b0fc2677d1d900ff": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"de4037361c56490faf67fbf18e2ae1cd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Ore/39_Ore_Callinan",
"Ore/38_Ore_Dan_Owens",
"Ore/40_Ore_FlinFlon",
"Workspace/Inversion_VTEM_Model",
"Workspace/CDI_VTEM_model",
"Workspace/Data_FEM_pseudo3D",
"Workspace/O2O_Interp_25m",
"Workspace/geochem",
"Workspace/Inversion_DIGHEM_Model",
"Workspace/Topography",
"Workspace/Data_TEM_pseudo3D",
"Workspace/Data_ZTEM",
"Workspace/Mesh"
],
"description": "Object",
"index": 0,
"layout": "IPY_MODEL_3927b84bfe1d4bc7aa5f4a2ec488e2ae",
"style": "IPY_MODEL_9927b3111c6a4315b3ccad854a47b2f8"
}
},
"de43e7805f004984847d1b72c8cbd830": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_7af8433230c44c21b5434fd90521fa65",
"style": "IPY_MODEL_8fc4647a9ff4473ab8921a27b3ee7db7",
"value": "Workspace"
}
},
"de46e0e0b4e043659eb25a1b8ffcd2a0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_088bf49cd2df42928587594ca3de4805",
"style": "IPY_MODEL_839f78fc18fe450eab1be4f17a61d8d1"
}
},
"de47dbe3a93f47a0a10409be37c07902": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"de48e5726a4c42d69b811c6cf49f65e1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_b7cd012e3eab417da2ed4551dcd07e88",
"IPY_MODEL_c435ad8c43a04db4aba405c762ddf0d4"
],
"layout": "IPY_MODEL_7aee08adcc8e419aaf02f4fbad5e3209"
}
},
"de4cf93298d64b75b96ffd9a0b3b388a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"de556b83bb0b4b7c9ca5b7c100260f6a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"de7578b3bfd84c2faa80bab9a3d8e068": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"de8e3874873043e5950b2370f49892ef": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"deb21787073d447f8e6a1bd7c70d418d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_ce3d19d56dc04e1aabb2a144edb2a27d",
"IPY_MODEL_7bcfa06d0cf94f2596655f7581ef5792"
],
"layout": "IPY_MODEL_014a653bbf274da6add5872903c201fc"
}
},
"dec88c17196c422ab9294acac94a706f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"dee79b9853a5425380b1ee36ac13729b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_d1daf90c040540ccb3a8cf950d364b2b"
],
"layout": "IPY_MODEL_21679e56fa164e5e81226d74e59ab0ed"
}
},
"def5f748fbf1442ea041a99f6c941857": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"df005c2b5a284b69b5dcc5afc641e272": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"df0cabaef03c4304ac61c4c8f10f0fc9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"df0e8ede66f04f09b0288eebe4cee432": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"df189b70b8904e978809edff22bf4462": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"df18a749bd0b408b99cfd6bd2ec1137b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"df225063db104c508cf339b760ef39ca": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"df3c4bdae75844a590648a9dfef4dde5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_1fd18450be294ee0aa759c4bdc35a2e0",
"style": "IPY_MODEL_ce598500a940464f8345ddfabaab2fa4"
}
},
"df402390be2c41fabc86ac5b2cccf1bb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_92d38be3ff764124adc828cb38e4e36b",
"style": "IPY_MODEL_6b71f180f5f3436f81d3ca31d6e267c0"
}
},
"df414f661c9f4110b4edd26b82ba0d17": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_414505b897014b59ae761fa85a9e684f",
"style": "IPY_MODEL_433da98bfbfc4c779c9642b8335358dc",
"value": "Reference Declination"
}
},
"df47793f4b1f4af8bf6b6e0a48020983": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"df4b7afd438b46fa9280fde555fc7c15": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"df58044ddcac44368c744f5f2dffdf35": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"df67c25428d143b6ae3f6117ab7d8f23": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"df70308072ad41e4b75e3e44d519ab0f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"df71fa43207c4062acb14d5a82b06169": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"df961c2e6b4a4e7396adf139e62e64fe": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"df9b2e70e3d2481db3e79cdf322e3ec6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_e4a728f1ee204a7bbb1cb08ce344e0e6",
"style": "IPY_MODEL_eb13704899684b0bb096bf559f46c0db"
}
},
"df9fbf0e0dc04091910a60ac407a810a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"dfaa99fae547429b84a6777efcd60976": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_b10a4c38b4bc4ca5a2bb8db64abd5b0b",
"style": "IPY_MODEL_ee8f958bfae04139bcfb1d7e0f0c5daa",
"tooltip": "Run computation"
}
},
"dfac689702524449886268e929b36d64": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"dfb8778626aa42a9af84217d6d6dbdb4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"dfba08e7c1a140e1963140b0d175311e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_6f5020031fb147c788352318c1042989"
],
"layout": "IPY_MODEL_caf09afb89da48d6be4d70051f26fda6"
}
},
"dfd1205c5fde45cdb29c273ade6e01f5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Degree",
"layout": "IPY_MODEL_bce047bd2e674b39a1a7e7f11ab9912b",
"step": null,
"style": "IPY_MODEL_0611da0958604f59a3b9a5515779a98c",
"value": 11
}
},
"dfd739de8c86499787abac273531f9b2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"dff8a3b592a9455caa5c7d0c99117540": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_59e87addd3c74e7a9be0d2ef876428be",
"IPY_MODEL_475b90cd4e1d4f75a3cbda163e02d74e"
],
"layout": "IPY_MODEL_7be9c114c2114689b6a74d434f9936a6"
}
},
"e0003ad8d52b453b8234b09350b48804": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_9c7aa1fb044346a3940e23fcee482154",
"placeholder": "output filename",
"style": "IPY_MODEL_1e42175f692946f7b835c180cf123041",
"value": "FlinFlon.geoh5"
}
},
"e00a85161a79423d9666f162210cf9f8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e00c0a269cd146388a8813e0fe67f7a2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"border": "solid"
}
},
"e00e033b8b2a42d985b1fe23e6807868": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e01649a11e7b4a09b96fcf36cfeadf4e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"e01e2c4d5c5c4c69bad0891901c9fc00": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_3c03bfce7e834cc2bb1ab6b3707aecaf",
"IPY_MODEL_42691bfb6f5f4ad3a3fdb2c46e921e72"
],
"layout": "IPY_MODEL_fb03dc87441c4a36841b516aa7016b47"
}
},
"e0205ed5933941b2a2ca535b6c955c1f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"e02376cab6eb46f6bbd01978de002d7c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e023fb618afc405abe60d47945bce8b9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e030bb91bfa8421892b18865f4d4b55d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e03413f669fd4d248c2016cb4fa421f4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e037c84fddd4489fb15857cf1b5ad258": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_b60ac0ca46864469ba51ff817ebd2827",
"IPY_MODEL_cebffcfde0194a3ebc65e16ea1145969",
"IPY_MODEL_67811940e3804f61b73c9b2188f195c8"
],
"layout": "IPY_MODEL_a456edc714b04e0d8996e0d586accaa2"
}
},
"e0394c9102af4219b1a22719ba4e156a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e051162d3419497da4f82e919c2ad80c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e0521e78924d4db790a45ef80dddff65": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e0552beb6a1c4e629a094a82ce6f8129": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_c2a799db10b747c1acd6e5f2cbf8aa43",
"style": "IPY_MODEL_a3a14ef6f6384fecb7e8bcaf335e7607"
}
},
"e05c2811933648d89573f55de1799bcb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e063272bbebb45bb82670191d82a470c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_6b3e127878e542fd87ee5c1240e3ec49",
"style": "IPY_MODEL_9917e90484734e27af4eb7da6b30b244"
}
},
"e07915d330694d07a53f9968689a1e4d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e07cb601d8684cd08a21b3f86d540a94": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_4720e26421364eb0acd91fd5081a7658"
],
"layout": "IPY_MODEL_3f5ec1790f484fa6ac7a0cd6b4bc600b"
}
},
"e08c3acc16e744adaf0a2a7d0d143a94": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"e09b30a3a3aa40eb8b0dfe8b525ade37": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e09b988c37674a149ebda8f910711a39": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e0a823d792254b428df583487c03810c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_4cfa9dd0204142cabdbb5305f99862b7",
"IPY_MODEL_b0b40af15d4d41fdaf4077f458c6594a",
"IPY_MODEL_a12a7bf0ac004c48bf4630f4180f38b3",
"IPY_MODEL_be26375676c64a25b036cc7627479c5c",
"IPY_MODEL_f81c35301cb74bec95be033d36ce8d5c"
],
"layout": "IPY_MODEL_ba24d42e9f7940058f109b75a25156a4"
}
},
"e0a8dd67c15f40d3be61cc0718844c3c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e0b23e7b4b714db88485520200d85330": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_88bd44ae1ca8406da4e5c0a8b93249e9",
"IPY_MODEL_f410b249a02241568d63528014c8b22e"
],
"layout": "IPY_MODEL_bd74886039fb45f9b219a45ee0b3ec88"
}
},
"e0b417ec2b1646209ae26fd271ddecd2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"e0cdbea509a9491c8b0afea64f5c4ce1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e0d2bd5fad5544ac832461613b1202ab": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_d1ec88954b8d40f39d910d5d62dffd89",
"IPY_MODEL_a2b40a44f71f493a8ce3f5240bfe96b3",
"IPY_MODEL_a8f4212a8b134410bfaa08eb4ec1a76e"
],
"layout": "IPY_MODEL_2ded96b474f0462290b47dd42bc9c773"
}
},
"e0e6183e25054798a99004ddde80784a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e0ed6281af324a29abac07cdf331ed5f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e1003a47725d4110a2c2b02a8a9315ac": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Values",
"index": null,
"layout": "IPY_MODEL_e03413f669fd4d248c2016cb4fa421f4",
"style": "IPY_MODEL_ec72356783514491af11929c5c067a19"
}
},
"e1066a35b44746d68b9a10a4adc183df": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"e1071f12da7d47de8a8c67f0013243ce": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"e114e308550744c4ac87f5a2cff01f77": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"e114fa2ec0ae4fffbb0bdf50ea845a82": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e11e64a6baf84150a5ea65358cefc470": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"e11ee821e61f4d01b89bfd7f30975dc3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e11f53e6f35f4745a4c88ddf236af64f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e12995dbe10e49f7940972bd2c28265e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"e12c6c247d6d4141a31f4d2f637905ca": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e12defbec8b54a38813aa322ee5d01b1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e13036f3160447e09961a69fbec7f6e7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_eea4708071f5488f91e520ec2ae0a3a4",
"IPY_MODEL_0d9ee005ff2041b38f1cfbe04a5f4d2b",
"IPY_MODEL_e5d0839d3f5e48e9a087070ada1ba48f"
],
"layout": "IPY_MODEL_5218b6fd9a134452927b46add2f0926e"
}
},
"e1437e6dc6bd4ca4a6a0d22d3e74b422": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e148a16eb3e34020859dcb28837c010c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_91f508d8b6594f5da3e0d8c51f02beff",
"style": "IPY_MODEL_6ba57b3e145a4cedab13864a319f6197"
}
},
"e14e806fddf344009ed0ae8eef581f6f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e14f4311175e45b996b84547c6334c21": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_51c577d3621e4289b7ce1f4addcbd69b",
"style": "IPY_MODEL_ddc1cafaa9834beeb61212c4a4554c8d"
}
},
"e1727a4027504532b19459737ca784e7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e17c8e82fac14f438f1fe9cc7533f17f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_55c425a5b01c4a14b551c7350db38c10",
"IPY_MODEL_57a95741428b42a6adaa4f747eabbabf"
],
"layout": "IPY_MODEL_560d4fdec4e24cdca4285ae5aafcd51d"
}
},
"e18930075f49419dba04dd1008a66eda": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"e18b2a2251334a178513a3718ecbc2ac": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"e1915a0468674d998d79fbc5517b1b29": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"e193e826c53d4ea68075d1b27c145d03": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"e19bcc6f06ba4e2e940ff4aa3a5b5e20": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_8bb1c73110194928ade2422067e7e653",
"style": "IPY_MODEL_dca796802c7f4f2bbb77af64a44b4335",
"value": "Starting effective susceptibility"
}
},
"e1b198a07839409f9bbb285056af355c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e1b1a0ade3c84d08b0f63aeeead1c419": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e1b39626705247fb982e6dabd71bd2a9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e1b50678ccd3447a9d36bd2f74a9b6e1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_69ad7026e7524785ae03cb70f51370ea",
"IPY_MODEL_03443c2bcc964aedb68a4ed8aebb40e8"
],
"layout": "IPY_MODEL_db5bb11dac0d405aa0ea6d871cf66b8e"
}
},
"e1c7645a12f741588bd51edae9289f7f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e1cf21dacfb24138bdb720b6e015e008": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e1d73d2e5e684dcebe295a8d1566ce5a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e1db457c1b504221837b3c2eee550dfe": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e1e0e1364e2947d59d7b46fca4422e81": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_8e903fc7a1d04953b07d414298239d61",
"style": "IPY_MODEL_fbfe47bb066b459b92ca5ee5e512ae0a"
}
},
"e1e562cb9711489daf74d4fc7fa2c9b7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e1e7df19fa9c4a708d013f05e617d4f1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e1f2a2a695bb42a1ade3e69cb976f3c1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e1f4ca28fa9848feae95286a94caea37": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e1f68581a41444f9b563fb520c579682": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e20cd8c7f0d14ffba84771b2eec665dd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "warning",
"description": "Write input",
"icon": "check",
"layout": "IPY_MODEL_24830f90f6c24de2af8c80755a80a340",
"style": "IPY_MODEL_ceab192c8dd2450f825c9d1d59c0d210"
}
},
"e20d48f727204c02b05150b222753567": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e20d7658dbc540bfa5110f0e76b3ec46": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_254ff1fb3f724a0599c01729c9323dc4",
"style": "IPY_MODEL_4f23540babef4e2da37a8934acb5112c"
}
},
"e223e3f3d8bf4b1ea60e6675029c9312": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e224ddc8a8ba4f95b246936cd4f9980a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e226b50bc18a4da1aa2167951d5999b0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e22d267e041c4318b6b73f98c49d9393": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_941d9917a1484adc9f07af1b279e74af",
"style": "IPY_MODEL_5d2f42d5df6a41129dc763af43a6dcfc",
"value": false
}
},
"e236b779eb84464c9c8c4b5bf763e497": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"e240cbe28f724966997747e651603030": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e2460568b8a14ac49b35be2d4466d04f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_ea088dee0c254e588fed5417558d41b6",
"style": "IPY_MODEL_39137bbdfabf4442ac1b37fdb3ae7124",
"value": "Uncertainties"
}
},
"e247d69f700e4259853b22f4d34c767b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_2317fc5bcda24e08be280ddacb845569",
"style": "IPY_MODEL_934d31ebbf434596bf05e8059ff06891"
}
},
"e251be2205834adeb83b7b024b2a296f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Values",
"index": null,
"layout": "IPY_MODEL_5e7c853497a347a58dbbb32f9e0dc539",
"style": "IPY_MODEL_322fee660a4b42c890d8164addd6ec2d"
}
},
"e25e059c93954716b4dfabb91a80609e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"e26f4d40b1c54d8cb169b24aa601d5d8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e27283800db344c8a2a77b019b87c05a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e2807b461ca84492a24dd711a335c0b9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e2872fe40c444ab3a96343a9f9eeaf32": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e28ba1c7557c4049b9d53a19d9156c18": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"e28c512d2fb341febcd383de03344251": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e299dccbc9dc4b1ab1a8071d4a1ea4a5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e29aa6220a9e45e69ef35a3b8c1c7bc4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e29e0ef2fef04fbd9aef36a5503b4140": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_8f00c8b2d0924188b5ac0b3189adba43",
"IPY_MODEL_5089f83519f14617b4105114aaaf9432",
"IPY_MODEL_02d3b614c2e347bda35829c6fb27f3f2"
],
"layout": "IPY_MODEL_2ded96b474f0462290b47dd42bc9c773"
}
},
"e2a0e92f68434da0a5e88f1c9e9bc804": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"e2a6b6d276394092b9620d99572acb09": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e2a70693bfad44ccbd42a9394a099995": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Colorbar",
"disabled": false,
"layout": "IPY_MODEL_f9fc041365dc424c9484900169fac87e",
"style": "IPY_MODEL_62dda6b68a444145958bc72034b92cb6",
"value": false
}
},
"e2a863e59b354c8c86246ad2c7466f4d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e2b0f21582224555be1d63b222c816a4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_02ed537cb5564c6fbd59612a553b0181",
"IPY_MODEL_2168a98c91b04bda8740f4b33f5518c7"
],
"layout": "IPY_MODEL_5a8dfd854a214586a65b7a86a6435bb9"
}
},
"e2bae9c8f72c40448f78d049c9f67087": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e2c0d05de5c54a6dbbd8dc216055f681": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"description": "Value (i.e. '<0' for no negatives)",
"layout": "IPY_MODEL_79d3132cea2f451eb80a3b340bdd1fdb",
"style": "IPY_MODEL_b9a3c593fe874791aa04c4482bc68e47"
}
},
"e2ee9cb08b2948afb3664365b94b6847": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"e2f00d54ea61442abff3c733bd4f0bae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_4df4f2bf4c1a4b229f38628148df3572",
"style": "IPY_MODEL_ef767b09b7f34c65a5d257bae9cd3042",
"value": false
}
},
"e2f063a4ab754cbd9828a3382d98765a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"e2f958daf93c4f8e8f81c8cb17bcea2f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_bf59487b634f497eb7c1adf6d0329ccc",
"placeholder": "output filename",
"style": "IPY_MODEL_aaee47c4866c4557b116e1dbe0b19e6f",
"value": "FlinFlon.geoh5"
}
},
"e2fc57ac18e24b5491157101f89ed6c8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e30155a97b7a492a8a3d9619a18eef16": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e301f41b9b6c42fcb58d0a044b583245": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e31a065d301c4a98a452dfca02824994": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"e31ab5c7e2154b73b62449d6030cf69f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_033350eee2b148888173268eb63ed7eb",
"IPY_MODEL_f84ad90256464215ab601a9375e7640c"
],
"layout": "IPY_MODEL_f7880cb70c264b3a8e70698a8cafad96"
}
},
"e31ac7fb401448ad9995d3e4672abe9e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"e32eb61447fa4111a1dcb0ab0ddb7b2f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_e3e074e084ee42539c77780a37c5162e",
"placeholder": "",
"style": "IPY_MODEL_3ee63f5b36644edcac294d2b7568a429",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"e3312a7d018c4e2e97ebc1b812a0c952": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"e3362eee4c22400aa8fcfa492ffa3a4e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_8fec414c6c81467cb984251367191b2f",
"style": "IPY_MODEL_ed3b17f6b7fc465da69786bf3b6cb6e9"
}
},
"e339faf8e31c4d139d43cc40358cc8eb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_3b0ba9e027684c4ca8c42d867e2eb1c8",
"IPY_MODEL_6a342a3231d84ecfbf43022b3f100fa8",
"IPY_MODEL_e6f5aec5819749fc9f2f914c83c4a5ce"
],
"layout": "IPY_MODEL_adad10d2f99f4d53931036db532a314b"
}
},
"e33ef765351c4776ab97e589cc70ce48": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e343eca40e41446d88a114457ac12610": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e347fac34cfc4672bdcc3f3c568a7c83": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_7a7d6a00f1bf44cf861fd8c64eb7ff56",
"IPY_MODEL_c4a0e040307b4029aa8fd66754383138",
"IPY_MODEL_f64de1c4676d459bb3dc13dfb62f2ea9"
],
"layout": "IPY_MODEL_1649a0b08c2247dd841105346ac8444a"
}
},
"e348b90314fe43bd95d3b1dc60e90dd8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e358b2ea2e3b429c8539c792138a09fd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_6bc486d5eb5b4145bae280397abbd33c",
"style": "IPY_MODEL_b112c64d45704066b4bd220d588e4e9b"
}
},
"e36194bfb87845e6bd4a6d75a589e0bf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e36a909578044c2c91dd4464d70e30db": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e36e44d2ffe74c79b16f910dc21ede52": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e37440b489004e04a2e0f853389498fc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"e374bba8320c427fa363483d0fed34a9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"e3851e8cf00d4dcbb2b80fbdc22ece06": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e3880cbe391b4067a1b8e7e729434d7b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e3969d75001040e8bf4c1ab492322c38": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"e397283a958c4fc6b8ea5bd84b89fe1a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e39875db5a21438486164ee0d30eb0e9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e39e3196c795450bae51bd45b4cbb33f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"visibility": "hidden"
}
},
"e3a15f9d7b7845d68f1aea61a4f094bc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"e3a2ef4a58d544c18df751982f456adb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_fd1a5a50459b45df93fffa6bda71984b",
"IPY_MODEL_90e0e8a362354598be426c6346f3515b"
],
"layout": "IPY_MODEL_431ff53b948349caa8c825df722b7957"
}
},
"e3a5af6eb83e40b7ba4a235e7ac88da5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e3c2dafdc53f42f58beff77fb94e7375": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_7fa8061aaef046419d637d68a75c6f84",
"style": "IPY_MODEL_938cb5ea503d46e3b307079f57d2ee9c"
}
},
"e3d5fe9c77ff45189f26099c4fe60e21": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e3e05e90c96b4947a3c250aa29e3324b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 .."
],
"index": null,
"layout": "IPY_MODEL_b2f7ae5b98e9420d99d6fc056c01cfa2",
"rows": 8,
"style": "IPY_MODEL_91d533b2a4c345c4b4249dd7abf4dc7e"
}
},
"e3e074e084ee42539c77780a37c5162e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"e3ead5e689f949719e86972b0a1b66a9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_8d5c0ee7a511454c960e89592b57964b",
"IPY_MODEL_f7e7eb06fb6944c986b84a89a2e740fb",
"IPY_MODEL_06b82b41c35f4afca7d28af95151cf1d",
"IPY_MODEL_5bdf689f6e7c4d298dbf96987af75ae9"
],
"layout": "IPY_MODEL_b04b05b1f84c45358f7bcb50ca089425"
}
},
"e3ef6c42c75343228db4c52fa69fd952": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"e40d592d36434db0806d8f26ddac1c96": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e40de32b0eb74ec28fe0a93da5aff7d5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e415bc5358de499b86dd32c0325fd256": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"description": "Value (i.e. '<0' for no negatives)",
"layout": "IPY_MODEL_44f60a95189a445d8203abf0ecc5a6dc",
"style": "IPY_MODEL_f815ab0dcd274fc7a699b8fad10b2a29"
}
},
"e428a85ad4ae4c53b3179b8fe79522cc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e42f8a46876042ff965583d17cf9abc5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"e43dcc2e0eab4a5eaf309215a41682e1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e43f9136b9f34e20ae48af70e7ec8f20": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"e4476a0a32df42819477ccc5a64ec03f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"description": "Value (i.e. '<0' for no negatives)",
"layout": "IPY_MODEL_27061fb14a0f4fd79e5a2adf026a5234",
"style": "IPY_MODEL_fb8754194cff4077bdffe257aca8e66c"
}
},
"e44f664086984d76b2bd3efedf2f4fd5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_ce36d9b93e6f49e78bf1c800c96794f9",
"IPY_MODEL_773ee06541234535aaeb97dadb14dee4",
"IPY_MODEL_c74bf34e07a4467ebb405a2ffdfd5856"
],
"layout": "IPY_MODEL_2c9289c84a7d40469ecc9b06471114bb"
}
},
"e44f78eecdf44ac388fc5a59f98bc104": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"e461748c761f46038e137c475062b100": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"e47212d77aa94e26a412757509edd581": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e478d4fa10e2483ea8db7fdc1762aacd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_e5c3c34eeb1a41149e6542a9bd227ac2",
"IPY_MODEL_9b8ad57036524d5faf4f185a4074c9c1",
"IPY_MODEL_f2a0427d53d1439bad2852d7610887aa"
],
"layout": "IPY_MODEL_49820ee78ebb40f29cd2fdc9729eb68e"
}
},
"e47fb217801b4b028fa8e1f4bbce5b39": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e48241d9d7784d84bb38600fe7435691": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_b3d97f852b5440cda738e8d37ab35b24",
"style": "IPY_MODEL_0a8de3f6735041ccad9f9acfc78851ac",
"value": "Save to:"
}
},
"e48c7934a7914bd19f672be617caca96": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_fbf0ab285d5343b3af853064200e7682",
"style": "IPY_MODEL_fb853d74c55541a5bf54f733d55b0043",
"value": "Uncertainties"
}
},
"e496dddc0bb74ecfbbeadfbbffd75072": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e4998b228655479cb23ef8cff09f7080": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_b4fbf245ec0b4bb4a5452e093035efa3",
"IPY_MODEL_e9c4f0db191248228121b1b015c358f3"
],
"layout": "IPY_MODEL_e6cafd83e0734420a53f1bd5737411b0"
}
},
"e4a728f1ee204a7bbb1cb08ce344e0e6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e4ae15b81e2d4a9fb77fd68c8f9cf28c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e4b3c9c2485446fea11b4e1a75bdf83f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_0cda8d03f168456c9638040bab72bfa6",
"style": "IPY_MODEL_add942153eb441a3b9722d700cdafd7f"
}
},
"e4b5e06a08a44316b04904954412b771": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e4ba991edb524c8b99b6a37347e2f0f8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e4bc949c58204b569a11d3a57ecacffe": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e4c8fdd93c974fe0a0f12cbc24875d2a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_63fcb7c111864ee18e8a1ddb07f5a334",
"placeholder": "output filename",
"style": "IPY_MODEL_6097d766a37f440c97a478c9d87d7a9f",
"value": "FlinFlon.geoh5"
}
},
"e4d88de288ee42ce83785f6a172a2cad": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_b87d3986968f439db34652bd3f1292a8",
"placeholder": "output filename",
"style": "IPY_MODEL_fb39d60e5c974d7ea47bde414c86efbb"
}
},
"e4d8aaef64a4413da294a0c638173d26": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e4e0d0d59c544d168492be3013b9fb9d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"e4ec2deac8314b5d8dc94d6063aef45b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_4266871a11fe45c7a02ad39fbe80eeb3",
"style": "IPY_MODEL_148e536dae1246aba13ef1b4eb1b4ed2"
}
},
"e4ee64d271be4f14b66195e7bff44b33": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"e4f645a5696449f99f51d1fca7d02490": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_27ffe4dddaac42b6bf59b551a7b721da",
"style": "IPY_MODEL_5dfc155a31504cbdacc2e854c5926422"
}
},
"e5063d5058754339b92ad82b8578f905": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e50712902f5c402f8882ef1e7018ecc4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e51c9b7fe0a64af39f83559a8776a09b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_c4926a98c3ff460e9cbff6c4a8e6f473",
"style": "IPY_MODEL_48efc8b166bc49fca58809fc83475775"
}
},
"e520b14a801545cca1a7ba9420c313d4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_a99e272c01364da8be9beffccfe6fadf",
"style": "IPY_MODEL_55d868a6c18c42d680e5d9346495d8e1"
}
},
"e528bd26ee2d444bb6c4ffa142762287": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e53c319c92e543f984fff82de2d7c1f8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e54b9bcf51b247b6b31d8830ad9caf8a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e55dd46956a74e519ae30ea53789341a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e585602ebaea4c78a6e5cf50312f99f5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_9966c62e7ec94b308b81b7d2eb08f3dc",
"IPY_MODEL_b6eb92fbb84c4fa583735237445afbff",
"IPY_MODEL_e79c9a576a8f4647913b861f3cc04769",
"IPY_MODEL_5c3b2d6f7d7c47d7a3a62a6dc49c1f87",
"IPY_MODEL_33e3577aea784d84a946152e7eaadf3c",
"IPY_MODEL_ab11babaf9f94d73a4e4ac1bb8e14fc2"
],
"layout": "IPY_MODEL_27765a108b6d4942b12cbb67ff69abd3"
}
},
"e587a725f75147369621a97ada3478dd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_e32eb61447fa4111a1dcb0ab0ddb7b2f"
],
"layout": "IPY_MODEL_717f667861b24460a00cdfe375ee3a43"
}
},
"e589797288844ca494fbebdad638ef24": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_b8147b2582e241caaaabd1ad52475b03",
"style": "IPY_MODEL_64e9996662f74e86a126b4ddef116321",
"value": "Workspace"
}
},
"e589b5ccbb8d48b38e63ece7d519f220": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e58bceec93fc4eae83d43bdea519ddeb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"e5a898cba8fe4d17b3b9ffe50b51de8e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"e5b2309d79c44d08b3dad3faa701f51e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e5b408576a294652a0cd76bd8834e11f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e5b72cafd3294b9e90ba312044717cb4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e5bb8a29984645ba85366b32cbf91565": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"e5bc830fb410410c95996cf8472cb089": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_4168d19806c2401c8bdfdc46d1970b2c",
"IPY_MODEL_83f3aefe527a440a853baa9a000be219",
"IPY_MODEL_fa366c1ade9d4ee89959195c6efac474"
],
"layout": "IPY_MODEL_24a2f51b403f4950b0c01e4b047d1730"
}
},
"e5c3c34eeb1a41149e6542a9bd227ac2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_bfb32a902cea491a97bcbb3da6cb8fe7",
"style": "IPY_MODEL_ea99f1dd72bf4994a7d24e284b0a9b09"
}
},
"e5c5be32b8a84a2fac134c0896082179": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e5c8f9a06aa04b5c96bd3733ec96bef6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"e5d0839d3f5e48e9a087070ada1ba48f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 Temp",
"📁 uijson",
"FlinFlon.geoh5",
"FlinFlon_dcip.geoh5",
"FlinFlon_dcip_v4.geoh5",
"FlinFlon_natural_sources.geoh5",
"FlinFlon_natural_sources_v4.geoh5",
"MtDore_TMI.geoh5"
],
"index": 3,
"layout": "IPY_MODEL_d51cb19f109c420581162f630a91308f",
"rows": 8,
"style": "IPY_MODEL_56cb30d33d224afbb7fdef9935fb2245"
}
},
"e5d8e2a3a11246cbae75af23bbdd5d59": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e5d9dda3020a48b5b65bdbcb42832959": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_21d0bc1cf55c46e3aaf9ec0cc8c6916d"
],
"layout": "IPY_MODEL_20bbfc1e11df4494952090198d35dc2e"
}
},
"e5eb246dafed4a93ae49a001e92aff28": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"e60b27fbdfdf4861966c51158733557c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e60bc0a9649445ff93517942fa8a7828": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_ce4df7717a4e488196e7e4ea66098cd2",
"style": "IPY_MODEL_3fea9d44d0774781bb10c9933306d296",
"value": false
}
},
"e60e779b2ad04096863594b2bf815edc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_080ab9f045494e9dbd15ba0df36da401",
"IPY_MODEL_a6731cfa09d04f37a0f65d03e9e521d7",
"IPY_MODEL_1adc0804993e4943b6e8247371b85dc1"
],
"layout": "IPY_MODEL_3a1bf0bb1a3f42dea58be20c771280bb"
}
},
"e617cce1e3fb41009bbe2b81c6763d1c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"G:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"D:\\"
],
"index": 0,
"layout": "IPY_MODEL_e37440b489004e04a2e0f853389498fc",
"style": "IPY_MODEL_c87906b16c2043ea98118fce5322643f"
}
},
"e61bb6018dff4074aed67d08307a90f4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_988d6151be544fd0b896d20806100a5a",
"IPY_MODEL_d71c11e4755846739fe80bdb48e01c8a",
"IPY_MODEL_77158451bd7a42a5a7989915e369203e"
],
"layout": "IPY_MODEL_24a2f51b403f4950b0c01e4b047d1730"
}
},
"e61eac0f4ecf4765a9d024fad180efcf": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e6231cc63e044e1a9c68691eb366f843": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"e63396308824480d97f13d3ef8fa6882": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_be6a95124e37443d95bd0a53974c2361",
"IPY_MODEL_010adb5f47a84c22ab09cf39c53752ee",
"IPY_MODEL_f412bb2ab54c46b19eb3e08e5d25ff32"
],
"layout": "IPY_MODEL_7f1d11fa4b6447578ba7fc7cd17bb175"
}
},
"e633c72697cb4c0ea54d0644eac8e5a9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Bxx",
"Airborne_Bxy",
"Airborne_Bxz",
"Airborne_Byy",
"Airborne_Byz",
"Airborne_Bzz",
"Airborne_Guv",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 0,
"layout": "IPY_MODEL_a6f19c5d422c410b9cb1fa0585df844e",
"style": "IPY_MODEL_be3f09e8f0b14457b49681fa0579a97b"
}
},
"e63d0c2f90a246a7ab664a7b98a44f89": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_9293995e870d42b2b1778aaec6a99129",
"IPY_MODEL_369dd40d238d4a1e8b0f407fecea049b"
],
"layout": "IPY_MODEL_7312a5e691d14175bacead17ec8ac283"
}
},
"e64274a7f2094dba99293781c55e9745": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"e653ff64a7d545359ded503b21dc7f1d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e662b39f319b461bb843000a75ef011b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_6cee97ce625647cf940cdb6017fbd5e3",
"placeholder": "",
"style": "IPY_MODEL_ad9222f471254c2aa509900dff1d034f",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"e666e768813645e794c2e55a3b6071d8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_fa9b574653f248a885e8cc1fded4612b",
"style": "IPY_MODEL_b4d04eafa3e54851bf7490488abcdf9b"
}
},
"e67bc752cfc749589ba011d9e7b1271b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"e67e445442e24cefb70346470a7c90cc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e67feea3aca843b0bf890f7588c930a7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e68943e5c25f44dab37cb565d977f294": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"e68b81ff1fae4ee08f071b578572e85c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e69555dc530c47c9a73df36d5ca25a1b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e69609cc58254918801aa4ed912df36b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "NS-gradient (y)",
"layout": "IPY_MODEL_5cf4c1f9ea0d4b5abf66bbabd5d28202",
"step": null,
"style": "IPY_MODEL_bae825c326f44e8490ae68c30b1d7554",
"value": 1
}
},
"e6aabaee22764e50afe8cfbc2f0ab293": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_318211d0a1c3424eb77c36014657eda4",
"IPY_MODEL_8975716cbee243f386311096a3b1ff15"
],
"layout": "IPY_MODEL_211a346517a24c369cb4b591f6e92432"
}
},
"e6ae913623c74fdeaed6e49a2af28a60": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e6b038dbbb30490691d1f4a9b916fd0d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_b799521c1db441aaa411c065bab0a398",
"style": "IPY_MODEL_5aebeb81abeb4bf9a9005321c115b2ed"
}
},
"e6b8f719f77f4adca9e72aeb759c13ac": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e6c73d7f59f34ce5994a6074f4aa9334": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e6cafd83e0734420a53f1bd5737411b0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e6d7c18376c748e1ae39b05e904931a2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_4faeae27024d4319bac35187209d026b",
"IPY_MODEL_5c35166130ef4b39a919814dc5382671",
"IPY_MODEL_b8f62ec63351495cabff22a22c05bb3d"
],
"layout": "IPY_MODEL_2ac7de9ae78a46989eabf265633d6450"
}
},
"e6e776f95e7d46b9b684c615bd30f4ed": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"e6ed328b40ec45f1a93a5e00108d9da3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 SimPEG_PFInversion",
"📁 Temp",
"📁 uijson",
"FlinFlon.geoh5",
"FlinFlon_dcip.geoh5",
"FlinFlon_natural_sources.geoh5",
"MtDore_TMI.geoh5",
"tem.geoh5",
"test_forward.ui.geoh5",
"test_forward.ui.json"
],
"index": 4,
"layout": "IPY_MODEL_0e5a1900bee44b4fb832ea5c190b922e",
"rows": 8,
"style": "IPY_MODEL_cb5647d23c464d298dd4eb96413188ab"
}
},
"e6f1455dac2e4d8d84486d69d1522b58": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"e6f5aec5819749fc9f2f914c83c4a5ce": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 .."
],
"index": null,
"layout": "IPY_MODEL_3889801660c34ef482c9c6c5842350ce",
"rows": 8,
"style": "IPY_MODEL_50bb9dde44e54ba58838bd68c44f3c5e"
}
},
"e6f5b79ce35f460e8f4a6e2e937740c2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e702a052ffb14cba98e00d2ba6768efd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e702e5b4998443a4b4444f898f1c7b5b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e704be7eb1a44c93b92245b3d2a60726": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"e70be5ce0fbf4b3d80dd0875b9949b83": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e70d5413d5ec43db8cb33789ea53c3d8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e7272625e9594bab93c3b6935474afbd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"e728d4846b47403fa7340943174f668e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_0ddccfd8c8bf4fd792baa92521ee7457",
"IPY_MODEL_24f0e1d4ffb84f72a4f8f44123b40c23",
"IPY_MODEL_4415a7f0ae9a4fcaa7196f6d2da4ff58"
],
"layout": "IPY_MODEL_24a2f51b403f4950b0c01e4b047d1730"
}
},
"e7303600eaab43fc8241fa41c5f4e627": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e7400bca464045a3bde7500fc158e5d7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"e742e30a8e47405987787e614fe4e0d5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e7481a9368aa49498c6067055a747f0e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"e7542c3b02ea4f6a85e058d3c2d6b063": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e7550ba2577340e2859df00d30e15380": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e7572e9953a2412cbbfcd26ce6e9db84": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"e7586cae76474a40876e3efc1837f607": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_e19bcc6f06ba4e2e940ff4aa3a5b5e20",
"IPY_MODEL_25437404f0b446fbb1248e1f5419e6fd"
],
"layout": "IPY_MODEL_6e394d4781d046f69249ebe8eb767a92"
}
},
"e75a380fe9344efc8c592ea32089096a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"e76d7ddfc14043949e67c0295cd1e490": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e76f2279fad74fdf811b52872d62555c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"ISO/Iso_Iteration_7_model_5_00e-03",
"ISO/Iso_Iteration_7_model_1_50e-02",
"ISO/Iso_Iteration_7_model_2_50e-03",
"ISO/Iso_Iteration_7_model_1_00e-02",
"ISO/Iso_Iteration_7_model_2_00e-02",
"Ore/39_Ore_Callinan",
"Ore/38_Ore_Dan_Owens",
"Ore/40_Ore_FlinFlon",
"CDI/COND_surface",
"CDI/COND[8]_surface",
"CDI/COND[18]_surface",
"CDI/COND[3]_surface",
"CDI/COND[13]_surface",
"CDI/CDI_",
"Workspace/InterpGrid",
"Workspace/Inversion_VTEM_Model",
"Workspace/InterpGrid",
"Workspace/CDI_VTEM_model",
"Workspace/Data_FEM_pseudo3D",
"Workspace/O2O_Interp_25m",
"Workspace/geochem",
"Workspace/Inversion_DIGHEM_Model",
"Workspace/InterpGrid",
"Workspace/Topography",
"Workspace/Data_TEM_pseudo3D",
"Workspace/Data_ZTEM",
"Workspace/Mesh",
"Workspace/InterpGrid"
],
"description": "Object",
"index": 0,
"layout": "IPY_MODEL_556e007646fc47d582041e606baba192",
"style": "IPY_MODEL_c1ecf301d50a4a9f8e999f0b6135a4b7"
}
},
"e772f522876545ce8b711114795b7712": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e77d065a911e4de6ab5c1786e7a74f4f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e77db73442a64af6b2663535d5c21444": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e77f0ea86a934ceba09b81972c552143": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_7e17b98ad1da467e8c59e62acb0473d6"
],
"layout": "IPY_MODEL_6e24d119236248f4925d4c828a3b5074"
}
},
"e7806f5263aa4659ac5dfc6550b005de": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e7810121b5ed4a84bab7e67bf1c63190": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e7966b5a2d484c14a3d46caf82c024ae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e79b4afa259248ada318976c9d6ded74": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"e79c9a576a8f4647913b861f3cc04769": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_4c5a1c54ac084f8aaa06e3c944383ba7",
"IPY_MODEL_fbda562bb8d640a0b2545905eb3b44b5"
],
"layout": "IPY_MODEL_3c8ff5c465dc4122b6ab6f85210a29e2"
}
},
"e7a07fa0b2e2442bb74ce792330b1893": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e7ac2b02afa64f7bb9e9e7dfe866191e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_436f29832d544e08a305fcc017373509",
"placeholder": "",
"style": "IPY_MODEL_98fafad43f7c46b4919607cd60cd1433",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"e7ba74e0782c4033b25acc6065a9c2db": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_611178ae28f346c3b251946d66e883ce",
"IPY_MODEL_c7fbd4e58c004333ab4900257d6a40bc",
"IPY_MODEL_e2460568b8a14ac49b35be2d4466d04f",
"IPY_MODEL_e01e2c4d5c5c4c69bad0891901c9fc00"
],
"layout": "IPY_MODEL_69f5eef9e54e4fe2b66e750799ef660e"
}
},
"e7c2450be492493381cde7ae3ad0082c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e7c723b97ccb4b5b853db5c872712d12": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Values",
"index": null,
"layout": "IPY_MODEL_be18e7c135314318b380c9fff3ba1d39",
"style": "IPY_MODEL_703d59a84b3b494b9039f32afb13fdfc"
}
},
"e7cddd47c4054fabaa39803a8613a971": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_f681361bc57942af84301d41f2da9f72",
"IPY_MODEL_2d5305d978b84f82ad9e3314a4eb3ec4",
"IPY_MODEL_fcdaa422265c4910afa32eefae0c4666"
],
"layout": "IPY_MODEL_24a2f51b403f4950b0c01e4b047d1730"
}
},
"e7cf6bf95d9f4068bc078f5d6c01477e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"e7cfa446a5f04435b2397ccb9593e168": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_7bb43f7e4d3a4380bb901691383814fe",
"style": "IPY_MODEL_da31d7d1ac9b489c9e9e0c3264da86cb",
"value": "Data Count: 0"
}
},
"e7d7a72a9e614b10973c5d92dc1450e2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"e7d83d87fccb4de29e98d98eaaf8abb4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"e7d999a595b84bf9bd3bf64206df5388": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e7e27cf8433a40f9a8731cba8e2580d0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e7f7bc0c3f0344c6b46d83324868b66b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e7f9b900ee6047938576ea6d6184fee3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"e7fb5d6b11bc4faeaaa2812afe471519": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e7fc82034f074cae93da49ae68fe1cd4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"e7feee8252854ae393af80718b87d767": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e806b75930614a5c994fcbdc45955574": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"e8141fe312394bdc8a442faf664cf138": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"e8160dd881f3421f9d9f1012293a5076": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"e8205f86f61443a99d5389fd4ce1fc2e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"e829013bcc4c4dadab712dc701308da2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e82de3dccb624cb884f53c0784c23144": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_4323100011234765831486c1153daff1",
"IPY_MODEL_8e1c1ca21e6c4d9aa7493720c09bb5a5",
"IPY_MODEL_46edaab643cb44f1b69e8f9f983e1814"
],
"layout": "IPY_MODEL_b6345bf68f7a4b2fab2c90dcc35b2a9d"
}
},
"e837d8adb9b247919b9d880e1cda5c2c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_22af25102c4b48e0ad02abe2700b6c3e",
"IPY_MODEL_5e9e532b9f6345b48472dc15dfa2e748"
],
"layout": "IPY_MODEL_4dab399ea1cd4ed798569dc6e5e899b4"
}
},
"e839c708836c474ca79ff9bd88e0cc94": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_2593e14858084ea09dfe5b4fa9169d30",
"IPY_MODEL_6b1fbb5102a64a86baca48a8aa50dfce",
"IPY_MODEL_d3a957cd6b2c48149d0f01c92b2165fd"
],
"layout": "IPY_MODEL_6946cec642c048439bb873a054b03991"
}
},
"e83a02395dad4a57824938961aa83a30": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e83a75d08d604b69958c8ee51b29698f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"e865cd5eb00a4354b62a7cca9b303491": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_d0486adb8bc149a087311b37ff428550",
"IPY_MODEL_377538e36e264867970daf6654d1208f"
],
"layout": "IPY_MODEL_f12361e52ac24b92a265c16ffaca8107"
}
},
"e86a404f16ea42918a86ce885af1991c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"e86d2a81f55341c7b2a03a3d94174040": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_64a04ecd3a1a4cfdb05f7048468aac3e",
"IPY_MODEL_c77fb55c6db84c54a0d42ae996490ab5"
],
"layout": "IPY_MODEL_52981c9dfd244bb582b03571e06da928"
}
},
"e873d793cfb143e799278d6f5d28f003": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e8745e58a2cd43c989569f1b69374d59": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e88ead921c374a1c8a1aa7f441cc7b08": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_b1bd60bc13e049e48a86517b1bc1c5d9",
"IPY_MODEL_cf6825c5c11e4deda07b2aed2e80ae11"
],
"layout": "IPY_MODEL_61804c8cc8f740e08a13eb8cc0d2fdcc"
}
},
"e893c05a81ab4806b72beefd1310ab8c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"e89aa558bbd747468cee908e3bdcafac": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e8ba8786e68a4d37bb87be3b0ae0a521": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e8c54d63e02545fa914d2ea21adfe6ac": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e8d7126ea31541e694acdbfa050c89d2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e8d74fd5d1774586bb5dd4a7fde42de5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e8e39cfad4384137bdd99cba41708cdd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_441aa48bc60c416195243f572ec4d1e5",
"style": "IPY_MODEL_18d25b572d2643a68130ff050d949faa"
}
},
"e8e6efd2c80043cc9a11142c29e475d1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"e8e90f92a6b94e5388b5d0f46931bca4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_8eaa3f924699400eaec51921a755bf80",
"placeholder": "",
"style": "IPY_MODEL_86dc30190b084cbd87c4566185435139",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"e8f8a0c7adfc40c581310f47d2c3eb16": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"e91200ddb4f34de6aa067725e713e9fd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"description": "Save as:",
"layout": "IPY_MODEL_2acaee977a3f4170b2344fdb39f0e15a",
"style": "IPY_MODEL_8c709e71e18e4797bdb734d6f2c6b5d3",
"value": "VectorInversion"
}
},
"e91cd458e60d45d983e3afa6fda313df": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e91e377b4a05479baba18b1c230f5002": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e9242c69533f45fe8b631ba7434b53d1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_18f2b9d19be747c58e02742e2caa66ae",
"style": "IPY_MODEL_80ff50a401a540e988cc3b0778d03ab4",
"value": "Offsets"
}
},
"e92f95a0c32f4c329f843d2a4be4ccbe": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e938e5849a994d378e9e07b43f2455b6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e954e42d3ffb4a2e9fc1a1de443bf557": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e956547a1b9d42fab29ea934e7b0820b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e959b4fc65b54f3293e5d6877d009880": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e96511d5298b497fa795f06696ee8078": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_c5d40ccf6f834e4dbc2fede8f1fd0096",
"IPY_MODEL_1ac346df88e14b7288c407795c0c8353"
],
"layout": "IPY_MODEL_ee4bd6f48b66406eb0c6e65de68c6195"
}
},
"e974a9fe36e749d6ac2fcdfb413eeb45": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_8d6c0ec5d7174cbe80bba6ae9a5cc511",
"IPY_MODEL_2fde6a3c43d947b5bada21134b4212e1",
"IPY_MODEL_9830224a38ea47aca4e239ac7465f59e"
],
"layout": "IPY_MODEL_6946cec642c048439bb873a054b03991"
}
},
"e975bbf21cfd40fa9373974a5aa1bb68": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"e981b0e57b9c465cb016e612314f2442": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_aeec13205923400f897885b7b469f2b6"
],
"layout": "IPY_MODEL_2da52b3d566a40eda4b98efb602db3e6"
}
},
"e992acf7e18847088eff88141eb21c68": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e994ccdd0ecc4c8991a768f1058b2b26": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e9a5378116874f449cbc9dd67160822d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"e9b196eaa9c44d22831f296e0ef9015d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"e9b216b753e648dfa4257bdba5da7e35": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_8252a219a27942b79b33fd0c0d1257a7",
"style": "IPY_MODEL_8cca6b532bd047f9aa3a7657d8587d93"
}
},
"e9b57f8603db4fdcaeceefd3fa521ee6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e9c4f0db191248228121b1b015c358f3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_74cf95e143654569b544f94d1ca9d372",
"style": "IPY_MODEL_6cefdf62a50347849625ffd25a689e29"
}
},
"e9ce895cbec7451f8538b80b991c0bfc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"e9e47b1336504d22b3ef089273f52e3b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Units",
"layout": "IPY_MODEL_1c9ab90e1c7e4a7cbbf9119685f1bbec",
"step": null,
"style": "IPY_MODEL_032851c8850246a59d5f47021b7f6fab"
}
},
"e9e4c130c44a4d749187d08f71963e80": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e9e82b46c53947ab855255fb858be8df": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e9e986f669c44b688e2bc392fbabc7c7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"e9eb9d3a96fa43fb98b5477d5b0dfd0f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_a4cd187f6e3e42edb0af9b4fe0595c6e"
],
"layout": "IPY_MODEL_05c9c0fd69254cc5993988072fa93c90"
}
},
"e9f2d21fd8c942b2b910a1b7562d12ae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e9f476d941194b18af18f7da3f8520a0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e9fe57a6627540d19c721324b4e5f52c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ea026ab9e8f84c3790ff592a9f3efdda": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_e61eac0f4ecf4765a9d024fad180efcf",
"style": "IPY_MODEL_082ff4637a394d088a6b6ac422d55e8f",
"value": false
}
},
"ea088dee0c254e588fed5417558d41b6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ea0cc8149c7b4c2792c390460f9769b9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ea0ec65de4a64b7c961b1ea712fc0b4f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ea1b26446b004aa5b45b0f246d349f5e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"ea1d5a7cfc794e76a3869a12dc838881": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ea22399a636f4f10810a3efd02dd1bfd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"ea2bf6e5e67844b2a884a3512143ae34": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ea2c55d9f4cb4fcb927b206e0b8367eb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_916579ae5b7140ffabb184cb67d51943",
"IPY_MODEL_65dbb1ca23ca4d9dba7b0c9204d0c3dc",
"IPY_MODEL_c5b0428d6f0e406ca5d0028e65b1a94a"
],
"layout": "IPY_MODEL_49ec5eda15c84ab2816de46415782326"
}
},
"ea38158319ac4f93af3a6b97a6b33339": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ea3ccf77a8e849638f7231b66163e09a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ea62ee1cbe004c0c80f4b4a8fa338b34": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ea67cbefdbde468385a0e04b58548d98": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ea6e734750634192bada73a8b514b6cb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_84c29eddd2b34ae8890b838f793bb2c7",
"IPY_MODEL_98a1fcc309c140669fb5a6d122e71495"
],
"layout": "IPY_MODEL_3d38dc3a99a14ea280a7f8a407844103"
}
},
"ea70a84ec6e8483791ca1189023d770c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_e4f645a5696449f99f51d1fca7d02490",
"IPY_MODEL_8d451d2c220d448f84243ac22ed3763c",
"IPY_MODEL_b880e2203e66495a9966307b8e6d8351"
],
"layout": "IPY_MODEL_24a2f51b403f4950b0c01e4b047d1730"
}
},
"ea919d0351734d7d8c4ce90cde1dda20": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ea968a01490a4e68911067906634dcf6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"ea99f1dd72bf4994a7d24e284b0a9b09": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"ea9ec1ac5cbc4bf4957f3757ac732350": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"eaa35cd6dec54696a745283415550c26": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"eac1e5eb3df941eda221d868dabef887": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"eac458e1f7d84b4484c4711b8f7e72a7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ead01f479a644064821c2252d76eea00": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"eaea13f9c104473ca307e38f2c1c5dca": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"eaee38fe088a41ec9ebcff8f08930ce9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"eaee7bee480c496c9493f68c5a7abc44": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"eaf02356fdf74b8d870fd70912567fac": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_4140b2d84b44487dbd5df59745fcead9",
"style": "IPY_MODEL_e8160dd881f3421f9d9f1012293a5076",
"tooltip": "Run computation"
}
},
"eb0d5a06a74b4f5a908ef13be6ebea1e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"eb123ae081804e65947601f5f9c458f9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_4a091514a8574e37abe817f5c5269574",
"style": "IPY_MODEL_4ca06506b59d42c58c504819aad908ef",
"value": false
}
},
"eb13704899684b0bb096bf559f46c0db": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"eb1a5a02dfea48dd81f246913f56e820": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"eb1ae70c354d4cf38913a614763d4987": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"eb23cdb088164b28b38805786f0ddce7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"eb2a0ec8616b41e99a7f084cd9bd37a4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"eb2e042c0a2548c4bbc898024d3c2e56": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 0,
"layout": "IPY_MODEL_14b82ab6a26c48e7b254c6cdca5a66df",
"style": "IPY_MODEL_7e30a942f0544612819e0b15ae43237a"
}
},
"eb310444fb3f419fa4d7f8f9d3d71d6b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"eb4408f1b57c453b8b912b8668d11dfc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"eb4a214e58674dd6ab6e3b997cc44126": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_186753441e9d41058ef87e338f7a3e46",
"style": "IPY_MODEL_1d7be73de3cf4c7c8385cd4cf3495bf7"
}
},
"eb4e57978842473284deaac2a02f95a6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_fbbcca56a59442099a5a063e80bfe1a8",
"style": "IPY_MODEL_3ee0fccdb2324b01842d20409e2de1f6",
"tooltip": "Run computation"
}
},
"eb4ed0f9c2cf4cb6b341c5014f2b003a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"eb57583c62804837b5f5d17544c44c8f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"eb624200ca754b158fa69ff26e2c821d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"eb62ff8269734d0ab6ab4680024c00a6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"eb64727d380b400f9b780a1a4b9ca692": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"eb669fd57ec142a7a771969ae45d3cb3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_d005eb9df6ff43928f751678c10b15f0",
"IPY_MODEL_535a66a8274a42a2a8b622f2048b2259"
],
"layout": "IPY_MODEL_e6c73d7f59f34ce5994a6074f4aa9334"
}
},
"eb685de529604a949c1e73e653985f21": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"eb78f86937a44bb899f83c312bc239fc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_138d77fd4fce4c81b77ce68692193133",
"IPY_MODEL_fcdeffb53f364b27a55c89e02e416a72"
],
"layout": "IPY_MODEL_a427af81ceb94a58bb3fa2ec2651e2e8"
}
},
"eb7ce59c62a14ecda984c7793f21cc4a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"eb8e069b42774ba8a6ffedde1e558721": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"eb906e4b070c4a5dbeb506c1a89c4b02": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"eb956337975f4d4aaa5524f48d33c59f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_8c9e15d0745f43c9ba1d7a74502fa259",
"style": "IPY_MODEL_3c6cbe3b030c4d309084689c5fe58ff3"
}
},
"eb9e828ab0c7484bac5b333eedf3f6de": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"eb9e859ffcb74beba93166c7a1065c29": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ebafbe7f09e94e7b8984027cad5d0d83": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"ebbce21283154387be2c8571988d541c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_83bf45200ccd4f7d993e760e7911282b",
"style": "IPY_MODEL_d69c4b147cd346dfb1b5aae7892b2291"
}
},
"ebbda4ad77a74e848b6eac0925e70417": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ebc8744e884b42a9901287334cc6ee56": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ebcc9de00c164e279883f497fe4487a6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"ISO/Iso_Iteration_7_model_5_00e-03",
"ISO/Iso_Iteration_7_model_1_50e-02",
"ISO/Iso_Iteration_7_model_2_50e-03",
"ISO/Iso_Iteration_7_model_1_00e-02",
"ISO/Iso_Iteration_7_model_2_00e-02",
"Ore/39_Ore_Callinan",
"Ore/38_Ore_Dan_Owens",
"Ore/40_Ore_FlinFlon",
"CDI/COND_surface",
"CDI/COND[8]_surface",
"CDI/COND[18]_surface",
"CDI/COND[3]_surface",
"CDI/COND[13]_surface",
"CDI/CDI_",
"Workspace/InterpGrid",
"Workspace/Inversion_VTEM_Model",
"Workspace/InterpGrid",
"Workspace/Gravity_Magnetics_drape60m",
"Workspace/CDI_VTEM_model",
"Workspace/Data_FEM_pseudo3D",
"Workspace/O2O_Interp_25m",
"Workspace/geochem",
"Workspace/Inversion_DIGHEM_Model",
"Workspace/InterpGrid",
"Workspace/Topography",
"Workspace/Data_TEM_pseudo3D",
"Workspace/Data_ZTEM",
"Workspace/Mesh",
"Workspace/InterpGrid"
],
"description": "Object:",
"index": 0,
"layout": "IPY_MODEL_580ea91518364ade9b7ac112ea20eeb7",
"style": "IPY_MODEL_25321a1a708440c8a462f501ba8944ef"
}
},
"ebcd1c20392040eaa841f2081741426f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ebcfb7d3532e49f590e4abca65555abc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ebdc591179fe4215b310d514684171b4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ebe1d7ecbc4a41278cc3c182ab179a91": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_20b05ad18fc949969b38f48c99a82332",
"IPY_MODEL_98735e8fbed74c05b4397aa52f77c8d9"
],
"layout": "IPY_MODEL_088e2c7b7ab34a84990619cb2652cc28"
}
},
"ebe4696db9c745abadefdb8bf3b140b5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Data: ",
"index": null,
"layout": "IPY_MODEL_9d2829e51a6f45038a90348d59387901",
"style": "IPY_MODEL_eb4408f1b57c453b8b912b8668d11dfc"
}
},
"ebefe2ffaaf7459a8d8020332ee5a297": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"ebfc2d57a41742f19136361118cf67d1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"ec030d5723a2491ba9aab5c7a72e7823": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_d2695bafe9314bd4a94297905ca6e0bb",
"placeholder": "output filename",
"style": "IPY_MODEL_fcd93a863deb44e29c52c5ea7050df19"
}
},
"ec0a6722e9854709bdb133b85ab3935f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Vertical padding (m)",
"layout": "IPY_MODEL_7ee0fbd84c4049acb4d8d6e4b4f2fb4a",
"step": null,
"style": "IPY_MODEL_cc5c38687456481a9ae70aa20bc9fd72",
"value": 1000
}
},
"ec10088e70f044b7a4215111416ae334": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ec13cc6f0ff34f42b4b5ac4308448656": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_8b1783f6cbaa40e8b66c97673aceafe0",
"style": "IPY_MODEL_10e1354821f6426286365a20bff559e4",
"value": false
}
},
"ec20c7f4f3934e348f4722ab2a95608b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_ee5ad35f755549f3a4e320f7cbf78c27",
"IPY_MODEL_7e02e058cdc94691b3787728d55c4e51",
"IPY_MODEL_ceb6602c77764f7cbbef3d8c363fb3b3"
],
"layout": "IPY_MODEL_b6345bf68f7a4b2fab2c90dcc35b2a9d"
}
},
"ec273506aa36481ba58764afa205ef9f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ec2c8bdc1e6f435ba78ee2f39bf6afbf": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"ec31eacffdfd4c48a6710065bffac06e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_f9c1d3e807f34a2991afa299d668a1b4",
"IPY_MODEL_bef66664b2f843b18e62f5988ae94f6e",
"IPY_MODEL_719b512c97f44d7da1d5201e0a4df362"
],
"layout": "IPY_MODEL_ccda6d5e2ea5417e9563a1de12d0c815"
}
},
"ec326cd678a04991bad1cae477d3678c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ec3d82b7d35b4777945895c244d08c3a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ec5057d05bab436e98301a165e07f6cf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 Temp",
"📁 uijson",
"FlinFlon.geoh5",
"FlinFlon_dcip.geoh5",
"FlinFlon_dcip_v4.geoh5",
"FlinFlon_natural_sources.geoh5",
"FlinFlon_natural_sources_v4.geoh5",
"MtDore_TMI.geoh5"
],
"index": 3,
"layout": "IPY_MODEL_0921b590b8ea4e0bad0a60272102cb2a",
"rows": 8,
"style": "IPY_MODEL_ac0f50c0519b4d92b386324ca0223179"
}
},
"ec67254a0da34177b05e98b608495a34": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_472b2f7c736c4baf8627afbf0ac73050",
"style": "IPY_MODEL_ae397ff9977142cbb3d297105fc6e0f2"
}
},
"ec6ba8cb050e43ccac3e731f58c4ac04": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"ec717198b569494c8e36c92f5542a9f6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_154f3a16b9ab427c8d1de608f887dcd4",
"style": "IPY_MODEL_d6aa725f001d4d63ab19e53ea430606a",
"value": "Uncertainties"
}
},
"ec72356783514491af11929c5c067a19": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ec799a7f13c347b59fb457028a668196": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ec7c882567874cb1ad03ce07546b767b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ec90099ec0f7443bb76781495faecab8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_68999b5f2c104fe4bfcdf77aad4bf2cd",
"style": "IPY_MODEL_0a3aef84269e4f2ea72fd18d29f130ef"
}
},
"ec9b83448beb49278260646c78a8e203": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ec9e1151b2c5472f9ae7d803ac6949ea": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_d36bc65d89e74d24980f6b796b4af0d9",
"style": "IPY_MODEL_dde5da6104c94a30998fe6a5896106d4"
}
},
"ec9f6db26d074416b09d6ca530d82e5e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ecafadbf555b40f1a51c5adc44c400c4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"ecbb9635b88349238fccf2d35f74ef30": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ecbbae17f86b499fb7a154312da46a0f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"tmi",
"bx",
"by",
"bz",
"bxx",
"bxy",
"bxz",
"byy",
"byz",
"bzz"
],
"description": "Component:",
"index": 0,
"layout": "IPY_MODEL_d15fe80221774824b308a9cb946ef189",
"style": "IPY_MODEL_e496dddc0bb74ecfbbeadfbbffd75072"
}
},
"ecc8b11a7bab4ad295bdd5d55cba93f9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"eccab3cc3ab34e65b0607e9c14ed8144": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_6b6cb5be993c494ab8c7f109fa30d02c",
"style": "IPY_MODEL_98b459f633614fa794c04e7d4486dd7e"
}
},
"eccf1b88b8844eea8fa7b888301f52d5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"ece0e3fd95e14e1da28b49550b81b595": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ece28dff76264df5a0c490daa7eef65a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ece60626e39545aeba32d4b16b0f9747": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ece8dd65179040458065711ace48280d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"eceea67a3145480a910c5f3adb3f18f3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"eceeb72c09fa49d593a91a655eb6431f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_826f690a013a416087c6053517d4f904",
"IPY_MODEL_1377d357a6a94203bc36ce2c26bbcdcc",
"IPY_MODEL_034e84be8fe84c03afa40660aef7e689"
],
"layout": "IPY_MODEL_b6345bf68f7a4b2fab2c90dcc35b2a9d"
}
},
"ecf0e4b365504d5a816d7d973c27e6ff": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_d83ef761ae364c648289eff0ec8e827e",
"style": "IPY_MODEL_95b129b751de4d52b2f832341465949b",
"value": "Lower Bounds"
}
},
"ecf1ee49374b4a03bbabe5861d870ef0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"ecfbdb47ba0249e2805f107a71596c2b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_b1b0fa3897184dfd801d1511437b4d3e",
"IPY_MODEL_abf0ca74d554498f9684b4a5d81d3cff",
"IPY_MODEL_261e27469792454096220c257827f202"
],
"layout": "IPY_MODEL_aceea1731b5b4f92968999f21a4c5592"
}
},
"ed06d64345f947dea49d5f789792c533": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ed16acb2a5c1436da5ed4a8a4d381451": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"ed1bc79083ba49d6925840db29460b9e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ed20b3781204452d9b4a4068e20e05c6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ed233d00b63a4386bc7593275cb59987": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"ed25f47e293949c29527d1bf04cd18ee": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_c1673fa6b68d4f4487bde82998f5f371",
"style": "IPY_MODEL_46aac59af21643d8bbc8d77f503e38c8",
"value": "Workspace"
}
},
"ed2fe8fa2c2a4413bfe2d6b8b481ddec": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_a3faf28827e540999cf74a0ef07bfe12",
"style": "IPY_MODEL_4988f5e195cd4a4291ac02915ba2efd5"
}
},
"ed3b17f6b7fc465da69786bf3b6cb6e9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"ed3b8f1223424b11ac42f0dab3d20307": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ed3c029666c04c98995ceb2bf79b2dd9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_e428a85ad4ae4c53b3179b8fe79522cc",
"style": "IPY_MODEL_1f64b06936fa499a8a2d2ebca6f08443"
}
},
"ed3cc0a34072484a82c1d61b81250b7f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"ed45381e221a4c6c99e60d0022b6945a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ed5bffb9045944cb83bef24a149bc172": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ed5d31b160274ff283f288a55d1e61d8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_d4e16e94d4d74967abf1d0c36abad491",
"IPY_MODEL_5190ff362cc94efaa7dbef53b141e48f"
],
"layout": "IPY_MODEL_04264b6d82994743b4103929571448b4"
}
},
"ed6046ee93824c45a12cb937196ce413": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ed692e81c42247c8b0cb4dd1a4e8b341": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ed7f39503ddf400899df51e8cf687a82": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ed829c4bc4da4961930c7d71d5cdf613": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ed8c187d2e93423d848dd51f40724f59": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "SI",
"layout": "IPY_MODEL_5bfc8e47fc384c738e4a3ee8701913c1",
"step": null,
"style": "IPY_MODEL_30ab8c1949e543b3ba9865667150a443",
"value": 0.0001
}
},
"ed9c7633789840bba17f69a8187e6057": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ed9fe4435a7144b4a58370979e6562e5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"eda0022802ac44ab9b5e7433b7953b94": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"eda643615bea4122911c19ca705d7a2f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Degree",
"layout": "IPY_MODEL_72a1bcc29b2a4adcb97fcd454dd29b25",
"step": null,
"style": "IPY_MODEL_08bcef382a0a4c709d47f92c6aef38fd",
"value": 79
}
},
"edb4d5972cdc42eb8bee5d7066319a67": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"edb6316a79b04d0a87feb3ebe04d246a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"edd2b5cda19041b3ae95eaf078c36346": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_2742bca0b0834a7497792663f42dbb00",
"style": "IPY_MODEL_bb5c30df69ee49499139b63f2496dcaf",
"value": false
}
},
"edd394993a794f2dbf5133004aa18d1b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"edd71e6482c64d3490a6566cfaa41d18": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ede75b47a3134797848ca181967ef470": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"edec61547ad54cfb85b97a7bb594b5e7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"edf487d0fdfd4ac59466ff7138bec601": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"layout": "IPY_MODEL_a3ff1745dd4a48989fff5f23050623a1",
"step": null,
"style": "IPY_MODEL_03930c23b46946cfa73d79a599bb3a3e",
"value": 25
}
},
"edfc45c0549a432fa9a33659ee476b1c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"edfe2cbf47714b208ca88de567d276fb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"edfff6bfae3245098d935e7e131d6627": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ee09bb1e9811496d98db05fcc2a40298": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Degree",
"layout": "IPY_MODEL_21d3ced4454941978f8e5f62d5bb9f0a",
"step": null,
"style": "IPY_MODEL_5277ad076c644c179f30d33a6a2e195a",
"value": 79
}
},
"ee14faa19ef949f28c20275eb579ac37": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ee1892e4ca4e4940982f7736cee60910": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_e2f063a4ab754cbd9828a3382d98765a",
"style": "IPY_MODEL_c8fdb37838fa4cdda40c545220239ba8"
}
},
"ee1da31235df474cb5ac03cd6d91c67c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"ee24cc4e73064c6289ecb04ab605ccee": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"ee27eb54c5f1401a8e2b7339d1c297d0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_0bcddd4d910b413b91e378f923e4b97e",
"IPY_MODEL_3560f445cf214d139ae1d9f9809dd284",
"IPY_MODEL_b73f878496894d1d9b7ecac9234db642",
"IPY_MODEL_5ce3944df483479b895323095a8e730a"
],
"layout": "IPY_MODEL_05903bc7472a47b09c66824eb349c912"
}
},
"ee29fdbf4bc540cfa56b3274307ec04e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"ee35e40a892340f3982b8e826df20262": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ee36918013874b8aaf6d7f1a8a7fe7a9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 SimPEG_PFInversion"
],
"index": null,
"layout": "IPY_MODEL_4f807480325144ef959e616d1e7fe20c",
"rows": 8,
"style": "IPY_MODEL_e8d74fd5d1774586bb5dd4a7fde42de5"
}
},
"ee4bd6f48b66406eb0c6e65de68c6195": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ee5ad35f755549f3a4e320f7cbf78c27": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_962edcacc643481faf8a58f22e9e65e1",
"style": "IPY_MODEL_67744ec6a08f4bd79b17bbd1b6dc1c2a"
}
},
"ee64658f992d49efb1e99eaf53e7863c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ee6f57d6cbe64c699183ab1d5590c93d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_4b342372a724480cb614e3ffa18219af",
"IPY_MODEL_8770047f9ca7486699087b6bcdafb8a2"
],
"layout": "IPY_MODEL_23656ed7a63b4829ae7b36561326d3ae"
}
},
"ee7a1e9cac8b442b9f15fcfb1b2820ca": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ee8428a0e9314abd990d47ed8c16cb9b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ee89eda4532143a5a61eb4207de32c7f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ee8afc8598614bfc8c6fe3ecc906de25": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_c8278d1c8e8a48f7b150435f0bb16db4",
"style": "IPY_MODEL_bda7b5182b4042ddba06535f2bbd8bb5",
"value": false
}
},
"ee8de1cd4acf4319b9d3f887c693e1b3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ee8f958bfae04139bcfb1d7e0f0c5daa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"eea4708071f5488f91e520ec2ae0a3a4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_ed3cc0a34072484a82c1d61b81250b7f",
"style": "IPY_MODEL_750e406f444b43ac9bad3fc2306b01ac"
}
},
"eeb393ce7f1b4912b56151f14e5561e4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"eeb3a389d7f44a918f89c282c48c5bc6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"eeb594d725414ef992ad57a4b6780dc5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"eeb5b1318e7a4e6390f71e9802d2fbcc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"eebbbc864bb84ad6b8d419566584de32": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"eebe4ade7b4e4116a1f9ba09737b941a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"eec045cf73944713a5a2113fdad1fe4e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_366e9a6502f04d47b8a2e2f7bf9512b1",
"style": "IPY_MODEL_daeb760e83ec4343b805eb03aeb9dfaa",
"value": false
}
},
"eecfb6875c314b9d8f98111056c2d724": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"eed802c04b73478c890bb8603c8ad9c5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_d375939ef9c44f23b1bcb3d80367fb82",
"style": "IPY_MODEL_2833e0eaec894f9ebf8e0505c314126b",
"value": "Output"
}
},
"eef8e6859f3545678ac105f1016e6a75": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"eef8eb367f794093af20204279508da8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"eefce8b7de56463bbe780d35abe6b3e4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ef0aa61cfe0a4dab82d4071530c4e54c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_266fc45ad8d745e38d997ba2cc7dfd13",
"IPY_MODEL_eb2e042c0a2548c4bbc898024d3c2e56",
"IPY_MODEL_00e54fb2ab914fbf9e059ae360f1c776",
"IPY_MODEL_e4998b228655479cb23ef8cff09f7080"
],
"layout": "IPY_MODEL_21bf3e59f7b841ab9024029f1cb0688d"
}
},
"ef1940bf074548b6a38062ebbd7798a3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"ef1c0cc44ac94f688dc615a8b7613730": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_1547af8dd5f348ffa0020623b425a227",
"placeholder": "output filename",
"style": "IPY_MODEL_21842db7b7ae4c8eb6c1f50a7e81442a"
}
},
"ef2a7bf9376e4ca4bb8b205dc74daff9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_749f75a2c4204ebd9d7f6d1730df1d33",
"IPY_MODEL_bf93e7e5f7f04a41becb1c82e52bdb34"
],
"layout": "IPY_MODEL_3f937f0a8fd24bb38089f254d43ca799"
}
},
"ef2d7c7f405d4260a779bc99a686f3e1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ef31a8a9deed407b9931da5f841b9e4c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_3de6b5ea66454ae48b63d3c5d785fc0c",
"placeholder": "",
"style": "IPY_MODEL_b7d5ba616d8f47b187094ed0dddddef3",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"ef33cd9847f340109096fefe5b04747d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ef3a51e010724f30b9d13206a8d1213b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"ef3a6c634c8347898eb90a6dc25e0817": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"ef564b13b8124c93b7d2382923e4b0f7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 Temp",
"📁 monitored",
"📁 uijson",
"FlinFlon - Copy.geoh5",
"FlinFlon.geoh5",
"FlinFlon.omf",
"FlinFlon_dcip.geoh5",
"FlinFlon_natural_sources.geoh5",
"FlinFlon_tem.geoh5",
"FlinFlon_test.geoh5",
"MtDore_TMI.geoh5",
"bug_mre.geoh5",
"geoh5_to_omf.py",
"new_data - Copy.geoh5",
"new_data.geoh5",
"omf_to_geoh5.py",
"test_file_2.omf"
],
"index": 5,
"layout": "IPY_MODEL_19c78c32b0cf4a4790dc182a56ce3c93",
"rows": 8,
"style": "IPY_MODEL_74b31ccae57441f29ac8024f6c13fa42"
}
},
"ef5b793050814adca275d67e4ce862ef": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ef6aab5fc378416790bff587a3cf1259": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ef6cf5845b44422f9571528a4cebca12": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"ef7612a16b10471eab0990d5995085b1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_72e259a543f948708dea477f755d3855",
"IPY_MODEL_880995c1f8fc4458aad7a65661129d50"
],
"layout": "IPY_MODEL_df71fa43207c4062acb14d5a82b06169"
}
},
"ef767b09b7f34c65a5d257bae9cd3042": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ef78c2b92f534dd59dae8969762b2ec6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 Temp",
"📁 uijson",
"FlinFlon.geoh5",
"FlinFlon_dcip.geoh5",
"FlinFlon_dcip_v4.geoh5",
"FlinFlon_natural_sources.geoh5",
"FlinFlon_natural_sources_v4.geoh5",
"MtDore_TMI.geoh5"
],
"index": 3,
"layout": "IPY_MODEL_e7481a9368aa49498c6067055a747f0e",
"rows": 8,
"style": "IPY_MODEL_7d0c66ae50a742fd85c4cc3850195bb3"
}
},
"ef8e70a2eeeb46dcad83b4829f85ae57": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_0d5f1b2b39f6494c9a714713ce911caf",
"IPY_MODEL_ac9e00ab28424dff8bed56114500e142"
],
"layout": "IPY_MODEL_1f0b0863c9604d2e9a6f9384ea0c3cea"
}
},
"ef90ad4e956b41f893a8ec4992e89ba7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_218ec796ec924d80ae80ee3b45a85b88",
"placeholder": "output filename",
"style": "IPY_MODEL_9a2b85ebfba04d889228eca7fb466861",
"value": "FlinFlon.geoh5"
}
},
"ef960f0333e0421b8c30ca1577bcfcc5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"efa14c81368040e497f0a7bc9dd487a6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"efb44239fa3f46fa9f5581c2d50152fb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Values",
"index": null,
"layout": "IPY_MODEL_6e48bc2d20ad40298fb054bfa6df5a78",
"style": "IPY_MODEL_a262548be75b4b4fa987b5904ed871ba"
}
},
"efb599f3491f4f3fa16eeeff1af3c93e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_c50e1d7b5188460499820f290e57ab0c",
"IPY_MODEL_21ffce96396545399f32953e51357ce4"
],
"layout": "IPY_MODEL_982cda3eb80e4b45a738fda26a27ee5e"
}
},
"efc1c65703db444e8f6ea4295bdc9e49": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Vertical offset (+ve up)",
"layout": "IPY_MODEL_3986763939a44ff5b0ae71b377c14952",
"step": null,
"style": "IPY_MODEL_5dd912b211ed4a6b82799fc6d68d6901"
}
},
"efc826ef7dcd42dc853d8ab34b572931": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"efce4bc0086e4bf59d800e1799b0e725": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"efd7ba07c08d47308b44f74f41a42d0a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"eff42ee696a14c179b0e8ced58e3e84e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"eff6e57be6524e61a3fc27bc26b94ae5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"effbd7b6bfa9485786e42e68e47b270c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_8688cc0befe14090b21b2fad92d8306c",
"placeholder": "output filename",
"style": "IPY_MODEL_f8fb6917d5644a4ab97babcfcc66793e"
}
},
"f003f440caab4933842668a684ab03f1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_bef363721e1e47aeab2b2bd13d25e279",
"style": "IPY_MODEL_d7592318819e4d4f842746895de789fd"
}
},
"f010c49dd6d94a929a1dfe3cc8322084": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"f014ad3caa8f421091a5d439a53f0b38": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_bfbc6ce2c85c4d5e879b0ebebbc6af5a"
],
"layout": "IPY_MODEL_33bfd0fc290a48709ded577d67bb6657"
}
},
"f0292901768f44b581c1b0db45320a69": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"f029b7f8bc2f47e2b61620d1ac415a35": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 0,
"layout": "IPY_MODEL_b0ab16cd46354176b888011a7c6ceede",
"style": "IPY_MODEL_e5d8e2a3a11246cbae75af23bbdd5d59"
}
},
"f03cf64b0ec44e11b25a51e1a78547d4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_df58044ddcac44368c744f5f2dffdf35",
"style": "IPY_MODEL_ab6ec431beef4906bd2df3bb81633b86"
}
},
"f03f3965a83949c2898ed6af53078dc2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f04c314942294c8a97b69da5ef3919df": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_7ac6fcc6b140489cbbdbc20e29c7c02a",
"placeholder": "",
"style": "IPY_MODEL_661b4553d6d7461ebd1a24a1374a0f3a",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"f04cd2ad5d19479e84c692d8e8e41774": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_0556ec8c82b443b0b2a9c5608b66d5b2",
"IPY_MODEL_5f89ae52cf4e414badec270235c46a63",
"IPY_MODEL_fb783c74dedf448885f56b293c239169"
],
"layout": "IPY_MODEL_a432fbc059724fe484a3517f745ad9fe"
}
},
"f0528b257d9941a49c2a388389ff100e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"f0556e121c64498e9a3bf9936dc94ecf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_4624bd4bbd8f4d6db4f5e4d19e067a5e",
"style": "IPY_MODEL_1b9e1e35590b46ccab61fc24062508c4",
"value": "Workspace"
}
},
"f080eb28c9874333a0664610a94a36dc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_4c49f0984012422f81566c15054c2376",
"IPY_MODEL_aecde64563cf45ffb74076ee4682447e"
],
"layout": "IPY_MODEL_cb596c3277454d2ba8d818bc7860d910"
}
},
"f0955199bab944c9aa0fb44d140f9a1c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f09712b1f41749cd8407c836737e9f91": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"f09df2cdb3414ee18e97ae8833c51390": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_66a40659f48048dcb8a34d6bdb86413f",
"style": "IPY_MODEL_97705344b22f4a55b96c3ab1ef3bc953",
"value": "Dimensions"
}
},
"f0a6751bc86b44bb9de758ef03399ffa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f0abdd658a6b41f7acb54eebd865cbe2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"f0ac61118f1744069ed326ad94f57ae9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_c7edf91624bc4833930df7003fd62955",
"style": "IPY_MODEL_b2bf5e7ad48a4e38a3097f332fbd1cf6",
"value": false
}
},
"f0ad965a7a824477bf858df90c3ddea4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_9b8487c62ac1451dbd93ceb1d13f80a8"
],
"layout": "IPY_MODEL_b81eb425ac8a4a94a541de945b148083"
}
},
"f0b0b4a4ab054dc9855711af165c917e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f0b4bbb707294db8a8ec7fc4cc17d62f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"G:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"D:\\"
],
"index": 0,
"layout": "IPY_MODEL_168c1656984c43568a5d447a3321d1bc",
"style": "IPY_MODEL_179f131d49b545cc8e502adc676c3a08"
}
},
"f0b6f9531dcc4603980bb9541fcb8db8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"f0bcf77f48714ae4b3d188d7becf9b16": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_8fa3b2d33601407ea2cda2282062c88d",
"IPY_MODEL_f293b854193749ab86253450d4e0f406"
],
"layout": "IPY_MODEL_d392481e9cde4f7d83cdb3ded3cbf73f"
}
},
"f0c36a9101474065ab5a6d58f79a27dd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"border": "solid"
}
},
"f0ce8897773c495e8835cf0e664f3d46": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"f0d86e17777e4ad6832b0fd3ee07e976": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f0db81f2ddb34af8956ef40b568769a3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"f0dc257e5c0d471589fb29351f3afc1a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"f0e1ad33fef640c29560dd50e5598697": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_c6044780d2dc434499a5fa20f8fc54d6",
"IPY_MODEL_f616def71eae4099957cdd5273bf72aa"
],
"layout": "IPY_MODEL_d9f3854b6889499db775656f32356a47"
}
},
"f0e82175706347b3bed8f7e92fe36749": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"f0ea236129d149e58ac46a9fc3346098": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_f9fc08bbf06d4ba2b45f43790c4af9ee",
"style": "IPY_MODEL_d03407ef39ae4d798438a0988a355f65"
}
},
"f109c4099a4c4d4f8f423a430a4c45b3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"f10da71cb1364202b426d93ee0185905": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f10dd7e9e10c4504909d1fd974b26db2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"f11b24a583ce454ea306b4f8ddff93a8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"f11c11059ac449c789a35fda1e574573": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_7d4e17c1945d41c0ac3ec991b2543086",
"IPY_MODEL_c7f53d00be614c5a8667a61801f006b7"
],
"layout": "IPY_MODEL_e2872fe40c444ab3a96343a9f9eeaf32"
}
},
"f12361e52ac24b92a265c16ffaca8107": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f1242c6385874acf9faca124c9e4444c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f124484f8bf94b4c88557dc0f2a748dc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"f12bf736951f410a98ba506478dafaa8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"f12ecd2ebba44ee68c956b423e52fc22": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f1342d4dc05e4941a85a6f54cd6d8b12": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f135ac5aff91481f87175da700a19516": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f13b14a931ba47a4b9d82d1c29d01bc5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"f13ec1905fbd4a9884c257aa481a937b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_d0fc20b9b0044839a5e992c4bbe4cfa4",
"style": "IPY_MODEL_df005c2b5a284b69b5dcc5afc641e272"
}
},
"f165efdc6fcb4fd7af7b50012d7246f4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_d42ab6bd7fba4f55a7fe6ac32b753854",
"IPY_MODEL_d9501def4cce41ecaff2bbb582faf90d"
],
"layout": "IPY_MODEL_e3a5af6eb83e40b7ba4a235e7ac88da5"
}
},
"f17bd667144a4dd083fac2d6a7c2ffca": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_5e012fdb02a04b188e94d117f6e78174",
"style": "IPY_MODEL_a18c31c45bc44284947cc0d31601ce95"
}
},
"f18e5a377b8744138bf87633c36ee4f0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"f196df69a1bf4f388b43f4fd0d11aec4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f19b419f67da4dff8e7520ae3b6adce5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_d9b65537eff34af2b2a7947c08cb81f1",
"IPY_MODEL_e13036f3160447e09961a69fbec7f6e7",
"IPY_MODEL_41b6d3d274a64f7cb4bb0b2c389bfac5"
],
"layout": "IPY_MODEL_b6345bf68f7a4b2fab2c90dcc35b2a9d"
}
},
"f1b2ee50cac7408eb8dad947c84b3245": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f1b731595d5842a1b8fbe2c5fd6d16b9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_7b37d1580fe846fcb0a8f6a4662a9aca",
"IPY_MODEL_46dba457afe54af8a0a44316e05fdd2d",
"IPY_MODEL_9d3b8cb83a0c4b218139cf65c4201581"
],
"layout": "IPY_MODEL_f828f79edbd54406b473bc9937d1fc8a"
}
},
"f1ba456768cd4be6a7ce09e152014fdb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_4e52ce571cdc4109ac551c7f098c99c8",
"style": "IPY_MODEL_f861093c7617462ab06132d034d17477",
"value": false
}
},
"f1ca67dac33242ee991dc1233e2a245d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"f1d39a2de54d4f18b6d7f07c1309abb8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"f1d5c141e87447669c2bc4e74cb63720": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_732ac804ec95415abaae074b973e4dee",
"IPY_MODEL_df402390be2c41fabc86ac5b2cccf1bb"
],
"layout": "IPY_MODEL_5beb223d47ca4107a8c260e5f0b6ba07"
}
},
"f1e33bfd6e5e4ee0a9a3c86fe1fe77e4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f1e6ac434d7d45b8970dbd4909493d41": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f1eb4e1ceb734cd0aea621d6b84002cb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f1ecaaa41caa47c8bf055465456fb8cb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"f1f3af79e9a945018fd4be6fd731d2c7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"f1ffc849c6734ae2b4e7f5746d99f31f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_04c8444f460d4e748cbbd3290a6eb7d3",
"style": "IPY_MODEL_d9ee23c8068447759dc3bfdfecf6bdf5",
"value": "Save to:"
}
},
"f203f43d6e1841fdbc572b6e5fb111fe": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"visibility": "hidden"
}
},
"f216f8341ab24364b14d22eb1efa6b2a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"f220f435a58f4061b3de6ecfdc678e84": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f229d5a469894c7194c3d248a9e15b4f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"f2388283e4904502a0d9ff929213fa2d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f2390d828f304c849af10524ab9f3767": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f23e577d04f647638029d828813aa72d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"f23f3e1aee03418ca7ca51d798128ecf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"f2467487f8cb49e6b0bce07bed074268": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_ca1dc8db67944b4d8967a880174b9aac",
"IPY_MODEL_68e9396009f64a65a8e14186c1bbfe3c"
],
"layout": "IPY_MODEL_56be9446f95b479e9db00c6092ae9299"
}
},
"f24c8f5760e1440d83ffe434b23d0928": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f2671cb3714340138857c0a70a21944d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"f26f41c934de45dfb8d532a65a8a08a3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"f27dfc7444564488945ccf882dbba0ed": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"Model",
"Constant",
"None"
],
"index": 2,
"layout": "IPY_MODEL_bcdfe3f5b28d4356a927f53aaf9d32f8",
"style": "IPY_MODEL_f84d42d6a0f34072a9a1c4d0fc591107"
}
},
"f282d5d880104838bb3f54136204dcfb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"f284e282967742cc890f7f1691347567": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"f285a6e273514576a150419732076450": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"f28751562efc4d0e89cb86ab8511c56f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"f29153268f96424bac77d47c79aa5499": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f293b854193749ab86253450d4e0f406": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_321713322a91435e9fba2f8f69a98527",
"style": "IPY_MODEL_9614856863b248c1ae4cd7e32daea8ef"
}
},
"f29ab072660f44e89302cb3352ba9487": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"f2a0427d53d1439bad2852d7610887aa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_857d78a657a04f039da54500cc202286"
],
"layout": "IPY_MODEL_281b442fe66e4a92afb7a47455a05de9"
}
},
"f2a7364e57b54041aed9a4d749e9da9a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f2a850b6a8e94e38872120f28807dd1f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 0,
"layout": "IPY_MODEL_4ea732caa4be4880860195cca0654cba",
"style": "IPY_MODEL_6e3cfde3d14c4a16b12934cf6db560de"
}
},
"f2aa87a453574057ac0da3f161a82bd9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_1cc8742fc8cf4a05a682b6d2db4f52e4",
"IPY_MODEL_f2a850b6a8e94e38872120f28807dd1f",
"IPY_MODEL_7670fbbb33484f8b9f810a7c2c315f14",
"IPY_MODEL_8086853269fc4e9f828b4cb07aedec3b"
],
"layout": "IPY_MODEL_05a669c9cf644aafaeca21b81ea4fd04"
}
},
"f2c2fab33e92428495b1f166028ef7e0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_e9a5378116874f449cbc9dd67160822d",
"style": "IPY_MODEL_623ebaec54754318b55a78fc9492eb6a"
}
},
"f2c4549be8a04f548429eecd593018cb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f2c90087ac784911bdedbcfacc7f944f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"f2cc7b6fa62a4327b32b147fae9d390f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f2d3f3131a3c445c8d2d8c97f90db2cf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_531bb1931ed9494e99124651932d2b1c",
"IPY_MODEL_630d7ca0fb8c410e8255807529eb66cb"
],
"layout": "IPY_MODEL_449a50b3e9f741599e3e2fef1cb97a8f"
}
},
"f2d47baffa624804b3c22cdc7f3680c2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"f2ddfa14f980491a894d283ed9608672": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f2ea8d815e9a45d084b8e7a5096e867d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f2ede6d0843a4ac6aa488bcacce6764f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_5881de9aa2c244908a54ac38709ddef8",
"IPY_MODEL_c4ba5f4cf74045be8986dc00010432b4",
"IPY_MODEL_a6d326fe7c0c4f2697e5264365c7de55"
],
"layout": "IPY_MODEL_f386a274c3994ee883c22eb7607c2f52"
}
},
"f30e1b415955420b965a4349bc720184": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 8,
"layout": "IPY_MODEL_12e4e8ed793643d391cb9c5bdeb354d2",
"style": "IPY_MODEL_ab1c1557e4e84716921a01f8a8873986"
}
},
"f316e093fc5949a28d12daa1208579a6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f319b8a41901442e9bda21d78af05dd6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f31b5115e55b4057826017a7779c5fbd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_95c862a2433344dcb0af8afe2df7c73d",
"style": "IPY_MODEL_4a6b24b944354eb09e03305413c0049c"
}
},
"f33553c6495b4cf281d8def4b7e88fab": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_9d0996d4e4f345dabbd9197b75de4988",
"style": "IPY_MODEL_b94dcc9a26334be6b6f139b902c7f923"
}
},
"f348b67bb7984463a57211539580e7c0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Amplitude (nT)",
"layout": "IPY_MODEL_0f0152371fe24e42bc7fc7efe0cd8cb3",
"step": null,
"style": "IPY_MODEL_b250011be7a84d009a39c88f1a0403cc",
"value": 60000
}
},
"f34f62c09b05416ab61768e7813c04c6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"f355eccf91a34397a4a272bf09b4af98": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f357282c61b24791a2a30e812c46804b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f357c30ff34943b5884bcdf66b82d701": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 0,
"layout": "IPY_MODEL_b6fde39fcfc24cd49d39d692d34fd2af",
"style": "IPY_MODEL_7bf86551e0f74347957592823952d86c"
}
},
"f35d1f0d2e9b4568b0fc1a7deb871333": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f36e21c2c8ec49ecae657c8b149f2326": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f3795475bf0543138301987e50949cfe": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_6aa34ae70b614b7eb0ccad2eb0c2d3f2",
"placeholder": "output filename",
"style": "IPY_MODEL_3feae1a33cf346129f87e3076e2eeda9"
}
},
"f380f5233aa348a9ba328a3cd0c58836": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"f381c8bfcc60427fa07292608cc303fc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f3823371bffd4c8887987fe7b88ae63d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_63bb5ad96622437a86f68109bfc068ef",
"style": "IPY_MODEL_a81610b8318442e2be08be4ecc78d891"
}
},
"f386a274c3994ee883c22eb7607c2f52": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"f38d22899b9a44c3bd9047ad19b85bee": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_3a04b3701b034acba70faab3ecf038d2",
"IPY_MODEL_bd052ac5aae54ab4a1900cde6a3c8cda",
"IPY_MODEL_2850ffe9ce7048118b328e949f114480"
],
"layout": "IPY_MODEL_b6345bf68f7a4b2fab2c90dcc35b2a9d"
}
},
"f396d9fff4134258b61a3a688c3a1452": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"f39f1274bf494dee80326458eb139422": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f3a06ffec7d344c19ab5296a848e291d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f3a2e06926ce44e9a8a4ae61df2a1cf7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"f3b0e8b8e48b490aabb55266c18204bb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_296fcf1f1e4e41acac3f89f69ef8a811",
"style": "IPY_MODEL_b315b94c697c4e128e764beca8c869dc"
}
},
"f3b47110b21b4ed5be26a21952344cac": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_c4427f1c4dc446b1827769f8b2cedd86",
"IPY_MODEL_c9d3423a01e44340b9e13c3f30bd4ce3"
],
"layout": "IPY_MODEL_9a42698d11ee457caa4429b8163d494b"
}
},
"f3bb98551cc64450b73618dae4c0a313": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f3c54c0b6e6445e39290d537868ee6dc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"f3cda1f5ac9042758d8e5073fc3d8d06": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f3cf621edcfb43f78241a3fbb329b14b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"G:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"D:\\"
],
"index": 0,
"layout": "IPY_MODEL_1f30fd70535c457c89dcfae323bba6a7",
"style": "IPY_MODEL_b4e6699fa41443b8b9320fe2d4cfeb4d"
}
},
"f3d8190dfa8242be99bd3b4020e6b8d8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_3251e8225d4f4f49a41b11c6b71380c4",
"placeholder": "output filename",
"style": "IPY_MODEL_4460d90b55a84c59a61ed3783bced727"
}
},
"f3e1df0a9b0947738f0d09c0bd203611": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"f3e8db8a07484bf8acdc7d291bb322f3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f3eaf583ff8a440187b967d5d6a45561": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f3ecf06cf37245e5862c31128f0ae433": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"f3f318a011d94b43a3e7c151e748e646": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f3f4189585db482f9cb05eadab6062bd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_25b54324263e4dd1a9275eccad085ead",
"IPY_MODEL_29d8ffbe6f124f58a7fb0951533784fc"
],
"layout": "IPY_MODEL_f135ac5aff91481f87175da700a19516"
}
},
"f3f78195a81b4f8087e5832c9b97eb18": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_2d7f3f03d68d4694b8a55970a446a508",
"IPY_MODEL_bdcfc2c18e4b4f41b73bc429fd5bdfc9",
"IPY_MODEL_9989b0849e384f749c406128bebba39a"
],
"layout": "IPY_MODEL_e6231cc63e044e1a9c68691eb366f843"
}
},
"f410b249a02241568d63528014c8b22e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_d6f3b092a27144889bf8b8c55ca78dc8",
"style": "IPY_MODEL_1aaf2a013fbb404da96aa37992bad271"
}
},
"f412bb2ab54c46b19eb3e08e5d25ff32": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_fe93f916105c43f8a92858bf61e2a7d8"
],
"layout": "IPY_MODEL_cf04fd7223ee4e1282ad7a0e5acfcef6"
}
},
"f414f4ea8696424b8c7cd251ca02a1fd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f4233283de9b4f3a90e8b5260b6dd735": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"f426bf1abbd4415d90f488f1790d6a8e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"f428f08e531048afbdedc22c18f50f94": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_c270405d7557431c938fff89e1a64dc8",
"style": "IPY_MODEL_fd0f36b44c0d4462a0966fce3942e879"
}
},
"f434bae0ca494ed48a2afb2826a7e1fc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f45e067910d746cebe1dca13eb62440b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f46547da0a2542c08780122e17aca834": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_0215fd6e31f8473090c75e47361875a0",
"IPY_MODEL_3197349de5144dba887d080b841447f0"
],
"layout": "IPY_MODEL_d0fd313579834f28ba6919ba95cc740d"
}
},
"f467f203f45245c39eb664fb974fe150": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Geoscience ANALYST Pro - Live link",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_2e0c7210a9d4446abe539ed107df6c5c",
"style": "IPY_MODEL_020aca3491934c2bbcc1a43daeb95789",
"value": false
}
},
"f46fd4bf500b41e3a905ed4d30761987": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Compute",
"icon": "check",
"layout": "IPY_MODEL_22a705df2ac8459dace22d29b61c6aef",
"style": "IPY_MODEL_9ec71fd657c3428780e6ec7615f435fc",
"tooltip": "Run computation"
}
},
"f48996224b934eb3b9d775ec6da04b16": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_b10d5cf19ea4404ea3ec6347c35ae6ac",
"IPY_MODEL_eccab3cc3ab34e65b0607e9c14ed8144",
"IPY_MODEL_1adb4e5fec1544b5b27617b17b3e0404"
],
"layout": "IPY_MODEL_d160cc08f5e843acba9e7ed6dc886aaf"
}
},
"f48d4ef1fa3f4aceb411fb8833f4f20f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"f4900b6b52964498a9605d1ff811c418": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f4963cfc033344d8a6e392514df95810": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f49e07111c6840178cb917d9f4be0078": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f4a28260a319493d8e2fb7b0ec43e9a4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f4a2b7d6979d4b8195346b77f3fb34e0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"f4ba0706cf8d4035beff91deacf20c0b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"f4bdadb3a19340d7852d0b64095f6309": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_4774fb14183e4d28a10e6fea5b6bf49a",
"placeholder": "",
"style": "IPY_MODEL_1e5b071fa31f47218101e16a8bbab30a",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"f4c22f8f40474766879bd76399ba4a0e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f4cd78fb3346432f896161d9663ea76a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_62c675876330484caddbce4a1d47dc51",
"style": "IPY_MODEL_63b97dd161e14abea47b87e593096dac",
"value": "Monitoring folder"
}
},
"f4e0feda7f144eff8aa8fb11d315cee3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_18a5f8f4ee2f436186d79beeefd27c65",
"IPY_MODEL_13486703f3484ad6b0c65e300324c58c",
"IPY_MODEL_37c2fc387bcf471d9457e922e4899b61"
],
"layout": "IPY_MODEL_4c85b8f8091546769341c08316ea7316"
}
},
"f4e1ab0f7ebe40afaeef8e355499dbf2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Bxx",
"Airborne_Bxy",
"Airborne_Bxz",
"Airborne_Byy",
"Airborne_Byz",
"Airborne_Bzz",
"Airborne_Guv",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_3ab2b7c709fb428390a9f588620dcaf1",
"style": "IPY_MODEL_1c0eb024d2c343a5a8036daaacc74156"
}
},
"f4fef40503a04a6c807d43419c7fd3fc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"f5054225f1f94e789fa4fbb5716f3ce4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"f50b651776494084b869c9b69148b78f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_112b1ce9cbc54b598fd02e6abb8f1460",
"IPY_MODEL_b6c30a6280d0432d856ad2621b39c5c1",
"IPY_MODEL_1bd45a03481b432999ad10ef6b1e3424"
],
"layout": "IPY_MODEL_bf0c076eef064be8b5648c890a8c5fd6"
}
},
"f5368e2fb7044f49adc0aaec729252e2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_a0bc2a9c10e54659a936fc46b66cf37f",
"IPY_MODEL_1351ad3025ec44c39beb7ed697048867",
"IPY_MODEL_49d65dbcff7b4f02a64d7676b108c3c4"
],
"layout": "IPY_MODEL_e08c3acc16e744adaf0a2a7d0d143a94"
}
},
"f5468c59617c40cfbe22b6d80797987c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"f547a4e6f8e44711abcdd79051d20ffb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f551f5273abd46fca5617d4e13005331": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"f563b845c27c46959aba5fb95c81e9e1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f566cd4054f94c68adfd48108bc9e374": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f56d6aad5dcd44039b1fe60a04512cae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"f57822acc51349ce9416cbe56483a3fe": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"f586750d2dba40008e0a6be6c04b390a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"f58a01a16f80401bb5ef95b681c45e43": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f58d908af49c43d6b434307f28384702": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f5ac3f3cf1344e7195f40f107e1fccd6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"Model",
"Constant",
"None"
],
"index": 1,
"layout": "IPY_MODEL_1f3a772a0b644441bb0541b9fc1ff1e1",
"style": "IPY_MODEL_5085a912413342069f4aa4fdda3c1f01"
}
},
"f5bc906ce6664be2aca3e76126225c8b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_7040f05c063e4a6eab13ff23d08e60d9",
"style": "IPY_MODEL_54c8e64007f046b49dad46c16be92019"
}
},
"f5bdde79e75840689f1e826aff2836da": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_811cdd751a53433881ad52f76bed51c2",
"style": "IPY_MODEL_ba29f251f7ba4221a7fd627a7f2d29d8"
}
},
"f5d3821eebeb44bdb2188f662d467ce4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_685bbb4e739e470a9d4eef8d04852d89",
"style": "IPY_MODEL_7234e530c76b4f4a82d0cb6caee80fe8",
"value": "Uncertainties"
}
},
"f5d3c8991ead40c1add1660ba62ced77": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f5e03539151240d69580bc744042b1fb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f5e7eafd455546d2ae6e5af84de3c558": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"f5ec2da933064dca89fcaf3953ba3fff": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f5f756ae77404e31ba99442707c4d68a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f6019e4ac78a48fd85a9bd1b3a5a4e24": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"f6049d1b8e604a4cadb9e3be64e179d1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Values",
"index": null,
"layout": "IPY_MODEL_a6ebf53cf91f4dbdbd9faf6a35fb686b",
"style": "IPY_MODEL_41d806c13e67409497d20f15423061c7"
}
},
"f6152d4c7c474c7783ba12b486ad75ce": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_e75a380fe9344efc8c592ea32089096a",
"style": "IPY_MODEL_51a1760226a944a28209fcca3eb5e802"
}
},
"f616def71eae4099957cdd5273bf72aa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_4f0e329330ed498c9eca41e0a1d99072",
"IPY_MODEL_e63d0c2f90a246a7ab664a7b98a44f89"
],
"layout": "IPY_MODEL_6120aaa6c50a40dbb88943a05564b0ce"
}
},
"f61a9c83d5f7416895a12096ba1d64a9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"f61ba258ba54408fbf02fc857a404992": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"f61e00a80cfd4188858e94e1e0c0e01d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f639ccdbfdf340fe9470327422390147": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f63ec067407f4885a2d9a268082ad929": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "EW-gradient (x)",
"layout": "IPY_MODEL_ea0ec65de4a64b7c961b1ea712fc0b4f",
"step": null,
"style": "IPY_MODEL_f79f537dd84446429a3ec03be3cd1f96",
"value": 1
}
},
"f6486f2d53b74e79827da55e8d83508c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_e617cce1e3fb41009bbe2b81c6763d1c",
"IPY_MODEL_028482559b7d4a64b4f72d9946cb0d0b",
"IPY_MODEL_8768a11678e84242ae81f291ee5c760b"
],
"layout": "IPY_MODEL_682dd7b7df094d3aa156881444448944"
}
},
"f64de1c4676d459bb3dc13dfb62f2ea9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_3aa8e2f5bacb449d8e2fb24789f762db"
],
"layout": "IPY_MODEL_b57d3dcf4a584dfdb2d0436c996957ca"
}
},
"f650beb794b64822b2db602c63d0bba7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f651202717674bd9b7982af0d9169d4c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f677182181ce44a3ad0926e3587357ad": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f678c50d4d7948c2bad750613129a8cb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"f67a5aa2fb524281aa47a03079c536d4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"f67ed35afd894687a6ba22bd04b617e6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"description": "Save as:",
"layout": "IPY_MODEL_360eece53a5c4f1d9dfcb1503ea7b8c7",
"style": "IPY_MODEL_ac74d10d978140b0b8ec0693fcdc6747",
"value": "VectorInversion"
}
},
"f681361bc57942af84301d41f2da9f72": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_11dbd8f55a874f6d950c629b0496e587",
"style": "IPY_MODEL_76af39f5ef1645ee92b40055d0ef8a6e"
}
},
"f691d91bc1024a4daea1a6bb59e4fca8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_6648d099f4544e24a8fff25700d301a3",
"IPY_MODEL_8db187d6afb748f6ab7ce2200a41e031"
],
"layout": "IPY_MODEL_791a9d096a72414bb7884105a131e464"
}
},
"f6b18dd9314749ce84825aa9f04e0ec7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f6b2d666c4ba4d52a8e5265d32470943": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"f6c322598fdd4f2dab08430c7bf656c4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"f6c480dfdc764030920f259402bc6b04": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f6e2ffff930d48aa84cd32139cf004d5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_66f76f82cfd04326b56495466e437bd2",
"step": null,
"style": "IPY_MODEL_db398a70e5f2420182c838527353629c",
"value": 1
}
},
"f6e3794ab4aa45a394fbf773920d5143": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f6e4686e01154e86992611c0c83804a6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_c0b51f14ba254e18b5534e207a1bc803",
"IPY_MODEL_39b6b4cb79d44b1ca79e5cbfe33fb0a6",
"IPY_MODEL_ccd19d75e19b4663b6a5358a1101b61a"
],
"layout": "IPY_MODEL_fb74ea1022d546d0aaff741d528ddef0"
}
},
"f6e8350addb64e1c8227f2b9ed33d6dd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f6ea2cc1e21a430e9e24deeb70a8d0a3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_96d043e2fb6b435b8ce7be9600007b1f",
"style": "IPY_MODEL_921c6e14f6e6477d92995e038205d1fa"
}
},
"f6ec75d7471c49cfb8f07c02e3b7ef2d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_5f82bf5c0d254200beccec52491fc2dc",
"style": "IPY_MODEL_85aba85220fd46208f525b07095887e5"
}
},
"f6f95ccbf414412dafc05f40f195e51f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f7010875b3bf44d2a8dd6c2fca839b5e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f70c07910dd54223b1109b6d393d826c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"all",
"perimeter"
],
"description": "Method",
"index": 1,
"layout": "IPY_MODEL_50e464f553e34b7e9d7922522bd0bed6",
"style": "IPY_MODEL_4233446c54964a4b85f94d57fc95b56e"
}
},
"f7111b490aa145b0975f2305299959fb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f711fece3d4a4dbdabe5606bdcf3ae1c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f719737817444d55aeb693b390a21597": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_6b683b58e0eb4dd29f7ff532d245bd0d",
"style": "IPY_MODEL_9714a9aeb1a747e6ad7cb4388bc2b7bd"
}
},
"f731968527d244168ebcce1930563c47": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_12b2656292dc477dbc244794a441710f",
"IPY_MODEL_081fad7bba9e448888c718fea3ae141f"
],
"layout": "IPY_MODEL_3964b16aaf594e049bdd2fde1226638f"
}
},
"f738b6c58b1b493fa970ead611452c61": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_0b540edd14ef42cbad76a49a65efe627",
"IPY_MODEL_297b1ee9f8764e59bb3007f90dd67b27",
"IPY_MODEL_386c6bedf7504d298be839ff7f6a6412"
],
"layout": "IPY_MODEL_6946cec642c048439bb873a054b03991"
}
},
"f73d1f3a8a994adda6811285a2fe81aa": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"f745ced319454dbc852ae710ef6237fc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_8c748567c80c45f8b0d9864a80777c3a",
"style": "IPY_MODEL_722cf721a93f4013986a7e6d9ec3c21c"
}
},
"f748d962bb0d403e973d3ae7978f9a61": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f7533bc46db7497e8ae6943da6c6e99f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f755c726a5d94376b40856cce95566df": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f75b1ff6a2dd4665ade9ea6850aa8e5f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"f75d98c52ee94205bed00cd28c58c7a4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"f78150a835d740639e121484023445a5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"f7880cb70c264b3a8e70698a8cafad96": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f799e4317c2145beb8b08376c9c9d91a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"f79f537dd84446429a3ec03be3cd1f96": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f7a0b2f8dec245b19991ad92416e2e67": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f7b591c19da34a3c9ddd062ba4af26cc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"f7b71873886444299d05f2017ee8042d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"f7d41e1d7a784d7dbba2f64d3b2d01ae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f7e2b1a37cc94623b7137c24d93129f5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"f7e7eb06fb6944c986b84a89a2e740fb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "Channel:",
"index": 0,
"layout": "IPY_MODEL_5746051974d347eca3ae346319d50547",
"style": "IPY_MODEL_51fe55687d6944cda4b88329ad1dcf40"
}
},
"f7eac94b127349caa92df0ec64e9b5d9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"f7eebac9d5174971afc7c19454522925": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_511fb18370e14125b6879990a8b1212d",
"style": "IPY_MODEL_244c9a30b2c14e1ea6b55f4763abc701",
"value": "Inducing Field Parameters"
}
},
"f7f4b921887a4caaa6617d573d697e0e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_bb194a5715b3431987dac35bb3343fca",
"style": "IPY_MODEL_335a7135f77d42de8ce1865042a4b2ca"
}
},
"f7f807f9777e4f4582237aa0776da8e6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f7f8ee84cace4878b1b63bf6a06bf48a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"f7fda296b26247ed92ac840da5d21da6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"visibility": "hidden"
}
},
"f8055395a7d944659a4b3cd169bd3214": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "CheckboxModel",
"state": {
"description": "Active",
"disabled": false,
"indent": false,
"layout": "IPY_MODEL_644cb34552924c13ab10d68a76c6fef0",
"style": "IPY_MODEL_992535ec26bd46f79fc5e2f9c2ce6df7",
"value": false
}
},
"f80aeafc449946d084f8cbdf21b1c721": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"f80af9d27ca2436fa398c3b77b960b0f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"f80fb2ea32b7494caee1229f970fa96d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"f815ab0dcd274fc7a699b8fad10b2a29": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f81c35301cb74bec95be033d36ce8d5c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Vertical-gradient (z)",
"layout": "IPY_MODEL_2b076c4571fa4f41b0f7b385e3cc6154",
"step": null,
"style": "IPY_MODEL_cd203a6be6fc44048cf8791f6f831b4c",
"value": 1
}
},
"f81f2a26b45e4a95befd73e88b94f1e0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"Model",
"Constant",
"None"
],
"index": 2,
"layout": "IPY_MODEL_336a770e24dc4653813e2572794b77fe",
"style": "IPY_MODEL_f98b875a02c0414bb296054991e5eb7c"
}
},
"f828f79edbd54406b473bc9937d1fc8a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"f82e734f1f3747d4b5f4184f08e160ee": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"f83b4643bb2d498eafc179a60951c3d1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_81de48bc98904dc5be0b9e2b5166ea57"
],
"layout": "IPY_MODEL_f2671cb3714340138857c0a70a21944d"
}
},
"f840a84936a94a99ab78b7c09d66763b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_9d616f5361eb4dc6a4bf1831b0c9fde9",
"style": "IPY_MODEL_634ff9125aaa415abfcbae74a8c94ee5"
}
},
"f84ad90256464215ab601a9375e7640c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Airborne_Gxx",
"Airborne_Gxy",
"Airborne_Gxz",
"Airborne_Gyy",
"Airborne_Gyz",
"Airborne_Gz",
"Airborne_Gzz",
"Airborne_TMI",
"Ground_Gz"
],
"description": "[Optional] Channel:",
"index": 0,
"layout": "IPY_MODEL_df4b7afd438b46fa9280fde555fc7c15",
"style": "IPY_MODEL_2004d7ad42914e4b8f761a3508104226"
}
},
"f84d42d6a0f34072a9a1c4d0fc591107": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f8578d1db2574e3aaf8e1c0bec4e2e3e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f85aba172d4e4e5498665838c8c5801f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f861093c7617462ab06132d034d17477": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f86572c142f14dfd8b50f5ffb1ee3871": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f86587f8a18a4b59af8f3badbe91e066": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f865fbe4aea24d898c5174ef812e2a5d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"f87d78f4c0ba48ac9e945709efdb7698": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f8824fc231594e70a18c3a5224006c4f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"f88f87149727499ea848415e35cda343": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_5ce78a59e79b4e2fbe06b17e784f476f",
"IPY_MODEL_b5742d276d8f4ce2a48f2afdf6b32c15"
],
"layout": "IPY_MODEL_2407965f0fbd49ef9b9be7bb64c0a949"
}
},
"f8929f0c7f264b44b45f595b5b946a62": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f8939da1b95f45e5afebb56c0c61cef0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"f89f5f78b85342eaa8283581c530e441": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f8a4b451df8d4e49bb542f8226839d0e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"f8a85296cdf943058b596f1aaab73db8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f8aaf73e8db9425e8e3a88f12406a3e4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"f8af64650fe74df092adee95fa7249b5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_d577aebaf22c40f9abde26e4cc99ac28",
"placeholder": "output filename",
"style": "IPY_MODEL_5f8af613c9494a8aa0e9f1a0c4a66d61",
"value": "FlinFlon.geoh5"
}
},
"f8b0ee9f68cc48b78ff4a0685f401b8b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 Temp",
"📁 uijson",
"FlinFlon.geoh5",
"FlinFlon_dcip.geoh5",
"FlinFlon_dcip_v4.geoh5",
"FlinFlon_natural_sources.geoh5",
"FlinFlon_natural_sources_v4.geoh5",
"MtDore_TMI.geoh5"
],
"index": 3,
"layout": "IPY_MODEL_4232d991447642d4b28f2ef0c8850b03",
"rows": 8,
"style": "IPY_MODEL_ee89eda4532143a5a61eb4207de32c7f"
}
},
"f8c69cdfe68b446c99c7deae1c1682d5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_6ea3ba3b018141089919373a64e6a328",
"step": null,
"style": "IPY_MODEL_09a2f6c2cd794d73b247fae2011d3cf0",
"value": 10
}
},
"f8cf5fbe601c4719a35a9d86086031ce": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_4fa8d69892bb4e10bb5071801ffc411a",
"style": "IPY_MODEL_afa4d65bdc84414ebc312e7719b29864",
"value": "Uncertainties"
}
},
"f8da77d8537a447282f9be7b769d1d66": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_b0e35d5ad6a348c08c0ed5351d82df9a",
"style": "IPY_MODEL_718242644dec4e47a3b5195a635ab7e4"
}
},
"f8e042bdd9b54ff0864c14726dd3de80": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f8e2f3b3e3ab4b809fccacc269b32149": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_5115a7230e184103944accb32c2f2192",
"style": "IPY_MODEL_6afa2c4a6b394bef85e4bcc172aa8e9d",
"value": "Workspace"
}
},
"f8e75f6e5d2c4848a1d3bd2a2ad1da07": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_f99709d2cb7f46ae858bdc40e3fbc32c",
"IPY_MODEL_49570f0b12c44adcb56b13c078e19817",
"IPY_MODEL_22921659a3a3424a895bcab77a881c06"
],
"layout": "IPY_MODEL_f551f5273abd46fca5617d4e13005331"
}
},
"f8ea9726a3e347f49318e70721f11e45": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"f8ecb7d98cf641d089a13735d97a34ce": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 Temp",
"📁 uijson",
"FlinFlon.geoh5",
"FlinFlon_dcip.geoh5",
"FlinFlon_dcip_v4.geoh5",
"FlinFlon_natural_sources.geoh5",
"FlinFlon_natural_sources_v4.geoh5",
"MtDore_TMI.geoh5"
],
"index": 3,
"layout": "IPY_MODEL_9de3decba9d3490ba28bef69ef57c9a4",
"rows": 8,
"style": "IPY_MODEL_5df0e200de244c9fb83daab90f6e47ee"
}
},
"f8fb6917d5644a4ab97babcfcc66793e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"f90d883ac1c84a64801e3965e0c9138b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_697920c047b4497c8758adbe185cb636",
"style": "IPY_MODEL_3206f11dc5a34267b3107ab6d6474db1"
}
},
"f91b104dcf024bfabb0ba35e63cd8959": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f91f3efef8da4fca9a511450801921f3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_54f0585662a44ac8bf3cac3479f71b70",
"style": "IPY_MODEL_3a84460fefbe4bcc940f86d30462bc20",
"value": "Refinement Layers"
}
},
"f921f0b9a8d24e229782fcfbaaea8334": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_555d8e050a6945fda99213e2a3b1a399",
"style": "IPY_MODEL_6f80d95ac7704f6d8f74773e45dd9a56"
}
},
"f9291554ee9448849af5aa5795c3b2b4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"f92be63b02c14d8f88cfc3bab4e7af6b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"f92f6330a3d14ff59a32b886aa142a76": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_cf2c56c14c89422ab6c68b029c4c519a",
"IPY_MODEL_1aca1b64ad29463b85bb5db64e9dce89",
"IPY_MODEL_0723fd4e5137430287168bb08f94f089"
],
"layout": "IPY_MODEL_3e3e191bec5149819445588b3403db4b"
}
},
"f937a002faf2454aa89537384316abc0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f937f32c9954406a8d18b1e67faf564f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"f938d1afa150403c812b1a87ef6c0aa7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"f93a6a1b671f4aaa8058636b935b5c67": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f95451519bc24ac79f13a9c0a9e70922": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"f9650e60edea494290f195dae4757b48": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f972d71b43b1411da1fe2c37e50dd32a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_e5b2309d79c44d08b3dad3faa701f51e",
"style": "IPY_MODEL_af8e9902ba3f4d1da4e1fd73d4c533d4"
}
},
"f97396588c8d447ba3fce599b2bdc0be": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_dd9fd5d869014d8db8208977344a2b8d"
],
"layout": "IPY_MODEL_4974399539be437b978422800201ae06"
}
},
"f973f489fae44550bea0d9e442d06248": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"f98b875a02c0414bb296054991e5eb7c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f992d4283cb34948b2352997c9d549b8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"f99709d2cb7f46ae858bdc40e3fbc32c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_50d81389aceb4b1d81affaf018ce4f72",
"style": "IPY_MODEL_885576c4fd1d4703930d826efd6efada"
}
},
"f99ad042335248bc827c6ea4ebf0499f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_7b101e936e764b25b5b6fe6acc0af6df",
"style": "IPY_MODEL_b9e35f991b0f41f0a2969766c5a4d20f",
"value": "Starting Declination"
}
},
"f9a459d1d5e6497a9e63f5ec9882f7e9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_2b4598ef951446b88b7f32b44e3231dd",
"IPY_MODEL_29a1a75339564742a36c1826ba1f33fa"
],
"layout": "IPY_MODEL_a67bec85c32749b880d31dc6c44e9e52"
}
},
"f9a9d2b8cc454a61b2c7507c28bc826c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_1bc06833c12d460aabc37b3575dce912",
"IPY_MODEL_78d7e674db0c4aceaea65a4a78bf342f",
"IPY_MODEL_e63396308824480d97f13d3ef8fa6882"
],
"layout": "IPY_MODEL_24a2f51b403f4950b0c01e4b047d1730"
}
},
"f9beae70d125444686a54cb176932d80": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_ecc8b11a7bab4ad295bdd5d55cba93f9",
"style": "IPY_MODEL_82cb06b20bae41e89041fe108145d58f"
}
},
"f9c1d3e807f34a2991afa299d668a1b4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_ae1f9beaaaca4941a40a6834d6465cdb",
"style": "IPY_MODEL_89a114ce07c74ab486a12faf9d6771d6"
}
},
"f9c23ac6542d47a3b4d968eae6076ae2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"f9c2c4d852e0471c9af9765c57c4de51": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "IntTextModel",
"state": {
"description": "Max CPUs",
"layout": "IPY_MODEL_5bf72b6148574547a82046ba5548292d",
"step": 1,
"style": "IPY_MODEL_154778bc09b84a8da78ead70b26b4a09",
"value": 6
}
},
"f9ce9f18fed04d2088182a1b830f7363": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"f9db9421064045208cc1306a7487e227": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"f9e7c3f18b694200807dd146f1aa8e8e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_b83f1bf800a4463fae525da06ba531ea",
"IPY_MODEL_82391593b1964398aec1421b85adb1d5",
"IPY_MODEL_2076dd4dc015463094e7331d745e8080"
],
"layout": "IPY_MODEL_b6345bf68f7a4b2fab2c90dcc35b2a9d"
}
},
"f9eeed564ca54073be86dd3992bd805a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_dc3eab531b8f4c12906b58ebb42494e6",
"style": "IPY_MODEL_d5de2e0e93064a1ea9bab1fe0daa5eb4"
}
},
"f9f30d533a9d4ca791d9d4a1b958494b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_4a3be65f2fcf49319ffdfcad4b9975f5",
"style": "IPY_MODEL_17bf271b00b24672a0874ee292a787b8",
"value": "Workspace"
}
},
"f9f742db24244c9a914b9f03869b266e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f9f7e03d22534499b896493883169c1c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"f9fc041365dc424c9484900169fac87e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f9fc08bbf06d4ba2b45f43790c4af9ee": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"f9ff448abb7d4e15a1ae286cd678eb9c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fa0aae90bbc64d56aeb698e07c47c7a2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"fa190946ec0547e5b164cfa4b5249096": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fa366c1ade9d4ee89959195c6efac474": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_be757433f696496a94a3a057ddd8d909",
"IPY_MODEL_d578b621c37644b4a47856ca8e91de04",
"IPY_MODEL_ada467e7e45943429981f09016668348"
],
"layout": "IPY_MODEL_ac8b6e05370641dc89ebbee41ddd8b26"
}
},
"fa420194a8d24c10a7e77779d6e28b68": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fa484e9dfc0c483eb7c4973bceb8ec4d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fa4ba5ff93f24b9fb5279dfec6c0bc89": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fa5112f65b5c42dd816c7872d4992bae": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"fa56e977a81b49f18d70afe1b3053ea9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fa722ed6eff844388a9a3511986d6280": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Floor:",
"layout": "IPY_MODEL_f03f3965a83949c2898ed6af53078dc2",
"step": null,
"style": "IPY_MODEL_12e9f07651fd4a2ead5bbd312417d008",
"value": 1
}
},
"fa7b289b6cb347cb92b6dd03e3dc1983": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"fa80b3fef8c34273a99ccc41cb43dfcc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_e374bba8320c427fa363483d0fed34a9",
"placeholder": "output filename",
"style": "IPY_MODEL_44ce71dc66de41a280e70f4ea9608123"
}
},
"fa9082ba64a840d1a8c09d64a7d0fcdd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_f61ba258ba54408fbf02fc857a404992",
"style": "IPY_MODEL_9883e343e7704785b8ace5f2326110d3"
}
},
"fa9adc11ce1a4074ba2bec69db96ba39": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"fa9b078f293042cb8efe1d14868dfc63": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"fa9b574653f248a885e8cc1fded4612b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"fa9f3b9854614f788ff7e427185929f1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fab0a792a1484061ae3a705c7fd0724b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 SimPEG_PFInversion",
"📁 Temp",
"📁 uijson",
"FlinFlon.geoh5",
"FlinFlon_dcip.geoh5",
"FlinFlon_natural_sources.geoh5",
"MtDore_TMI.geoh5",
"tem.geoh5",
"test_forward.ui.geoh5",
"test_forward.ui.json"
],
"index": 4,
"layout": "IPY_MODEL_9436b9ee6ad545b69be9b84093067582",
"rows": 8,
"style": "IPY_MODEL_973dacd62cc141b09c35272b42c5307f"
}
},
"fabfc2ba84824691877e5e9a4fa78c98": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fac5a48f160248fa8f399fed6ca5ac94": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"fac6e0d51f9444bc98d56a10991f9ebd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"facc9470447a44bd9dee2560a80fe471": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fad08b11aa58400e908c1eebdb1d5293": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fadcaaf225ff45f0a6e14f59508d50dd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"fadd91bbaf414fa39c062925ee6bb465": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"fae04b6c5d8842d0ba00fbdf4416943f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"fae3f3ffab314aa685e0ebd7ce3c6204": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"fae4c044312444f69dd79b9a3daebc92": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"fb03dc87441c4a36841b516aa7016b47": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fb04b80ac9ff4486ae74341793276919": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_bfdabd09ab0f49419eae6fc9b99bf541",
"style": "IPY_MODEL_505c92397eb14b7d8e88218ecc851b0c",
"value": "Save to:"
}
},
"fb05c8f0db7e4e32a234fdc796a1735b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"fb158a72e58946369e0dacf2016295bd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"fb27b6824f1240f59e22d0fd05c1f447": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"fb2ab7a2e792431093a4dcbf8cf9aee9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_e44f78eecdf44ac388fc5a59f98bc104",
"placeholder": "",
"style": "IPY_MODEL_eb0d5a06a74b4f5a908ef13be6ebea1e",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"fb2cca15ff41425ca163fddf6c501acd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"fb304d59fe2c46529c1e3f2bf1378a00": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"fb39d60e5c974d7ea47bde414c86efbb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"fb3c772ebfd543dcb37dceeeed92ac85": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"fb55590ac6494384bf922b2a371954d3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"fb5ae90827db4b8aa2ee348b95a3c89b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fb5b0aa6c0824390b0f6c890b053e07d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"fb6cc02f203c4a57a5cda9d4b752537d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fb74ea1022d546d0aaff741d528ddef0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"fb77757dfba442d5abc965559e8c8c3c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_f285a6e273514576a150419732076450",
"style": "IPY_MODEL_8380e0132a0e451ba9ee9e832d339dcf"
}
},
"fb783c74dedf448885f56b293c239169": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_7b3ca286a16746d4a5423e588ce85119"
],
"layout": "IPY_MODEL_7c3dd88a8fdd4bf6b06cc1a423e0b416"
}
},
"fb7a757739724007bc060b6e68882fa5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"fb853d74c55541a5bf54f733d55b0043": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"fb8754194cff4077bdffe257aca8e66c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"fba819a065794c6ca3141c9ac8c98238": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_3428b53a5cde45b1a25968b4bbb71e92",
"style": "IPY_MODEL_3c60f2c180c14f08a84ad434e8122df0"
}
},
"fbbcca56a59442099a5a063e80bfe1a8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fbc67c44dc1b4e8a910f9f6757d1b719": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fbcc85cd484e4285a60561aca94ab484": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fbd0a733736b41ef88834eed17aecdd3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Maximum distance (m)",
"layout": "IPY_MODEL_712bd20ce8d84fa78e31137eaa541729",
"step": null,
"style": "IPY_MODEL_b2d48e3e5a6b4fd0aaaff4ac8222cf89",
"value": 5000
}
},
"fbd68f86d1f34ce18c17fe517130192b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"fbda562bb8d640a0b2545905eb3b44b5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_975d5ed4a74a4b5a961f9c13f497c287",
"IPY_MODEL_179b22125f1146f38aabf7ab71b06f51"
],
"layout": "IPY_MODEL_7b17cf54e9054f0a884d507ad53081f2"
}
},
"fbdcc58d480240c29934b12bdadb4b63": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"fbdd3d9e0c264de9a7b584a878c972a0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"fbf0ab285d5343b3af853064200e7682": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fbfa60fa4d174b358fb46b655146d966": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"fbfb786d6b8f481fb1b6e38625831f27": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_dd3f66d79e2447abab0dceae81855e9e",
"style": "IPY_MODEL_6d7d277c1a4748f989a4a2e8ac995c83"
}
},
"fbfdd562254e4d2f8ef1186919282a49": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"fbfe47bb066b459b92ca5ee5e512ae0a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"fc0cb7396c9d4c37964be13d239d48bd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_bbeaa991a20c4a6dbaf3799bcd6067b8"
],
"layout": "IPY_MODEL_2d97fd028c5c442495757e7b405ccdad"
}
},
"fc21318869134fabb52e976222d763fe": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"fc280e1c9eea411ea87b867c8f262c7f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"fc2d2acb49fa42aa9ecd3093ac2ed8cf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"fc32bec0ae1d4d26b4e12359100da070": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_ebcc9de00c164e279883f497fe4487a6",
"IPY_MODEL_dcbf76c4dfc04e479c744ca7442d4be8"
],
"layout": "IPY_MODEL_33d2c40f21894f3f9641c5d472706b44"
}
},
"fc38144f3ac34baea5488a862e25ec21": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"fc3b25fd0ff9454383eab892f0536e23": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"fc41d021c5624af1b523de3292fcd397": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"fc43d67851014cb8822d7220cbcc8acc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"fc48d2a385e141f99a4f7b5083882529": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"fc558fd654754242ab66c436b1616ff3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fc6515b7402344e5949dc1eaedeac389": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"fc6ea3bffede44aeaf798afcec76429f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"fc71e84ecad64d76b01b4d7989f8da92": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fc758e4417a94efd853f8bd3519554f2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fc7ac48bea3a4570b185ee7df07fbfa1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"fc933f97f9554f0b98c939c5a4215213": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"fca0a68d98b747fb8fd1ee7926517c2e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"fca302184a774dc5bc1d655c6027d3a2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_7470cfb1b96d46b5b1518fd1be1954c4",
"style": "IPY_MODEL_b2a95c889f914488b5b9d810763aefca"
}
},
"fca420dd85044b458c653f684c91130f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_031b5dcbcf1f4d54bf3457f76e2e2566",
"IPY_MODEL_ffc05c884cb5457798ace87beb449e18"
],
"layout": "IPY_MODEL_222ff4045cef459a94f6095f1a9b2e7a"
}
},
"fca6c5ba1a094fe394deadf681ff33d0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"fcb16db273b140c79022a46aff4ca4a6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"fcb410c72c0745cb8d52b301636c56f2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fcb5ceb7b0d14804adb10a7a469773b4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"fcb71d4ab5f948a5a7fc4ba820ac2122": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"fcc324bca3d945349f9c944485e8af7b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fccc482763434e1b8de0335c3e6977f2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"fccc9ac8165d41ebbe80c92aa26cd6e2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"fccda43a625841d79b767482c61d7530": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"fccf0f3a656743a1b42c1e1e59f27865": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"fcd173f6eb8243108115c30a03c41fbe": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_39b962625bd743fead8fd556860ec20a",
"IPY_MODEL_7f3ca18fec0144a9bba0ab34efc19836"
],
"layout": "IPY_MODEL_2abee2847be84deeb803dd14038418b2"
}
},
"fcd93a863deb44e29c52c5ea7050df19": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"fcdaa422265c4910afa32eefae0c4666": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_32cd4486f4ee49c39d73a5ed4c86d8ef",
"IPY_MODEL_02e3034171994bc4a1ff1cd722e7ab90",
"IPY_MODEL_05a006b4b2aa4d48bf5c55cbed050b21"
],
"layout": "IPY_MODEL_1104a6a545f6444a8d5cd85fd314638c"
}
},
"fcdc2a82b0124aca97daf5e9dfc123e2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"fcdeffb53f364b27a55c89e02e416a72": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_11a5f55bdd74410dbf30fa6ca52e6ec8",
"IPY_MODEL_244d10cf7dce47d69db6903851a78894"
],
"layout": "IPY_MODEL_988b6fa1cdfa4721ac204baa6f344c57"
}
},
"fcea686f7ffe451eaef9a6c6adc3949d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"fcfa4f1ecea94062b3a5604d87b159f2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_040f4ec36ce64e749cabeeb97cfe02be",
"IPY_MODEL_9cacabd908654b498df2c911110e1e61",
"IPY_MODEL_49782974d4784b2cabac89ed760b9a66"
],
"layout": "IPY_MODEL_d94899e6d7744b48b0b3ab805aaaf3f4"
}
},
"fd05ccfa5b604545b163dcf8f0a6e5ef": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"fd0f36b44c0d4462a0966fce3942e879": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"fd1a5a50459b45df93fffa6bda71984b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_8be0bc68c95649f1a447b23c2e7affd5",
"IPY_MODEL_de46e0e0b4e043659eb25a1b8ffcd2a0"
],
"layout": "IPY_MODEL_c0054cccf60f4a97a31b476b9aa25e8f"
}
},
"fd1aef34d20b4e5b8811d0ac2c9784ab": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Beta cooling factor",
"layout": "IPY_MODEL_a56b7872cfd2445c9288ad34a1b8600a",
"step": null,
"style": "IPY_MODEL_a591932cedc241b988c07d52c37c284a",
"value": 2
}
},
"fd1af070bf6c476abbf1f391489a4863": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"fd1c3a2badc94bf581cbe52249e878e0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fd204ad9b60143ee8a7d0033ffa7a51a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_f1eb4e1ceb734cd0aea621d6b84002cb",
"style": "IPY_MODEL_d090f49fa02c4e44b7b2687a4a1b85ea"
}
},
"fd26fb94320040e4901eadaba0415054": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"fd3582198bca413698d206a0721dd22a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist pathlist'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"fd3c85a1beb341d3ba581de8465e99f1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"fd3f3f83f5cb4de0b767b00e5dfe2327": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"fd52807080b440b4a997cf1f01782284": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"fd530bdcd9a043e786502755813e0251": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"fd817e68f97e46a78561e93949a92d13": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_22685728d3994ae1b9b9be0de1529533",
"style": "IPY_MODEL_5d3c67bd33684cb38b0b207fc3902e9a",
"value": true
}
},
"fd81b268f514466db9f2a3d55d5cd854": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\"
],
"index": 0,
"layout": "IPY_MODEL_95b96c3a51b048868cf51aca5d2c7852",
"style": "IPY_MODEL_63c6b5a7a483428090e61c709d4c1f17"
}
},
"fd83bbfe57a04144a97de252e2f30882": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"fd8e6cffba4e4ea89e71ec8ac45f79ea": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fd9441c68faf46169aa767a0442a2b5b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_bb1787f49d25469cb4b48ae98e940d97",
"IPY_MODEL_5b7324da9b1e447a827ef6988bc80f77",
"IPY_MODEL_dac59f81359c44e4b2adaeab11f02dd9"
],
"layout": "IPY_MODEL_24a2f51b403f4950b0c01e4b047d1730"
}
},
"fd974823161e488ba20f3ccb06d4bf0d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"fda55d3f561e41aaa4e2dfb3d63cd440": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 .."
],
"index": null,
"layout": "IPY_MODEL_283f0047461c4e1aae4c46df534a6205",
"rows": 8,
"style": "IPY_MODEL_48d0f786346a4bb9bfe7b8b2d1369bda"
}
},
"fdaa38dc4cd840c4a7f519d5211bf7b9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_1826bf59f1cd47599ccef9b2bb309124",
"style": "IPY_MODEL_15b1dacbcc4f410486303ded51b04b17",
"value": "Starting Inclination"
}
},
"fdb100d2df8742ddae54bb5a644576b0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fdb429f0724c4905af04224bb09d5aed": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fdd3fde730414f80a6726b279bfcee60": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_ce5906df4c294603af9cf4fa93eac261",
"IPY_MODEL_731510c850aa427bbdc72ab45c17d495"
],
"layout": "IPY_MODEL_4790e96e27c34583b5ebb9d3f4992a06"
}
},
"fdea7f1ead084ffb89e63c545d062fb8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fe025d308c2c49d1b08b565abcab332d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_gap": "0px 0px",
"grid_template_areas": "\n 'pathlist filename'\n 'dircontent dircontent'\n ",
"grid_template_columns": "60% 40%",
"grid_template_rows": "auto auto",
"width": "auto"
}
},
"fe051bda25bc4f7fba0236f419738df8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"None",
"Object",
"Relative to Sensor",
"Constant"
],
"description": "Define by:",
"index": 1,
"layout": "IPY_MODEL_01a3e253e4844f77b9478c70c554e581",
"style": "IPY_MODEL_86395a05cd384177a19cba0ab5d3fd0e"
}
},
"fe0dabcd7e7b4581974c782eeabb49e5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_a4433e75b2e94cccaee8a798773b9e93",
"IPY_MODEL_ad91fe80b68d4316945303d13c38b7fb"
],
"layout": "IPY_MODEL_3b938e44569b46a59540c5aac8849e82"
}
},
"fe1237a9ee0449ab80043806ebe184bb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"description": "Object",
"index": null,
"layout": "IPY_MODEL_0d22a3a1dcc644fab67c419dfd7ef07c",
"style": "IPY_MODEL_f7eac94b127349caa92df0ec64e9b5d9"
}
},
"fe259cd6fc4e4763a3b1006498232708": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_403c72edb2b446428431909120c5cf6c",
"style": "IPY_MODEL_cc92b3ad62f6498aae054aceb0dac23c"
}
},
"fe267d56d132445c94a554af22302f9c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 .."
],
"index": null,
"layout": "IPY_MODEL_98d843327eed41e9838f21065aa36a53",
"rows": 8,
"style": "IPY_MODEL_17e1afb4ca61445bbdf6da96abedc995"
}
},
"fe27d29e985349b5b3d76e6169b6b7db": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"fe2c569dbe454b729e20c5ea6ea3f2ea": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_e704be7eb1a44c93b92245b3d2a60726",
"style": "IPY_MODEL_f216f8341ab24364b14d22eb1efa6b2a"
}
},
"fe31db2f3c1a4334abbd0382672b20fa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"fe372d109a5441108c0fdd09d474b94a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fe426f3e2eb0484abad6aa6a99cdeea8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fe58581669a945b4b505544414d0032d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fe67c716adbe42fc9684ebbbc7e1cdd4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"magnetic vector",
"magnetic scalar",
"gravity"
],
"description": "inversion Type:",
"index": 0,
"layout": "IPY_MODEL_d2c1824f35db4c7ba25da578afbda474",
"style": "IPY_MODEL_a5ad6f50a7534e78953100b64e317966"
}
},
"fe776a9ff5fe4a54ad56e8f1c2277c9a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"fe7b8cf21c4644658b596804ca50e3f9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fe80586e43d146989ebd83b8604e35ef": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_def5f748fbf1442ea041a99f6c941857",
"style": "IPY_MODEL_209f9fc73dc84296a07ce5aecdf23df6"
}
},
"fe8c4745ea654767a111a9d647bf45e0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"fe904445f1ec484cba9c8f805e81b3aa": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"fe91069b1a8d446fbf50e8fdb72cce15": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_d04d431a69bd4d74921b03e7c92934b0",
"style": "IPY_MODEL_19b82da26ba44c2e9cb3865f567817c6"
}
},
"fe92cb19673145a7a58acab0e724b52e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fe93f916105c43f8a92858bf61e2a7d8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_15d544074f6349abbd8a54a9983fcab9",
"placeholder": "",
"style": "IPY_MODEL_70b583b5d3354284aced6b8174c90cc1",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"fea15fb437194ef5babab868c48c23ca": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fea60d4aa5b844ada5add81f28a24ed1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fea7ad7e30f94a8698634a1b723855c8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"feadc04725ac4d1ea7a898ed5167c7a3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"feadf622188d4e25941632cced978acc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"feb07dd1685f4c0aaa143be93d47e9de": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"feb7871f3f034606960a4a079ce96629": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"feb857e0238644f09c16329f5d792974": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"fec0fe9b58554752ab0c723b97a279c6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fec469309d2a451394d666a773f97bde": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"fec542f2a45349f0aeb76e240f03bf44": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fed10d2db3724ecea0ddcd981898538b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"fee5940a168349b399c598e860c89b96": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"fef9d13ae44d466e8386ef45e99f3db5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_1ed31683c74d4514aa1a1d860f1975c6",
"IPY_MODEL_60110837390047609db943e2921eed43",
"IPY_MODEL_dee79b9853a5425380b1ee36ac13729b"
],
"layout": "IPY_MODEL_75592b57b79745acb3788ddaa31fd3ea"
}
},
"ff2d300fa21849b4ace1b327ee31378a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ff37210d7c8149ee8572628a426af46f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "Degree",
"layout": "IPY_MODEL_6bcda28389c440d8be7f9b4958cea2b3",
"step": null,
"style": "IPY_MODEL_c24a37b7987a4a65b9499ee75cf48397",
"value": 11
}
},
"ff3768d509a3403d96aaad76e705087b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ff4fa0eeafb44a42b02027aff83ed162": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_a35e8f8bef494ed9986d2a237fa5caef",
"IPY_MODEL_16c45683319a49ec9b67f43bca461327",
"IPY_MODEL_93f21885f4cd4ca49e29a5e45a35d433"
],
"layout": "IPY_MODEL_6946cec642c048439bb873a054b03991"
}
},
"ff52253216a3460cb76ebde5a05be82a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": "initial"
}
},
"ff5417bb7dda4fdabc674858caf1fc69": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ff56ec32ebe543519a0368a0f4c01835": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_7a90dcdb66524b1c879a22fdb7283017",
"IPY_MODEL_bc9989214038460681a018d6623dacf9"
],
"layout": "IPY_MODEL_abd4a0639d21431ebca61391d36e65b4"
}
},
"ff5d3ac876e14c088fbea3a2de84e231": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"ff5f2197d6ef4c11bfd2f995fb1cc797": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ff60067493ce45eaa8f76de001f79222": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ff741538ce2145e0863aa3bc2824b952": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_e148a16eb3e34020859dcb28837c010c",
"IPY_MODEL_5647bdf8691e4eab9c264ab85cab66dc",
"IPY_MODEL_ac312e3edd654462abb99ef1dfa58adf"
],
"layout": "IPY_MODEL_2ded96b474f0462290b47dd42bc9c773"
}
},
"ff77a0c8e01d497391aa15eb87c392ac": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_aff8e6d3c7f14ea8a5d45a99a1c31835",
"style": "IPY_MODEL_5dae6825bf2c43fbbd71f6cdd6bffb53"
}
},
"ff7bb5d95a5a4b2f9ecf4e983ef2016e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ff83853cdb194a86b073099c579a906e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"border": "solid"
}
},
"ff8ada0b62dd4f5a88b39c050e232f83": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ff90c8ce564243de88e42064ec51a52a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ffa031df428244c6b7820d4c74eb877b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_a0c9110ce15240719cc5bdf783faedf9",
"placeholder": "",
"style": "IPY_MODEL_10a33e3346d3406bafea2b7326a6e67d",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"ffadd86d687e45a8843484697fea9bf9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ffb80ac9382f4efcb930f40bcd1cccd9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ffc05c884cb5457798ace87beb449e18": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_6c3dc5eb0ff9456d988b76b11dada9da",
"style": "IPY_MODEL_ed1bc79083ba49d6925840db29460b9e"
}
},
"ffd51a8c0b904fea905e1c3111a3e58d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ffd578dfce8f472c953ed6bac0818b26": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ffd93e2b23dd413cbe4d341227fd761a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_c178021ed3054986857f3373a515aee1",
"style": "IPY_MODEL_6ecb5d5ae82646ff8fe15a7b32f587db",
"value": "Save to:"
}
},
"ffe361ae50b74eb9b480a87eef17612c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"fff08bcb47974544aa80a4d9f27f0350": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"fff75860115c470893fd558eb05bcb9b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"fffcb54a17a54098af554ce7488b5904": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
}
},
"version_major": 2,
"version_minor": 0
}
}
},
"nbformat": 4,
"nbformat_minor": 5
}