{
"cells": [
{
"cell_type": "markdown",
"id": "dental-preview",
"metadata": {},
"source": [
"# Export\n",
"\n",
"
\n",
"\n",
"\n",
"This application lets users export objects and data stored in `geoh5` to various file formats. \n",
"\n",
"The app currently supports:\n",
" \n",
"- ESRI Shapefile (**shp**)\n",
"- Column file (**csv**)\n",
"- Geotiff (1 or 3-band) (**tiff**)\n",
"- UBC-GIF (Tensor or OcTree) (**msh, mod**)\n",
"\n",
"\n",
"New user? Visit the [Getting Started](../installation.rst) page."
]
},
{
"cell_type": "markdown",
"id": "large-jamaica",
"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": "blind-titanium",
"metadata": {
"scrolled": false
},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "b8d2ecb5142644c2819531e8f7aeeed6",
"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.export import Export\n",
"\n",
"app = Export(h5file=r\"../../../assets/FlinFlon.geoh5\")\n",
"app()"
]
},
{
"cell_type": "markdown",
"id": "third-wellington",
"metadata": {},
"source": [
"## Project Selection\n",
"\n",
"Select and connect to an existing **geoh5** project file containing data. "
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "extraordinary-series",
"metadata": {
"scrolled": false
},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "06d49df911514a76b502f7cd1bb35b5e",
"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": "superb-navigator",
"metadata": {},
"source": [
"See the [Project Panel](base_application.ipynb#Project-Panel) page for more details."
]
},
{
"cell_type": "markdown",
"id": "independent-specialist",
"metadata": {},
"source": [
"## Object and Data Selection\n",
"\n",
"List of objects available for export from the target `geoh5` project. "
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "decent-bowling",
"metadata": {
"scrolled": true
},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "896c0b7aa4ac4f68aef40df36fc6f290",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"VBox(children=(Dropdown(description='Object:', index=7, options=(['', None], ['Labels/Label3', UUID('39b2d390-…"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"app.data_panel"
]
},
{
"cell_type": "markdown",
"id": "industrial-employee",
"metadata": {},
"source": [
"## Output type\n",
"\n",
"List of file formats currently supported."
]
},
{
"cell_type": "code",
"execution_count": 4,
"id": "whole-closer",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "e8d2e5837f574989ac1da48cbd2ffc14",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Dropdown(description='Export type', index=2, options=('ESRI shapefile', 'csv', 'geotiff', 'UBC format'), style…"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"app.file_type"
]
},
{
"cell_type": "markdown",
"id": "known-pantyhose",
"metadata": {},
"source": [
"### ESRI Shapefile\n",
"\n",
"Export option to **.shp** file format for `Points`, `Curve` objects. "
]
},
{
"cell_type": "markdown",
"id": "designing-concert",
"metadata": {},
"source": [
"#### Projection\n",
"\n",
"Coordinate system assigned to the shapefile, either as ESRI, EPSG or WKT code."
]
},
{
"cell_type": "code",
"execution_count": 5,
"id": "defensive-meditation",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "07183682d77c4221a7d4057dc75f10c4",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"VBox(children=(Text(value='EPSG:26914', continuous_update=False, description='Projection:', style=DescriptionS…"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"app.projection_panel"
]
},
{
"cell_type": "markdown",
"id": "spiritual-cincinnati",
"metadata": {},
"source": [
"### Column Seperated Values\n",
"\n",
"Export data to **csv** file format. The x, y and z coordinates of every nodes/cells are appended to the list of data by default."
]
},
{
"cell_type": "markdown",
"id": "blank-basement",
"metadata": {},
"source": [
"### Geotiff\n",
"\n",
"Export option to **.geotiff** for `Grid2D` objects."
]
},
{
"cell_type": "markdown",
"id": "occupational-socket",
"metadata": {},
"source": [
"#### Projection\n",
"\n",
"Coordinate system assigned to the geotiff, either as ESRI, EPSG or WKT code."
]
},
{
"cell_type": "code",
"execution_count": 6,
"id": "architectural-romantic",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "07183682d77c4221a7d4057dc75f10c4",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"VBox(children=(Text(value='EPSG:26914', continuous_update=False, description='Projection:', style=DescriptionS…"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"app.projection_panel"
]
},
{
"cell_type": "markdown",
"id": "emerging-complement",
"metadata": {},
"source": [
"#### Type\n",
"Date type options exported to geotiff"
]
},
{
"cell_type": "code",
"execution_count": 7,
"id": "olympic-quarterly",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "6fab3cf985ca483681cec0cded676895",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"RadioButtons(description='Type:', index=1, options=('float', 'RGB'), style=DescriptionStyle(description_width=…"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"app.data_type"
]
},
{
"cell_type": "markdown",
"id": "professional-extent",
"metadata": {},
"source": [
"- **Float**: Single-band image containing the float value of selected data.\n",
"- **RGB**: 3-band image containing the RGB color displayed in Geoscience ANALYST."
]
},
{
"cell_type": "markdown",
"id": "hindu-stupid",
"metadata": {},
"source": [
"### UBC Model\n",
"\n",
"Export option for `BlockModel` and `Octree` objects to UBC mesh (**.msh**) and model (**.mod**) format."
]
},
{
"cell_type": "markdown",
"id": "gorgeous-startup",
"metadata": {},
"source": [
"## Output Panel\n",
"\n",
"Trigger the computation routine and store the result."
]
},
{
"cell_type": "code",
"execution_count": 8,
"id": "sharp-probability",
"metadata": {
"scrolled": false
},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "7cec385de68a4f368c869f3830b1605d",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"VBox(children=(VBox(children=(Button(button_style='danger', description='Export', icon='check', style=ButtonSt…"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"app.output_panel"
]
},
{
"cell_type": "markdown",
"id": "better-bulgaria",
"metadata": {},
"source": [
"See the [Output Panel](base_application.ipynb#Output-Panel) page for more details."
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "dee993ca",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Object saved to C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\Gravity_Magnetics_drape60m_Airborne_TMI.tif\n",
"Object saved to C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\Gravity_Magnetics_drape60m_Airborne_Gxx.tif\n"
]
},
{
"data": {
"image/png": "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\n",
"text/plain": [
""
]
},
"metadata": {
"needs_background": "light"
},
"output_type": "display_data"
},
{
"data": {
"image/png": "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\n",
"text/plain": [
""
]
},
"metadata": {
"needs_background": "light"
},
"output_type": "display_data"
}
],
"source": [
"app.plot_result = True\n",
"app.trigger.click()"
]
},
{
"cell_type": "markdown",
"id": "suffering-chrome",
"metadata": {},
"source": [
"Need help? Contact us at support@mirageoscience.com"
]
}
],
"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.9.13"
},
"widgets": {
"application/vnd.jupyter.widget-state+json": {
"state": {
"002bae5daa7341759041ae611a56261a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"00882857292343c5ad5fef035138a8ef": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"00a56507d5074c2db2046e260cea8083": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_0b8a890921a34092a336c2847adbc377",
"style": "IPY_MODEL_823a205256fb430eb8b8cceb669e4c87"
}
},
"00fec20e4dd1429fa5c6c398f9ed22dd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"0155100c12f14997939a59711109d2b1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"01940bd7327c4d6f87efc76aa06938f9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_de338ebeb0eb4880a7974c46e2e45fdf",
"IPY_MODEL_7126f043322d458a809b5fc3731531f2"
],
"layout": "IPY_MODEL_9c14d04966a54aedacd4f1eb14a12395"
}
},
"01b4b4e62b21440e8ce15039289fe758": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"Data_TEM_pseudo3DEPSG_4326",
"Gravity_Magnetics_drape60mEPSG_4326",
"Iso_Iteration_7_model_2_50e-03",
"Iso_Iteration_7_model_1_00e-02",
"Iso_Iteration_7_model_1_50e-02",
"Iso_Iteration_7_model_2_00e-02",
"Iso_Iteration_7_model_2_00e-02",
"Iso_Iteration_7_model_5_00e-03",
"Iso_Iteration_7_model_2_50e-03",
"Iso_Iteration_7_model_1_50e-02",
"Iso_Iteration_7_model_1_00e-02",
"Iso_Iteration_7_model_5_00e-03",
"COND[20]_surface",
"COND[15]_surface",
"CDI_",
"COND[20]_surface",
"COND[5]_surface",
"COND[15]_surface",
"CDI_",
"COND[0]_surface",
"COND[5]_surface",
"COND[10]_surface",
"COND[10]_surface",
"COND[0]_surface",
"fault_splay1",
"fault_Cliff_Lake",
"fault_Other_FlinFlon",
"fault_Club_Lake_splay",
"fault_Catherine_splay2",
"fault_Birch_View",
"fault_Dion_Lake",
"fault_FlinFlon_splay",
"fault_West_Mandy_Road",
"fault_Channing",
"fault_Ross_Lake",
"fault_Louis_Hidden",
"fault_Lake_View_thrust",
"contact_Schist_Lake",
"fault_Burley_Lake",
"fault_Dion_Lake_splay",
"fault_Green_Lake",
"fault_FlinFlon",
"fault_Catherine_splay1",
"fault_East_Mandy_Road",
"fault_Other_FlinFlon_South",
"fault_Catherine_splay4",
"contact_Stitt_Island",
"fault_Club_Lake",
"fault_Tailing_Pond",
"35_Hidden_Reservoir_Hr5",
"29_Hidden_Reservoir_Hr1a",
"60_BlueLagoon_Fb2",
"20_FlinFlon_Undivided_Int_Dykes_D2f",
"04_Boundary_Intrusive_S4h",
"53_Millrock_Rhyolite_Fm4b",
"19_FlinFlon_Undivided_Int_Dykes_D2b",
"18_FlinFlon_Undivided_Int_Dykes_777_D2b",
"06_Phantom_Lake_Intrusive_S3a",
"21_FlinFlon_Undivided_Int_Dykes_D3a",
"43_Millrock_CHLSH_South",
"56_Millrock_Basalt_Fm1ba",
"17_FlinFlon_Undivided_Int_Dykes_D2",
"32_Hidden_Reservoir_Hr1b_SW",
"11_Missi_M3_NE",
"13_Missi_M1",
"07_Annabel_Granitoid_S1",
"45_Millrock_Gabbro_South",
"01_Late_Intrusive_S5b",
"31_Hidden_Reservoir_Hr1c_SW",
"52_Millrock_Rhyolite_Fm4_West_check",
"55_Millrock_Basalt_Fm1bf",
"34_Hidden_Reservoir_Hr2b",
"03_Boundary_Intrusive_S4b",
"42_Millrock_CHLSH_North",
"26_Louis_L3",
"23_FlinFlon_Undivided_Int_Felsic_D4g",
"30_Hidden_Reservoir_Hr1b",
"59_BlueLagoon_Fb3",
"49_Millrock_MVR_Fm5d",
"44_Millrock_Gabbro_North",
"27_Hidden_Carlisle_Hc4",
"22_FlinFlon_Undivided_Int_Felsic_D4e",
"02_Boundary_Intrusive_S4a",
"61_BlueLagoon_Fb1_NW",
"05_Boundary_Intrusive_S4g",
"39_Ore_Callinan",
"38_Ore_Dan_Owens",
"40_Ore_FlinFlon",
"InterpGrid",
"Inversion_VTEM_Model",
"InterpGrid",
"InterpGrid",
"InterpGrid",
"Gravity_Magnetics_drape60m",
"CDI_VTEM_model",
"Data_FEM_pseudo3D",
"O2O_Interp_25m",
"geochem",
"Inversion_DIGHEM_Model",
"Topography",
"Data_TEM_pseudo3D",
"Data_ZTEM",
"Mesh"
],
"description": "Object:",
"index": 94,
"layout": "IPY_MODEL_97cac7b1f3074823829c2d8654a0d5e7",
"style": "IPY_MODEL_e86f6c9fba6e40cba08c5fa0533c51a9"
}
},
"024f323b2f24439f9287c3a1b12a7ae4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"025aa4b4acab488488cb85607ab72d9e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"026b5b622dcc4b19b3224d4e391b599c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_f6d09543651f4d49873a231d12cee4b5",
"placeholder": "output filename",
"style": "IPY_MODEL_30c778f17088453aa94a43818a5f7ec8"
}
},
"029233f62f67411ab68a98c56a87263a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"02930e3143fb4305a01c5bb15d13eb59": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_c4f538c2ea0045f39207d25012e82c81",
"style": "IPY_MODEL_f9878c98966e4d06857c696c5bc6c574"
}
},
"02a67f59250146dfb92cea5a8a00942b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_aa78468da2164d7a8016d615b656d5a0",
"IPY_MODEL_38baa11dbad84c8da4208f3293ab4cb5"
],
"layout": "IPY_MODEL_20618388a3784cbe88e7d4bc7783947b"
}
},
"031130deb20645c1a187d16b6f48b21b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"031512d70cf24431a1c58d2e02d9e13d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextareaModel",
"state": {
"continuous_update": false,
"description": "WKT:",
"layout": "IPY_MODEL_71f757aae3c04fa5ac4d79fb10ba12ee",
"style": "IPY_MODEL_d911e3ffd38c4d43a1070215c37b5d3a",
"value": "PROJCS[\"NAD83 / UTM zone 14N\",GEOGCS[\"NAD83\",DATUM[\"North_American_Datum_1983\",SPHEROID[\"GRS 1980\",6378137,298.257222101,AUTHORITY[\"EPSG\",\"7019\"]],AUTHORITY[\"EPSG\",\"6269\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.0174532925199433,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4269\"]],PROJECTION[\"Transverse_Mercator\"],PARAMETER[\"latitude_of_origin\",0],PARAMETER[\"central_meridian\",-99],PARAMETER[\"scale_factor\",0.9996],PARAMETER[\"false_easting\",500000],PARAMETER[\"false_northing\",0],UNIT[\"metre\",1,AUTHORITY[\"EPSG\",\"9001\"]],AXIS[\"Easting\",EAST],AXIS[\"Northing\",NORTH],AUTHORITY[\"EPSG\",\"26914\"]]"
}
},
"032287fdf1884dccab72fb0000a28be0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"03245a5df5634268aeb5204cadc0e518": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"033a39e0878c48fb9044e838aff4709f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0341fa916f7848db8b881bcc7eacd520": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"037b091270284a529a7bf71d87984bf8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"040086cc15b942b890d62ca34946acda": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_8c3e54dc049c41efb824d79e3786e83c",
"placeholder": "",
"style": "IPY_MODEL_88500a1119714c429892f7c6aa5f07d5",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps\\assets\\"
}
},
"040c775f05d94bf2b6686730d52d0921": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_48a0f56bf8b34354ac6874b31d9970cb",
"placeholder": "",
"style": "IPY_MODEL_8ddb0406f6d74dc28bdf8d93421d78b9",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"044a0b6106bf4b8d8435c665ee2176a8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"046110f1bbd9414aaa38fe0f4ae899ee": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_de683ce7315d4ef2a2a5b6e6745350ee",
"IPY_MODEL_82d2bdbf678d4bad80bd0bb5ce02fdf1"
],
"layout": "IPY_MODEL_685c2abe7e1f4d47ab69b3861b6b1479"
}
},
"0466943893194045800df54fada8e46b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"Z:\\"
],
"index": 0,
"layout": "IPY_MODEL_74a6fee1a01146239901b90e6fd6ba64",
"style": "IPY_MODEL_a6502f480983455b9c1d62dba844a5e1"
}
},
"046c9568d56149e896d0d2e3e11183ef": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"04cfa5f87d004a47ae9c6571437b6996": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"04e0a46e309f4b0288f578387f18c66f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"ESRI shapefile",
"csv",
"geotiff",
"UBC format"
],
"description": "Export type",
"index": 2,
"layout": "IPY_MODEL_5ae20a1d0fe64fffa089381fdba88bff",
"style": "IPY_MODEL_56a6338ad268479a9f4bfc105a02c2ae"
}
},
"0508baa6f5924725ad34b5e934fb8ff9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"width": "auto"
}
},
"0511b975673f4b9da48f8a96fb980c6a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"055ffeadf3a642c084e31065c463def1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_ec5928c6ba054bdf8ff01e32c2b29953",
"IPY_MODEL_8362237cb9cb4e3ead7ad7c0c3a1d97b",
"IPY_MODEL_fc6fe98e4ac44d0995ba684cf332e706"
],
"layout": "IPY_MODEL_2fb31564e5494bb791114e870295b5b8"
}
},
"05c058f5c884413fb80fb693e09cd42b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"05ee53fa1ff34c149fa8b6423a993127": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"05eedd64fb154bfd99b1415e7e1487bb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"05f017a0b5ee44a3804854a96b1e521f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"05ff645a620049dfb0808ba13df3ece3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"06317783cadd4c09a02e8025789bcc68": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"0640a712de41447086cfdc1119826fc5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"0666abf64f3a4fc38d7408293e230641": {
"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": "500px"
}
},
"0685779358cf4135921eecd154e3217c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"06a4f281a4ed46f9b67527456f3f1b2c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_b324f387ee0b4251ae1b9ef9ff5c541b",
"style": "IPY_MODEL_e32d092dd27a4c85b388fabc17cf5fdc"
}
},
"06d49df911514a76b502f7cd1bb35b5e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_ece1dfb1586e473c903d355175e83420",
"IPY_MODEL_ca484be98d7c4650aa6f31405751e35f"
],
"layout": "IPY_MODEL_3cd11d64149643bd9d367447e2bbec5b"
}
},
"06de5d91c17949dcb5977a5ecee289ca": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_083d6f6770bf4fc28d6c1d54d676584c",
"style": "IPY_MODEL_189c3c6541c94bb0928685aace71c3a3",
"value": "Workspace"
}
},
"07183682d77c4221a7d4057dc75f10c4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_ebdf2324ac384338ab7e1c89513a18aa",
"IPY_MODEL_94e67ca15218422caa7bc11e2deb47bc"
],
"layout": "IPY_MODEL_a61292e7a535400ab29616fde27b325a"
}
},
"071d58380a354550849094bebc95f0c7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"071fee7358ff4f98877f103e57bf66a8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"float",
"RGB"
],
"description": "Type:",
"index": 1,
"layout": "IPY_MODEL_e2bd161fad5041c3a490bae05d7208f0",
"style": "IPY_MODEL_0beba3c17f8143eead209e087f39141f"
}
},
"072c032a38da4df996762d3406535aa2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"07591d8adafc4b5c9b751ac2ee2aff91": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"07d10edd1a67471f9ea7eddc901ae67e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"081d2e864f5a4062b7e76927546fb2b3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"083d6f6770bf4fc28d6c1d54d676584c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"08a1b60ade07412396d0b0b80823c5d1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"08cb4bf58e274eeeb78856d3d9d9ca9b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_31158c9b7bdb46fb9c3231092463eebf",
"IPY_MODEL_00a56507d5074c2db2046e260cea8083",
"IPY_MODEL_ca5c2513e7b3475392747168f6a4f6c5"
],
"layout": "IPY_MODEL_94e462c2e9ed43c285d5a415f810b8da"
}
},
"08e7b43e250c4575858af45c835ea650": {
"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": "500px"
}
},
"090f67dd53fe414cae0159e089e42656": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0922c0f7b77241f49b0de0ceec4ecdce": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0924aa704c3a4a638038912c7ba421bb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Export",
"icon": "check",
"layout": "IPY_MODEL_cf066ab6d477422f9905367ff6349c7a",
"style": "IPY_MODEL_e3bb7995989b4dd89747c16f34142a20",
"tooltip": "Run computation"
}
},
"09352a08730b4802a608f1527a40153c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"093cc3f7112947bdaedb9861bb165e56": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_94591964c674451db4ef4aacd4732f11",
"IPY_MODEL_19efe21b67e14bcdac329d87750e9423",
"IPY_MODEL_3e73eaac96a34e71828bd500c4a515ea"
],
"layout": "IPY_MODEL_c2e24d95c34f48bc8e4f1ca88d78ecce"
}
},
"094fbd332f5e49b38fe510a5a731ab6f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_9ebcd443e6d749c5a25602a23e6c07e4",
"IPY_MODEL_457ab12b871a4231b73ccd2687b60e7f",
"IPY_MODEL_1f2d42f56c244cc6973629a442ccd6e4"
],
"layout": "IPY_MODEL_453dec1916764505b0d8c70d87f93fb0"
}
},
"09572af07acc4689b0e168b3faa65cf5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"095c82b236214859a7717f05331b9882": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"098308022876491f9b1af5f67029e981": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"09893dfe7c654ab0a96e42ebb4b6434c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_ddb2b7b690364a8e9a8f1fe72540fcb0",
"style": "IPY_MODEL_46c2e316d8054eeb884091266b74f265"
}
},
"0a164a8d6ddd4a0bbecaf5aff906120f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_6a08dba270ae43278d2755998a4817d2",
"IPY_MODEL_c92cf9a0ec514f23b2ec207554d39942",
"IPY_MODEL_a30b31f97c984cfea9dfd0cc6ea3f06c",
"IPY_MODEL_60dbca6dc22b4b589e982774de36ee4b",
"IPY_MODEL_ec41bd584d644fcfabc8ab850e661ead",
"IPY_MODEL_8af637ca48b1449fa8a1ca5b065aa34a",
"IPY_MODEL_28c3d3a5c5c64ebd9e6dd6c675925cc4"
],
"layout": "IPY_MODEL_df53f3a2f47940cea388ba68a3ef40c6"
}
},
"0a4917698ada4f518c123996f7aba605": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_2a2ac56e7e924cc1ad761ceeaf8a1db6",
"IPY_MODEL_cfbc8896766442cb920e28db126483c4",
"IPY_MODEL_a4ae6e5ede3947909ec7dd9bdda94f1f"
],
"layout": "IPY_MODEL_c6e7f167addd4cfb93aa0bd6ef7acc4a"
}
},
"0a847be77530417098a1dd53e8483faf": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"0ac4a38189644eef8879195ffc4d15e2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"0ad4885afe7d4024932b200d9197cbb3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"0ad62f3df31c44bfa2f3828b5a74297d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_c85bfe3fffba4c8da2e88f50852ad615",
"IPY_MODEL_9c6dd13df07149b1bcde6ac9eb6e0c56",
"IPY_MODEL_66cd1c069c3749f8abcd6e4ae881efca"
],
"layout": "IPY_MODEL_4b65866c2a2742f6bd56f965e6d23b16"
}
},
"0ae2b33aeab7484689e84fcc5267c76d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_be1612fca5a94d7ea95110880d2fbf9a",
"style": "IPY_MODEL_0baf91615a104155877f906491cbe921"
}
},
"0aec0942598f462fa96a1561fdde1be9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_99da2004af7f4da1bcf5a4ac42be73e3",
"IPY_MODEL_5652360981e54f238fc9b46c4b940647",
"IPY_MODEL_d638c7c335544cdbbfb82f85421829a7",
"IPY_MODEL_1c0552805ce7455a97335e9caa6e74bf",
"IPY_MODEL_aabd367bead3466d8b70fbd863982792",
"IPY_MODEL_b0f21ac41ad94722b2057243a21e33f0",
"IPY_MODEL_055ffeadf3a642c084e31065c463def1"
],
"layout": "IPY_MODEL_f8ad65efca5847139c97e8431adcf0c3"
}
},
"0afa2d113f4c4c75baf4ff0c0f435180": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_e7c6614300584bc8ab1cf5c723dd752a",
"IPY_MODEL_5e6c750b204e4cb4953bc10826334a5a",
"IPY_MODEL_f47fe748ab7246f8a1a18439a4bf9a20"
],
"layout": "IPY_MODEL_d352616666f54fae9685ce4e98164810"
}
},
"0b69cf1dde694db29a406502d389a21d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"0b83387bc1a646f39beeab5872911deb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0b8a890921a34092a336c2847adbc377": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"0b8e81026d4c46b68494c95ee492265d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"0b9da1153b6f439a921bbc108e6fb38c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0baf91615a104155877f906491cbe921": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"0bc9c5a9cc264e14abbc698d937f31d9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"0beba3c17f8143eead209e087f39141f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"0bf6637291cd426a91dc865c4a359515": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0c3924b4a1be438e8dd54d2de6d3a1ef": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0c4370e7e03648239de1d7808fb3b96c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"0c71dca42029478aa7a6ca62386d0957": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"0c7beb1b754a4c7982e585d1346b7f74": {
"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:\\",
"Z:\\"
],
"index": 0,
"layout": "IPY_MODEL_d01f771d716c4d07a53f8c296d147fae",
"style": "IPY_MODEL_216b6539861c48f387ca9f7bc5c20297"
}
},
"0c9f836cf7424682911c1b379956fea1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"0cc651421c4743d783642a5af52d66af": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"0cd1618cb31247679398c56c69499316": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"0cfd230a69cc449dbc46f841f2f5bf71": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0d09fb795ca944038b0ac806c80b2a45": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Save as:",
"layout": "IPY_MODEL_dae1e895dc144637bc57e560279e49b6",
"style": "IPY_MODEL_3605d7abb7eb4e48b0beb8ab732ecf17",
"value": "Gravity_Magnetics_drape60m"
}
},
"0d2a633891a04cafae1bda86309aacbb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"0d66bf6d71544031bf18cffd7a0df3d4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"0d6ccc65f6414c17a6e5fe3a9ebc2be5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"0d8d63040a6546e98e11e0f533727b4c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0da3a95173dd4b8a9491aa81a4cf6b93": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0df7f79af7fd44b093c42faa3ccc75fe": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"0e1666a9811d44558b6e74bb3ad47911": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"0e39f6aba7a44c909dd2f745ff2c4d82": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"0e65511236244f18b1407b38a33ed341": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_15a3c430ec4e49828f9bee43e5dd560b",
"style": "IPY_MODEL_d264bcc8a5dd4852966b9e27d946c549",
"value": true
}
},
"0e75678d0755488883bf6b231a0b7130": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"0e88939b641e4c61974157f2468b7cff": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Projection:",
"layout": "IPY_MODEL_d622fe5f197d4980a4303af44a8bbb4a",
"style": "IPY_MODEL_adc6adc207be48ee9acf10618d53197f",
"value": "EPSG:26914"
}
},
"0f18a09051d64eddb6de136d352cd67d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"0f6be1f0566a4f8fab5176036111fdff": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_5d477e3e05834b5d9094199c487a38ea",
"IPY_MODEL_16a3ebc5cdb245fabaf8a195f1449c47",
"IPY_MODEL_c312ee2a1fed4b20bd1ba08d7b395f3f"
],
"layout": "IPY_MODEL_fe1b6b5d27cd43a9b2cd3644c682b1d7"
}
},
"0f6bef2ac15e42a39ee682958a943427": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"0fa920a2dbec46d39ac9bf787d9ca560": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"0fd09af63f20425cb439a783609e2600": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"10036c5881514400acccb49b8d97cc2d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Save as:",
"layout": "IPY_MODEL_51e77c1845c14f85aa4c1a2e54e62921",
"style": "IPY_MODEL_a475b688cac645a2956621050d6a359b",
"value": "Gravity_Magnetics_drape60m"
}
},
"1052b994c6df4d25b95fc89e2d36abc5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_205a3fff2c2341338ee8ca2f464564b2",
"IPY_MODEL_6d4c419d82a346c3929fe63521487ddd"
],
"layout": "IPY_MODEL_3e903eaabda64b6d9cd4d470b7ed6231"
}
},
"10b99f91fcea4e839724e01a83955956": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_ca5c57a52edc404d9f6b0e60c7285fce",
"placeholder": "",
"style": "IPY_MODEL_ec06214de90347e0b779fe0dd1e2a682",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"111d9056ce02409b8dd91d0169ed4da9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"113185c0b9ba47ceaed6406fd992435a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1182128afb554772b989ce1694743b21": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"11860df43a49443399c74df86a99f63a": {
"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_7c4dd28f96b04bbeb8dbc76f83d9edbd",
"style": "IPY_MODEL_e010c129691445a4af6f89e0af05ca7f",
"value": false
}
},
"119410e052334c4cb801a54124b877ef": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"11b8908b0eb34ddebbc1cd0896f2ae04": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"..",
"SimPEG_PFInversion",
"Temp",
"dask-worker-space"
],
"index": null,
"layout": "IPY_MODEL_36e43d5879a246e38021040d2b275dbb",
"rows": 8,
"style": "IPY_MODEL_47a69b64f3c743e78617788ce560eb4b"
}
},
"11f73149aa1040579ee463dbe70b6d02": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"120465fd7ed24aadabdd4049eaa4fba6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"12608b76d6114dfb92e65b7f726b71bc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"12a2268498cb42a2920f762fc1ae3a20": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"Z:\\"
],
"index": 0,
"layout": "IPY_MODEL_7b213b6e64fc446d88b2d4ffb2992791",
"style": "IPY_MODEL_14c2326d82094c5fb241a33d775fe47d"
}
},
"12b1e3fc5a184aaab508102aabf29ba8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"12b73224e32a473aad871561cc436f04": {
"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": "500px"
}
},
"12c75fa4a2154a1c8c6b5c73caa56478": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_461d87505b1648fb9d6c30f74f1d5802",
"IPY_MODEL_ad73e9c0285f402688147499367a71f9"
],
"layout": "IPY_MODEL_7c749f97688248f3b5d8f3f6f05a6996"
}
},
"1308974476774651a03608feb2348ee5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_4c7acbc22d5f46b891af7e07d6aca8bb",
"IPY_MODEL_e0a6d48200854e4f88ab95aaca13eb99",
"IPY_MODEL_d1689b1c8c7d4770bc85aebac8ff7d19"
],
"layout": "IPY_MODEL_d84def24acdc4f8782aa6913b1beb0c4"
}
},
"130de76936d1439785dbacbf3412eded": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_5dd75bebc0bc4731834da0dc72da3f4a",
"style": "IPY_MODEL_4c55dc2a227d47bab5b23a4933cff733"
}
},
"137f83453a04412c9dfd8105379c4e9a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"width": "auto"
}
},
"1397af3095c84eb9990c81e257ebd296": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_cf7c7d0ec0a34794a923b52448604686",
"style": "IPY_MODEL_e4215629dc644f719b6f9e510ba52c29"
}
},
"1397ddf12fb7402ca74330d093cd6ce0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1405d7641d814ddd994fc546b19ae741": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"..",
"SimPEG_PFInversion",
"Temp",
"FlinFlon.geoh5",
"Gravity_Magnetics_drape60m_Airborne_Gxx.tif",
"Gravity_Magnetics_drape60m_Airborne_Gxx_Colorbar.png",
"Gravity_Magnetics_drape60m_Airborne_Gxx_RGB.txt",
"MtDore_TMI.geoh5",
"Octree_Mesh.json",
"Octree_Mesh.ui.json",
"Octree_Mesh_v2.json",
"input.ui.geoh5",
"input.ui.json",
"options_tree.json",
"test_no_root.py",
"tester.ui.geoh5",
"tester.ui.json"
],
"index": 3,
"layout": "IPY_MODEL_a6a54b47c740438fb80b8039faebf75b",
"rows": 8,
"style": "IPY_MODEL_447e2b73e87a403e994fa4fc4890af3a"
}
},
"140f157224d04040a4937a5e083b40fb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"144c90013c8946fe87941c13fa90d0ff": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_4862262e72ec4662ab1b47f2c28d62d6",
"style": "IPY_MODEL_493a3add3c3341139473a529648dec09",
"value": true
}
},
"14536e7f532446cab2ce9c065e02e072": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_207342b6a4a14c33bdc1df988a118357",
"style": "IPY_MODEL_2fabe6959ba740ea8353a53dd5ce1b43",
"value": "Monitoring folder"
}
},
"148bdbd56908445e9670dce1bf19c0db": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"14913dea9b074d07a7130e739adca48f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_0508baa6f5924725ad34b5e934fb8ff9",
"style": "IPY_MODEL_f5cd21fd723a421398347a00240cab20"
}
},
"14ae8c2309774746ae9bafe397d8db85": {
"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:\\",
"Z:\\"
],
"index": 0,
"layout": "IPY_MODEL_7734d6705097411ea6cc6c189778b1cd",
"style": "IPY_MODEL_89229416d842494b94265290d362f20d"
}
},
"14c2326d82094c5fb241a33d775fe47d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"14fa59b01aab40ed9552bdb02a59006b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_6e8bdfec301e41e88483dd709dee1354",
"IPY_MODEL_e1ec05768fbf49e8bcb5a56954034e56"
],
"layout": "IPY_MODEL_7d049643fe594ee79ffccbdf309e11c2"
}
},
"1521f71033d849679ae516bfa6e66c05": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_cac14bc1cc1d42e99f0fd2a9ed106c03",
"style": "IPY_MODEL_aa14d0ea937b42f39a587961b382a81b"
}
},
"15343b0621fd4bd88af31b198436931d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"153b74a7e064445db39112bf303b356c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_369642b56c6d46e7909ec77344dc9c2c",
"IPY_MODEL_3eff29134a6047f8ad1e38accd9b3299"
],
"layout": "IPY_MODEL_80e069aef5c844539740b4eb8f06111d"
}
},
"15400ee0fa98411b889791513dcb6e6f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"1549c4fb230549cf8dbe463fe506be74": {
"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_140f157224d04040a4937a5e083b40fb",
"style": "IPY_MODEL_33d0f415e6404038b80f3b81572813d9",
"value": false
}
},
"15a3c430ec4e49828f9bee43e5dd560b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"15f238a9c2d84d73aa5a8e3ed88ee8f7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"1681386dce2048258946cf42420d470d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"1687f2ea267f44cb9ada2c1e76f26f54": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1693bb569e3b4ad09abaee18604f2d67": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"16a05aa8295043d7a08c9e7df6d8ec35": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"16a3ebc5cdb245fabaf8a195f1449c47": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_fd6d9a695cbe4e58b6ef99ab7f3c1d12",
"placeholder": "output filename",
"style": "IPY_MODEL_6b3b5cdce6774baebb5e0fbad5af372a",
"value": "FlinFlon.geoh5"
}
},
"16a43ebaf9194ad0b09972b5658e143a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_aa78468da2164d7a8016d615b656d5a0",
"IPY_MODEL_c9d0962c895d48f3b382424973ff9c37",
"IPY_MODEL_545f19a51c684b05b5e6b93bbdd5fe06",
"IPY_MODEL_cb027f63cd73483daf9d8c1b3247eaef",
"IPY_MODEL_3fac2ff63e144dd48a133a72f3014a65",
"IPY_MODEL_0924aa704c3a4a638038912c7ba421bb",
"IPY_MODEL_dbc3c05517d04866b742b42a9dc179b2"
],
"layout": "IPY_MODEL_2429492a6b984800b236a96a4d0df7c9"
}
},
"16b11b584f1649e7ab0c90d7ffdc5ed9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Export",
"icon": "check",
"layout": "IPY_MODEL_d8a594133a9c49daa9f58bf2af86c797",
"style": "IPY_MODEL_ba60c9749e714c59b8ef2651a985c8fb",
"tooltip": "Run computation"
}
},
"16c39c947b1b4f2a8d07a7bc473ece6f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_e43d11f1f1c54052b900d32e17d44bef",
"placeholder": "",
"style": "IPY_MODEL_0c71dca42029478aa7a6ca62386d0957",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\"
}
},
"16c733edaaa449d3a2c966899e1af8a5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_b7800cd7997d4977add2a5861472a5f6",
"style": "IPY_MODEL_b45abf8a74674cb0abd2ff3f3ad2d106"
}
},
"1703f408c0204bc3b5f282e0dc690fd1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"17176327db344c7bac45373ef7d9c602": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"1734d7fccfc34e6fab571989407e1902": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"1736921a2fc44778a958c9d11b2c77c2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"17453e6ec37041639ce96b72f1163062": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1772fa5027474290b9962ff1c99f2385": {
"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:\\",
"Z:\\"
],
"index": 0,
"layout": "IPY_MODEL_38712e7330904de9846731b9d6dec8d1",
"style": "IPY_MODEL_ec49a1072f1f439bb924d57c37f766ac"
}
},
"17b5e66f4a724c82ad65b829bd056648": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_5f6a12d353864990a35c3bd6fecd56d7",
"style": "IPY_MODEL_589d6f5f69a04673a7eae92bdff807a8"
}
},
"186a8939101e414eb86fd2c05d320432": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"186b2f6af35445e082c2b88d420c5f34": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"189c3c6541c94bb0928685aace71c3a3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"18cef4785c214741936c631118487bba": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"18d13628477046a28b9c68eaae5546f6": {
"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_c223cc5112924ec9a9566aa5b3f4d685",
"rows": 8,
"style": "IPY_MODEL_d303d2919c4c434ba9e3c7adb91924a4"
}
},
"18dfa62bb827453c8f132bc2d788ebac": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_0c3924b4a1be438e8dd54d2de6d3a1ef",
"style": "IPY_MODEL_414804b4614948a78731965b9c123939",
"value": "Workspace"
}
},
"192e104ab3b34f98aab7380112ea0cb9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"width": "auto"
}
},
"195a14ab40fc4f889f21eafe39781539": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"195b538fa4dc4ee4a815262ac0823ab2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_a9e9a5b96264426b93130a358b85a6ab",
"IPY_MODEL_222209a041c54866b5aeba55a62242a0"
],
"layout": "IPY_MODEL_369e1aaa9846472795cfa1661c1453e1"
}
},
"1963480fc50a449b8e1d5c2b08ac6a33": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"197f945a728347e3abdf305a3d7c76f4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_63cbcff45c2c47debc10d52f08f85855",
"IPY_MODEL_79acda4d5de6469196a108d5386f39a4"
],
"layout": "IPY_MODEL_7f1b2fe9231f4ad099b87f484d013d40"
}
},
"1995c536d9ce42318037b0e3a16d6fb2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_4321611f4aa342638757ffc9516fd2a0",
"style": "IPY_MODEL_6759abf97dd544788280aa543d553000"
}
},
"19c4412ca6a8438aa4c6e351fe12a918": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_16b11b584f1649e7ab0c90d7ffdc5ed9",
"IPY_MODEL_ca1f4aa8842f43d499570ae67a306f33"
],
"layout": "IPY_MODEL_79a3f7590e7645c0838f6fc0c37a87e3"
}
},
"19efe21b67e14bcdac329d87750e9423": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_4f3aab0dffbf445caae91f47b229e9ea",
"style": "IPY_MODEL_cc384b8696a14db48141e24bf29610dd"
}
},
"19fa9be1234848c2b9ba99521bf09f65": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_35aad0d7d3a84ee2805ab99e52a51079",
"IPY_MODEL_c592775d428343eeb5002cfe549334ea",
"IPY_MODEL_16c39c947b1b4f2a8d07a7bc473ece6f"
],
"layout": "IPY_MODEL_1fc7216173f44cc49f680aac01458c72"
}
},
"1a109d1beaf5413fa654286026511f3c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "75%"
}
},
"1a2c83114bd74e9bb1ec5426e48ec166": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_8af637ca48b1449fa8a1ca5b065aa34a",
"IPY_MODEL_844b0774bebd4468bd62e0bd882eef4e"
],
"layout": "IPY_MODEL_ff2c621b544d4191ae0b338d181462fc"
}
},
"1a9332c69ee04642bb56ccb798bf340f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1abc7f756b6444a297bf055edf5a8a5b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "No-Data-Value",
"layout": "IPY_MODEL_4aed85ddc25f4c90858c88949956e00b",
"step": null,
"style": "IPY_MODEL_a600d66edfff42fcb18a4568dc747df9",
"value": -99999
}
},
"1ac1b6c10fe54607b436a4624f6ef33e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1ad573fc4e1e4772a5882dcf2cc6e622": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "No-Data-Value",
"layout": "IPY_MODEL_6e3d9d04f83548df952102ea481ea123",
"step": null,
"style": "IPY_MODEL_2d51ea62b1be4a628a3c73c91d177208",
"value": -99999
}
},
"1adf9068fd1544868ea076472370cd73": {
"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:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\",
"D:\\"
],
"index": 0,
"layout": "IPY_MODEL_34e7bee145094881a040c764158334b2",
"style": "IPY_MODEL_0341fa916f7848db8b881bcc7eacd520"
}
},
"1afb68290c56402987d46097f85f9cae": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1b0abb160ee4462ea459d4f656d086bb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1b10bbdabdc145c5acddd3f8a957be7c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"1b1b082e513848ed8030117ada09895b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"1b2b433d4f7d46f3a4d4567d0ef0d305": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1b2be81a4dd242f1b9ffcd1051d89ee9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1b6696372e1d4544bd47a5a9fa000cc3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_84429757543d44cf8b22cadf72040851",
"IPY_MODEL_906dcdec3f76458d896549a6b9cbcaa2"
],
"layout": "IPY_MODEL_9fb9dbb4f89845248547ce9bbc4c060e"
}
},
"1be37e48441d4b228f7d592ca394fab1": {
"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",
"Z"
],
"description": "Data: ",
"index": [
2
],
"layout": "IPY_MODEL_504716b6c3ad4f72a7c1bc3eaf8c0d65",
"rows": 5,
"style": "IPY_MODEL_7b2d272cef6f4092a1a16d3264cf5137"
}
},
"1c0552805ce7455a97335e9caa6e74bf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "No-Data-Value",
"layout": "IPY_MODEL_ad7cce75b8d047be921f99e2791c652e",
"step": null,
"style": "IPY_MODEL_119410e052334c4cb801a54124b877ef",
"value": -99999
}
},
"1c3ba3028a8f4576b7a1268b2baf8922": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_5ab4ab1073af4d61ad0bc8074bb6e4d2",
"placeholder": "",
"style": "IPY_MODEL_3762ddc6a2a6428294e08c7d08baa7da",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"1c8ba3abcaab44c592ab8caea924341e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1ca57c19851f4beab7a8881a04d08aa9": {
"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_0cfd230a69cc449dbc46f841f2f5bf71",
"style": "IPY_MODEL_1f0b8acb77724065a7ffcd4efd93fd4e",
"value": false
}
},
"1cc05a3c27df4df2900e223e664d0dff": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1ce01ee9839743fcb792440fdfee5883": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_8633149a500540d19c3cbf71c28ccc4f",
"style": "IPY_MODEL_a82c57ec2867419e8ae47383e129e3c7"
}
},
"1d6a0b4f9c3d4679b60bc78baf572949": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_943b53961cbb449c934b6ddd5d3d83ac",
"style": "IPY_MODEL_999787e52c2f4131ac3faab31d524c01",
"value": true
}
},
"1da5a15022834cc595066c5f1f66b1ef": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"Z:\\"
],
"index": 0,
"layout": "IPY_MODEL_630c9a1f69fc4750bcd679d6e046a51e",
"style": "IPY_MODEL_319b2233895f4e8f917eeb3b6b96f582"
}
},
"1da63a7d297f4200b0fde7a74fbb8bfb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1db26a67538843ba8c9e6285e55eabb8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1dcf425443024765bfba433e920672b5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1dd9505fb62844748e04320bbe4712e0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"1e0044fb7c2e4e17b3fa4dca52a411e4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"1e0bcd39522042aba0b72bf1adba1566": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1e1b14acaaa64971844ac1aae95ddb1b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"1e6cb8eb8c414e58b6524b677b306a79": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1e7eb66ab6344f2b9de27c436ee28b9d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"1e9eed9f595d4f5eb3d26d3a53503b40": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_7c496104535a4c86838c5ce27775794d",
"style": "IPY_MODEL_69562cfacb2e47bba4dc122eb10803b9"
}
},
"1eb77dd364794c3886ad34153c5e7388": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_52e0eb9652604da6a6444df7b98a9ff4",
"IPY_MODEL_dac2bb7ed8794050b72e845831db7144"
],
"layout": "IPY_MODEL_93ac0e40bac94132a3ce3c09d3f4079f"
}
},
"1edb300c39774f9dba7ffd3f4b029cff": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1eee2da6edb64f65a1fee1a845c0003a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1efc1bd745194365975787e25834c1cf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"float",
"RGB"
],
"description": "Type:",
"index": 1,
"layout": "IPY_MODEL_8a9450c024b74a5c92b944e63c1104be",
"style": "IPY_MODEL_539bbc77b55a4effa2a9bb2af8f94b14"
}
},
"1f0b8acb77724065a7ffcd4efd93fd4e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1f2d42f56c244cc6973629a442ccd6e4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"float",
"RGB"
],
"description": "Type:",
"index": 1,
"layout": "IPY_MODEL_8e80dbeb8d2248e88ad774208ffbe728",
"style": "IPY_MODEL_2bff9408066841919e60da347e2e6ce3"
}
},
"1f4840d60e3b46fea687aeaf69e1871a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"1f4c29436d85458b897bfed13933b549": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_e6f7aae1c6c14c9ebaee1ce220c18c62",
"placeholder": "output filename",
"style": "IPY_MODEL_876b72920758412b9d60b5f16986e08f",
"value": "FlinFlon.geoh5"
}
},
"1f6e69532d9e40af9732c8b9091aa722": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"1f7854d3d33b4ee3873362eb62ae7d45": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"1f974acec5e9420b9beac1115e3071a9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"1fb834970aa649ba83ede4990d8be643": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_14536e7f532446cab2ce9c065e02e072",
"IPY_MODEL_aa003954ce9546e68d83b51ac2846b9a"
],
"layout": "IPY_MODEL_1db26a67538843ba8c9e6285e55eabb8"
}
},
"1fc7216173f44cc49f680aac01458c72": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"1fecc9559eb24bd49cb1dd2e903615d4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"20531519a6d942a985fc0ec27929fd25": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"205a3fff2c2341338ee8ca2f464564b2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_c3fa56c79e8f47acb3246a1515ed3927",
"style": "IPY_MODEL_78137e5cec2c4a56a9bf21802e70c4ba",
"value": "Workspace"
}
},
"205e78f0c0fb4918a30d63ad47b465a3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"20618388a3784cbe88e7d4bc7783947b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"207342b6a4a14c33bdc1df988a118357": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"208c33ce483a45cfb99e22614dcaebf6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_d01c754b860847e3b788151abd4b64bb"
],
"layout": "IPY_MODEL_97366ee7e93e4b4ebcd02abf9a046032"
}
},
"2108d2bfe7b54cd38729dd5c43d8f1aa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_872b3163fa714e028013a39eabcda02b",
"style": "IPY_MODEL_0155100c12f14997939a59711109d2b1"
}
},
"214fb1c399394b288bd5ffbb390331f2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_daa881a16db94a628395c8028786288a",
"IPY_MODEL_b18955aa307d49deade78df0a7b1c8f8",
"IPY_MODEL_071fee7358ff4f98877f103e57bf66a8"
],
"layout": "IPY_MODEL_69aae0de19b8435e878f9c5567a31815"
}
},
"216b6539861c48f387ca9f7bc5c20297": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"216cf71a4d354ee780270e85b4b61c3f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"21abc08e920344b7b81a07dc181b2384": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"21c3e49ec04c4cdea71404378806da0b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"21da18c750d84c738fbcab4b2f8385a9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_711de5f3659249439fa826468b9a2789",
"IPY_MODEL_a1f55c73035b4856b52771911e53d8d8",
"IPY_MODEL_093cc3f7112947bdaedb9861bb165e56"
],
"layout": "IPY_MODEL_bc73ad0a0823448e9574d159e7842f31"
}
},
"21e5198e5efa48d789be6c0ecc9771f9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"22176184ccf64b97bf4909b7243f5283": {
"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_de5f935756444e3cbd51c69c493b8085",
"style": "IPY_MODEL_671c4c3cfcff4f788d568bbd4464e526",
"value": false
}
},
"22199b60fea14ee192d81d9b1d43275f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_eddb9e2785964c73887d76700473d042",
"IPY_MODEL_1ce01ee9839743fcb792440fdfee5883"
],
"layout": "IPY_MODEL_c6620d30b3a34c02ac6c034d3b6e5e0d"
}
},
"222209a041c54866b5aeba55a62242a0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextareaModel",
"state": {
"continuous_update": false,
"description": "WKT:",
"layout": "IPY_MODEL_bd0785213a914b7a864a450b03b147f0",
"style": "IPY_MODEL_7d14dba750724a6cb814f04eceeb64e1",
"value": "PROJCS[\"NAD83 / UTM zone 14N\",GEOGCS[\"NAD83\",DATUM[\"North_American_Datum_1983\",SPHEROID[\"GRS 1980\",6378137,298.257222101,AUTHORITY[\"EPSG\",\"7019\"]],AUTHORITY[\"EPSG\",\"6269\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.0174532925199433,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4269\"]],PROJECTION[\"Transverse_Mercator\"],PARAMETER[\"latitude_of_origin\",0],PARAMETER[\"central_meridian\",-99],PARAMETER[\"scale_factor\",0.9996],PARAMETER[\"false_easting\",500000],PARAMETER[\"false_northing\",0],UNIT[\"metre\",1,AUTHORITY[\"EPSG\",\"9001\"]],AXIS[\"Easting\",EAST],AXIS[\"Northing\",NORTH],AUTHORITY[\"EPSG\",\"26914\"]]"
}
},
"228751ae2e55462599587695bf2da767": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"22b81bdd57ff497aa2a4a89a9cfaddca": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_0cc651421c4743d783642a5af52d66af",
"placeholder": "output filename",
"style": "IPY_MODEL_7829630862ef4e9f88514ddc665e92db",
"value": "FlinFlon.geoh5"
}
},
"22d13869d5784d0dab2672f28244d1fb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_bb78ccefffdd497e9670411734893b75",
"IPY_MODEL_d3c5056120ee462890fd200e9621f520"
],
"layout": "IPY_MODEL_26d1a4ca1ff44ea7aade925fda9a68f6"
}
},
"22f8a36086ee4629833f96d06736a8c9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"2345637ffe9b4bcf89ecadcb68fcbea9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2365481059114f80835132bacafc5529": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"236bdf060d634a64ba50c96c9d62f63a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_ffda06d43643404c85aae88663b5d2a8",
"IPY_MODEL_8c52afd39bae49589fc7e811e63352ea",
"IPY_MODEL_040c775f05d94bf2b6686730d52d0921"
],
"layout": "IPY_MODEL_1e0044fb7c2e4e17b3fa4dca52a411e4"
}
},
"238468b86ccb45dc9d0d7b3ce951382b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_5d4fc1f501524173b7246b6d47c9e0bb",
"IPY_MODEL_c006be7f0394444cbbfeb2ba827eb2ad"
],
"layout": "IPY_MODEL_b605309e9c3945ca8e1550f4550a6f1b"
}
},
"2393336c958f40e09aea042f00a56a2f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"23b00ff0ca1c4eefa8d102dc809b2238": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"23be621a8c304bdaa3f0c3b10956d8a6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"23eda325de434eed807dfdbcd6c89f4d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_26ed23cff0974fa3b86ce5f8d53ef5b6",
"placeholder": "output filename",
"style": "IPY_MODEL_a8a4a634f3a54038a8b39facb93cf014"
}
},
"2400ed87cbdb47a1b5e04785973e0ad6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_a19e85b09b91442b86e342fa2ed36840",
"style": "IPY_MODEL_867f752b67f4422e8689a2dd24668bd9"
}
},
"2429492a6b984800b236a96a4d0df7c9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2465ded787064d41aaaf4d1bedb96fd5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"24660ebdca7941a6bd087ce0a6cc1406": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Save as:",
"layout": "IPY_MODEL_1e0bcd39522042aba0b72bf1adba1566",
"style": "IPY_MODEL_be648bea5c084a888fa395f7a1ac7b45",
"value": "Gravity_Magnetics_drape60m"
}
},
"24804e15ee1c401ab45ea9ec4bd8094c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_a02f9f99b32a45428643c6d096a3ab99",
"style": "IPY_MODEL_ecba4039ae834902bb8c232a68303914"
}
},
"2498abca7705402f8955c7e3eaaaa8d2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "75%"
}
},
"24ce18a98ee848e785c47c0b8702af15": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"24d37286bacb416f819e74756b23db9c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_98059e58c8aa421899526950a3336b90",
"IPY_MODEL_eee37240ad6d4d699ae010a033ac4c82",
"IPY_MODEL_f44f130073614bf9865596a34b0fa70b"
],
"layout": "IPY_MODEL_21c3e49ec04c4cdea71404378806da0b"
}
},
"24e5fe31b1394b49adcbfe4be985879e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_880e6be628a546a798fc10e14ca332a2",
"IPY_MODEL_195b538fa4dc4ee4a815262ac0823ab2",
"IPY_MODEL_592a894c02904dc0b06d0de4e141f1eb"
],
"layout": "IPY_MODEL_8773466b16a649b38a806d1af98cc877"
}
},
"24eb1c0e41ec4aa8b363b54476f5e93c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_3bd208341b3a4a2caac5f17603c8e976",
"IPY_MODEL_f3d85dc2a2a84c1cb16ffce4316a5525"
],
"layout": "IPY_MODEL_25a55fda01f743b7a6de7f2cd1ad8e97"
}
},
"25a55fda01f743b7a6de7f2cd1ad8e97": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"25bb599fbafa4a12bc81ed3f4b439966": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"..",
"SimPEG_PFInversion",
"Temp",
"FlinFlon.geoh5",
"Gravity_Magnetics_drape60m_Airborne_Gxx.tif",
"Gravity_Magnetics_drape60m_Airborne_Gxx_Colorbar.png",
"Gravity_Magnetics_drape60m_Airborne_Gxx_RGB.txt",
"MtDore_TMI.geoh5",
"Octree_Mesh.json",
"Octree_Mesh.ui.json",
"Octree_Mesh_v2.json",
"input.ui.geoh5",
"input.ui.json",
"options_tree.json",
"test_no_root.py",
"tester.ui.geoh5",
"tester.ui.json"
],
"index": 3,
"layout": "IPY_MODEL_e506372c18f64a5299db128f4b74ad5c",
"rows": 8,
"style": "IPY_MODEL_75be046d5b964dc6955627414b30ca6d"
}
},
"261120f700c942d0a5408dbcb3a7b3f1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"264906e97f374b5b96bccfacb8d098cc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"26906c5d36524e008311a72535beae73": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"26933df903064ca48fcc5f61c4f0623e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"26b637189a1e4c7982a604b27ee76bef": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"26c04867778b457489fc8d35d3f0184d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"26d1a4ca1ff44ea7aade925fda9a68f6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"26ed23cff0974fa3b86ce5f8d53ef5b6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"26ee73cc55fd476eaf7c89024874ebf8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_ed59d6d923df4d07bc9abd86e4764ee2",
"style": "IPY_MODEL_f035ff915d86431cbf5a2267367238bb"
}
},
"26f3f1e7704243dda25f0b361b0d2f4d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"2701409aae8c4cc3b726b2de9b721ad2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"27122e0f58094eaf845022d96c235b35": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_f7d2b9a208514a4d835947ce32b8982f",
"style": "IPY_MODEL_1963480fc50a449b8e1d5c2b08ac6a33",
"value": "Monitoring folder"
}
},
"27371f7c21a14facaf831afc3d0c8170": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_82bfaf8c5659498e8af48158027b3704",
"IPY_MODEL_9b69703177e94f87b7949717ac1abdde"
],
"layout": "IPY_MODEL_2de546e4c9544d9989832e971fbcec8f"
}
},
"274aa5ce31d342478b839a6ebe0f0d5d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_acfec0f4c909432f8acfe3d3ed9aae6f",
"IPY_MODEL_cf51a00e19744204843f7cfc0ce765a4"
],
"layout": "IPY_MODEL_e590f2ee7ade4ef984d5dd49d31ae0d9"
}
},
"2782504d33d1450a8471539016c16a6a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"27a18b40bc3f4d7ca1a69bfdaa46a6d9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"27a2474fe62e498e9cbcc98d9310945f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_64071734438b4ede985f35e16ad87734",
"placeholder": "",
"style": "IPY_MODEL_ebd83ad714ca4aa79e4a09705a16f92f",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps\\assets\\"
}
},
"27ac00d2fe3c4d8b889850d393a397f5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"27bde76125774d0c92f02706cb10a170": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"27caa1d861e74cfa9ee1a3c26bf483a3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"282d689ff0a14759ace45de530127050": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_db6f5b367faf44cb89af6b72f1b73074",
"IPY_MODEL_bc3aea27f69b454f91348149f80b1587"
],
"layout": "IPY_MODEL_392db5c4ff8a4b2da497514af2a72502"
}
},
"28385a0c0863464b8b0ce51f49002aad": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"2852ce0a97454ff8826307e4b80b14f7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "No-Data-Value",
"layout": "IPY_MODEL_bf8cc1e69e1040bc9eae812fc16ce174",
"step": null,
"style": "IPY_MODEL_7334784dd45e4fbf9f6e234160145887",
"value": -99999
}
},
"289336044a0b4b1abe38f60fa62b37f8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"289708e9dbca4e8bb62569f8c7fe8561": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"28c3d3a5c5c64ebd9e6dd6c675925cc4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_02930e3143fb4305a01c5bb15d13eb59",
"IPY_MODEL_9be7c9bb1abe4829bd78a263a29ecaa2",
"IPY_MODEL_19fa9be1234848c2b9ba99521bf09f65"
],
"layout": "IPY_MODEL_68e99f72fc67499988cd27a617f6ad7d"
}
},
"28ee6726c9b6430991d3d22bc6e2c51f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_4f8afc51b3a34badb1993e9132b7886f",
"placeholder": "",
"style": "IPY_MODEL_fc24c8b5f9d74a8f93b98d1f429b8866",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps\\assets\\FlinFlon.geoh5"
}
},
"2941cf15505c4de4b5b310891541b865": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"2985bff4472642eb97564f49cc52d22d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_408b6550d4aa456483c1ad22d905a68f",
"style": "IPY_MODEL_6da27e814e8a4cb69e7f3838f177b619"
}
},
"29a98db18ee54e03b1cd38f3d8fc3b33": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"29eb441dbb114e2b85b77c317f9c7cb6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_7b9f47c3dac84265ac23c80cc5207c91",
"IPY_MODEL_e5614f0468c143ba9b2ee27b70498bbc",
"IPY_MODEL_784df2395ef042c7b13366487c84eee9",
"IPY_MODEL_8476de829b284b49a3518eb286c55d28",
"IPY_MODEL_4513ad6acc8a4c478b373cf8575ece6d",
"IPY_MODEL_b3f0c67f5e86404e87ac7b37f6ce6001",
"IPY_MODEL_aa003954ce9546e68d83b51ac2846b9a"
],
"layout": "IPY_MODEL_4063bc16605348f5b5d90e207f15834b"
}
},
"29f9c24063f34a71ba7f27ae7cca427d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"..",
"SimPEG_PFInversion",
"Temp",
"FlinFlon.geoh5",
"Gravity_Magnetics_drape60m_Airborne_Gxx.tif",
"Gravity_Magnetics_drape60m_Airborne_Gxx_Colorbar.png",
"Gravity_Magnetics_drape60m_Airborne_Gxx_RGB.txt",
"MtDore_TMI.geoh5",
"Octree_Mesh.json",
"Octree_Mesh.ui.json",
"Octree_Mesh_v2.json",
"input.ui.geoh5",
"input.ui.json",
"options_tree.json",
"test_no_root.py",
"tester.ui.geoh5",
"tester.ui.json"
],
"index": 3,
"layout": "IPY_MODEL_5cc908c8d91342419a27f552e1b5b95c",
"rows": 8,
"style": "IPY_MODEL_34e98510d28546b6a3de13014be9e575"
}
},
"2a07e49ef666445aa66c0b24480325b5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2a2ac56e7e924cc1ad761ceeaf8a1db6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"Z:\\"
],
"index": 0,
"layout": "IPY_MODEL_e2b884b184d3474f848a957d94490026",
"style": "IPY_MODEL_1ac1b6c10fe54607b436a4624f6ef33e"
}
},
"2a41aaf230a745329bf31fcc8e809857": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 ..",
"📁 SimPEG_PFInversion",
"📁 Temp",
"📁 uijson",
"FlinFlon.geoh5",
"FlinFlon.geoh5.lock",
"FlinFlon_dcip.geoh5",
"MtDore_TMI.geoh5",
"tem.geoh5",
"test_forward.ui.geoh5",
"test_forward.ui.json"
],
"index": 4,
"layout": "IPY_MODEL_bea22c6b2b094192bce25af89cbcb066",
"rows": 8,
"style": "IPY_MODEL_0d2a633891a04cafae1bda86309aacbb"
}
},
"2a49c03fc7fa435ebcb2ddc5372e51cf": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"2a6bfd711b3d466bbcc56a02fc10b682": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"2aaee3d4c9664ee690bdf2ddc10135c0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"Z:\\"
],
"index": 0,
"layout": "IPY_MODEL_4e396da35c6c4a03903272aaf2e57c45",
"style": "IPY_MODEL_3c55f7f4bc9c416ab71eab343f0059b8"
}
},
"2ae06a3b2848487b9c609f948d35c09f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_4c4385aac6824036a13d9d51a90daa8c",
"style": "IPY_MODEL_0b69cf1dde694db29a406502d389a21d"
}
},
"2b0865b4767a4494b4930695b0bbffdc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2b0ebdd130004d08ba53abc452f26fc8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_7412a48ffd4345d3838d3e615a1536be",
"style": "IPY_MODEL_48e904f4722049a79e5067f0ea92da01",
"value": true
}
},
"2b7a604295144c49a9f9fb8eb500e4c0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"width": "auto"
}
},
"2b8b4030f5cc42069dfb32860da97476": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_d2a20c62acb0488b8e58cdedb21abf6d",
"style": "IPY_MODEL_537508c231ed46f5b3a5d077899e4fd1"
}
},
"2bfa689430c240729a27a333d7baa444": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2bfcf22a97374e0295d9bfbe04a3ca86": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2bff9408066841919e60da347e2e6ce3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2c1c825d768a4b289ae3d8facd0bd5ae": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "75%"
}
},
"2c36c693503349e0afc61f3a1826076c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2c5a9b1a0ea94468b7a070399527ec97": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_97b79c1c996f437cbb9ba4385a8a6de8",
"IPY_MODEL_bb0be385c1f74e21a9060bf8d440c8f5",
"IPY_MODEL_30d2a5cb5c9e4b00af372bb8ae8b6487"
],
"layout": "IPY_MODEL_04cfa5f87d004a47ae9c6571437b6996"
}
},
"2c92237e6c3647f3b7dbdf8bb54d1c9f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_9d4001e4b71f4a5b808626e162d5e6cd",
"style": "IPY_MODEL_4b4c30ad43754df3bdbe67683ad90adf"
}
},
"2cb22abcfd5e45009fd0fd7905cb8248": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2d4c7cdd12ff449a9bf78ca2f6f6ac50": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"2d51ea62b1be4a628a3c73c91d177208": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2d89ab3db6e6434b8f770f9ac859b8b8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2d9eff52798a4c0489f43689e23b7b62": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"ESRI shapefile",
"csv",
"geotiff",
"UBC format"
],
"description": "Export type",
"index": 2,
"layout": "IPY_MODEL_07d10edd1a67471f9ea7eddc901ae67e",
"style": "IPY_MODEL_9fedbda3b14641e68b015984c11fbe4d"
}
},
"2dddf5f7e5cf4acfb51e9f257bbf6893": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2de546e4c9544d9989832e971fbcec8f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2e098fd37b424fd2a0a0d291f5872f12": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"2e0eadd51468486bab2b97a1c95d35ff": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2e0f5a2c9b05480f85db8f59438b3b5c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_7f48879a2592476bbebad8e4967bc3df",
"style": "IPY_MODEL_30ce71b185a340b1b03bc1760ec0a967"
}
},
"2e1ae8209a72455aaaad06169a0aa91b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"2eae5381572d4894b771e73b0412298b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_6ae68084b9c745db818ce614739ee604",
"IPY_MODEL_6931ecea821f427986f1eb3008158666"
],
"layout": "IPY_MODEL_df788a56db4743c79783ffd3eddccfb4"
}
},
"2ebaa10f119343b3949f7596822fa79c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"2ebc4937244d40cf83d3ded7f127913a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"..",
"Temp",
"FlinFlon.geoh5",
"Inversion_.json",
"MtDore_TMI.geoh5"
],
"index": 2,
"layout": "IPY_MODEL_2fc983996e134dcea46c04c9dde40f8a",
"rows": 8,
"style": "IPY_MODEL_af79ff19262d4a9db8b532c63dcccc99"
}
},
"2ed9dc17148d42db92572a3507c05727": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"2eeb655e87a1402fa79bd383f2bb59af": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"2ef0bd7364744fb5ad09c18a5a156b2e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2f57ef721e71478395a894457f5211bf": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"2f5d469776d14ed7a6962ed5d1559986": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2f77880d139c4b9eaa80c697392e9856": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_f36e854b82a140698401d84092cb354b",
"style": "IPY_MODEL_e5c310aaa1b647e6be1125b33f571602",
"value": "Monitoring folder"
}
},
"2fabe6959ba740ea8353a53dd5ce1b43": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"2fb31564e5494bb791114e870295b5b8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"2fc983996e134dcea46c04c9dde40f8a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"2fcd637af6c1417f9a39b81125bb6a08": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"309683ea8d1b49d48a8cd3b76aa228bb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"30c778f17088453aa94a43818a5f7ec8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"30ce71b185a340b1b03bc1760ec0a967": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"30d2a5cb5c9e4b00af372bb8ae8b6487": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_63e6453af3364a5d85061038ea64f96b",
"placeholder": "",
"style": "IPY_MODEL_b805455005f340788652791232285d37",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps\\assets\\FlinFlon.geoh5"
}
},
"30e2e54f6c9041b7bef2353d3db77d85": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_19c4412ca6a8438aa4c6e351fe12a918",
"IPY_MODEL_ee4129eeeae34ed680ae471e4ee84214"
],
"layout": "IPY_MODEL_7b7a7dd5307b4881a0436ee12d2105c5"
}
},
"30e731c997d347c0aed94abda518fbda": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "500px"
}
},
"31158c9b7bdb46fb9c3231092463eebf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_d2ab5f033ee141cb836a5e70a921a149",
"style": "IPY_MODEL_a5bc5d975f3043f0a0a6d8adb0fc4ddc"
}
},
"3137a1232361415387c562a68ca902fe": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"314e7f4256ad4598af6aa12671683ae5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_2c92237e6c3647f3b7dbdf8bb54d1c9f",
"IPY_MODEL_519218d118014aa5943333f43f5b5c3c",
"IPY_MODEL_236bdf060d634a64ba50c96c9d62f63a"
],
"layout": "IPY_MODEL_1b10bbdabdc145c5acddd3f8a957be7c"
}
},
"315fe5e9d3044383b1c66a9f0e4e1032": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"316b92f0bbf8403aa861bd6e7eb201fb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_b358785b23a7492897d69246e80d5314",
"style": "IPY_MODEL_9f078f97f7cb4733a82ea5ff814f036f"
}
},
"319b2233895f4e8f917eeb3b6b96f582": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"319da1f343214449ae7c272ff39d62e5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"31d96fe1f1bf4665b3235abb9a58b7a6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"31e8f68437b04362859c863cf46e9dff": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"32095945925e4041baed60f2cbbfc95f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_7ae565f8e63f4869a45ba9221b994fd1",
"IPY_MODEL_6dc0a28d3d3c421d89b4864876c84f64"
],
"layout": "IPY_MODEL_261120f700c942d0a5408dbcb3a7b3f1"
}
},
"3235a1f296f9476bb387fff2e48b1789": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_f35895403ad24ad8a23bde5a7461b1fc",
"style": "IPY_MODEL_5ae9eb48375c4d2f91ed00cfc2ef5560"
}
},
"32d0fa4e650e4ce382348b0074377424": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3304f758484d4c31be6233fc847475fe": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"3381c51b50994d8584e6ce17b2a6c802": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"33b2b503bab74b01b557482e90c0d272": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"33d0f415e6404038b80f3b81572813d9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"33ee9b1c212b4e369a72b1480b2bc4ad": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"33fa2932af124eb0ba02877cfa9be430": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"33fe6174ce1c4647bb034b6d0d519376": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"3406d113c88f4b62ac4bc7685c75acbd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_f5304a0fdcdc4e8da1e019e584e5264a",
"placeholder": "",
"style": "IPY_MODEL_63d1e6ca511c442e90fa9f8f3d010bb6",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps\\assets\\"
}
},
"3455aec573a047f49ebbe2a86c89410c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"349e5d300cbd4ffb9b07afbb1641dd82": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_cb66bbc2b8934ff9a3a0effd9b0a5a69",
"IPY_MODEL_a91df016660142d18fa423c8a0ff2b27",
"IPY_MODEL_6720c968ee9942f89cc2a9b045e201cf"
],
"layout": "IPY_MODEL_d3dad3dcaada445b81686d710dfe9482"
}
},
"34af575d69ff4b2c846cb48e0b2d4995": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_53f2988345854b6f841160e93c505118",
"IPY_MODEL_5f3ef1b132c848ff9a315deabc2245e1",
"IPY_MODEL_7d9158f42e32447abfc60636d71492e7"
],
"layout": "IPY_MODEL_08e7b43e250c4575858af45c835ea650"
}
},
"34bcbcdc85a543759f394fed83c45896": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"34e7bee145094881a040c764158334b2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"34e98510d28546b6a3de13014be9e575": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3521c6d037314d7f8668906b85c7ec49": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3542436fe2bf4d7f87fe4ac51166e284": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_316b92f0bbf8403aa861bd6e7eb201fb",
"IPY_MODEL_70d9edf7d1a04c56890dea4052cd676c",
"IPY_MODEL_27a2474fe62e498e9cbcc98d9310945f"
],
"layout": "IPY_MODEL_a8a7125741d5447f8baa825cffb4c9b5"
}
},
"354fea7e0f874436be95ed983a2650c8": {
"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": "500px"
}
},
"35aad0d7d3a84ee2805ab99e52a51079": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_f8448f75105d46ef81e77bb31a0d391c",
"style": "IPY_MODEL_6209a23f169d42c8b0a01b87da64fd90"
}
},
"35c6766a961d4a4a8dfa8758fd1214a6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"35ef36f2809b44fc8879b9351657cd1e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"35f2b28d3b4a4c43ae25bbad47a4e7d9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"3605d7abb7eb4e48b0beb8ab732ecf17": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"36140327b93e4edc826a79e430df8fb4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"361e413c88e74e14ad68755e10b442b7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"362580fc75184e8a85c481a443836ee5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_e61eb31c3c7648d18eedf8a6fc091c42",
"IPY_MODEL_4822d3994a1142faae65c4665072ef12"
],
"layout": "IPY_MODEL_8453b0e809eb441cbeb83e6b5ae29a86"
}
},
"362b633a6293456ab093a4e3150c9cf2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"366ad8bdd552411ab668e4f4af21405d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"369642b56c6d46e7909ec77344dc9c2c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"CDI/ELEV[4]_surface",
"CDI/ELEV_surface",
"CDI/CDI_",
"CDI/COND[21]_surface",
"CDI/COND[11]_surface",
"CDI/COND[23]_surface",
"Faults_Dikes/fault_splay1",
"Faults_Dikes/fault_Cliff_Lake",
"Faults_Dikes/fault_Other_FlinFlon",
"Faults_Dikes/fault_Club_Lake_splay",
"Faults_Dikes/fault_Catherine_splay2",
"Faults_Dikes/fault_Birch_View",
"Faults_Dikes/fault_Dion_Lake",
"Faults_Dikes/fault_FlinFlon_splay",
"Faults_Dikes/fault_West_Mandy_Road",
"Faults_Dikes/fault_Channing",
"Faults_Dikes/fault_Ross_Lake",
"Faults_Dikes/fault_Louis_Hidden",
"Faults_Dikes/fault_Lake_View_thrust",
"Faults_Dikes/contact_Schist_Lake",
"Faults_Dikes/fault_Burley_Lake",
"Faults_Dikes/fault_Dion_Lake_splay",
"Faults_Dikes/fault_Green_Lake",
"Faults_Dikes/fault_FlinFlon",
"Faults_Dikes/fault_Catherine_splay1",
"Faults_Dikes/fault_East_Mandy_Road",
"Faults_Dikes/fault_Other_FlinFlon_South",
"Faults_Dikes/fault_Catherine_splay4",
"Faults_Dikes/contact_Stitt_Island",
"Faults_Dikes/fault_Club_Lake",
"Faults_Dikes/fault_Tailing_Pond",
"Horizons/35_Hidden_Reservoir_Hr5",
"Horizons/29_Hidden_Reservoir_Hr1a",
"Horizons/60_BlueLagoon_Fb2",
"Horizons/20_FlinFlon_Undivided_Int_Dykes_D2f",
"Horizons/04_Boundary_Intrusive_S4h",
"Horizons/53_Millrock_Rhyolite_Fm4b",
"Horizons/19_FlinFlon_Undivided_Int_Dykes_D2b",
"Horizons/18_FlinFlon_Undivided_Int_Dykes_777_D2b",
"Horizons/06_Phantom_Lake_Intrusive_S3a",
"Horizons/21_FlinFlon_Undivided_Int_Dykes_D3a",
"Horizons/43_Millrock_CHLSH_South",
"Horizons/56_Millrock_Basalt_Fm1ba",
"Horizons/17_FlinFlon_Undivided_Int_Dykes_D2",
"Horizons/32_Hidden_Reservoir_Hr1b_SW",
"Horizons/11_Missi_M3_NE",
"Horizons/13_Missi_M1",
"Horizons/07_Annabel_Granitoid_S1",
"Horizons/45_Millrock_Gabbro_South",
"Horizons/01_Late_Intrusive_S5b",
"Horizons/31_Hidden_Reservoir_Hr1c_SW",
"Horizons/52_Millrock_Rhyolite_Fm4_West_check",
"Horizons/55_Millrock_Basalt_Fm1bf",
"Horizons/34_Hidden_Reservoir_Hr2b",
"Horizons/03_Boundary_Intrusive_S4b",
"Horizons/42_Millrock_CHLSH_North",
"Horizons/26_Louis_L3",
"Horizons/23_FlinFlon_Undivided_Int_Felsic_D4g",
"Horizons/30_Hidden_Reservoir_Hr1b",
"Horizons/59_BlueLagoon_Fb3",
"Horizons/49_Millrock_MVR_Fm5d",
"Horizons/44_Millrock_Gabbro_North",
"Horizons/27_Hidden_Carlisle_Hc4",
"Horizons/22_FlinFlon_Undivided_Int_Felsic_D4e",
"Horizons/02_Boundary_Intrusive_S4a",
"Horizons/61_BlueLagoon_Fb1_NW",
"Horizons/05_Boundary_Intrusive_S4g",
"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": 72,
"layout": "IPY_MODEL_45b06c878dc947bbbf4f71d45172869d",
"style": "IPY_MODEL_fb3fdfd2546f4beaa19389aae6a02585"
}
},
"369e1aaa9846472795cfa1661c1453e1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"369e345e9fd34ec4a8192c0aa68e99c7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"36bdb67d0f284354be8f25905a946c8f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"36e43d5879a246e38021040d2b275dbb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"36f83d03c43f4d25bab7b2d4c3386610": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3760ece567824037a8bd531e6cae48d7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"3762ddc6a2a6428294e08c7d08baa7da": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3798d426e676456ba1eb82b100cc99e3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"37bd6fbfe8ac41648a86da5183321a91": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"37c8ad744787454781b650758c212808": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"37dcad84ef5443acb36edb826cdf7b4a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"..",
"SimPEG_PFInversion",
"Temp",
"dask-worker-space",
"FlinFlon.geoh5",
"HelloWorld.ui.json",
"Inversion_.json",
"Inversion_1.json",
"Inversion_2.json",
"Inversion_G.json",
"Inversion_G2.json",
"Inversion_G3.json",
"MtDore_TMI.geoh5",
"Octree_Mesh.ui.json",
"PeakFinder.ui.geoh5",
"PeakFinder.ui.json",
"PeakFinder_v2.ui.json",
"PeakFinder_v3.ui.json",
"PeakFinder_v4.ui.geoh5",
"PeakFinder_v4.ui.json",
"Untitled.ipynb",
"VTEM_model.mod",
"Workspace.Gravity_Magnetics_drape60m_Airborne_Gxx.tif",
"Workspace.Gravity_Magnetics_drape60m_Airborne_Gxx_Colorbar.png",
"Workspace.Gravity_Magnetics_drape60m_Airborne_Gxx_RGB.txt",
"Workspace.Gravity_Magnetics_drape60m_Airborne_TMI.tif",
"Workspace.Gravity_Magnetics_drape60m_Airborne_TMI_Colorbar.png",
"Workspace.Gravity_Magnetics_drape60m_Airborne_TMI_RGB.txt",
"demo.ipynb",
"input.ui.json",
"options_tree.json",
"tempui.ui.geoh5",
"tempui.ui.json",
"test.ui.geoh5",
"test.ui.json",
"testPoints.geoh5"
],
"index": 4,
"layout": "IPY_MODEL_e1b42e6c53c2421f9d5b84a538c2c558",
"rows": 8,
"style": "IPY_MODEL_86ba37f2aa604fe386312ddb50da7062"
}
},
"37f72f0047794ed08d7e5336dde56912": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"38096d5e14de48c19c2e140cc93d24e4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3811a98235344c4daaf9b77d2ff08278": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"38583c05f8144cd5bdea540bc4c79e35": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"38623429e7ae4cf2abb169a2be3b5051": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_137f83453a04412c9dfd8105379c4e9a",
"style": "IPY_MODEL_e522b3e7fc124804bc768c04b3f6ea3e"
}
},
"386308a1cd484c1c8daf892872d3d278": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"38712e7330904de9846731b9d6dec8d1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"387d099a82454608a15c3f54566f5535": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextareaModel",
"state": {
"continuous_update": false,
"description": "WKT:",
"layout": "IPY_MODEL_7fbe41851c42442e910bbd07ec5f3a93",
"style": "IPY_MODEL_c621de334c334e679597c32be0ff3e69",
"value": "PROJCS[\"NAD83 / UTM zone 14N\",GEOGCS[\"NAD83\",DATUM[\"North_American_Datum_1983\",SPHEROID[\"GRS 1980\",6378137,298.257222101,AUTHORITY[\"EPSG\",\"7019\"]],AUTHORITY[\"EPSG\",\"6269\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.0174532925199433,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4269\"]],PROJECTION[\"Transverse_Mercator\"],PARAMETER[\"latitude_of_origin\",0],PARAMETER[\"central_meridian\",-99],PARAMETER[\"scale_factor\",0.9996],PARAMETER[\"false_easting\",500000],PARAMETER[\"false_northing\",0],UNIT[\"metre\",1,AUTHORITY[\"EPSG\",\"9001\"]],AXIS[\"Easting\",EAST],AXIS[\"Northing\",NORTH],AUTHORITY[\"EPSG\",\"26914\"]]"
}
},
"388e71fa78b144b79d862745df3fd033": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"38a49e97688741279f8ae295cc93dea5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextareaModel",
"state": {
"continuous_update": false,
"description": "WKT:",
"layout": "IPY_MODEL_c7f06b88f7a341f4b3f7b187dde22c0c",
"style": "IPY_MODEL_366ad8bdd552411ab668e4f4af21405d",
"value": "PROJCS[\"NAD83 / UTM zone 14N\",GEOGCS[\"NAD83\",DATUM[\"North_American_Datum_1983\",SPHEROID[\"GRS 1980\",6378137,298.257222101,AUTHORITY[\"EPSG\",\"7019\"]],AUTHORITY[\"EPSG\",\"6269\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.0174532925199433,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4269\"]],PROJECTION[\"Transverse_Mercator\"],PARAMETER[\"latitude_of_origin\",0],PARAMETER[\"central_meridian\",-99],PARAMETER[\"scale_factor\",0.9996],PARAMETER[\"false_easting\",500000],PARAMETER[\"false_northing\",0],UNIT[\"metre\",1,AUTHORITY[\"EPSG\",\"9001\"]],AXIS[\"Easting\",EAST],AXIS[\"Northing\",NORTH],AUTHORITY[\"EPSG\",\"26914\"]]"
}
},
"38baa11dbad84c8da4208f3293ab4cb5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_689156964fc646ae84938a72a0364385",
"IPY_MODEL_b2362ccd64a5446499b2497fc847cc48"
],
"layout": "IPY_MODEL_3455aec573a047f49ebbe2a86c89410c"
}
},
"38d5a037833b4b238170c953e6b59692": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"ESRI shapefile",
"csv",
"geotiff",
"UBC format"
],
"description": "Export type",
"index": 2,
"layout": "IPY_MODEL_ed56578c65e04a1ca0f80128e21d8011",
"style": "IPY_MODEL_a75bece7e66840ce8da0e89cb660aee6"
}
},
"38f824c3e16e41ae9bae3d418250ec72": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"38fc321adf8e44f89eeaca50dc240864": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"39081f58ffc24a2385d23b3e867ef0a5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"392db5c4ff8a4b2da497514af2a72502": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3931044f64324d7cb1b826fb94281380": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_0466943893194045800df54fada8e46b",
"IPY_MODEL_ab2ace3429b84fedbcfaf5da84b78580",
"IPY_MODEL_a279d579787f4cfba313faa1fe454488"
],
"layout": "IPY_MODEL_354fea7e0f874436be95ed983a2650c8"
}
},
"39445ce687e3410ab5b293c504ae6a47": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3a28abcc63aa4664b8e5b462456c19d5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"3a48f7ca242f4885b223836967d02561": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3a538e11adc54dacb7f629ff7c8777ed": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3a89d225358641b8988b1ec5c07989d1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3a925806e924466e89e9304d282686a1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3b12887cee9344d184829dd689f713e2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_97f15aa259fc4b61872201b4eec7a612",
"style": "IPY_MODEL_41a476076a244debbbc3011960c22736"
}
},
"3b869c3cd34840e1b85280ec7a988f8c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_ee03dfdcc184474e8d276bf5c7882656",
"IPY_MODEL_fabb898c0be84537ab4af787954ce1a0",
"IPY_MODEL_5a9de680228e4b1688d5046e8819f7f5"
],
"layout": "IPY_MODEL_7160e98e08024b1b97e68f9148fa240e"
}
},
"3bd208341b3a4a2caac5f17603c8e976": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_8c60b08fb910411194c886ef1e80dc95",
"style": "IPY_MODEL_62e5119853444647be8ce57ab86b23a2",
"value": "Workspace"
}
},
"3be0e9748caf445f9c28b16d53b95e52": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3bee6be30e0c4c73aca4d8a469fefea7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_7b8a40c47fc1458bb5e07f374bc84975",
"IPY_MODEL_6223406e69a744a988645fb38226eeb6"
],
"layout": "IPY_MODEL_5054ed647a3941eea55b68598d7d3ef4"
}
},
"3c09b9acf9c642aa89b7ec0238195e5e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_8ff1bdb760734a05b3f9c9ddc87d1c87",
"IPY_MODEL_b5ec999d3b4b43ea831dd15d5a9ab4a4"
],
"layout": "IPY_MODEL_74c7fd30265d42ada988b0a7346a58ea"
}
},
"3c55f7f4bc9c416ab71eab343f0059b8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3c5ad3dc876d420a81f23609424a5050": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3c7a362145ce46b19b3c8646336a37b6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_361e413c88e74e14ad68755e10b442b7",
"placeholder": "output filename",
"style": "IPY_MODEL_bd4c443dde43410b85130b63cda8c40d"
}
},
"3c83e6e1dc3445a29dc324344703e6f3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "75%"
}
},
"3cd11d64149643bd9d367447e2bbec5b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3cd3c0c2c9304964b2c945bcdaceae77": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_e7b05a57c60f4d1aaefa6ebb25c9a196",
"placeholder": "output filename",
"style": "IPY_MODEL_b374a014883648219a698eb19532288b"
}
},
"3ceae8b4c34e4b7589bc3e833c457c00": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3d20150d7a7c44009545533c7595bd4d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"3d4406e98d2941d8ac6b2140a429d49f": {
"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:\\",
"Z:\\"
],
"index": 0,
"layout": "IPY_MODEL_7d7d2acf7cfc4933935cb56fed15e57d",
"style": "IPY_MODEL_8e966f864bb64bd1838a3ada45c97807"
}
},
"3d5018ef2ce746fe8f24ab442b4b2ff9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextareaModel",
"state": {
"continuous_update": false,
"description": "WKT:",
"layout": "IPY_MODEL_e13286a21ec04d59ac4b37aa42395bc8",
"style": "IPY_MODEL_56a8c8ee2dcc40ff9fc3a7c262c5aae6",
"value": "PROJCS[\"NAD83 / UTM zone 14N\",GEOGCS[\"NAD83\",DATUM[\"North_American_Datum_1983\",SPHEROID[\"GRS 1980\",6378137,298.257222101,AUTHORITY[\"EPSG\",\"7019\"]],AUTHORITY[\"EPSG\",\"6269\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.0174532925199433,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4269\"]],PROJECTION[\"Transverse_Mercator\"],PARAMETER[\"latitude_of_origin\",0],PARAMETER[\"central_meridian\",-99],PARAMETER[\"scale_factor\",0.9996],PARAMETER[\"false_easting\",500000],PARAMETER[\"false_northing\",0],UNIT[\"metre\",1,AUTHORITY[\"EPSG\",\"9001\"]],AXIS[\"Easting\",EAST],AXIS[\"Northing\",NORTH],AUTHORITY[\"EPSG\",\"26914\"]]"
}
},
"3db96b0ae32f4d258049179819225fcd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"3dc9a3d161994563bd34c3edb48a9a78": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"width": "auto"
}
},
"3dfe267c187844709436123a1169bdec": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_3235a1f296f9476bb387fff2e48b1789",
"IPY_MODEL_b809e5d9278c4f6eae566705e07e7d4f",
"IPY_MODEL_5cbd072206654a9f9eb1c5e1f788da2c"
],
"layout": "IPY_MODEL_76906da9179a4a87ba1e7874fc43f318"
}
},
"3e293ccf2164434a942acca18016a344": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Projection:",
"layout": "IPY_MODEL_9f9d76d8c74447fe8be6fd9d02a7b50f",
"style": "IPY_MODEL_a400fc0ebf454715abef36efb3663499",
"value": "EPSG:26914"
}
},
"3e6e76351f1b407a86c16d26780297fd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"3e73eaac96a34e71828bd500c4a515ea": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_904cda1bcd1d443a8b89cc0a5a28d15d",
"placeholder": "",
"style": "IPY_MODEL_88636525799a426ba4ede152272501a6",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps\\assets\\FlinFlon.geoh5"
}
},
"3e76b9b4636f4c9580ed5647046e9f12": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_885fb81c39584538b0e303a630d4f081",
"style": "IPY_MODEL_581cd2a8057348f4b0a8a574bb11a2df"
}
},
"3e903eaabda64b6d9cd4d470b7ed6231": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"3ec257c6bbf44fc99c8a0388237065c3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_bf5420f544724b1581b41ca975283819",
"placeholder": "output filename",
"style": "IPY_MODEL_4484a5d38be6485bb640d98d14dddc1b"
}
},
"3eff29134a6047f8ad1e38accd9b3299": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectMultipleModel",
"state": {
"_options_labels": [
"",
"--- Channels ---",
"Airborne_Gyz",
"Airborne_TMI",
"Airborne_Gyy",
"Airborne_Gxx",
"Airborne_Gxz",
"Ground_Gz",
"Airborne_Gxy",
"Airborne_Gz",
"Airborne_Gzz",
"X",
"Y",
"Z"
],
"description": "Data: ",
"index": [
3,
5
],
"layout": "IPY_MODEL_b3665c80d1354d639a597ce2739eec48",
"rows": 5,
"style": "IPY_MODEL_d0dc020bc50948e1845be7d66e67dbdc"
}
},
"3f12b5ea62604e53ab8b8e3131d2614d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"3f370b10ceb04a69a2b5da4537e7193c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"3f3c5b345e4d4cb7b4840296226fa452": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3fa2ba99d2684d9c96d78ba8cbd1a074": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"3fac2ff63e144dd48a133a72f3014a65": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Save as:",
"layout": "IPY_MODEL_b268382a0172400d81e9b976f25b7786",
"style": "IPY_MODEL_3381c51b50994d8584e6ce17b2a6c802"
}
},
"3fc282683e294afbb987574b4b87651d": {
"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_cf52f0a98e07402a823ecc7189639451",
"rows": 8,
"style": "IPY_MODEL_1c8ba3abcaab44c592ab8caea924341e"
}
},
"3fc32f2c23414b259f550a0d943df58a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"3fed53e698f04bcba6b52bb61954f6f8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"400cda87e81444498cfefb667c60b845": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_e881619a050c455bb11c8720e27e71d6",
"IPY_MODEL_986a03203a784998bb0cceab1306f10d"
],
"layout": "IPY_MODEL_b77fc5bed12647f38bc02f3f6d6c141f"
}
},
"4019c944fc3a47e4b1f514f75b387a8c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_e002253fbd3d40c59e4cf919e05efcfe",
"IPY_MODEL_abcf129fd6d84393aaded3282953f938"
],
"layout": "IPY_MODEL_fd468409a16b43f5812ce73dbfc1c00d"
}
},
"4046afab4f144a2ba8686ab3a8278f0f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"4053e7bd8b5543e9b683488679957e20": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4063bc16605348f5b5d90e207f15834b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"408b6550d4aa456483c1ad22d905a68f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"40a7a84123c143948e3cbde9d8448c56": {
"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": [
9,
2
],
"layout": "IPY_MODEL_1afb68290c56402987d46097f85f9cae",
"rows": 5,
"style": "IPY_MODEL_c208f04084b64eff84314779e6a519ac"
}
},
"40a7da38f4b64192b5dfc4eb8e57fc8b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"40ab109f661c4fd38d8e5a10e5117b78": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"41212bd0feef4ab6955f4f8e1a701585": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"414804b4614948a78731965b9c123939": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4165ad8d812245f19e50ee76392fefb5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"417801bc11ae4c9ca609023bd408f7e4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"41a476076a244debbbc3011960c22736": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"41a8c357c4ed4f988a2985bd8b6eacd3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"41d5b8d2ac144cc7b23661073f4232ae": {
"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:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\"
],
"index": 0,
"layout": "IPY_MODEL_f3a505140398480b92218214de78eb82",
"style": "IPY_MODEL_388e71fa78b144b79d862745df3fd033"
}
},
"4272ce00d58a4c7d854b965731f00a93": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_bfd570b3863146bc83dc57fc17c9bde0",
"IPY_MODEL_db279bb5332b4561909d2996acbac15b",
"IPY_MODEL_2c5a9b1a0ea94468b7a070399527ec97"
],
"layout": "IPY_MODEL_5fe89f7712d94ba5b83b1b9290ae3a9e"
}
},
"4321611f4aa342638757ffc9516fd2a0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"432c7419d6c543f8b45da95ae25b8801": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4361bb0df96345ba8f4a9a3e42c34966": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"43764ce117c1497998e5521407fc9e16": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"437b7855a5c2469db3948b9592c099b8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"43cf2b1eb3b3488f86083fb44aebbde6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"43dfa72311cd430da0e63a870e1b016d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"43dfa94901df4ac1a26db92fcda3ded3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"440549696a2d43459a489625325c6400": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"441dac188c7846568eafa7d8f27d4ba3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"442aea0a2a8e4b5484ff4b8dd082274d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"446c52e7b6724465a47087f65e1c2f85": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"446da297ef284a0bbaa821ee06e55339": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_2dddf5f7e5cf4acfb51e9f257bbf6893",
"style": "IPY_MODEL_e7631d3bbd744cd49b616a2779428f02",
"value": "Workspace"
}
},
"447e2b73e87a403e994fa4fc4890af3a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4483f00f68174869a174ea24f11d3a8e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"4484a5d38be6485bb640d98d14dddc1b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"44a6cce900bf483fbfe49f5c974ccb5a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_7b9f47c3dac84265ac23c80cc5207c91",
"IPY_MODEL_238468b86ccb45dc9d0d7b3ce951382b"
],
"layout": "IPY_MODEL_8c9a1f9e106e42f68a12460f6247d166"
}
},
"4507b69e198141c7acbd10077f8489fd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"4513ad6acc8a4c478b373cf8575ece6d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Save as:",
"layout": "IPY_MODEL_c40e74f6892b40e5a683d9455c7e526e",
"style": "IPY_MODEL_473c0c1b7ec8431eb2484126f81c6d14"
}
},
"453c3c2f798143ee83cab2a4a826f066": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"453dec1916764505b0d8c70d87f93fb0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"456072cd4dd9492d91bbc73c4cd8b84c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"457ab12b871a4231b73ccd2687b60e7f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_c0b90510847d4abc842f3d68a2fb8a3d",
"IPY_MODEL_38a49e97688741279f8ae295cc93dea5"
],
"layout": "IPY_MODEL_ca12d7f5db2e4df884991aac9eaea99e"
}
},
"458d9914160446ffa07df6b4377c161a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"ESRI shapefile",
"csv",
"geotiff",
"UBC format"
],
"description": "Export type",
"index": 2,
"layout": "IPY_MODEL_3a48f7ca242f4885b223836967d02561",
"style": "IPY_MODEL_9d4d7d0843d0494e91c08c323cebeaae"
}
},
"45b06c878dc947bbbf4f71d45172869d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"45ba13ee492c4184bfb9e6c24428e1ff": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"width": "auto"
}
},
"45e1c4376bf24773a60678173daa09c4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_0685779358cf4135921eecd154e3217c",
"style": "IPY_MODEL_66b610119fc648e4b536bed7e81020f2",
"value": true
}
},
"461d87505b1648fb9d6c30f74f1d5802": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Projection:",
"layout": "IPY_MODEL_fb7ceb92083b41d3954f9dcabae88377",
"style": "IPY_MODEL_3521c6d037314d7f8668906b85c7ec49",
"value": "EPSG:26914"
}
},
"461d8aadc0134b56b4b2e14ec1aeeee5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"464bd9cc607f4c85b126101e2051ae26": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"465409bea84a4467955e1c316844ba84": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4685dc9a32ac43be8be5467702d750c9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"46b9bd3b348d45d59aa12e6bf2c58cc5": {
"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": "500px"
}
},
"46c2e316d8054eeb884091266b74f265": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"46c9c524116c4541b8f1a36003e35c78": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"46deef5bb43444d0bb482bdbdc3b6054": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_3760ece567824037a8bd531e6cae48d7",
"placeholder": "",
"style": "IPY_MODEL_7a11cd664ede483e91f7aeebad7431c5",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"46e610e38605429fab6e5f883750c756": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"470b15b7855a4aa8bd4e5b10fb1866b1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"473c0c1b7ec8431eb2484126f81c6d14": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"473fa767b4ca48acba3abdfffeac9995": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"47469b130c2547eb82ebb62923eba5e3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"477fe62ddf6d4c92896aea5bbfdc8693": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_bdb3cd8590a949c880b4db8e9d8b99be",
"style": "IPY_MODEL_1703f408c0204bc3b5f282e0dc690fd1",
"value": true
}
},
"478003fa0f3f4aacb9dadd95526bbfa1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_2d9eff52798a4c0489f43689e23b7b62",
"IPY_MODEL_b2e4b13379d14a3c8440c246d7acc56c",
"IPY_MODEL_5007961b96254f50bbe3666f2c22bf34"
],
"layout": "IPY_MODEL_1cc05a3c27df4df2900e223e664d0dff"
}
},
"478594231e1d44e7883cae25623ab5e2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"479e3ae0abc747418b8db01ba1487122": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"47a69b64f3c743e78617788ce560eb4b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"47ad62defc904e3c95b32fd41abdc943": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Export",
"icon": "check",
"layout": "IPY_MODEL_1b0abb160ee4462ea459d4f656d086bb",
"style": "IPY_MODEL_638d065bdab54fa4803b3d86207d7e9d",
"tooltip": "Run computation"
}
},
"47c5f081f3ba472798c7eb5e4491a706": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Save as:",
"layout": "IPY_MODEL_12608b76d6114dfb92e65b7f726b71bc",
"style": "IPY_MODEL_80a9155c94a24b7db1caeeaf39902655",
"value": "Gravity_Magnetics_drape60m"
}
},
"4822d3994a1142faae65c4665072ef12": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_631ceed5f1464ac8a9f8f2dc40648414",
"IPY_MODEL_d1b0a521dcd242e4a88243964f773e86"
],
"layout": "IPY_MODEL_dfdd0a8cfead4d06b85878be7fdadef7"
}
},
"4862262e72ec4662ab1b47f2c28d62d6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"48678a4c94d44296b9d0936f7bb14d21": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4880fbffa67a48b2b48722dae96e7bfb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"48a0f56bf8b34354ac6874b31d9970cb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"48e904f4722049a79e5067f0ea92da01": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4915d6826fcb408589be8c242a85be36": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_9299a60b16f5443a95495b0a64cdab92",
"style": "IPY_MODEL_542a3d9d257c413095e7f8a0ba03deef"
}
},
"4932da46586a4ff4a669f37f156048db": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"493a3add3c3341139473a529648dec09": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4949f38dc29a42218c088a8f17b4e181": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"498b21b866c044ccae3dfc50b07cb808": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"float",
"RGB"
],
"description": "Type:",
"index": 1,
"layout": "IPY_MODEL_4685dc9a32ac43be8be5467702d750c9",
"style": "IPY_MODEL_e606173ecfe54acd9432ea6522f563ba"
}
},
"4996e78c61df4020a88e174e112c87b0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_62a9ac9cd68b4ee7814b2e8f41959797",
"style": "IPY_MODEL_49f5c1216bb641a08107850bb69f9a4b"
}
},
"49f5c1216bb641a08107850bb69f9a4b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4a11f262180249dba21ef81a4655f79b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextareaModel",
"state": {
"continuous_update": false,
"description": "WKT:",
"layout": "IPY_MODEL_1a109d1beaf5413fa654286026511f3c",
"style": "IPY_MODEL_e2b20e2877ed46df945aafbd56aaca98",
"value": "PROJCS[\"NAD83 / UTM zone 14N\",GEOGCS[\"NAD83\",DATUM[\"North_American_Datum_1983\",SPHEROID[\"GRS 1980\",6378137,298.257222101,AUTHORITY[\"EPSG\",\"7019\"]],AUTHORITY[\"EPSG\",\"6269\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.0174532925199433,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4269\"]],PROJECTION[\"Transverse_Mercator\"],PARAMETER[\"latitude_of_origin\",0],PARAMETER[\"central_meridian\",-99],PARAMETER[\"scale_factor\",0.9996],PARAMETER[\"false_easting\",500000],PARAMETER[\"false_northing\",0],UNIT[\"metre\",1,AUTHORITY[\"EPSG\",\"9001\"]],AXIS[\"Easting\",EAST],AXIS[\"Northing\",NORTH],AUTHORITY[\"EPSG\",\"26914\"]]"
}
},
"4a18167a1dd847cf9e2c0cedbbdab2c9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_8a8031276d7442119d5ce59c22c19f3a",
"IPY_MODEL_dbc3c05517d04866b742b42a9dc179b2"
],
"layout": "IPY_MODEL_3c5ad3dc876d420a81f23609424a5050"
}
},
"4a3f5c5804574522b4f962b028bef696": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4a9c9251659c479c872376e280c708f2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"4aa2cafa79c54451900d92f19e3e4279": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4abacc08e43c41319912dbb862e9868a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"4aed85ddc25f4c90858c88949956e00b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4b057cd5de2644c08760bc2bba54c6ec": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4b187ec14d8241a29f8340e629c30dad": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_0ac4a38189644eef8879195ffc4d15e2",
"style": "IPY_MODEL_f011853720234e7e8dcc67f8304711ab"
}
},
"4b3760319f9b4003a512bd4f75007e11": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4b3e6ae9713e493aadf135daae5664a2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4b410559969a4de1b7ed2cf6dc67eaca": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4b4c30ad43754df3bdbe67683ad90adf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4b65866c2a2742f6bd56f965e6d23b16": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"4bb852fc45d34c2a86fee3016298fc49": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4c276049bff343c78f8ada9fcfa1e000": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4c2ba438cce24ea5b03b30265b84dc9e": {
"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": "500px"
}
},
"4c363571b4fd4be181c6e531c4f56c8b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4c4385aac6824036a13d9d51a90daa8c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"4c55dc2a227d47bab5b23a4933cff733": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"4c6e13d2d5f04c3d816d67575a322a6a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4c76a8317d9749478c0669edfbc7d228": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4c79f0813eeb4ccb8b59455c8e29ba83": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4c7acbc22d5f46b891af7e07d6aca8bb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"Z:\\"
],
"index": 0,
"layout": "IPY_MODEL_ab5c7952a1564427afbd0891c8b8bd85",
"style": "IPY_MODEL_7445ac134caa4368882c2e65b410a2f4"
}
},
"4ce9426812694349a354dd02477220c9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4cecf36c231c4b1d8e9a77f320eb6aad": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4d09102b8fbf4ed68e5f092297393c4a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4d6320defe444479b3f492c594f8ee18": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"Z:\\"
],
"index": 0,
"layout": "IPY_MODEL_5457c18b0117493fb54b8b57a0e6bfbb",
"style": "IPY_MODEL_a60190036e4b45d486761ab09be17bde"
}
},
"4d65f738a2a045d4a285e7ef1f4a20b3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_c0ff0807e6694bbc8f1bc7243b56d170",
"style": "IPY_MODEL_1b2b433d4f7d46f3a4d4567d0ef0d305",
"value": "Monitoring folder"
}
},
"4dcc71953b51409a814cc89fdbdf327d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"4deece1bed92425ba0905d45a9007bea": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4e311c9297fd4ee0be89c1795620b498": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "No-Data-Value",
"layout": "IPY_MODEL_417801bc11ae4c9ca609023bd408f7e4",
"step": null,
"style": "IPY_MODEL_d3c7c719c4a94ffaaeb8c6b2208bd95f",
"value": -99999
}
},
"4e33321ef25047a1bcfb6a97ad9e5f95": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"width": "auto"
}
},
"4e396da35c6c4a03903272aaf2e57c45": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"4e3d80e6e5474b4c83e13505a6879a0e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_1b6696372e1d4544bd47a5a9fa000cc3",
"IPY_MODEL_68c8df4d9cc14e35a2db8c2eb2ef1246"
],
"layout": "IPY_MODEL_315fe5e9d3044383b1c66a9f0e4e1032"
}
},
"4e708414978f47f6a95f0cda635e34e3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_441dac188c7846568eafa7d8f27d4ba3",
"style": "IPY_MODEL_74a430dbba15406faee35555ee0e74f5",
"value": "Monitoring folder"
}
},
"4ee2a0cec3f943e2b35e2b639c8ca035": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4ee614e0f64148c9bb7d5d91333c8b29": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"4f3aab0dffbf445caae91f47b229e9ea": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"width": "auto"
}
},
"4f7d4da9bd014a42961380ae3d0cbbf0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"4f8afc51b3a34badb1993e9132b7886f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"4f9207ca3caf41e1b06eb7ebeeef0f4d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"..",
"SimPEG_PFInversion",
"Temp",
"dask-worker-space"
],
"index": null,
"layout": "IPY_MODEL_40a7da38f4b64192b5dfc4eb8e57fc8b",
"rows": 8,
"style": "IPY_MODEL_a9fb4be5658e4e3bafce95de7de2487a"
}
},
"5007961b96254f50bbe3666f2c22bf34": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"float",
"RGB"
],
"description": "Type:",
"index": 1,
"layout": "IPY_MODEL_4bb852fc45d34c2a86fee3016298fc49",
"style": "IPY_MODEL_7d34bf1c6ea64c6f8cb2aa58eb79a4f3"
}
},
"501ca7eedcba4996b499130b054e35ff": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_309683ea8d1b49d48a8cd3b76aa228bb",
"placeholder": "",
"style": "IPY_MODEL_7a335f31580840b8be55584ae381dfac",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps\\assets\\FlinFlon.geoh5"
}
},
"502553129ea14d059710202a90b13b38": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"504716b6c3ad4f72a7c1bc3eaf8c0d65": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5054ed647a3941eea55b68598d7d3ef4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"508b44472bd44d0991686fcbff45b925": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "75%"
}
},
"50b7336447b64359bf4a29ed66b10c29": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"50f7047ac4cc44378c725cb1f0d718ae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"510143562c8a434491d584a970fce135": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_24eb1c0e41ec4aa8b363b54476f5e93c",
"IPY_MODEL_fc5491fee01c40c69908e3adb231bb24",
"IPY_MODEL_a87249f3232847bb9f51c65359749074",
"IPY_MODEL_a9374932676148d19afb94cc007c1de4",
"IPY_MODEL_729a4b676e5649aa86de9f0262aaf2c4",
"IPY_MODEL_d7db254398154f37acd535d5be3cb6b8",
"IPY_MODEL_7126f043322d458a809b5fc3731531f2"
],
"layout": "IPY_MODEL_6836f4a3e29b40c3bf34ecba70dcd4fc"
}
},
"5106c05b54384806b7d043b64eb584f8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"5141bd62e4894fd68466f94dc797b8a5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5142759c0c564aa2949f3aa7b4a356f6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"514619807623464a8d6a2e1999f66d28": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"515f2a430e784c259febd7e8aba7e4a1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_f9207b119bdd4130ada2e95ed88baf79",
"style": "IPY_MODEL_7e0e0183e00c4bc7b9eab8d7f3c581c6"
}
},
"519218d118014aa5943333f43f5b5c3c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_85b9099935dc4351b5e918bd378d1857",
"IPY_MODEL_a5dcd5cf1d9e436ea8487b2516c207c3",
"IPY_MODEL_d3bada404bc44bcdac1c8d32322c2e0e"
],
"layout": "IPY_MODEL_5cf13f639a7347288b0fcd575c27d0d4"
}
},
"51e77c1845c14f85aa4c1a2e54e62921": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"52125bc32f3a44f29e982406eb4ffae7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_27122e0f58094eaf845022d96c235b35",
"IPY_MODEL_0afa2d113f4c4c75baf4ff0c0f435180"
],
"layout": "IPY_MODEL_df3f2abfed1044478115a9cefcea08fa"
}
},
"523aaa7787104276a64ea144c8e22ffc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"526d204f3af14204a52d52f17b470d0e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "75%"
}
},
"52cc501c9ff847a8893a8c1f6b0c00a9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"52e0eb9652604da6a6444df7b98a9ff4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_446da297ef284a0bbaa821ee06e55339",
"IPY_MODEL_9c6b1bb53a4d4b148aee9e4bea1c5e03"
],
"layout": "IPY_MODEL_a22d679d785f46858d46387fccb882e1"
}
},
"52f265155b2e4b738948f93882b70fd3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"52f6dd14eab744928f9a97a6f88e5ddc": {
"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_4deece1bed92425ba0905d45a9007bea",
"style": "IPY_MODEL_eb0caa01c49745369a1c6bd64915e96b",
"value": false
}
},
"53023511fb5d4e8da42296489c10a379": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_1772fa5027474290b9962ff1c99f2385",
"IPY_MODEL_e1e4bedb41c44d6dbe623db92087386d",
"IPY_MODEL_11b8908b0eb34ddebbc1cd0896f2ae04"
],
"layout": "IPY_MODEL_f714f95f84344ca79bdc07635640c170"
}
},
"537508c231ed46f5b3a5d077899e4fd1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"539bbc77b55a4effa2a9bb2af8f94b14": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"53d93a637cbf4b70999f0953e829af79": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"53f2988345854b6f841160e93c505118": {
"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:\\",
"Z:\\"
],
"index": 0,
"layout": "IPY_MODEL_9de78f6db6c14524ad8ee90ae028547f",
"style": "IPY_MODEL_f4ca592915cf41848ca79f8b9515f234"
}
},
"542a3d9d257c413095e7f8a0ba03deef": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"5457c18b0117493fb54b8b57a0e6bfbb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"545f19a51c684b05b5e6b93bbdd5fe06": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_7637c06863b34e32b181b0a2f3908b65",
"IPY_MODEL_c550c94aa55e41718ff75ff7954b199d",
"IPY_MODEL_7d1e33354a9f4280ad0c451d82782ade"
],
"layout": "IPY_MODEL_2d89ab3db6e6434b8f770f9ac859b8b8"
}
},
"54673da00d1b49859e683cfa681c6cf4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"546c1f7741d64e6a8aa251739e8b0281": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"5492b139b451446aad3c485898e00466": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5514a8209a264bbdb76c3a8b543eb38a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"555d01f183074480b123a7e184212e93": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"556ae5cd934a401489057e439d1be51d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"fault_splay1",
"fault_Cliff_Lake",
"fault_Other_FlinFlon",
"fault_Club_Lake_splay",
"fault_Catherine_splay2",
"fault_Birch_View",
"fault_Dion_Lake",
"fault_FlinFlon_splay",
"fault_West_Mandy_Road",
"fault_Channing",
"fault_Ross_Lake",
"fault_Louis_Hidden",
"fault_Lake_View_thrust",
"contact_Schist_Lake",
"fault_Burley_Lake",
"fault_Dion_Lake_splay",
"fault_Green_Lake",
"fault_FlinFlon",
"fault_Catherine_splay1",
"fault_East_Mandy_Road",
"fault_Other_FlinFlon_South",
"fault_Catherine_splay4",
"contact_Stitt_Island",
"fault_Club_Lake",
"fault_Tailing_Pond",
"35_Hidden_Reservoir_Hr5",
"29_Hidden_Reservoir_Hr1a",
"60_BlueLagoon_Fb2",
"20_FlinFlon_Undivided_Int_Dykes_D2f",
"04_Boundary_Intrusive_S4h",
"53_Millrock_Rhyolite_Fm4b",
"19_FlinFlon_Undivided_Int_Dykes_D2b",
"18_FlinFlon_Undivided_Int_Dykes_777_D2b",
"06_Phantom_Lake_Intrusive_S3a",
"21_FlinFlon_Undivided_Int_Dykes_D3a",
"43_Millrock_CHLSH_South",
"56_Millrock_Basalt_Fm1ba",
"17_FlinFlon_Undivided_Int_Dykes_D2",
"32_Hidden_Reservoir_Hr1b_SW",
"11_Missi_M3_NE",
"13_Missi_M1",
"07_Annabel_Granitoid_S1",
"45_Millrock_Gabbro_South",
"01_Late_Intrusive_S5b",
"31_Hidden_Reservoir_Hr1c_SW",
"52_Millrock_Rhyolite_Fm4_West_check",
"55_Millrock_Basalt_Fm1bf",
"34_Hidden_Reservoir_Hr2b",
"03_Boundary_Intrusive_S4b",
"42_Millrock_CHLSH_North",
"26_Louis_L3",
"23_FlinFlon_Undivided_Int_Felsic_D4g",
"30_Hidden_Reservoir_Hr1b",
"59_BlueLagoon_Fb3",
"49_Millrock_MVR_Fm5d",
"44_Millrock_Gabbro_North",
"27_Hidden_Carlisle_Hc4",
"22_FlinFlon_Undivided_Int_Felsic_D4e",
"02_Boundary_Intrusive_S4a",
"61_BlueLagoon_Fb1_NW",
"05_Boundary_Intrusive_S4g",
"39_Ore_Callinan",
"38_Ore_Dan_Owens",
"40_Ore_FlinFlon",
"Inversion_VTEM_Model",
"Gravity_Magnetics_drape60m",
"CDI_VTEM_model",
"Data_FEM_pseudo3D",
"O2O_Interp_25m",
"geochem",
"Inversion_DIGHEM_Model",
"Topography",
"Data_TEM_pseudo3D",
"Data_ZTEM"
],
"description": "Object:",
"index": 66,
"layout": "IPY_MODEL_edf364114f1a4c4cbf39486c3958d597",
"style": "IPY_MODEL_7ed9631ad8544453b9e6a00621da7aac"
}
},
"55abac6ca7784a06be65870ecfb1c265": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_6fcfc35d10a444b3b00fd3e14651f659",
"placeholder": "",
"style": "IPY_MODEL_48678a4c94d44296b9d0936f7bb14d21",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps\\assets\\FlinFlon.geoh5"
}
},
"55b293b1d12945bc94df8e082a272afa": {
"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:\\",
"Z:\\"
],
"index": 0,
"layout": "IPY_MODEL_ee92b31c524e4a838e5db458ee4592b1",
"style": "IPY_MODEL_d974ae1c73c544f3947eac6a9c830441"
}
},
"55bc78e87d99485a8cdbfe2c90ec1bec": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"55d10c924c8d49609a4cda70a1012bcb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_6a793e15df2540bea4d5132487b9bb7a",
"style": "IPY_MODEL_dcfd922f16344abfbbdc646836ede8a6"
}
},
"564adc1d17ed403cb1e574b40e4546ca": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5652360981e54f238fc9b46c4b940647": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_b27e1e569c3d425a83cc5caad83acddb",
"IPY_MODEL_1c0552805ce7455a97335e9caa6e74bf"
],
"layout": "IPY_MODEL_24ce18a98ee848e785c47c0b8702af15"
}
},
"565a81ccc4414c8fbf4b9a5f2e846bcf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"56a6338ad268479a9f4bfc105a02c2ae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"56a8c8ee2dcc40ff9fc3a7c262c5aae6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5717e15a43a2496c95098dd07688a315": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"571b7152d1354cdfb74716a0e03b3cc5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_a33884d714ce43eba7f4d3fc426bbf3d",
"IPY_MODEL_7e1702869d574a9f91fb6a5b9c33ed61"
],
"layout": "IPY_MODEL_e2b06ca113764c9ca2a3949b87f5c6e8"
}
},
"573599a1b61f48ebbbecfee8986f53e6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"574d07d2d41046be8f73e08d9560742f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "No-Data-Value",
"layout": "IPY_MODEL_440549696a2d43459a489625325c6400",
"step": null,
"style": "IPY_MODEL_1736921a2fc44778a958c9d11b2c77c2",
"value": -99999
}
},
"57c887be4acb45858d99f13896f691d3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_1adf9068fd1544868ea076472370cd73",
"IPY_MODEL_3c7a362145ce46b19b3c8646336a37b6",
"IPY_MODEL_875f0cd061dd4cd2b0fa9475f355c604"
],
"layout": "IPY_MODEL_af5284d8bed341659c7ed5dd674f7d31"
}
},
"57e761e6af6b4361981522e05209e6e0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"width": "auto"
}
},
"580ff06b4adb43678055a0817c1f84c8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_f3213e8377ad450a8a8c1f4768f99a52",
"IPY_MODEL_66a15112c2a74d7b80af976cf8f01137",
"IPY_MODEL_1c3ba3028a8f4576b7a1268b2baf8922"
],
"layout": "IPY_MODEL_044a0b6106bf4b8d8435c665ee2176a8"
}
},
"581cd2a8057348f4b0a8a574bb11a2df": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"582c7106791147bfbc80df7dc63b8dc5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_446c52e7b6724465a47087f65e1c2f85",
"style": "IPY_MODEL_786446d1bf1c48ffbbb4fab12ac49760"
}
},
"5850d1076f844a1aa55674516e1390a3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"width": "auto"
}
},
"58549bd89ff64caf80b1d391b6207402": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"588282ab5e3f4b80b5b70dad5a0064ed": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"589d6f5f69a04673a7eae92bdff807a8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"592a894c02904dc0b06d0de4e141f1eb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"float",
"RGB"
],
"description": "Type:",
"index": 1,
"layout": "IPY_MODEL_f75cec0a91b44707b673337f75091285",
"style": "IPY_MODEL_9ceab9d643304f32abb97de7ebcb8aa2"
}
},
"59484f1cc2474a1686f91cef30dc7019": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"59957ef029d84489bf1082d353cf5d08": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"599ec22d25f447b29cbb8ef5cb0d5af3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_e9dab1681109433db28e4d453dfdcc80",
"IPY_MODEL_031512d70cf24431a1c58d2e02d9e13d"
],
"layout": "IPY_MODEL_be3e35c7136d465a9983b8c51331510f"
}
},
"59cd8628b8da4ceaa7ac48f8d87c6c32": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"5a03d77ef75c483cb68803a3bb87a4a2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5a3dcefa62a946948d641c7e8ae8f551": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5a69c6d5cd144a3381760cf4a1d72e0c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5a6f9cd2dccf47a48c4996afdc9f91a9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_a24a4709c76e45d49059a1765cbad962",
"IPY_MODEL_0f6be1f0566a4f8fab5176036111fdff",
"IPY_MODEL_6c40f3410fc246b6b8d092c7eda64d43"
],
"layout": "IPY_MODEL_f70e0f84c75f4e5085f94e762c76353f"
}
},
"5a9de680228e4b1688d5046e8819f7f5": {
"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_17176327db344c7bac45373ef7d9c602",
"rows": 8,
"style": "IPY_MODEL_6eabc040f1864eb4ad6eabe3056395f3"
}
},
"5ab4ab1073af4d61ad0bc8074bb6e4d2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5ae20a1d0fe64fffa089381fdba88bff": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5ae9eb48375c4d2f91ed00cfc2ef5560": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5afd6efc84c947829d52eb8e9cc7734a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_66c682c0caf54cd1b01ceaa9e6951831",
"style": "IPY_MODEL_edd15a813b3e4f1da2665873e3245b78"
}
},
"5b395317292f4d1b95899957aebdc127": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_39445ce687e3410ab5b293c504ae6a47",
"style": "IPY_MODEL_31d96fe1f1bf4665b3235abb9a58b7a6",
"value": true
}
},
"5b3ec45ee1694c108adcc6ac7a00305e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"5bc6751aedba4c7a8744a116df7bfcff": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_3bee6be30e0c4c73aca4d8a469fefea7",
"IPY_MODEL_79dfca8bec80402eb38d13a7bf10853e"
],
"layout": "IPY_MODEL_cde331ffeac945cca09645ffabdfe6ec"
}
},
"5bd48885a30042f6abbaa70ddfc58154": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_6954d03cceaf4e168256265dbf246c82",
"placeholder": "",
"style": "IPY_MODEL_645cd8dc8c904d6e96e1cbf57955b9fc",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\"
}
},
"5ca4a702fbd644378de0ebe4fbe27b00": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"5cbd072206654a9f9eb1c5e1f788da2c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_16c733edaaa449d3a2c966899e1af8a5",
"IPY_MODEL_38623429e7ae4cf2abb169a2be3b5051",
"IPY_MODEL_fa159facb58e4356a0a5d8c314945660"
],
"layout": "IPY_MODEL_1f7854d3d33b4ee3873362eb62ae7d45"
}
},
"5cc908c8d91342419a27f552e1b5b95c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"5cf13f639a7347288b0fcd575c27d0d4": {
"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": "500px"
}
},
"5d1048a212184b1da2086255344f42c9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5d477e3e05834b5d9094199c487a38ea": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"Z:\\"
],
"index": 0,
"layout": "IPY_MODEL_a23e30d9851d41de8616a0a7133400d2",
"style": "IPY_MODEL_26906c5d36524e008311a72535beae73"
}
},
"5d4fc1f501524173b7246b6d47c9e0bb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_b3f0c67f5e86404e87ac7b37f6ce6001",
"IPY_MODEL_7fef2d7539ce46198fc4d576f9fbd5c0"
],
"layout": "IPY_MODEL_0b9da1153b6f439a921bbc108e6fb38c"
}
},
"5d5a035556aa4b1ca73627d9d3b12588": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5d5e9a83ea114b99a9b37482a3bf2ccf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5dd75bebc0bc4731834da0dc72da3f4a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"width": "auto"
}
},
"5e192bcc2b3a49558892295550356cc9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_1521f71033d849679ae516bfa6e66c05",
"IPY_MODEL_ff6c4808120047819224ee6b17e1aef9",
"IPY_MODEL_a51371b280724a77ac87551b3ca5d6b5"
],
"layout": "IPY_MODEL_27bde76125774d0c92f02706cb10a170"
}
},
"5e6c750b204e4cb4953bc10826334a5a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_1da5a15022834cc595066c5f1f66b1ef",
"IPY_MODEL_b60fe6c11a864f1e8035810ecae17b1d",
"IPY_MODEL_73cc871895da40488bcc742b550b703c"
],
"layout": "IPY_MODEL_a34a6b6f6ef84110b101ac67177cb041"
}
},
"5e8e0c9fb14242828d97fa7f876ddc4a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5eb825b8b5d94fa08d8de5ba67b1a091": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "No-Data-Value",
"layout": "IPY_MODEL_26c04867778b457489fc8d35d3f0184d",
"step": null,
"style": "IPY_MODEL_2f5d469776d14ed7a6962ed5d1559986",
"value": -99999
}
},
"5ecfe11e168847699a1c806c65004c22": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5f21e1ac6eec4c82812755ac3995dac2": {
"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": "500px"
}
},
"5f3ef1b132c848ff9a315deabc2245e1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_6ca65a9260384c9197c6811111ba0bb4",
"placeholder": "output filename",
"style": "IPY_MODEL_8b5929fb2ec0463e8d45687472412eae",
"value": "FlinFlon.geoh5"
}
},
"5f42b308305a4a499038c55c9b30780a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"5f6a12d353864990a35c3bd6fecd56d7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"5fd93a739da047cdbf2ae10e50f21dec": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"5fe44f05ab874cabbff43d0b99870e4a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"5fe89f7712d94ba5b83b1b9290ae3a9e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"6068da7e342f4901a42fd9d780f64227": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"60dbca6dc22b4b589e982774de36ee4b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "No-Data-Value",
"layout": "IPY_MODEL_002bae5daa7341759041ae611a56261a",
"step": null,
"style": "IPY_MODEL_a247d5151791431aa2da92a24f8f9592",
"value": -99999
}
},
"60e76b79a4f242bb8cd36e56ac79b02f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_ef15c442618e406887f75b54cca7f5bf",
"IPY_MODEL_2108d2bfe7b54cd38729dd5c43d8f1aa"
],
"layout": "IPY_MODEL_89947136f3a14f8d9d1497c12bb9dec1"
}
},
"61221581b24a478382d735c1136c3d25": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_879473f41b9c47fc9b6a13804a8b5124",
"IPY_MODEL_1f4c29436d85458b897bfed13933b549",
"IPY_MODEL_2a41aaf230a745329bf31fcc8e809857"
],
"layout": "IPY_MODEL_77998a034204492bb6178db874538875"
}
},
"6122fe022dc84f6080cffc6336634c71": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"61df47fa9f1346899af5df81c05b1222": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_d91e2e2ef1ac4cddb7ee9e7c2f73fbc7",
"IPY_MODEL_1be37e48441d4b228f7d592ca394fab1"
],
"layout": "IPY_MODEL_99571c913a2241da9c4ccb72aa2c63c6"
}
},
"6209a23f169d42c8b0a01b87da64fd90": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"6223406e69a744a988645fb38226eeb6": {
"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",
"Z"
],
"description": "Data: ",
"index": [
2
],
"layout": "IPY_MODEL_502553129ea14d059710202a90b13b38",
"rows": 5,
"style": "IPY_MODEL_0e75678d0755488883bf6b231a0b7130"
}
},
"626cbf94b9194a5a8dbe89b86cd09541": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6289dfdffd87462aac8b8974b150d3ec": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"628e66eea82a4066a4eab5f5581cb953": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"62a9ac9cd68b4ee7814b2e8f41959797": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"62aa7661cb3c4b2f918a123f96d5b5a1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"62e5119853444647be8ce57ab86b23a2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"63007f97359445eca53693392a90a10d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"630c9a1f69fc4750bcd679d6e046a51e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"631ceed5f1464ac8a9f8f2dc40648414": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_f093c88bc61b4a9b9b20e2b5fc79f15f",
"IPY_MODEL_bb0f53256ed94523b423c93d9c174e9b"
],
"layout": "IPY_MODEL_dfd906ad7e51433ab7f58bed230cbd91"
}
},
"638d065bdab54fa4803b3d86207d7e9d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"63a2e3aaee2b452ea685543ea34e4657": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"63b66717ad2648b8bd9ef0ba5c5bc273": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"63cbcff45c2c47debc10d52f08f85855": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"fault_splay1",
"fault_Cliff_Lake",
"fault_Other_FlinFlon",
"fault_Club_Lake_splay",
"fault_Catherine_splay2",
"fault_Birch_View",
"fault_Dion_Lake",
"fault_FlinFlon_splay",
"fault_West_Mandy_Road",
"fault_Channing",
"fault_Ross_Lake",
"fault_Louis_Hidden",
"fault_Lake_View_thrust",
"contact_Schist_Lake",
"fault_Burley_Lake",
"fault_Dion_Lake_splay",
"fault_Green_Lake",
"fault_FlinFlon",
"fault_Catherine_splay1",
"fault_East_Mandy_Road",
"fault_Other_FlinFlon_South",
"fault_Catherine_splay4",
"contact_Stitt_Island",
"fault_Club_Lake",
"fault_Tailing_Pond",
"35_Hidden_Reservoir_Hr5",
"29_Hidden_Reservoir_Hr1a",
"60_BlueLagoon_Fb2",
"20_FlinFlon_Undivided_Int_Dykes_D2f",
"04_Boundary_Intrusive_S4h",
"53_Millrock_Rhyolite_Fm4b",
"19_FlinFlon_Undivided_Int_Dykes_D2b",
"18_FlinFlon_Undivided_Int_Dykes_777_D2b",
"06_Phantom_Lake_Intrusive_S3a",
"21_FlinFlon_Undivided_Int_Dykes_D3a",
"43_Millrock_CHLSH_South",
"56_Millrock_Basalt_Fm1ba",
"17_FlinFlon_Undivided_Int_Dykes_D2",
"32_Hidden_Reservoir_Hr1b_SW",
"11_Missi_M3_NE",
"13_Missi_M1",
"07_Annabel_Granitoid_S1",
"45_Millrock_Gabbro_South",
"01_Late_Intrusive_S5b",
"31_Hidden_Reservoir_Hr1c_SW",
"52_Millrock_Rhyolite_Fm4_West_check",
"55_Millrock_Basalt_Fm1bf",
"34_Hidden_Reservoir_Hr2b",
"03_Boundary_Intrusive_S4b",
"42_Millrock_CHLSH_North",
"26_Louis_L3",
"23_FlinFlon_Undivided_Int_Felsic_D4g",
"30_Hidden_Reservoir_Hr1b",
"59_BlueLagoon_Fb3",
"49_Millrock_MVR_Fm5d",
"44_Millrock_Gabbro_North",
"27_Hidden_Carlisle_Hc4",
"22_FlinFlon_Undivided_Int_Felsic_D4e",
"02_Boundary_Intrusive_S4a",
"61_BlueLagoon_Fb1_NW",
"05_Boundary_Intrusive_S4g",
"39_Ore_Callinan",
"38_Ore_Dan_Owens",
"40_Ore_FlinFlon",
"Inversion_VTEM_Model",
"Gravity_Magnetics_drape60m",
"CDI_VTEM_model",
"Data_FEM_pseudo3D",
"O2O_Interp_25m",
"geochem",
"Inversion_DIGHEM_Model",
"Topography",
"Data_TEM_pseudo3D",
"Data_ZTEM"
],
"description": "Object:",
"index": 66,
"layout": "IPY_MODEL_523aaa7787104276a64ea144c8e22ffc",
"style": "IPY_MODEL_a89daf2ab7f04c35971f28375e7a1bae"
}
},
"63d1e6ca511c442e90fa9f8f3d010bb6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"63d9363612be47f09ea5b679a74f12d4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_5d5a035556aa4b1ca73627d9d3b12588",
"style": "IPY_MODEL_677f60237a0a44598e0abfb52457ab76",
"value": "Monitoring folder"
}
},
"63e6453af3364a5d85061038ea64f96b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"63fa44ac39334a0f9b2de124a37e221a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"width": "auto"
}
},
"6403af48834a418294b046c192a24658": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_479e3ae0abc747418b8db01ba1487122",
"style": "IPY_MODEL_2d4c7cdd12ff449a9bf78ca2f6f6ac50"
}
},
"64071734438b4ede985f35e16ad87734": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"642a658f54f24aa49b149b296369a344": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"644cb8784f73428bbfad733a40afd6b5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"645cd8dc8c904d6e96e1cbf57955b9fc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"646e8271ab5a452fb0a2c4cafc80a512": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_9ff3bdbc46a1492986a41d6c1a8a7729",
"IPY_MODEL_571b7152d1354cdfb74716a0e03b3cc5",
"IPY_MODEL_1efc1bd745194365975787e25834c1cf"
],
"layout": "IPY_MODEL_e0e808072bae44d9ace8f3c3c66b14fe"
}
},
"64f7aafe2a0b46d98d5c597ac221c5cd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6504c4ec972a47bdaadac519ae00d0c5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"65285684f0ea46d7bf7a18f3e3ca3291": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6589049bb6794dfe960a81e3ff632fcc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"65d9d121328a42939add184121b7be05": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"..",
"SimPEG_PFInversion",
"Temp",
"dask-worker-space"
],
"index": null,
"layout": "IPY_MODEL_7eeed3cf0c224e6589a43da3115053cb",
"rows": 8,
"style": "IPY_MODEL_92c33b542704462898deb576faa0ee9b"
}
},
"6600197cab6d4f6c81f61cbcf6923d82": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"66383735aea348288ba63831396cda42": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectMultipleModel",
"state": {
"_options_labels": [
"",
"--- Channels ---",
"Airborne_Gyz",
"Airborne_TMI",
"Airborne_Gyy",
"Airborne_Gxx",
"Airborne_Gxz",
"Ground_Gz",
"Airborne_Gxy",
"Airborne_Gz",
"Airborne_Gzz",
"X",
"Y",
"Z"
],
"description": "Data: ",
"index": [
3,
5
],
"layout": "IPY_MODEL_c7867e5654de4e798a7d03af99fc2919",
"rows": 5,
"style": "IPY_MODEL_84c8e5e64e9343d6b3436ebed2a24363"
}
},
"6665551f3ae14e9c97e81eceb1f7d884": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_e48bd41399e748e2ae1bb12a4678cb1e",
"style": "IPY_MODEL_1dcf425443024765bfba433e920672b5",
"value": true
}
},
"66832a53a89e48e5b2ef8cc8df651717": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"66a15112c2a74d7b80af976cf8f01137": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_3dc9a3d161994563bd34c3edb48a9a78",
"style": "IPY_MODEL_50b7336447b64359bf4a29ed66b10c29"
}
},
"66b610119fc648e4b536bed7e81020f2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"66c2bc4fb4f4491db5bbf99da3e5f337": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_1fecc9559eb24bd49cb1dd2e903615d4",
"style": "IPY_MODEL_77483b11638a466fbd40b01a90b3dbd7"
}
},
"66c682c0caf54cd1b01ceaa9e6951831": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"66cd1c069c3749f8abcd6e4ae881efca": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_f0c7c16ae6554bd3b2bf01d8aa15f5b2",
"placeholder": "",
"style": "IPY_MODEL_64f7aafe2a0b46d98d5c597ac221c5cd",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps\\assets\\FlinFlon.geoh5"
}
},
"66fde30d828e470fb1cd32143d01f812": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"670bb46f5c2947b1a6535a2c48a28aa6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"671c4c3cfcff4f788d568bbd4464e526": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6720c968ee9942f89cc2a9b045e201cf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"float",
"RGB"
],
"description": "Type:",
"index": 1,
"layout": "IPY_MODEL_ebab9e4657d944bcbcbaa1df04e714ad",
"style": "IPY_MODEL_e6ca0435cdce4076a132b998e54f13d3"
}
},
"6758e1a79288462d8ade8078da378312": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6759abf97dd544788280aa543d553000": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"677f60237a0a44598e0abfb52457ab76": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"67b4f116889f486eafe2030ce0ff539c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"67dece3bbc3f4cc2a636c3d9ab93f36c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_55b293b1d12945bc94df8e082a272afa",
"IPY_MODEL_c82a011b97fd435797183f5ee2b523dc",
"IPY_MODEL_65d9d121328a42939add184121b7be05"
],
"layout": "IPY_MODEL_46b9bd3b348d45d59aa12e6bf2c58cc5"
}
},
"67def3098af34003b08e8790cc4e70d5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6805f2c6e6df417f929c7416986abae8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"width": "auto"
}
},
"681b359e5a1c431a9c4da23bc8f39292": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_f9093ce5938346c2b4d6a2f606cd129f",
"IPY_MODEL_e989bd12ff66453593a6c2550efe71ff"
],
"layout": "IPY_MODEL_d9cccaf4cea345ad9ce1b41c3c499fac"
}
},
"6836f4a3e29b40c3bf34ecba70dcd4fc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"684adbdb399f4c4aa000b017e381b88b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_546c1f7741d64e6a8aa251739e8b0281",
"style": "IPY_MODEL_b2e1ba6781f14099a320cfce8d2b047d"
}
},
"685c2abe7e1f4d47ab69b3861b6b1479": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6860077a36c94e868abf1db5d7ea4494": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_931f5c35c8574ad7a26abda9ab674d70",
"IPY_MODEL_7f8c34f94c50414b801ed4f999af7dce"
],
"layout": "IPY_MODEL_f991e6c203c84587b8f60b393dc9f08e"
}
},
"686070779e114496ba3431d1135de1c9": {
"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_f4558e0498d54998b03fd97cb908a6ac",
"style": "IPY_MODEL_628e66eea82a4066a4eab5f5581cb953"
}
},
"6875153dc80143889aa1a5e26fe0ff17": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"689156964fc646ae84938a72a0364385": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_0924aa704c3a4a638038912c7ba421bb",
"IPY_MODEL_efce112c8b2848c1a13a097972b41481"
],
"layout": "IPY_MODEL_ec986b626b8548d3ad93f459f80a50e9"
}
},
"68adeee8bffa427ba1152a8abc44f356": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Projection:",
"layout": "IPY_MODEL_4cecf36c231c4b1d8e9a77f320eb6aad",
"style": "IPY_MODEL_bd49ecd4aa8d46f5bf4ce50178407caa",
"value": "EPSG:26914"
}
},
"68c8df4d9cc14e35a2db8c2eb2ef1246": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_d46e8f0c919a4cd89d1902df870ebdec",
"IPY_MODEL_208c33ce483a45cfb99e22614dcaebf6"
],
"layout": "IPY_MODEL_7f6dde1e3fa242008040d1949e3157fa"
}
},
"68e99f72fc67499988cd27a617f6ad7d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"690e2d6a82bf4ada96e16435b55af2ac": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"width": "auto"
}
},
"6931ecea821f427986f1eb3008158666": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_4996e78c61df4020a88e174e112c87b0",
"IPY_MODEL_a61a6f5cdc9245cbbefef89fde88634a",
"IPY_MODEL_fd1e87285e6245f6a07579f32fd10021"
],
"layout": "IPY_MODEL_7ea0fb0e05d9497493e1a1c4343ee8f8"
}
},
"6954d03cceaf4e168256265dbf246c82": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"69562cfacb2e47bba4dc122eb10803b9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"695ddfcb1f1144b6a50f52c918805326": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"69657dd6a058486981cbf1c45b7cec16": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"69aae0de19b8435e878f9c5567a31815": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"69ad116a03cd41e8b18da27166307de5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"69ed8c9a2ef44984b586fe950ead0317": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6a08dba270ae43278d2755998a4817d2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_cfead41c114f44cdbfa24b432c4870b6",
"IPY_MODEL_22199b60fea14ee192d81d9b1d43275f"
],
"layout": "IPY_MODEL_4c276049bff343c78f8ada9fcfa1e000"
}
},
"6a261bc384594f24b2a7a4e979c1eae7": {
"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:\\",
"Z:\\"
],
"index": 0,
"layout": "IPY_MODEL_53d93a637cbf4b70999f0953e829af79",
"style": "IPY_MODEL_95774e1fc1a944a6aa661a8c212cd70d"
}
},
"6a39a36868c04f1ba9d878fc82c434c8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_ba26d7013b0845ccaf7634b9dabcf47d",
"IPY_MODEL_cbce484d05f24653a53b6053fd51b60c"
],
"layout": "IPY_MODEL_a22f36fcacdb49f6a31e433190b3ddf1"
}
},
"6a3b4e78b0f747768ee1dde64c6f5e7d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_d15c8d7ca1d9498183a90d4f5f452602",
"IPY_MODEL_3b869c3cd34840e1b85280ec7a988f8c",
"IPY_MODEL_ecdc0cf5d06340b2bb61d99d3ec1d92c"
],
"layout": "IPY_MODEL_30e731c997d347c0aed94abda518fbda"
}
},
"6a69eb4a4f6a4e439b57821d0e453664": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6a793e15df2540bea4d5132487b9bb7a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6ae68084b9c745db818ce614739ee604": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_37c8ad744787454781b650758c212808",
"style": "IPY_MODEL_e2179f7cb5414120ad851922238af268",
"value": "Monitoring folder"
}
},
"6b0f8d676b1f449684587f50144e4911": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"6b2417868f56450ebbd06fda859076e9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6b3b5cdce6774baebb5e0fbad5af372a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6b490473a23849ec803f39cf1ab74c9f": {
"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": "500px"
}
},
"6b644f5b271449aca9dff3cf98e88e6b": {
"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": "500px"
}
},
"6b8943f8b9ce42439a1a536e561781ce": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"6bcf1f1e7a354475bd22964712e5be68": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Save as:",
"layout": "IPY_MODEL_4b3e6ae9713e493aadf135daae5664a2",
"style": "IPY_MODEL_1a9332c69ee04642bb56ccb798bf340f",
"value": "Gravity_Magnetics_drape60m"
}
},
"6bd7f5a1e4894249b3bb75c4920e35d0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"6bd953aa431943fdb1c555bd4518ce81": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6be45eb45f05449faf9e89d22fe35828": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6c11c70f0a464388b93b4f7cbc32658e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_4272ce00d58a4c7d854b965731f00a93",
"IPY_MODEL_4915d6826fcb408589be8c242a85be36"
],
"layout": "IPY_MODEL_d570ea4dee0d4f1782d79d091b76bc06"
}
},
"6c2c39366c4b4dab9485809798aca3ae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6c40f3410fc246b6b8d092c7eda64d43": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_24804e15ee1c401ab45ea9ec4bd8094c",
"IPY_MODEL_a18212f9641e464189456ccbaf0204eb",
"IPY_MODEL_501ca7eedcba4996b499130b054e35ff"
],
"layout": "IPY_MODEL_3fa2ba99d2684d9c96d78ba8cbd1a074"
}
},
"6c43111a92374ae3ac01501e75d5d7d4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6c9b7b783b644d1b8a35c6051dceb578": {
"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_8c71d62cb24f4507acbbbf7ef4725899",
"style": "IPY_MODEL_cd9d43c37e47404b8014b9c8af8b6ce5",
"value": false
}
},
"6ca65a9260384c9197c6811111ba0bb4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"6d4c419d82a346c3929fe63521487ddd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_314e7f4256ad4598af6aa12671683ae5",
"IPY_MODEL_f7d16d0d33b446b5825dc40ea4ffee63"
],
"layout": "IPY_MODEL_c9f5a6251d8846e5b2abbe00dc57540a"
}
},
"6d879306c5694226b34194988a7b8ab3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6da27e814e8a4cb69e7f3838f177b619": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"6dc0a28d3d3c421d89b4864876c84f64": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_a1f0ca27b97b410fa0ff7dbaf89bfb19",
"style": "IPY_MODEL_ab8cfc955bce49fd9d539a79f1199157"
}
},
"6ddc8090ceec422f993a2da136eaee1b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6e2431f4101447209fd94c29994e919a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_c06d04163b3c4bf2854d367d90e97c5f",
"placeholder": "",
"style": "IPY_MODEL_38fc321adf8e44f89eeaca50dc240864",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\"
}
},
"6e3d9d04f83548df952102ea481ea123": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6e489e1cefb246b7832013ac1b964e22": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_8513723e1b2c4c5bb43ffa9b914eea9d",
"IPY_MODEL_c91f6736a5d742da841b353d1196db47"
],
"layout": "IPY_MODEL_588282ab5e3f4b80b5b70dad5a0064ed"
}
},
"6e8bdfec301e41e88483dd709dee1354": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_b18e9b80e2734a7c894befb54d889aab",
"style": "IPY_MODEL_b7dbd91ae2204cbe97b5b6d9e5a99d64",
"value": "Monitoring folder"
}
},
"6e9480d88b354ea19ed426e3f231b9ef": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"6e956a0755a5498cace60a7c260c1538": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"6eabc040f1864eb4ad6eabe3056395f3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"6ed1f0d9481c4af7a925b4cc22641732": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6f01a244226d4df78e9e860a05358e42": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6f0f1de9109f4410ba42ef37a44f8c01": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"6f19cc6905da4da1817c4c37c281d0eb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Save as:",
"layout": "IPY_MODEL_ab0ab048ab0648d8b6adcc8ddb743bf8",
"style": "IPY_MODEL_9ac8a94a9c7a4e93a670859a27989d72"
}
},
"6f1e4bbe5cce4f9ca37edae6e4f796fa": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6f41da12494f41dbb6b5e283506f00fa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_18dfa62bb827453c8f132bc2d788ebac",
"IPY_MODEL_ec4c99ed9a8f49f584e3e1bbbd782bb1"
],
"layout": "IPY_MODEL_f8ce8a0c96414a3d9226753f34dcebf1"
}
},
"6f5754f5882d4d819dccd3d111f6853c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"Z:\\"
],
"index": 0,
"layout": "IPY_MODEL_9f3328c929cf450a9476ea4f8ad1d38b",
"style": "IPY_MODEL_09572af07acc4689b0e168b3faa65cf5"
}
},
"6fab3cf985ca483681cec0cded676895": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"float",
"RGB"
],
"description": "Type:",
"index": 1,
"layout": "IPY_MODEL_85c1d1f823784e0cb34c403c90c44925",
"style": "IPY_MODEL_461d8aadc0134b56b4b2e14ec1aeeee5"
}
},
"6fcfc35d10a444b3b00fd3e14651f659": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"6ffe68cf55b1472b96275f9ee74e566a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7009bb07143a47b8b4e19f8095ba533c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7049cd67034649be94c9431219a040ce": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"708c9903ce2343e1b95df4e9ccf1de8e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_f0169f1b4ddd4557b05474f8e69a8892",
"placeholder": "output filename",
"style": "IPY_MODEL_7df0883dcc9e49aba780d75656d95f1d"
}
},
"70d9edf7d1a04c56890dea4052cd676c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_192e104ab3b34f98aab7380112ea0cb9",
"style": "IPY_MODEL_cb0a45e3891c42d8bc88351728ab208f"
}
},
"70db5232474b442cb0a9041ab8950954": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"7104cc520357410bb6bedbc9b2f1a264": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_840f4c22afcc43ae989877deaa61b3e3",
"IPY_MODEL_4a11f262180249dba21ef81a4655f79b"
],
"layout": "IPY_MODEL_05f017a0b5ee44a3804854a96b1e521f"
}
},
"711de5f3659249439fa826468b9a2789": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_6504c4ec972a47bdaadac519ae00d0c5",
"style": "IPY_MODEL_9dfabd7b89e44a18b2bbb2b58a2471bf"
}
},
"7126f043322d458a809b5fc3731531f2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_6403af48834a418294b046c192a24658",
"IPY_MODEL_737e0bf63f2e4bb3a280dc472af56d5a",
"IPY_MODEL_7f0eaaed1be04f7a82089786223019ef"
],
"layout": "IPY_MODEL_becf6a8166494be09db37c97597a0fbf"
}
},
"71357faba03f4633b9cefa8d39a78f14": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"713e4773e03149d49b67271c58ae483c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"715e71cc84064d409de8638c8a0f5a1b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"7160e98e08024b1b97e68f9148fa240e": {
"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"
}
},
"7187031097c94495b4a3a41ad0116f2e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_3dfe267c187844709436123a1169bdec",
"IPY_MODEL_26ee73cc55fd476eaf7c89024874ebf8"
],
"layout": "IPY_MODEL_6f1e4bbe5cce4f9ca37edae6e4f796fa"
}
},
"71f757aae3c04fa5ac4d79fb10ba12ee": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "75%"
}
},
"723bb09dfb7445d2b65aaee88a79b8c0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_95fa93bac6c34c1aaa9bac88da32d2d1",
"IPY_MODEL_7187031097c94495b4a3a41ad0116f2e"
],
"layout": "IPY_MODEL_43dfa94901df4ac1a26db92fcda3ded3"
}
},
"729a4b676e5649aa86de9f0262aaf2c4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Save as:",
"layout": "IPY_MODEL_d3332e9031884be289caf9e0f3b25bae",
"style": "IPY_MODEL_6875153dc80143889aa1a5e26fe0ff17",
"value": "Gravity_Magnetics_drape60m"
}
},
"72c75069f7f948f8863011a919caec0a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"7334784dd45e4fbf9f6e234160145887": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"735c0f5446164dedb19eb4867bd01490": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"737e0bf63f2e4bb3a280dc472af56d5a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_f6f81a8b3a6d40c09bb9c6a107ba7e69",
"IPY_MODEL_dfb558696e01418b9b3cfe34e378af3d",
"IPY_MODEL_3fc282683e294afbb987574b4b87651d"
],
"layout": "IPY_MODEL_845642a3a52e402fa081bc637102f2b4"
}
},
"73cc871895da40488bcc742b550b703c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"..",
"Temp"
],
"index": null,
"layout": "IPY_MODEL_a44a34fe39144c12967d40d6003e8e10",
"rows": 8,
"style": "IPY_MODEL_7ffcc4b4d4cd4f53b23bbc98e0d46b18"
}
},
"73d6336ad735483b8a8565d03dc96e6f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_93bdc0fce4b14d2e98429e58fbf6c46c",
"IPY_MODEL_8ce583204f284c93a87d9459a5a58980"
],
"layout": "IPY_MODEL_59957ef029d84489bf1082d353cf5d08"
}
},
"73e62db1fdf14e66bf8510c6bc1249cb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_cb8b8e34328247debf3e57df61504460",
"IPY_MODEL_9c17bbabe4954b938e5f8f209831f5c4"
],
"layout": "IPY_MODEL_17453e6ec37041639ce96b72f1163062"
}
},
"7412a48ffd4345d3838d3e615a1536be": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"741c1950dcf94648ac1c4448081d662a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"width": "auto"
}
},
"743555244e7d4fca8343cc75c257a612": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"ESRI shapefile",
"csv",
"geotiff",
"UBC format"
],
"description": "Export type",
"index": 2,
"layout": "IPY_MODEL_b31dc9e85c4b4e69970d33378052aac6",
"style": "IPY_MODEL_eb1c942f74e14df5b7473a1fae859a74"
}
},
"7445ac134caa4368882c2e65b410a2f4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"74a430dbba15406faee35555ee0e74f5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"74a6fee1a01146239901b90e6fd6ba64": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"74c11992bf7745a88ae3a2b9e22a9c4c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"width": "auto"
}
},
"74c49fe307f54bc38e4fca727fdbe547": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_d75b4929341949ac9acc3669d5a61d19",
"IPY_MODEL_d402098217c740ed9606011ea8228be2"
],
"layout": "IPY_MODEL_0922c0f7b77241f49b0de0ceec4ecdce"
}
},
"74c7fd30265d42ada988b0a7346a58ea": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"751378ecab2940b7888bd7faab81796e": {
"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": "500px"
}
},
"755e8df17962410289c2df2f79cb0788": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7571e9609eb74989b0be4f2de8c0199c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"75be046d5b964dc6955627414b30ca6d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"75c95e093655432cb1c0caa3c881d277": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Projection:",
"layout": "IPY_MODEL_52f265155b2e4b738948f93882b70fd3",
"style": "IPY_MODEL_85fe37e84c1e4a9f889782579a674cb6",
"value": "EPSG:26914"
}
},
"7600d03de36540e3b1f5bd3f68e9ac3c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"760b67eb24454926918cd18aec13a964": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"76200b741811421f9beb72f048112959": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7637c06863b34e32b181b0a2f3908b65": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"ESRI shapefile",
"csv",
"geotiff",
"UBC format"
],
"description": "Export type",
"index": 2,
"layout": "IPY_MODEL_67def3098af34003b08e8790cc4e70d5",
"style": "IPY_MODEL_d665aa15d9884a0f8c3ab3f543013aaa"
}
},
"76906da9179a4a87ba1e7874fc43f318": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"7693bb04c29942b38e2370345ea87780": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"76e7201837384d5e9cf35f64fc4a43dd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"7708e1f44e70485f99a3ad2bc158ef41": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7734d6705097411ea6cc6c189778b1cd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"773d89d497844050aa06ffcc04912176": {
"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": "500px"
}
},
"77483b11638a466fbd40b01a90b3dbd7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"77998a034204492bb6178db874538875": {
"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"
}
},
"77bbb83d95ff47439de7c69650b09d65": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"77f149bd878f4401b81b5d3a4ba60c04": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_b5b5d56eb68d4178913f6ad98d0fc34f",
"style": "IPY_MODEL_76e7201837384d5e9cf35f64fc4a43dd"
}
},
"781143769db248d7922179b93eaad715": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_10b99f91fcea4e839724e01a83955956"
],
"layout": "IPY_MODEL_3304f758484d4c31be6233fc847475fe"
}
},
"78137e5cec2c4a56a9bf21802e70c4ba": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7829630862ef4e9f88514ddc665e92db": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"783dada734f34aa9a8274c2fc1317e68": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_c27a96b4ee8645b7bc6a046fd14e1447",
"IPY_MODEL_89568b26190d44a8a73e02004fa2d703",
"IPY_MODEL_c0ba335849d2409f9bfb995cac0b747c"
],
"layout": "IPY_MODEL_4c2ba438cce24ea5b03b30265b84dc9e"
}
},
"784df2395ef042c7b13366487c84eee9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_743555244e7d4fca8343cc75c257a612",
"IPY_MODEL_b4f9afd452f34fada2f03c504a4c815c",
"IPY_MODEL_d141c54854754ccabfd5d44d4aa404c7"
],
"layout": "IPY_MODEL_bc38c58a65814085bd97a0a2039f77ef"
}
},
"78562f1a78c340869588efeda3af5952": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"786446d1bf1c48ffbbb4fab12ac49760": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"788b2fe9e749425caeb5903805b71732": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_bdad99e7c8344789b8eaccfec769ea48",
"style": "IPY_MODEL_1e1b14acaaa64971844ac1aae95ddb1b"
}
},
"789bdb3e86b948fc9bd44c80c305e70e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"78b9a81a064e47c088c7311a16b38d25": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"78dccac2827043a4a082e893698deceb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"78e59bb0ba654a9bb351dec0caf6bf5c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7916cd6258e5425586764f5b03d702b7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"7930d4a4017e467699f638f74fde60a3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7973adf8e85347aa82eaec6862f16424": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"79a3f7590e7645c0838f6fc0c37a87e3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"79acda4d5de6469196a108d5386f39a4": {
"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",
"Z"
],
"description": "Data: ",
"index": [],
"layout": "IPY_MODEL_3be0e9748caf445f9c28b16d53b95e52",
"rows": 5,
"style": "IPY_MODEL_755e8df17962410289c2df2f79cb0788"
}
},
"79b074d31b3e4c8f9ee5c35c8b7e1937": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"79b1403e72064c96a719222cdb0a9ef8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"79d064e47e2a493ea4f30ad66e29c2c7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_ff5b03fd15d5409f96c70dcdb8e52503",
"IPY_MODEL_8c1c63399169411f866767f853531435",
"IPY_MODEL_baa1476d65694899b68442203a43bb5c"
],
"layout": "IPY_MODEL_642a658f54f24aa49b149b296369a344"
}
},
"79dfca8bec80402eb38d13a7bf10853e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "No-Data-Value",
"layout": "IPY_MODEL_db82d54b8e644e4a9fb8d9a4cb07bb3f",
"step": null,
"style": "IPY_MODEL_2365481059114f80835132bacafc5529",
"value": -99999
}
},
"7a11cd664ede483e91f7aeebad7431c5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7a335f31580840b8be55584ae381dfac": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7a9f5cfaa4b1417ea009a643093ce888": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"7ae565f8e63f4869a45ba9221b994fd1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_582c7106791147bfbc80df7dc63b8dc5",
"IPY_MODEL_cd376434138b41d89474fe763ffc8d12",
"IPY_MODEL_e2eaae32fb5743e1a6ba4ef3355f78a2"
],
"layout": "IPY_MODEL_2a49c03fc7fa435ebcb2ddc5372e51cf"
}
},
"7af0c867d7484bf48c88fb424696901d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_f1377eb6fd7b4d15b4aa194ea73ea921",
"IPY_MODEL_1397af3095c84eb9990c81e257ebd296",
"IPY_MODEL_82ef6dc8a6d346f1aa083bd90d69d59b"
],
"layout": "IPY_MODEL_695ddfcb1f1144b6a50f52c918805326"
}
},
"7b136595b2734e048834c0f285132ea4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_f2af139885b94e92b44d1693248d9c55",
"IPY_MODEL_98419c963e9d4752b4509d36b208dcf9"
],
"layout": "IPY_MODEL_46e610e38605429fab6e5f883750c756"
}
},
"7b213b6e64fc446d88b2d4ffb2992791": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"7b2d272cef6f4092a1a16d3264cf5137": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7b68d30f03af4413ab437ebe9576a61a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"7b7a7dd5307b4881a0436ee12d2105c5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7b8a40c47fc1458bb5e07f374bc84975": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"fault_splay1",
"fault_Cliff_Lake",
"fault_Other_FlinFlon",
"fault_Club_Lake_splay",
"fault_Catherine_splay2",
"fault_Birch_View",
"fault_Dion_Lake",
"fault_FlinFlon_splay",
"fault_West_Mandy_Road",
"fault_Channing",
"fault_Ross_Lake",
"fault_Louis_Hidden",
"fault_Lake_View_thrust",
"contact_Schist_Lake",
"fault_Burley_Lake",
"fault_Dion_Lake_splay",
"fault_Green_Lake",
"fault_FlinFlon",
"fault_Catherine_splay1",
"fault_East_Mandy_Road",
"fault_Other_FlinFlon_South",
"fault_Catherine_splay4",
"contact_Stitt_Island",
"fault_Club_Lake",
"fault_Tailing_Pond",
"35_Hidden_Reservoir_Hr5",
"29_Hidden_Reservoir_Hr1a",
"60_BlueLagoon_Fb2",
"20_FlinFlon_Undivided_Int_Dykes_D2f",
"04_Boundary_Intrusive_S4h",
"53_Millrock_Rhyolite_Fm4b",
"19_FlinFlon_Undivided_Int_Dykes_D2b",
"18_FlinFlon_Undivided_Int_Dykes_777_D2b",
"06_Phantom_Lake_Intrusive_S3a",
"21_FlinFlon_Undivided_Int_Dykes_D3a",
"43_Millrock_CHLSH_South",
"56_Millrock_Basalt_Fm1ba",
"17_FlinFlon_Undivided_Int_Dykes_D2",
"32_Hidden_Reservoir_Hr1b_SW",
"11_Missi_M3_NE",
"13_Missi_M1",
"07_Annabel_Granitoid_S1",
"45_Millrock_Gabbro_South",
"01_Late_Intrusive_S5b",
"31_Hidden_Reservoir_Hr1c_SW",
"52_Millrock_Rhyolite_Fm4_West_check",
"55_Millrock_Basalt_Fm1bf",
"34_Hidden_Reservoir_Hr2b",
"03_Boundary_Intrusive_S4b",
"42_Millrock_CHLSH_North",
"26_Louis_L3",
"23_FlinFlon_Undivided_Int_Felsic_D4g",
"30_Hidden_Reservoir_Hr1b",
"59_BlueLagoon_Fb3",
"49_Millrock_MVR_Fm5d",
"44_Millrock_Gabbro_North",
"27_Hidden_Carlisle_Hc4",
"22_FlinFlon_Undivided_Int_Felsic_D4e",
"02_Boundary_Intrusive_S4a",
"61_BlueLagoon_Fb1_NW",
"05_Boundary_Intrusive_S4g",
"39_Ore_Callinan",
"38_Ore_Dan_Owens",
"40_Ore_FlinFlon",
"Inversion_VTEM_Model",
"Gravity_Magnetics_drape60m",
"CDI_VTEM_model",
"Data_FEM_pseudo3D",
"O2O_Interp_25m",
"geochem",
"Inversion_DIGHEM_Model",
"Topography",
"Data_TEM_pseudo3D",
"Data_ZTEM"
],
"description": "Object:",
"index": 66,
"layout": "IPY_MODEL_1da63a7d297f4200b0fde7a74fbb8bfb",
"style": "IPY_MODEL_7ef332bc0b9a4256ae788897680f68f1"
}
},
"7b92a12552d047fb95e72fd5659c9a28": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_515f2a430e784c259febd7e8aba7e4a1",
"IPY_MODEL_fad3086b019c49e4925aaac7f68307ea",
"IPY_MODEL_9a595e37b0644c8fa74b4a8720345cc2"
],
"layout": "IPY_MODEL_dfc8a856d38a4faaaf9bcc2a27b23558"
}
},
"7b9f47c3dac84265ac23c80cc5207c91": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_06de5d91c17949dcb5977a5ecee289ca",
"IPY_MODEL_6c11c70f0a464388b93b4f7cbc32658e"
],
"layout": "IPY_MODEL_27ac00d2fe3c4d8b889850d393a397f5"
}
},
"7bc5512eaa9f45e8b1480a7d18fd5f38": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7bee07d8514444bf94e1772bfa9781dc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"7c11051d11b84b5c88ea7aefd63b66d8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7c18e288fa4e456b8c31d592bf1c0deb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7c496104535a4c86838c5ce27775794d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"7c4dd28f96b04bbeb8dbc76f83d9edbd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7c749f97688248f3b5d8f3f6f05a6996": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7c95399fb35843798933e8f4a17010f9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7c9d4e1b2f4049aeabc1b2d51e733bbd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7cba3e7fd5b54531ae21fcb289314084": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_4e33321ef25047a1bcfb6a97ad9e5f95",
"style": "IPY_MODEL_464bd9cc607f4c85b126101e2051ae26"
}
},
"7cbd2e8660714ae9b5d1d31275c53f9e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7ccfee181e7646478c2665a813ba0b10": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7cec385de68a4f368c869f3830b1605d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_fb148b1a12314136a5cf3f290dfa0112",
"IPY_MODEL_c6dcb29481264000a1c5876516d0f341"
],
"layout": "IPY_MODEL_965b42e408ea4218a5fb83000e46a9ae"
}
},
"7d049643fe594ee79ffccbdf309e11c2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7d14dba750724a6cb814f04eceeb64e1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7d1e33354a9f4280ad0c451d82782ade": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"float",
"RGB"
],
"description": "Type:",
"index": 1,
"layout": "IPY_MODEL_7d83f2ea2bb94195a2d6d3863e824077",
"style": "IPY_MODEL_0b8e81026d4c46b68494c95ee492265d"
}
},
"7d34bf1c6ea64c6f8cb2aa58eb79a4f3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7d480ec288324d10a0ed37c00f540c12": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7d7d2acf7cfc4933935cb56fed15e57d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"7d83f2ea2bb94195a2d6d3863e824077": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7d9158f42e32447abfc60636d71492e7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"..",
"SimPEG_PFInversion",
"Temp",
"dask-worker-space",
"FlinFlon.geoh5",
"HelloWorld.ui.json",
"Inversion_.json",
"Inversion_1.json",
"Inversion_2.json",
"Inversion_G.json",
"Inversion_G2.json",
"Inversion_G3.json",
"MtDore_TMI.geoh5",
"Octree_Mesh.ui.json",
"PeakFinder.ui.geoh5",
"PeakFinder.ui.json",
"PeakFinder_v2.ui.json",
"PeakFinder_v3.ui.json",
"PeakFinder_v4.ui.geoh5",
"PeakFinder_v4.ui.json",
"Untitled.ipynb",
"VTEM_model.mod",
"Workspace.Gravity_Magnetics_drape60m_Airborne_Gxx.tif",
"Workspace.Gravity_Magnetics_drape60m_Airborne_Gxx_Colorbar.png",
"Workspace.Gravity_Magnetics_drape60m_Airborne_Gxx_RGB.txt",
"Workspace.Gravity_Magnetics_drape60m_Airborne_TMI.tif",
"Workspace.Gravity_Magnetics_drape60m_Airborne_TMI_Colorbar.png",
"Workspace.Gravity_Magnetics_drape60m_Airborne_TMI_RGB.txt",
"demo.ipynb",
"input.ui.json",
"options_tree.json",
"tempui.ui.geoh5",
"tempui.ui.json",
"test.ui.geoh5",
"test.ui.json",
"testPoints.geoh5"
],
"index": 4,
"layout": "IPY_MODEL_6b0f8d676b1f449684587f50144e4911",
"rows": 8,
"style": "IPY_MODEL_f23f48a484724e20a09d4a78c9a44690"
}
},
"7dc01eddab2c4d95b75f94c94363e7a7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7de4b56c9f404e16ad569b8e797532bc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7dec71c228304232b39300c6aefede8e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7df0883dcc9e49aba780d75656d95f1d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7e0e0183e00c4bc7b9eab8d7f3c581c6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"7e1702869d574a9f91fb6a5b9c33ed61": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextareaModel",
"state": {
"continuous_update": false,
"description": "WKT:",
"layout": "IPY_MODEL_c605aae3c6894c5db554765fec08d3f3",
"style": "IPY_MODEL_37bd6fbfe8ac41648a86da5183321a91",
"value": "PROJCS[\"NAD83 / UTM zone 14N\",GEOGCS[\"NAD83\",DATUM[\"North_American_Datum_1983\",SPHEROID[\"GRS 1980\",6378137,298.257222101,AUTHORITY[\"EPSG\",\"7019\"]],AUTHORITY[\"EPSG\",\"6269\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.0174532925199433,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4269\"]],PROJECTION[\"Transverse_Mercator\"],PARAMETER[\"latitude_of_origin\",0],PARAMETER[\"central_meridian\",-99],PARAMETER[\"scale_factor\",0.9996],PARAMETER[\"false_easting\",500000],PARAMETER[\"false_northing\",0],UNIT[\"metre\",1,AUTHORITY[\"EPSG\",\"9001\"]],AXIS[\"Easting\",EAST],AXIS[\"Northing\",NORTH],AUTHORITY[\"EPSG\",\"26914\"]]"
}
},
"7e5e29e4d369426da26a6d836a896984": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"width": "auto"
}
},
"7e645c745c89426f935f418cf4d434ff": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7e739b8876f84730bd6fc5b39c596eee": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_ba2e73d0920146beb0c14e6ece71548d",
"placeholder": "output filename",
"style": "IPY_MODEL_319da1f343214449ae7c272ff39d62e5",
"value": "FlinFlon.geoh5"
}
},
"7ea0fb0e05d9497493e1a1c4343ee8f8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "500px"
}
},
"7ea3b0d56096427999d6503145513dfb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_12b1e3fc5a184aaab508102aabf29ba8",
"style": "IPY_MODEL_ca6c846a3dc949bba8b25d96f046c7f4",
"value": true
}
},
"7ed9631ad8544453b9e6a00621da7aac": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7eeed3cf0c224e6589a43da3115053cb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"7ef332bc0b9a4256ae788897680f68f1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7f0eaaed1be04f7a82089786223019ef": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_77f149bd878f4401b81b5d3a4ba60c04",
"IPY_MODEL_14913dea9b074d07a7130e739adca48f",
"IPY_MODEL_fddb6665db274c05b2fc4a4cdb6730f2"
],
"layout": "IPY_MODEL_cde439d31729498dbebb75fe4519f49e"
}
},
"7f1b2fe9231f4ad099b87f484d013d40": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7f48879a2592476bbebad8e4967bc3df": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"7f6dde1e3fa242008040d1949e3157fa": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"7f83ae788d1d4427bead73a3673d75f3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"7f8c34f94c50414b801ed4f999af7dce": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "No-Data-Value",
"layout": "IPY_MODEL_07591d8adafc4b5c9b751ac2ee2aff91",
"step": null,
"style": "IPY_MODEL_b920edbbceec4a27b3d0f180a748fdbb",
"value": -99999
}
},
"7fbe41851c42442e910bbd07ec5f3a93": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "75%"
}
},
"7fef2d7539ce46198fc4d576f9fbd5c0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_3a538e11adc54dacb7f629ff7c8777ed",
"style": "IPY_MODEL_c80d7efaa8bd4e43b09f676bf3f2bb56"
}
},
"7ffcc4b4d4cd4f53b23bbc98e0d46b18": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7ffd44131361412d90964223dc1b62a5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_8fe930fe815c48fbb6ef5cee3dd35ab9",
"placeholder": "",
"style": "IPY_MODEL_037b091270284a529a7bf71d87984bf8",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps\\assets\\"
}
},
"800b70c65b724e20b69b0ed25272e9d4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"80437cf2d2d646f9b3a085b79449087e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_8719928f790a44098d44a9d68e560bd9",
"IPY_MODEL_b500e01003eb4cc5bc35a4648adf1a9a",
"IPY_MODEL_5bd48885a30042f6abbaa70ddfc58154"
],
"layout": "IPY_MODEL_f2780b3a6c1f46c3adffd2bcfa311dc4"
}
},
"809355609ee747f3b7b5e4a2b3a734eb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"80970747248146788052a1e4c77d1316": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"80a9155c94a24b7db1caeeaf39902655": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"80bad037323d4979b7dfb94aac5c2425": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"80be45438e1d4528a7dc1857aa211d87": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_bb8c60e689a04a928210486d373617de",
"style": "IPY_MODEL_0df7f79af7fd44b093c42faa3ccc75fe"
}
},
"80e069aef5c844539740b4eb8f06111d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"811f7169336149d4adb2195463e7719e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"815f49551fb44093b6cb83f9497ede48": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"81b4dae734a14d83bc1996d0398291b3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"81c84fe7f46848bba602538245878710": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"821394f6e36a41349debdc8ec1178f98": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"82335f8f2555425f9320c7e4457f42c0": {
"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_cab4b399d304465f9d4007a817d9bf4e",
"style": "IPY_MODEL_aed6f2db454949fbbf2a4e3f31b919a0",
"value": false
}
},
"823a205256fb430eb8b8cceb669e4c87": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"8256c64e9e084e549eba9fb965dd29f1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"82b0c52a42b341a29a0d30d1eb0d3ba7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_5ca4a702fbd644378de0ebe4fbe27b00",
"style": "IPY_MODEL_1dd9505fb62844748e04320bbe4712e0"
}
},
"82bfaf8c5659498e8af48158027b3704": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_2a07e49ef666445aa66c0b24480325b5",
"style": "IPY_MODEL_e428d309154a4a8791430bbcf961ab8f",
"value": "Monitoring folder"
}
},
"82d2bdbf678d4bad80bd0bb5ce02fdf1": {
"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",
"Z"
],
"description": "Data: ",
"index": [
2
],
"layout": "IPY_MODEL_4b3760319f9b4003a512bd4f75007e11",
"rows": 5,
"style": "IPY_MODEL_dc328d8112d94d61b7a3246ae487e893"
}
},
"82ef6dc8a6d346f1aa083bd90d69d59b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_8b33098daf4147a2a4ebe4eb87c258e0"
],
"layout": "IPY_MODEL_081d2e864f5a4062b7e76927546fb2b3"
}
},
"834b791a61b643a7aa3829d6279fdbe0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_5106c05b54384806b7d043b64eb584f8",
"style": "IPY_MODEL_c81be0f1b8b541cd9ca2878a2e52a4a4"
}
},
"8362237cb9cb4e3ead7ad7c0c3a1d97b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_6a261bc384594f24b2a7a4e979c1eae7",
"IPY_MODEL_026b5b622dcc4b19b3224d4e391b599c",
"IPY_MODEL_f0889c915f884fd7af9003116d02b5de"
],
"layout": "IPY_MODEL_e8152a5b91a54e5dbc4f1bf256fe6d28"
}
},
"837f8d82758e4c0195c32f8fcc7b068b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"83a2faa007da42e9bee390911aa5cff6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"83de98fa3ec0442fa233934eb3730e3b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_6f41da12494f41dbb6b5e283506f00fa",
"IPY_MODEL_30e2e54f6c9041b7bef2353d3db77d85"
],
"layout": "IPY_MODEL_c57498e540374415a734e4f098d54361"
}
},
"840f4c22afcc43ae989877deaa61b3e3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Projection:",
"layout": "IPY_MODEL_f8c3583af0604a12a75c085ab5a8ccbf",
"style": "IPY_MODEL_7e645c745c89426f935f418cf4d434ff",
"value": "EPSG:26914"
}
},
"84429757543d44cf8b22cadf72040851": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_5514a8209a264bbdb76c3a8b543eb38a",
"style": "IPY_MODEL_08a1b60ade07412396d0b0b80823c5d1",
"value": "Workspace"
}
},
"844b0774bebd4468bd62e0bd882eef4e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_d1d37ee5b6cc4696bd48b4bc4d63d4c2",
"style": "IPY_MODEL_ee95c5e8895948e99613515fcd6e8f7e"
}
},
"8453b0e809eb441cbeb83e6b5ae29a86": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"845642a3a52e402fa081bc637102f2b4": {
"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": "500px"
}
},
"8476de829b284b49a3518eb286c55d28": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "No-Data-Value",
"layout": "IPY_MODEL_432c7419d6c543f8b45da95ae25b8801",
"step": null,
"style": "IPY_MODEL_d9dc0d78d70347c4a5403096838fbb04",
"value": -99999
}
},
"84a37f4785ef405788e545165fb49f28": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"84c8e5e64e9343d6b3436ebed2a24363": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"84cbcbdc4d93411485b4f5484731c891": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_1052b994c6df4d25b95fc89e2d36abc5",
"IPY_MODEL_d6e1bf75eaa9492a969abbf96e110f54",
"IPY_MODEL_478003fa0f3f4aacb9dadd95526bbfa1",
"IPY_MODEL_4e311c9297fd4ee0be89c1795620b498",
"IPY_MODEL_c4a5e73eda16469ba2105a3137a502bb",
"IPY_MODEL_47ad62defc904e3c95b32fd41abdc943",
"IPY_MODEL_9b69703177e94f87b7949717ac1abdde"
],
"layout": "IPY_MODEL_f2decb3302274ce99519fd8316c09a98"
}
},
"8504d6310b3f45759717bd313421cbff": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_1e9eed9f595d4f5eb3d26d3a53503b40",
"IPY_MODEL_67dece3bbc3f4cc2a636c3d9ab93f36c",
"IPY_MODEL_5e192bcc2b3a49558892295550356cc9"
],
"layout": "IPY_MODEL_6289dfdffd87462aac8b8974b150d3ec"
}
},
"8513723e1b2c4c5bb43ffa9b914eea9d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_06a4f281a4ed46f9b67527456f3f1b2c",
"IPY_MODEL_cf4607936887491499a5dec05ee61429",
"IPY_MODEL_d582340069fd4b98acccfaa84170b75d"
],
"layout": "IPY_MODEL_a60325db04224c609753f29e4350eebb"
}
},
"8525bdda3fb34d07a37f664df49042e2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_09893dfe7c654ab0a96e42ebb4b6434c",
"IPY_MODEL_3931044f64324d7cb1b826fb94281380",
"IPY_MODEL_0ad62f3df31c44bfa2f3828b5a74297d"
],
"layout": "IPY_MODEL_cedd022d171f4f70996bd80f5cb02421"
}
},
"85b9099935dc4351b5e918bd378d1857": {
"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:\\",
"Z:\\"
],
"index": 0,
"layout": "IPY_MODEL_99ae23a0f91c48cdb7cb675d5159726f",
"style": "IPY_MODEL_1182128afb554772b989ce1694743b21"
}
},
"85c1d1f823784e0cb34c403c90c44925": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"85fe37e84c1e4a9f889782579a674cb6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8633149a500540d19c3cbf71c28ccc4f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"865e88a338b64fa486021542ee0e2b0e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_c476613900b24b5c9c65881394432c3f",
"placeholder": "",
"style": "IPY_MODEL_8e6c7a9e20644f66a05424353b358704",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps\\assets\\"
}
},
"86786713ec684d05b4898b806d8a4985": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"867f752b67f4422e8689a2dd24668bd9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"86ba37f2aa604fe386312ddb50da7062": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"870d7848d4384fa4bac028c39c4103a9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8719928f790a44098d44a9d68e560bd9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_cce5b4076a644939a18d34255ce4e452",
"style": "IPY_MODEL_15400ee0fa98411b889791513dcb6e6f"
}
},
"872b3163fa714e028013a39eabcda02b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"875f0cd061dd4cd2b0fa9475f355c604": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"📁 .."
],
"index": null,
"layout": "IPY_MODEL_1f974acec5e9420b9beac1115e3071a9",
"rows": 8,
"style": "IPY_MODEL_c2c18728784f43099e36431d30a4bcdc"
}
},
"876b72920758412b9d60b5f16986e08f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8773466b16a649b38a806d1af98cc877": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"877d5eac20d74c2daa9cc7ff0a69a9c1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_7b136595b2734e048834c0f285132ea4",
"IPY_MODEL_574d07d2d41046be8f73e08d9560742f"
],
"layout": "IPY_MODEL_4b057cd5de2644c08760bc2bba54c6ec"
}
},
"879473f41b9c47fc9b6a13804a8b5124": {
"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:\\",
"D:\\",
"\\\\EgnyteDrive\\mirageoscience\\"
],
"index": 0,
"layout": "IPY_MODEL_9359c7090c924b4cb38ca32184e6bb2f",
"style": "IPY_MODEL_5492b139b451446aad3c485898e00466"
}
},
"87e3ed6c488244e5bf4a0d80d50706db": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_38583c05f8144cd5bdea540bc4c79e35",
"style": "IPY_MODEL_1b2be81a4dd242f1b9ffcd1051d89ee9"
}
},
"87eed69348c140babee4f722276a44d6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_684adbdb399f4c4aa000b017e381b88b",
"IPY_MODEL_c9e265b9bc3f4a9ca080039f2584870d",
"IPY_MODEL_ac0e675b7d1b45a4a1996f3475f98a8f"
],
"layout": "IPY_MODEL_9fa2cb2afb104912b990aac4c8d1e210"
}
},
"880e6be628a546a798fc10e14ca332a2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"ESRI shapefile",
"csv",
"geotiff",
"UBC format"
],
"description": "Export type",
"index": 2,
"layout": "IPY_MODEL_2345637ffe9b4bcf89ecadcb68fcbea9",
"style": "IPY_MODEL_c91007cda9314d8880398ccd00ffadf5"
}
},
"88500a1119714c429892f7c6aa5f07d5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"885fb81c39584538b0e303a630d4f081": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"88636525799a426ba4ede152272501a6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"88957f0110c1483bb372eadd14227afe": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_14ae8c2309774746ae9bafe397d8db85",
"IPY_MODEL_ea88c713522141f2ac730d80eba04b1d",
"IPY_MODEL_37dcad84ef5443acb36edb826cdf7b4a"
],
"layout": "IPY_MODEL_773d89d497844050aa06ffcc04912176"
}
},
"889dc0a21d3c411394abb70194c74782": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"88a0b509dcd44e26ae168b27ddbea1f2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_e93a9a45d42041da93083306dfa3db22",
"IPY_MODEL_9ec51e20c8744a78975049fcef7ff3db"
],
"layout": "IPY_MODEL_2393336c958f40e09aea042f00a56a2f"
}
},
"89229416d842494b94265290d362f20d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"892d41a1402f4fd4a0380280f595fbbf": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"89568b26190d44a8a73e02004fa2d703": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_1734d7fccfc34e6fab571989407e1902",
"placeholder": "output filename",
"style": "IPY_MODEL_c8117fa3d8094b959fbcd31459ca2e1f"
}
},
"8966df6b8b994e8699fb2b5e238978d0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"896c0b7aa4ac4f68aef40df36fc6f290": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_686070779e114496ba3431d1135de1c9",
"IPY_MODEL_40a7a84123c143948e3cbde9d8448c56"
],
"layout": "IPY_MODEL_644cb8784f73428bbfad733a40afd6b5"
}
},
"89947136f3a14f8d9d1497c12bb9dec1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"89d0b20fbefc4157ab8c20cee99a4763": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_e91cfc2828a54f7da99bf762f7e7b162",
"IPY_MODEL_989f5f27fe2c449ca984e13e27b6b740"
],
"layout": "IPY_MODEL_d79512e13bd04df2aa99ae08640700d6"
}
},
"89ebc67a3521483eba10674c8706d31c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_78e59bb0ba654a9bb351dec0caf6bf5c",
"placeholder": "",
"style": "IPY_MODEL_7049cd67034649be94c9431219a040ce",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"89ff9ae6b8844ad39eed4d1adfa16f48": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_acc5eedbbadc46e8b3fd5282d5ece1e6",
"style": "IPY_MODEL_8966df6b8b994e8699fb2b5e238978d0",
"value": true
}
},
"8a8031276d7442119d5ce59c22c19f3a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_2cb22abcfd5e45009fd0fd7905cb8248",
"style": "IPY_MODEL_37f72f0047794ed08d7e5336dde56912",
"value": "Monitoring folder"
}
},
"8a8c4bcdea3e47ac8c9127c72c181e9d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8a9450c024b74a5c92b944e63c1104be": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8a9750f96df642749f19a3d2caa09d6e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8a9b7f4e6d674e2b88f61e6acb0a82f2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8a9f4676d10343baae5323c0a617f610": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_690e2d6a82bf4ada96e16435b55af2ac",
"style": "IPY_MODEL_52cc501c9ff847a8893a8c1f6b0c00a9"
}
},
"8ab709f75be14fd8924bc0754ec14c77": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_901f3aa1389d4093a4f3e3dc08947725"
],
"layout": "IPY_MODEL_9a896eab717346649076914598c25b8c"
}
},
"8ae9e2b4c6a04fe29d4f3c900750bd84": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8af637ca48b1449fa8a1ca5b065aa34a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Export",
"icon": "check",
"layout": "IPY_MODEL_2782504d33d1450a8471539016c16a6a",
"style": "IPY_MODEL_3811a98235344c4daaf9b77d2ff08278",
"tooltip": "Run computation"
}
},
"8b33098daf4147a2a4ebe4eb87c258e0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_fa1ca910c37b4d84b96718556a041508",
"placeholder": "",
"style": "IPY_MODEL_032287fdf1884dccab72fb0000a28be0",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"8b5929fb2ec0463e8d45687472412eae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8b661c39ae364e8b85fbc8e7a1b11f71": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"ESRI shapefile",
"csv",
"geotiff",
"UBC format"
],
"description": "Export type",
"index": 2,
"layout": "IPY_MODEL_e989df3010ac4220a7b62ebe4df9a2f3",
"style": "IPY_MODEL_b966bc5bcfa84e2b8a4a33ed7cdae026"
}
},
"8ba9c05bc9054249bfa03d4e62b77468": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"8c1c63399169411f866767f853531435": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_d76efdafa12544f39d4a4a5d3d89946d",
"IPY_MODEL_23eda325de434eed807dfdbcd6c89f4d",
"IPY_MODEL_18d13628477046a28b9c68eaae5546f6"
],
"layout": "IPY_MODEL_751378ecab2940b7888bd7faab81796e"
}
},
"8c2a9b5cb68f4b078c4593136fb3094a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"8c3e54dc049c41efb824d79e3786e83c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8c52afd39bae49589fc7e811e63352ea": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_5850d1076f844a1aa55674516e1390a3",
"style": "IPY_MODEL_00fec20e4dd1429fa5c6c398f9ed22dd"
}
},
"8c60b08fb910411194c886ef1e80dc95": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8c71d62cb24f4507acbbbf7ef4725899": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8c9564ee72704c728f718d43f8e6980e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_e8d2e5837f574989ac1da48cbd2ffc14",
"IPY_MODEL_07183682d77c4221a7d4057dc75f10c4",
"IPY_MODEL_6fab3cf985ca483681cec0cded676895"
],
"layout": "IPY_MODEL_d5b90a30519b43eaa681f4a4004b8988"
}
},
"8c9a1f9e106e42f68a12460f6247d166": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8ce583204f284c93a87d9459a5a58980": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_1ca57c19851f4beab7a8881a04d08aa9"
],
"layout": "IPY_MODEL_9e59da30f9aa4971aefa177b4e40fd6f"
}
},
"8d0154d87ac04363a2f61b1b9136a23e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8d2b9d478e3f447aa329ad430db80b52": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8d5d4e29aacb4054820103e9664a38a1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_9499439df3b04a63a905fedbc39ac500",
"style": "IPY_MODEL_fb1047ef81b24462be7652a87e990cad"
}
},
"8ddb0406f6d74dc28bdf8d93421d78b9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8e6c7a9e20644f66a05424353b358704": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8e7fec71f06c442b8ba6fd4341c5d02b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"8e80dbeb8d2248e88ad774208ffbe728": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8e966f864bb64bd1838a3ada45c97807": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8e99d2b8caca4beeb5dcacf02c1f705b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8e9a5b9b91114affbaddb982124361c5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8efa49c2e3404d6c8d91f5c7d305fddd": {
"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": "500px"
}
},
"8fd1bbd50e414365b8bbed988b000f9d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8fe5fbd2b7264b8b959e7533af0d1d0b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_fd39534af4f445d486088a3aabd96d97",
"IPY_MODEL_3cd3c0c2c9304964b2c945bcdaceae77",
"IPY_MODEL_e1d816d46aca4dfaa6ee2e1ff36e9181"
],
"layout": "IPY_MODEL_8efa49c2e3404d6c8d91f5c7d305fddd"
}
},
"8fe930fe815c48fbb6ef5cee3dd35ab9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"8fed742d2b6a429ba2c5538836fae5b8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"8ff1bdb760734a05b3f9c9ddc87d1c87": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_29a98db18ee54e03b1cd38f3d8fc3b33",
"style": "IPY_MODEL_f231026803254d52aa89a1a872a39f7c",
"value": "Monitoring folder"
}
},
"901f3aa1389d4093a4f3e3dc08947725": {
"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_95994506b8f74fad8c0cec6e01217afb",
"style": "IPY_MODEL_3ceae8b4c34e4b7589bc3e833c457c00",
"value": false
}
},
"90274afbdec9435fb6b034daeeb84d94": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"Z:\\"
],
"index": 0,
"layout": "IPY_MODEL_fa11ce32cdba47f5b64b46dbb63dbbf0",
"style": "IPY_MODEL_9354a40b29fe4e11b641d69b3bed19e8"
}
},
"904cda1bcd1d443a8b89cc0a5a28d15d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"906dcdec3f76458d896549a6b9cbcaa2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_21da18c750d84c738fbcab4b2f8385a9",
"IPY_MODEL_e7eb9e7021db414e924166e3339f4b4e"
],
"layout": "IPY_MODEL_514619807623464a8d6a2e1999f66d28"
}
},
"90c077714bd54741a047921fe50cd84d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "75%"
}
},
"918491ceddd4422890072be5cb520880": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_e118ac7ff268412fb07a4c71f99111ed",
"style": "IPY_MODEL_dc77df4d47b84fa28fbfce28c4f8974b"
}
},
"91ed8408c7bd4b1581d9f8190b6084ef": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"927cf934fcec4aa5b1fa059967246974": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"9299a60b16f5443a95495b0a64cdab92": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"92c0f2617e31404fb9c5b22740578248": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_4e708414978f47f6a95f0cda635e34e3",
"IPY_MODEL_8504d6310b3f45759717bd313421cbff"
],
"layout": "IPY_MODEL_36bdb67d0f284354be8f25905a946c8f"
}
},
"92c33b542704462898deb576faa0ee9b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"92cd5b0926be40a9aa92b96fe0d73efb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"931f5c35c8574ad7a26abda9ab674d70": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_97fc5677f25f419597fc2259b159b7a0",
"IPY_MODEL_e77a70a86b804151925bd7a20e75a29d"
],
"layout": "IPY_MODEL_59484f1cc2474a1686f91cef30dc7019"
}
},
"9354a40b29fe4e11b641d69b3bed19e8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9359c7090c924b4cb38ca32184e6bb2f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"93612f610eea46c8859de49816bba374": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"93ac0e40bac94132a3ce3c09d3f4079f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"93bdc0fce4b14d2e98429e58fbf6c46c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_47ad62defc904e3c95b32fd41abdc943",
"IPY_MODEL_5afd6efc84c947829d52eb8e9cc7734a"
],
"layout": "IPY_MODEL_ad55aea812dd40bfb50e52b26960a4f0"
}
},
"93d2c388f0e942e8958812ac81eb9c89": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_4019c944fc3a47e4b1f514f75b387a8c",
"IPY_MODEL_dd550224af024afab79ca792bf7835fe"
],
"layout": "IPY_MODEL_9c6dbd145279448fae3dc697f0f2cd97"
}
},
"9417f08bf7694d94bc2fe7c58fc7f786": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"943b53961cbb449c934b6ddd5d3d83ac": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"94591964c674451db4ef4aacd4732f11": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_c694bbbe902e43feba1130bee9d57858",
"style": "IPY_MODEL_d25dea6d18c14b1e9f86f2c9e1056146"
}
},
"9486308aed8e4c15b1799ce95cffc90a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_3137a1232361415387c562a68ca902fe",
"style": "IPY_MODEL_b5035461fc364f0a9316232a63070fcb"
}
},
"9499439df3b04a63a905fedbc39ac500": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"94c8e44575b04defba60c0390e23d30d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"94e1a33d5a6145bdb754f564b845dcb4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"94e462c2e9ed43c285d5a415f810b8da": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"94e67ca15218422caa7bc11e2deb47bc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextareaModel",
"state": {
"continuous_update": false,
"description": "WKT:",
"layout": "IPY_MODEL_90c077714bd54741a047921fe50cd84d",
"style": "IPY_MODEL_e04672ee58444b469d4a1d03093a2409",
"value": "PROJCS[\"NAD83 / UTM zone 14N\",GEOGCS[\"NAD83\",DATUM[\"North_American_Datum_1983\",SPHEROID[\"GRS 1980\",6378137,298.257222101,AUTHORITY[\"EPSG\",\"7019\"]],AUTHORITY[\"EPSG\",\"6269\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.0174532925199433,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4269\"]],PROJECTION[\"Transverse_Mercator\"],PARAMETER[\"latitude_of_origin\",0],PARAMETER[\"central_meridian\",-99],PARAMETER[\"scale_factor\",0.9996],PARAMETER[\"false_easting\",500000],PARAMETER[\"false_northing\",0],UNIT[\"metre\",1,AUTHORITY[\"EPSG\",\"9001\"]],AXIS[\"Easting\",EAST],AXIS[\"Northing\",NORTH],AUTHORITY[\"EPSG\",\"26914\"]]"
}
},
"955dedd92e0d480480a42952e0b6bca3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_7c95399fb35843798933e8f4a17010f9",
"style": "IPY_MODEL_573599a1b61f48ebbbecfee8986f53e6"
}
},
"95774e1fc1a944a6aa661a8c212cd70d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"95994506b8f74fad8c0cec6e01217afb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"95fa93bac6c34c1aaa9bac88da32d2d1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_34bcbcdc85a543759f394fed83c45896",
"style": "IPY_MODEL_228751ae2e55462599587695bf2da767",
"value": "Workspace"
}
},
"965b42e408ea4218a5fb83000e46a9ae": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"96a86c2ee8934d6fba570e782963a722": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"970322ac0aca45e7b1e5c87032ff6b1d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"97366ee7e93e4b4ebcd02abf9a046032": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9753d8ce108045eca68032d274338c33": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"976de60cb9ec4ab3b280a878e8f7fc06": {
"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": "500px"
}
},
"9782dc3ec6f842ee9aed82554772f17a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"width": "auto"
}
},
"979fa3f114c744cfbcf1d1010803e1f0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_b712ed3ee3c04ee4935aa80ea0e3ccea",
"placeholder": "output filename",
"style": "IPY_MODEL_d812a50576ea494f80148c1ccd4403ae",
"value": "FlinFlon.geoh5"
}
},
"97b79c1c996f437cbb9ba4385a8a6de8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_dcb88f8cd440432da7e1cd74dbb02ccb",
"style": "IPY_MODEL_91ed8408c7bd4b1581d9f8190b6084ef"
}
},
"97cac7b1f3074823829c2d8654a0d5e7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"97f15aa259fc4b61872201b4eec7a612": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"97fc5677f25f419597fc2259b159b7a0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"CDI/ELEV[4]_surface",
"CDI/ELEV_surface",
"CDI/CDI_",
"CDI/COND[21]_surface",
"CDI/COND[11]_surface",
"CDI/COND[23]_surface",
"Faults_Dikes/fault_splay1",
"Faults_Dikes/fault_Cliff_Lake",
"Faults_Dikes/fault_Other_FlinFlon",
"Faults_Dikes/fault_Club_Lake_splay",
"Faults_Dikes/fault_Catherine_splay2",
"Faults_Dikes/fault_Birch_View",
"Faults_Dikes/fault_Dion_Lake",
"Faults_Dikes/fault_FlinFlon_splay",
"Faults_Dikes/fault_West_Mandy_Road",
"Faults_Dikes/fault_Channing",
"Faults_Dikes/fault_Ross_Lake",
"Faults_Dikes/fault_Louis_Hidden",
"Faults_Dikes/fault_Lake_View_thrust",
"Faults_Dikes/contact_Schist_Lake",
"Faults_Dikes/fault_Burley_Lake",
"Faults_Dikes/fault_Dion_Lake_splay",
"Faults_Dikes/fault_Green_Lake",
"Faults_Dikes/fault_FlinFlon",
"Faults_Dikes/fault_Catherine_splay1",
"Faults_Dikes/fault_East_Mandy_Road",
"Faults_Dikes/fault_Other_FlinFlon_South",
"Faults_Dikes/fault_Catherine_splay4",
"Faults_Dikes/contact_Stitt_Island",
"Faults_Dikes/fault_Club_Lake",
"Faults_Dikes/fault_Tailing_Pond",
"Horizons/35_Hidden_Reservoir_Hr5",
"Horizons/29_Hidden_Reservoir_Hr1a",
"Horizons/60_BlueLagoon_Fb2",
"Horizons/20_FlinFlon_Undivided_Int_Dykes_D2f",
"Horizons/04_Boundary_Intrusive_S4h",
"Horizons/53_Millrock_Rhyolite_Fm4b",
"Horizons/19_FlinFlon_Undivided_Int_Dykes_D2b",
"Horizons/18_FlinFlon_Undivided_Int_Dykes_777_D2b",
"Horizons/06_Phantom_Lake_Intrusive_S3a",
"Horizons/21_FlinFlon_Undivided_Int_Dykes_D3a",
"Horizons/43_Millrock_CHLSH_South",
"Horizons/56_Millrock_Basalt_Fm1ba",
"Horizons/17_FlinFlon_Undivided_Int_Dykes_D2",
"Horizons/32_Hidden_Reservoir_Hr1b_SW",
"Horizons/11_Missi_M3_NE",
"Horizons/13_Missi_M1",
"Horizons/07_Annabel_Granitoid_S1",
"Horizons/45_Millrock_Gabbro_South",
"Horizons/01_Late_Intrusive_S5b",
"Horizons/31_Hidden_Reservoir_Hr1c_SW",
"Horizons/52_Millrock_Rhyolite_Fm4_West_check",
"Horizons/55_Millrock_Basalt_Fm1bf",
"Horizons/34_Hidden_Reservoir_Hr2b",
"Horizons/03_Boundary_Intrusive_S4b",
"Horizons/42_Millrock_CHLSH_North",
"Horizons/26_Louis_L3",
"Horizons/23_FlinFlon_Undivided_Int_Felsic_D4g",
"Horizons/30_Hidden_Reservoir_Hr1b",
"Horizons/59_BlueLagoon_Fb3",
"Horizons/49_Millrock_MVR_Fm5d",
"Horizons/44_Millrock_Gabbro_North",
"Horizons/27_Hidden_Carlisle_Hc4",
"Horizons/22_FlinFlon_Undivided_Int_Felsic_D4e",
"Horizons/02_Boundary_Intrusive_S4a",
"Horizons/61_BlueLagoon_Fb1_NW",
"Horizons/05_Boundary_Intrusive_S4g",
"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": 72,
"layout": "IPY_MODEL_e1764d74bbe54fbd874bd51e5da7c7f2",
"style": "IPY_MODEL_99605afa56794b90b9f800458b5090ec"
}
},
"98059e58c8aa421899526950a3336b90": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_78b9a81a064e47c088c7311a16b38d25",
"style": "IPY_MODEL_21e5198e5efa48d789be6c0ecc9771f9"
}
},
"982ab864207541cead1e388e0f3d3333": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"98419c963e9d4752b4509d36b208dcf9": {
"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",
"Z"
],
"description": "Data: ",
"index": [
2
],
"layout": "IPY_MODEL_3a89d225358641b8988b1ec5c07989d1",
"rows": 5,
"style": "IPY_MODEL_4aa2cafa79c54451900d92f19e3e4279"
}
},
"986a03203a784998bb0cceab1306f10d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_9ebbffb7d2cf47f8a8e766813d6c9e52",
"style": "IPY_MODEL_fdfed50300ac4fcf9ff472e2d2ab9dbe"
}
},
"988e3182e7d94678b925146eaf9a3d51": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_896c0b7aa4ac4f68aef40df36fc6f290",
"IPY_MODEL_5eb825b8b5d94fa08d8de5ba67b1a091"
],
"layout": "IPY_MODEL_65285684f0ea46d7bf7a18f3e3ca3291"
}
},
"989336b452e94fe4ab206b6112aab67b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_74c49fe307f54bc38e4fca727fdbe547",
"IPY_MODEL_6860077a36c94e868abf1db5d7ea4494",
"IPY_MODEL_24e5fe31b1394b49adcbfe4be985879e",
"IPY_MODEL_7f8c34f94c50414b801ed4f999af7dce",
"IPY_MODEL_fa4189140b954117aa37802c7c398c9f",
"IPY_MODEL_ba26d7013b0845ccaf7634b9dabcf47d",
"IPY_MODEL_8504d6310b3f45759717bd313421cbff"
],
"layout": "IPY_MODEL_c2bc5384750a4b3d8a25a27d8909644e"
}
},
"989f5f27fe2c449ca984e13e27b6b740": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_52f6dd14eab744928f9a97a6f88e5ddc"
],
"layout": "IPY_MODEL_05c058f5c884413fb80fb693e09cd42b"
}
},
"98f5183ac78843b695265eccecda6ddd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_31e8f68437b04362859c863cf46e9dff",
"style": "IPY_MODEL_b8c811b291794edda9c18c63c89211cc",
"value": "Workspace"
}
},
"99571c913a2241da9c4ccb72aa2c63c6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"99605afa56794b90b9f800458b5090ec": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"999787e52c2f4131ac3faab31d524c01": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"99ae23a0f91c48cdb7cb675d5159726f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"99da2004af7f4da1bcf5a4ac42be73e3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_98f5183ac78843b695265eccecda6ddd",
"IPY_MODEL_22d13869d5784d0dab2672f28244d1fb"
],
"layout": "IPY_MODEL_f2e04e749ff94257b13cb7d0b177236a"
}
},
"9a04b9a9f60943b0b6e3d545dccd0c60": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"9a52b2fea0c5452ea876b34db791a4bd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"ESRI shapefile",
"csv",
"geotiff",
"UBC format"
],
"description": "Export type",
"index": 2,
"layout": "IPY_MODEL_d3515ba5960340718a2740b9962c139b",
"style": "IPY_MODEL_59cd8628b8da4ceaa7ac48f8d87c6c32"
}
},
"9a595e37b0644c8fa74b4a8720345cc2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_39081f58ffc24a2385d23b3e867ef0a5",
"placeholder": "",
"style": "IPY_MODEL_6600197cab6d4f6c81f61cbcf6923d82",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps\\assets\\"
}
},
"9a896eab717346649076914598c25b8c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9ac8a94a9c7a4e93a670859a27989d72": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9ad66a03ad894c87b1815ec9b81bc8fb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"width": "auto"
}
},
"9b31560823654048b7f22c9a0332e9fe": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_6f41da12494f41dbb6b5e283506f00fa",
"IPY_MODEL_5bc6751aedba4c7a8744a116df7bfcff",
"IPY_MODEL_646e8271ab5a452fb0a2c4cafc80a512",
"IPY_MODEL_79dfca8bec80402eb38d13a7bf10853e",
"IPY_MODEL_10036c5881514400acccb49b8d97cc2d",
"IPY_MODEL_16b11b584f1649e7ab0c90d7ffdc5ed9",
"IPY_MODEL_d1c8159a7ee147ffb38f5f3f8ffbc602"
],
"layout": "IPY_MODEL_f4fbc01aab184018b9eda9704bba630b"
}
},
"9b45c6e93ba74f779467a4cf3050b495": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"9b69703177e94f87b7949717ac1abdde": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_df07db3e01964d8dbfd5da26c11c38c3",
"IPY_MODEL_53023511fb5d4e8da42296489c10a379",
"IPY_MODEL_80437cf2d2d646f9b3a085b79449087e"
],
"layout": "IPY_MODEL_1b1b082e513848ed8030117ada09895b"
}
},
"9b8630eacea44fa891b8bd37ac5f0157": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_e2dcaf432fe04dd59f09cd412ab61600",
"style": "IPY_MODEL_94e1a33d5a6145bdb754f564b845dcb4"
}
},
"9ba911d97ba042499337e245db24ebf8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9bc83016dc544d6a8fb78e83cc1de1e5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"9be7c9bb1abe4829bd78a263a29ecaa2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_0c7beb1b754a4c7982e585d1346b7f74",
"IPY_MODEL_708c9903ce2343e1b95df4e9ccf1de8e",
"IPY_MODEL_4f9207ca3caf41e1b06eb7ebeeef0f4d"
],
"layout": "IPY_MODEL_5f21e1ac6eec4c82812755ac3995dac2"
}
},
"9c14d04966a54aedacd4f1eb14a12395": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9c17bbabe4954b938e5f8f209831f5c4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextareaModel",
"state": {
"continuous_update": false,
"description": "WKT:",
"layout": "IPY_MODEL_de1fef4f33234073aedef503f25d721a",
"style": "IPY_MODEL_38f824c3e16e41ae9bae3d418250ec72",
"value": "PROJCS[\"NAD83 / UTM zone 14N\",GEOGCS[\"NAD83\",DATUM[\"North_American_Datum_1983\",SPHEROID[\"GRS 1980\",6378137,298.257222101,AUTHORITY[\"EPSG\",\"7019\"]],AUTHORITY[\"EPSG\",\"6269\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.0174532925199433,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4269\"]],PROJECTION[\"Transverse_Mercator\"],PARAMETER[\"latitude_of_origin\",0],PARAMETER[\"central_meridian\",-99],PARAMETER[\"scale_factor\",0.9996],PARAMETER[\"false_easting\",500000],PARAMETER[\"false_northing\",0],UNIT[\"metre\",1,AUTHORITY[\"EPSG\",\"9001\"]],AXIS[\"Easting\",EAST],AXIS[\"Northing\",NORTH],AUTHORITY[\"EPSG\",\"26914\"]]"
}
},
"9c5874bdf17f4636a33ef4b1a64f9d74": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"9c6b1bb53a4d4b148aee9e4bea1c5e03": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_5a6f9cd2dccf47a48c4996afdc9f91a9",
"IPY_MODEL_2985bff4472642eb97564f49cc52d22d"
],
"layout": "IPY_MODEL_970322ac0aca45e7b1e5c87032ff6b1d"
}
},
"9c6cfb172e034ac7b9558ca056bd2e64": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_aea4c386a8de4c39a57a19624dd7429c",
"IPY_MODEL_bd78833d96484ee2bc15e6ea1ecafb8d",
"IPY_MODEL_89ebc67a3521483eba10674c8706d31c"
],
"layout": "IPY_MODEL_3db96b0ae32f4d258049179819225fcd"
}
},
"9c6dbd145279448fae3dc697f0f2cd97": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9c6dd13df07149b1bcde6ac9eb6e0c56": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_2b7a604295144c49a9f9fb8eb500e4c0",
"style": "IPY_MODEL_029233f62f67411ab68a98c56a87263a"
}
},
"9c85e5e5378348dfb3ab516daa7b7230": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9cc166e5a22e44d0b793ea2e738dd6c8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"9cc5ec3a97de42028d5562444c8867a9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_d39f5082119649cd93c3940d3258223f",
"style": "IPY_MODEL_6c2c39366c4b4dab9485809798aca3ae"
}
},
"9ceab9d643304f32abb97de7ebcb8aa2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"9d326ecfad0a4551934953ac9c1019b7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9d3b5f9ec2474828aad750c648eaf19a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_bbb4bd477b8040a591eed4018ab813cc",
"placeholder": "",
"style": "IPY_MODEL_fefe1efa911e44f0af01f8c8f613e860",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps\\assets\\FlinFlon.geoh5"
}
},
"9d4001e4b71f4a5b808626e162d5e6cd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"9d4d7d0843d0494e91c08c323cebeaae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"9d8e19fed03647dca85fc380fce60046": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9da272e4e55e4555913d110de5bcc875": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9dbb561ba89347eea88d3c59a4f6cb66": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"9de78f6db6c14524ad8ee90ae028547f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"9dfabd7b89e44a18b2bbb2b58a2471bf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"9e59da30f9aa4971aefa177b4e40fd6f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9ebbffb7d2cf47f8a8e766813d6c9e52": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9ebcd443e6d749c5a25602a23e6c07e4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"ESRI shapefile",
"csv",
"geotiff",
"UBC format"
],
"description": "Export type",
"index": 2,
"layout": "IPY_MODEL_efdefae7a44a445d961ea70ae5d4f75a",
"style": "IPY_MODEL_b69c3b373ac142d1b09d194647f55f32"
}
},
"9ec51e20c8744a78975049fcef7ff3db": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextareaModel",
"state": {
"continuous_update": false,
"description": "WKT:",
"layout": "IPY_MODEL_508b44472bd44d0991686fcbff45b925",
"style": "IPY_MODEL_ab8dda46eef14c8586f4ecc6fd75cbc6",
"value": "PROJCS[\"NAD83 / UTM zone 14N\",GEOGCS[\"NAD83\",DATUM[\"North_American_Datum_1983\",SPHEROID[\"GRS 1980\",6378137,298.257222101,AUTHORITY[\"EPSG\",\"7019\"]],AUTHORITY[\"EPSG\",\"6269\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.0174532925199433,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4269\"]],PROJECTION[\"Transverse_Mercator\"],PARAMETER[\"latitude_of_origin\",0],PARAMETER[\"central_meridian\",-99],PARAMETER[\"scale_factor\",0.9996],PARAMETER[\"false_easting\",500000],PARAMETER[\"false_northing\",0],UNIT[\"metre\",1,AUTHORITY[\"EPSG\",\"9001\"]],AXIS[\"Easting\",EAST],AXIS[\"Northing\",NORTH],AUTHORITY[\"EPSG\",\"26914\"]]"
}
},
"9f078f97f7cb4733a82ea5ff814f036f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"9f19941649e841ac85646a051820118b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_22176184ccf64b97bf4909b7243f5283"
],
"layout": "IPY_MODEL_81c84fe7f46848bba602538245878710"
}
},
"9f19c7c7330543eb9e7c55d21a82d3b7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9f3328c929cf450a9476ea4f8ad1d38b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"9f6db7b3679e4d1cab62cbe2b782dfb5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"float",
"RGB"
],
"description": "Type:",
"index": 1,
"layout": "IPY_MODEL_b34903d7a28f440cb708e1a39927797a",
"style": "IPY_MODEL_ed6a2168afdd450496384332a11c5a4d"
}
},
"9f9d76d8c74447fe8be6fd9d02a7b50f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9fa2cb2afb104912b990aac4c8d1e210": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"9fb9dbb4f89845248547ce9bbc4c060e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"9febc3bd73a649578ff8ed6a974dea5b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"width": "auto"
}
},
"9fedbda3b14641e68b015984c11fbe4d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"9ff3bdbc46a1492986a41d6c1a8a7729": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"ESRI shapefile",
"csv",
"geotiff",
"UBC format"
],
"description": "Export type",
"index": 2,
"layout": "IPY_MODEL_b0c5bd401be14f80b10c1ae1df0cbd07",
"style": "IPY_MODEL_cdb3f7162e8b4700803192dc1b974e23"
}
},
"a0206276d09842beb624c0022453a5c1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a02651cec70b42ceb13b2df47d7e2d08": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_3d4406e98d2941d8ac6b2140a429d49f",
"IPY_MODEL_a349a8063b194fe5a5d55ad151c585da",
"IPY_MODEL_c3417273347045438a6d5653e71dd3bd"
],
"layout": "IPY_MODEL_976de60cb9ec4ab3b280a878e8f7fc06"
}
},
"a02f9f99b32a45428643c6d096a3ab99": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"a135309150b8444886a4973ba6647de3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a18212f9641e464189456ccbaf0204eb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_9ad66a03ad894c87b1815ec9b81bc8fb",
"style": "IPY_MODEL_bcebcfe2058e4fc2a7764d60c56a165d"
}
},
"a19e85b09b91442b86e342fa2ed36840": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"a1e0a43ecc834269a9263000bea4ed98": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a1f0ca27b97b410fa0ff7dbaf89bfb19": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a1f55c73035b4856b52771911e53d8d8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_12a2268498cb42a2920f762fc1ae3a20",
"IPY_MODEL_b98fd5caebc844c6bcd1e39161d4c2f2",
"IPY_MODEL_25bb599fbafa4a12bc81ed3f4b439966"
],
"layout": "IPY_MODEL_6b490473a23849ec803f39cf1ab74c9f"
}
},
"a22d679d785f46858d46387fccb882e1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a22f36fcacdb49f6a31e433190b3ddf1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a23e30d9851d41de8616a0a7133400d2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"a247d5151791431aa2da92a24f8f9592": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a24a4709c76e45d49059a1765cbad962": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_186a8939101e414eb86fd2c05d320432",
"style": "IPY_MODEL_025aa4b4acab488488cb85607ab72d9e"
}
},
"a279d579787f4cfba313faa1fe454488": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"..",
"SimPEG_PFInversion",
"Temp",
"FlinFlon.geoh5",
"Gravity_Magnetics_drape60m_Airborne_Gxx.tif",
"Gravity_Magnetics_drape60m_Airborne_Gxx_Colorbar.png",
"Gravity_Magnetics_drape60m_Airborne_Gxx_RGB.txt",
"MtDore_TMI.geoh5",
"Octree_Mesh.json",
"Octree_Mesh.ui.json",
"Octree_Mesh_v2.json",
"input.ui.geoh5",
"input.ui.json",
"options_tree.json",
"test_no_root.py",
"tester.ui.geoh5",
"tester.ui.json"
],
"index": 3,
"layout": "IPY_MODEL_f7ca60ed1ece4ae9840d247086b73866",
"rows": 8,
"style": "IPY_MODEL_362b633a6293456ab093a4e3150c9cf2"
}
},
"a28427a8aaaa426c8771a60d45eeb43a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a2a8553495a149ecbf5eb75bac4881cf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_61df47fa9f1346899af5df81c05b1222",
"IPY_MODEL_2852ce0a97454ff8826307e4b80b14f7"
],
"layout": "IPY_MODEL_fd4ff0fb98c7440d92be38f7a536fd3c"
}
},
"a2b17e6858a440e6aecc694df2ecebf2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a30b31f97c984cfea9dfd0cc6ea3f06c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_458d9914160446ffa07df6b4377c161a",
"IPY_MODEL_599ec22d25f447b29cbb8ef5cb0d5af3",
"IPY_MODEL_e466617786d3478084802ff38732519b"
],
"layout": "IPY_MODEL_2bfcf22a97374e0295d9bfbe04a3ca86"
}
},
"a33884d714ce43eba7f4d3fc426bbf3d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Projection:",
"layout": "IPY_MODEL_470b15b7855a4aa8bd4e5b10fb1866b1",
"style": "IPY_MODEL_c1059a208be14e6a99fa76951d41c701",
"value": "EPSG:26914"
}
},
"a349a8063b194fe5a5d55ad151c585da": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_35f2b28d3b4a4c43ae25bbad47a4e7d9",
"placeholder": "output filename",
"style": "IPY_MODEL_f41eefb750b846da81da962785b9bf7d",
"value": "FlinFlon.geoh5"
}
},
"a34a6b6f6ef84110b101ac67177cb041": {
"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": "500px"
}
},
"a38d3a383d5a46a7bd34874c377534fd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Export",
"icon": "check",
"layout": "IPY_MODEL_ba26fe9ae239470f8741afafc1446ec6",
"style": "IPY_MODEL_26b637189a1e4c7982a604b27ee76bef",
"tooltip": "Run computation"
}
},
"a3fc3353e8d34e52af46f798ae4c8441": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a400fc0ebf454715abef36efb3663499": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a44a34fe39144c12967d40d6003e8e10": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"a475b688cac645a2956621050d6a359b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a49212b0fc8e4b5e8d7d8f47ddf1393e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"..",
"SimPEG_PFInversion",
"Temp",
"FlinFlon.geoh5",
"Gravity_Magnetics_drape60m_Airborne_Gxx.tif",
"Gravity_Magnetics_drape60m_Airborne_Gxx_Colorbar.png",
"Gravity_Magnetics_drape60m_Airborne_Gxx_RGB.txt",
"MtDore_TMI.geoh5",
"Octree_Mesh.json",
"Octree_Mesh.ui.json",
"Octree_Mesh_v2.json",
"input.ui.geoh5",
"input.ui.json",
"options_tree.json",
"test_no_root.py",
"tester.ui.geoh5",
"tester.ui.json"
],
"index": 3,
"layout": "IPY_MODEL_c161ec2d66614e0fb63eec16e6983ced",
"rows": 8,
"style": "IPY_MODEL_7de4b56c9f404e16ad569b8e797532bc"
}
},
"a4ae6e5ede3947909ec7dd9bdda94f1f": {
"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_ea146b4ecf6743b6ae1fae24ba54fab5",
"rows": 8,
"style": "IPY_MODEL_32d0fa4e650e4ce382348b0074377424"
}
},
"a51371b280724a77ac87551b3ca5d6b5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_6ed1f0d9481c4af7a925b4cc22641732",
"placeholder": "",
"style": "IPY_MODEL_2ebaa10f119343b3949f7596822fa79c",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\"
}
},
"a524db045cf24810b3caba37597c8d57": {
"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_d9f0873fc4124272b1152017315a0e57",
"style": "IPY_MODEL_d22a1592ae1f4069b8655f1d962f420d",
"value": false
}
},
"a5901666bb4046c790f49f1b63130ae3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a5aabb70eed24aa49829deeb4511818d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a5bc5d975f3043f0a0a6d8adb0fc4ddc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"a5dcd5cf1d9e436ea8487b2516c207c3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_81b4dae734a14d83bc1996d0398291b3",
"placeholder": "output filename",
"style": "IPY_MODEL_1e7eb66ab6344f2b9de27c436ee28b9d",
"value": "FlinFlon.geoh5"
}
},
"a600d66edfff42fcb18a4568dc747df9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a60190036e4b45d486761ab09be17bde": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a60325db04224c609753f29e4350eebb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"a61292e7a535400ab29616fde27b325a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a61a6f5cdc9245cbbefef89fde88634a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_41d5b8d2ac144cc7b23661073f4232ae",
"IPY_MODEL_ee9efd30de7146d7b55afadc8a285496",
"IPY_MODEL_c2a8da9ae8ca42ffb58491f6b27f2f96"
],
"layout": "IPY_MODEL_db744a15f4104048a1c8b8111bc3df67"
}
},
"a6502f480983455b9c1d62dba844a5e1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a692190f84e04892a4a3b46fe6078423": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a6a54b47c740438fb80b8039faebf75b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"a74a667ae8b14722b94e98e715ff9d5f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a75bece7e66840ce8da0e89cb660aee6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"a78dc7f1400f4eebac1631626fb72057": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a79fb098b5f44ce7a2031439aa98dee3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"a7a2e1be041f4ae0b4fad6ff36b5ca54": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a7a3f2418982499da049c74a669af4fa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_ddc3bc10886c4726a4acc39b5ad010e0",
"style": "IPY_MODEL_6122fe022dc84f6080cffc6336634c71",
"value": true
}
},
"a8031c4ab2724f589fbb4f9a638b7472": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"a8072c434d794bd1a6a4a2c46463767f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"a82bed00664b4581a07adea94f7bbd36": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"a82c57ec2867419e8ae47383e129e3c7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"a8577ffcd5a4488a89e00ed9b4fa534e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a87249f3232847bb9f51c65359749074": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_8b661c39ae364e8b85fbc8e7a1b11f71",
"IPY_MODEL_73e62db1fdf14e66bf8510c6bc1249cb",
"IPY_MODEL_9f6db7b3679e4d1cab62cbe2b782dfb5"
],
"layout": "IPY_MODEL_cdcd835ec55c4afa81ce2796a75fd670"
}
},
"a89daf2ab7f04c35971f28375e7a1bae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a8a4a634f3a54038a8b39facb93cf014": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a8a7125741d5447f8baa825cffb4c9b5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"a91df016660142d18fa423c8a0ff2b27": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_68adeee8bffa427ba1152a8abc44f356",
"IPY_MODEL_387d099a82454608a15c3f54566f5535"
],
"layout": "IPY_MODEL_0511b975673f4b9da48f8a96fb980c6a"
}
},
"a9374932676148d19afb94cc007c1de4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "No-Data-Value",
"layout": "IPY_MODEL_93612f610eea46c8859de49816bba374",
"step": null,
"style": "IPY_MODEL_b2c0b18b03c0489bbbe1f2f7f08ddc93",
"value": -99999
}
},
"a9deb58b83ef4039923ebca2fed114f7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_282d689ff0a14759ace45de530127050",
"IPY_MODEL_f995213008bd4fc298cd2306000b0033"
],
"layout": "IPY_MODEL_626cbf94b9194a5a8dbe89b86cd09541"
}
},
"a9e4386f79ca4d01abcd58e78fb16a9d": {
"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_a2b17e6858a440e6aecc694df2ecebf2",
"style": "IPY_MODEL_4c76a8317d9749478c0669edfbc7d228",
"value": false
}
},
"a9e9a5b96264426b93130a358b85a6ab": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Projection:",
"layout": "IPY_MODEL_66fde30d828e470fb1cd32143d01f812",
"style": "IPY_MODEL_2fcd637af6c1417f9a39b81125bb6a08",
"value": "EPSG:26914"
}
},
"a9fb4be5658e4e3bafce95de7de2487a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"aa003954ce9546e68d83b51ac2846b9a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_9b8630eacea44fa891b8bd37ac5f0157",
"IPY_MODEL_1308974476774651a03608feb2348ee5",
"IPY_MODEL_3542436fe2bf4d7f87fe4ac51166e284"
],
"layout": "IPY_MODEL_5b3ec45ee1694c108adcc6ac7a00305e"
}
},
"aa14d0ea937b42f39a587961b382a81b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"aa2b03f8348a4acba193afc8a01a3a47": {
"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_e628de4800d94de89d32cdb313129e6d",
"style": "IPY_MODEL_f994824182184d16a5da6a0df5ae5244",
"value": false
}
},
"aa78468da2164d7a8016d615b656d5a0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_bc0afaf0bb814f009ebb732a4e8debb2",
"IPY_MODEL_32095945925e4041baed60f2cbbfc95f"
],
"layout": "IPY_MODEL_b801ec0e653d46e48118c5be5f15b0c2"
}
},
"aaaf710e3b8e48408af624609d5360a1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"aabd367bead3466d8b70fbd863982792": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Save as:",
"layout": "IPY_MODEL_071d58380a354550849094bebc95f0c7",
"style": "IPY_MODEL_821394f6e36a41349debdc8ec1178f98",
"value": "Gravity_Magnetics_drape60m"
}
},
"ab0ab048ab0648d8b6adcc8ddb743bf8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ab2ace3429b84fedbcfaf5da84b78580": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_ec37b52c27924a9da0dd208a483f12c3",
"placeholder": "output filename",
"style": "IPY_MODEL_6d879306c5694226b34194988a7b8ab3",
"value": "FlinFlon.geoh5"
}
},
"ab5c7952a1564427afbd0891c8b8bd85": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"ab8cfc955bce49fd9d539a79f1199157": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"ab8dda46eef14c8586f4ecc6fd75cbc6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"abcf129fd6d84393aaded3282953f938": {
"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",
"Z"
],
"description": "Data: ",
"index": [
2
],
"layout": "IPY_MODEL_0e39f6aba7a44c909dd2f745ff2c4d82",
"rows": 5,
"style": "IPY_MODEL_d9e17ea6e75a4259b4251d071ca11cb1"
}
},
"abd7f7f5954d4d47bb16610216be2be5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"ac0e675b7d1b45a4a1996f3475f98a8f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_cd93a3818f7e46daa750ed5b08112460",
"placeholder": "",
"style": "IPY_MODEL_4932da46586a4ff4a669f37f156048db",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\FlinFlon.geoh5"
}
},
"ac287fee3d344117800f06c468ddeac5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ac59823d8b1b4fe091b104487895c781": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"acc5eedbbadc46e8b3fd5282d5ece1e6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"acfec0f4c909432f8acfe3d3ed9aae6f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_d7db254398154f37acd535d5be3cb6b8",
"IPY_MODEL_8d5d4e29aacb4054820103e9664a38a1"
],
"layout": "IPY_MODEL_f0a800b33ec84ec481dca48e4f3e7b0f"
}
},
"ad55aea812dd40bfb50e52b26960a4f0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ad73e9c0285f402688147499367a71f9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextareaModel",
"state": {
"continuous_update": false,
"description": "WKT:",
"layout": "IPY_MODEL_526d204f3af14204a52d52f17b470d0e",
"style": "IPY_MODEL_b824e1e571a34521955b3e26744539a0",
"value": "PROJCS[\"NAD83 / UTM zone 14N\",GEOGCS[\"NAD83\",DATUM[\"North_American_Datum_1983\",SPHEROID[\"GRS 1980\",6378137,298.257222101,AUTHORITY[\"EPSG\",\"7019\"]],TOWGS84[0,0,0,0,0,0,0],AUTHORITY[\"EPSG\",\"6269\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.0174532925199433,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4269\"]],PROJECTION[\"Transverse_Mercator\"],PARAMETER[\"latitude_of_origin\",0],PARAMETER[\"central_meridian\",-99],PARAMETER[\"scale_factor\",0.9996],PARAMETER[\"false_easting\",500000],PARAMETER[\"false_northing\",0],UNIT[\"metre\",1,AUTHORITY[\"EPSG\",\"9001\"]],AXIS[\"Easting\",EAST],AXIS[\"Northing\",NORTH],AUTHORITY[\"EPSG\",\"26914\"]]"
}
},
"ad7abe63767a4660a79c6c414d913c93": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ad7cce75b8d047be921f99e2791c652e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"adc6adc207be48ee9acf10618d53197f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ae7b58ed74274cba8c843ad571a7fc7b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"aea4c386a8de4c39a57a19624dd7429c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_2e1ae8209a72455aaaad06169a0aa91b",
"style": "IPY_MODEL_9dbb561ba89347eea88d3c59a4f6cb66"
}
},
"aea9b8cf43394cd2b77a99f079a455a5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_186b2f6af35445e082c2b88d420c5f34",
"style": "IPY_MODEL_4880fbffa67a48b2b48722dae96e7bfb",
"value": "Save to:"
}
},
"aed6f2db454949fbbf2a4e3f31b919a0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"af5284d8bed341659c7ed5dd674f7d31": {
"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"
}
},
"af6a6ba5fb1947459dd25dcd5f2e740f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"af79ff19262d4a9db8b532c63dcccc99": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"afa03ff1becb44e1b19af4037fd657c2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"afacd2d1530d48289a51eb676d7e797f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"afc6ef0b5bde426eb7d831fae9e85d98": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"afde0acafb7e45e4b8e886b966910b10": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"overflow": "auto"
}
},
"b0b3587116af474fb30c409b8705b950": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b0c5bd401be14f80b10c1ae1df0cbd07": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b0f21ac41ad94722b2057243a21e33f0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Export",
"icon": "check",
"layout": "IPY_MODEL_a0206276d09842beb624c0022453a5c1",
"style": "IPY_MODEL_cbc626b938864265bdc890f2304a32b8",
"tooltip": "Run computation"
}
},
"b0f2534e7d81435abd9f9cae37e32429": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b14d8dc48c7843ab834a371562b49595": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"b16e4eda79f94ac3befdf61bf31a2c04": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b18955aa307d49deade78df0a7b1c8f8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_bc1f0dc7d7eb4955a52402ccd2a4b6d3",
"IPY_MODEL_ec3817cf52af41bab9de0a01b45657d3"
],
"layout": "IPY_MODEL_7c18e288fa4e456b8c31d592bf1c0deb"
}
},
"b18e9b80e2734a7c894befb54d889aab": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b1d472f0b5d4459e9db65bccb6df7d17": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b2362ccd64a5446499b2497fc847cc48": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_82335f8f2555425f9320c7e4457f42c0"
],
"layout": "IPY_MODEL_d8311694d4ca4b3fb70876d1574543b7"
}
},
"b25445cb8d1747749e7447f0520c7637": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b268382a0172400d81e9b976f25b7786": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b27baea4e6e1496e87254c576eac9b95": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b27e1e569c3d425a83cc5caad83acddb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_01b4b4e62b21440e8ce15039289fe758",
"IPY_MODEL_fbae726e7f6f454eb1ecc7ceeec1dbd6"
],
"layout": "IPY_MODEL_e3eb61c3a3054b66b2ed0615043407b9"
}
},
"b2b8ee47dba542d994b7cf153148eb19": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b2c0b18b03c0489bbbe1f2f7f08ddc93": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b2e1ba6781f14099a320cfce8d2b047d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"b2e4b13379d14a3c8440c246d7acc56c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_0e88939b641e4c61974157f2468b7cff",
"IPY_MODEL_e0cce22dce664ca49fae2f9e1497a259"
],
"layout": "IPY_MODEL_8ae9e2b4c6a04fe29d4f3c900750bd84"
}
},
"b31dc9e85c4b4e69970d33378052aac6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b324f387ee0b4251ae1b9ef9ff5c541b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"b34903d7a28f440cb708e1a39927797a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b353849b0fb746699f19a1b054646ccd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_9cc5ec3a97de42028d5562444c8867a9",
"IPY_MODEL_88957f0110c1483bb372eadd14227afe",
"IPY_MODEL_580ff06b4adb43678055a0817c1f84c8"
],
"layout": "IPY_MODEL_b86ec447b1ad443a9bc7091ef4636377"
}
},
"b358785b23a7492897d69246e80d5314": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"b362c94a3a854363a749852f96183305": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b3665c80d1354d639a597ce2739eec48": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b374a014883648219a698eb19532288b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b3f0c67f5e86404e87ac7b37f6ce6001": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Export",
"icon": "check",
"layout": "IPY_MODEL_03245a5df5634268aeb5204cadc0e518",
"style": "IPY_MODEL_264906e97f374b5b96bccfacb8d098cc",
"tooltip": "Run computation"
}
},
"b400e35850cd4e4a947f2442b5f3994d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"Z:\\"
],
"index": 0,
"layout": "IPY_MODEL_f87bfe1d25c144e8aa99429dd4c8719f",
"style": "IPY_MODEL_c9e4bbd4d9c749dc8dd654975dce1504"
}
},
"b40e4af8a70e45b1bae72162747ddda6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"float",
"RGB"
],
"description": "Type:",
"index": 1,
"layout": "IPY_MODEL_e3e414ca69c04645a39f1a45ce45fee2",
"style": "IPY_MODEL_6c43111a92374ae3ac01501e75d5d7d4"
}
},
"b45abf8a74674cb0abd2ff3f3ad2d106": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"b4f9afd452f34fada2f03c504a4c815c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_75c95e093655432cb1c0caa3c881d277",
"IPY_MODEL_3d5018ef2ce746fe8f24ab442b4b2ff9"
],
"layout": "IPY_MODEL_69ad116a03cd41e8b18da27166307de5"
}
},
"b500e01003eb4cc5bc35a4648adf1a9a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_7e5e29e4d369426da26a6d836a896984",
"style": "IPY_MODEL_6e956a0755a5498cace60a7c260c1538"
}
},
"b5035461fc364f0a9316232a63070fcb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b5b5d56eb68d4178913f6ad98d0fc34f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"b5db9251fcd541e784392ea88eb9652b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b5ec999d3b4b43ea831dd15d5a9ab4a4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_0ae2b33aeab7484689e84fcc5267c76d",
"IPY_MODEL_8fe5fbd2b7264b8b959e7533af0d1d0b",
"IPY_MODEL_bb2012134dd647ac868e1566a7e21967"
],
"layout": "IPY_MODEL_f0c1b012ddaa4531adf0f0e7bcc96edd"
}
},
"b605309e9c3945ca8e1550f4550a6f1b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b60fe6c11a864f1e8035810ecae17b1d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_20531519a6d942a985fc0ec27929fd25",
"placeholder": "output filename",
"style": "IPY_MODEL_bdd3ad809a8f431dafe0edd54dde6441"
}
},
"b69c3b373ac142d1b09d194647f55f32": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b7114f6432714af8af3214cd29db9f6c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"b712ed3ee3c04ee4935aa80ea0e3ccea": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"b77bd33c3db9492192554c60d0375e57": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b77fc5bed12647f38bc02f3f6d6c141f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b7800cd7997d4977add2a5861472a5f6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"b7922f5478ce4ce89782eebfb9f9d44a": {
"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": "500px"
}
},
"b7dbd91ae2204cbe97b5b6d9e5a99d64": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b801ec0e653d46e48118c5be5f15b0c2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b805455005f340788652791232285d37": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b809e5d9278c4f6eae566705e07e7d4f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_b400e35850cd4e4a947f2442b5f3994d",
"IPY_MODEL_cbeb84dbbe284e3e9a7270c339f5d8ce",
"IPY_MODEL_2ebc4937244d40cf83d3ded7f127913a"
],
"layout": "IPY_MODEL_12b73224e32a473aad871561cc436f04"
}
},
"b824e1e571a34521955b3e26744539a0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b837007107484e19bced57d00d116c16": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"b86ec447b1ad443a9bc7091ef4636377": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"b888697841de4136a28021ce5ca40e95": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"b8b75c7140204ffb958504c611f542f1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"b8c811b291794edda9c18c63c89211cc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b8d2ecb5142644c2819531e8f7aeeed6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_06d49df911514a76b502f7cd1bb35b5e",
"IPY_MODEL_988e3182e7d94678b925146eaf9a3d51",
"IPY_MODEL_8c9564ee72704c728f718d43f8e6980e",
"IPY_MODEL_5eb825b8b5d94fa08d8de5ba67b1a091",
"IPY_MODEL_47c5f081f3ba472798c7eb5e4491a706",
"IPY_MODEL_a38d3a383d5a46a7bd34874c377534fd",
"IPY_MODEL_c4d099be30f54cfa90f721a068b383f1"
],
"layout": "IPY_MODEL_d87fc91dc5984e98aca11a1ed5e66833"
}
},
"b920edbbceec4a27b3d0f180a748fdbb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b966bc5bcfa84e2b8a4a33ed7cdae026": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"b98fd5caebc844c6bcd1e39161d4c2f2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_369e345e9fd34ec4a8192c0aa68e99c7",
"placeholder": "output filename",
"style": "IPY_MODEL_c91d0b707a55455cb5a7f3196bd4633c",
"value": "FlinFlon.geoh5"
}
},
"b9e7a7639dbf44dfa50d856009a0badf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ba26d7013b0845ccaf7634b9dabcf47d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Export",
"icon": "check",
"layout": "IPY_MODEL_111d9056ce02409b8dd91d0169ed4da9",
"style": "IPY_MODEL_0c4370e7e03648239de1d7808fb3b96c",
"tooltip": "Run computation"
}
},
"ba26fe9ae239470f8741afafc1446ec6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ba2e73d0920146beb0c14e6ece71548d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"ba413159f48e4696b3e905df26c2bd79": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_94c8e44575b04defba60c0390e23d30d",
"placeholder": "output filename",
"style": "IPY_MODEL_05ff645a620049dfb0808ba13df3ece3",
"value": "FlinFlon.geoh5"
}
},
"ba5d1bbd48d84baca292c221218de5b3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"ba60c9749e714c59b8ef2651a985c8fb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"baa1476d65694899b68442203a43bb5c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_fb354a68a9624fcc81b0f91b5e508f63",
"IPY_MODEL_d8fb3f5b65ed4a2a99f43d839016406c",
"IPY_MODEL_7ffd44131361412d90964223dc1b62a5"
],
"layout": "IPY_MODEL_33fe6174ce1c4647bb034b6d0d519376"
}
},
"bac1777bde864457b993d6502e7431c7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_38d5a037833b4b238170c953e6b59692",
"IPY_MODEL_7104cc520357410bb6bedbc9b2f1a264",
"IPY_MODEL_b40e4af8a70e45b1bae72162747ddda6"
],
"layout": "IPY_MODEL_7973adf8e85347aa82eaec6862f16424"
}
},
"bb0be385c1f74e21a9060bf8d440c8f5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_9febc3bd73a649578ff8ed6a974dea5b",
"style": "IPY_MODEL_4f7d4da9bd014a42961380ae3d0cbbf0"
}
},
"bb0f53256ed94523b423c93d9c174e9b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_555d01f183074480b123a7e184212e93",
"style": "IPY_MODEL_4c79f0813eeb4ccb8b59455c8e29ba83"
}
},
"bb2012134dd647ac868e1566a7e21967": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_3e76b9b4636f4c9580ed5647046e9f12",
"IPY_MODEL_fc14b850e16a432b803201070fc1cd30",
"IPY_MODEL_865e88a338b64fa486021542ee0e2b0e"
],
"layout": "IPY_MODEL_5142759c0c564aa2949f3aa7b4a356f6"
}
},
"bb78ccefffdd497e9670411734893b75": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_fca578d023c144b8a4547371ff4fb889",
"IPY_MODEL_a02651cec70b42ceb13b2df47d7e2d08",
"IPY_MODEL_9c6cfb172e034ac7b9558ca056bd2e64"
],
"layout": "IPY_MODEL_4ee614e0f64148c9bb7d5d91333c8b29"
}
},
"bb8c60e689a04a928210486d373617de": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"bbb4bd477b8040a591eed4018ab813cc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bbca9dcc0a894b51a4b8c40e43ff0f6d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_681b359e5a1c431a9c4da23bc8f39292",
"IPY_MODEL_1ad573fc4e1e4772a5882dcf2cc6e622"
],
"layout": "IPY_MODEL_afacd2d1530d48289a51eb676d7e797f"
}
},
"bc0afaf0bb814f009ebb732a4e8debb2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_0b83387bc1a646f39beeab5872911deb",
"style": "IPY_MODEL_6e9480d88b354ea19ed426e3f231b9ef",
"value": "Workspace"
}
},
"bc12594a8f2c45e299a9f82183db02e2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"fault_splay1",
"fault_Cliff_Lake",
"fault_Other_FlinFlon",
"fault_Club_Lake_splay",
"fault_Catherine_splay2",
"fault_Birch_View",
"fault_Dion_Lake",
"fault_FlinFlon_splay",
"fault_West_Mandy_Road",
"fault_Channing",
"fault_Ross_Lake",
"fault_Louis_Hidden",
"fault_Lake_View_thrust",
"contact_Schist_Lake",
"fault_Burley_Lake",
"fault_Dion_Lake_splay",
"fault_Green_Lake",
"fault_FlinFlon",
"fault_Catherine_splay1",
"fault_East_Mandy_Road",
"fault_Other_FlinFlon_South",
"fault_Catherine_splay4",
"contact_Stitt_Island",
"fault_Club_Lake",
"fault_Tailing_Pond",
"35_Hidden_Reservoir_Hr5",
"29_Hidden_Reservoir_Hr1a",
"60_BlueLagoon_Fb2",
"20_FlinFlon_Undivided_Int_Dykes_D2f",
"04_Boundary_Intrusive_S4h",
"53_Millrock_Rhyolite_Fm4b",
"19_FlinFlon_Undivided_Int_Dykes_D2b",
"18_FlinFlon_Undivided_Int_Dykes_777_D2b",
"06_Phantom_Lake_Intrusive_S3a",
"21_FlinFlon_Undivided_Int_Dykes_D3a",
"43_Millrock_CHLSH_South",
"56_Millrock_Basalt_Fm1ba",
"17_FlinFlon_Undivided_Int_Dykes_D2",
"32_Hidden_Reservoir_Hr1b_SW",
"11_Missi_M3_NE",
"13_Missi_M1",
"07_Annabel_Granitoid_S1",
"45_Millrock_Gabbro_South",
"01_Late_Intrusive_S5b",
"31_Hidden_Reservoir_Hr1c_SW",
"52_Millrock_Rhyolite_Fm4_West_check",
"55_Millrock_Basalt_Fm1bf",
"34_Hidden_Reservoir_Hr2b",
"03_Boundary_Intrusive_S4b",
"42_Millrock_CHLSH_North",
"26_Louis_L3",
"23_FlinFlon_Undivided_Int_Felsic_D4g",
"30_Hidden_Reservoir_Hr1b",
"59_BlueLagoon_Fb3",
"49_Millrock_MVR_Fm5d",
"44_Millrock_Gabbro_North",
"27_Hidden_Carlisle_Hc4",
"22_FlinFlon_Undivided_Int_Felsic_D4e",
"02_Boundary_Intrusive_S4a",
"61_BlueLagoon_Fb1_NW",
"05_Boundary_Intrusive_S4g",
"39_Ore_Callinan",
"38_Ore_Dan_Owens",
"40_Ore_FlinFlon",
"Inversion_VTEM_Model",
"Gravity_Magnetics_drape60m",
"CDI_VTEM_model",
"Data_FEM_pseudo3D",
"O2O_Interp_25m",
"geochem",
"Inversion_DIGHEM_Model",
"Topography",
"Data_TEM_pseudo3D",
"Data_ZTEM"
],
"description": "Object:",
"index": 66,
"layout": "IPY_MODEL_f8c52d540d3f421a871b8a9f85850974",
"style": "IPY_MODEL_670bb46f5c2947b1a6535a2c48a28aa6"
}
},
"bc1f0dc7d7eb4955a52402ccd2a4b6d3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Projection:",
"layout": "IPY_MODEL_a7a2e1be041f4ae0b4fad6ff36b5ca54",
"style": "IPY_MODEL_6b2417868f56450ebbd06fda859076e9",
"value": "EPSG:26914"
}
},
"bc20a188b3144b6abed1b9964d7415dc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_24eb1c0e41ec4aa8b363b54476f5e93c",
"IPY_MODEL_274aa5ce31d342478b839a6ebe0f0d5d"
],
"layout": "IPY_MODEL_bf13f7c1b6044bd28c38a8c75541e9b1"
}
},
"bc34dd02d0dc45699e064cab6e0c25cd": {
"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",
"Z"
],
"description": "Data: ",
"index": [
2
],
"layout": "IPY_MODEL_f2e62f74ce07446fa0077c34c4e1ed61",
"rows": 5,
"style": "IPY_MODEL_9cc166e5a22e44d0b793ea2e738dd6c8"
}
},
"bc38c58a65814085bd97a0a2039f77ef": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bc3aea27f69b454f91348149f80b1587": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_c8fa9c707aef43e0ab47186d2a35a256",
"style": "IPY_MODEL_0ad4885afe7d4024932b200d9197cbb3"
}
},
"bc73ad0a0823448e9574d159e7842f31": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"bcebcfe2058e4fc2a7764d60c56a165d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"bced5b6bb9e846258cd49dbd24552e91": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bd0785213a914b7a864a450b03b147f0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "75%"
}
},
"bd2afe66795e49f9835274f00e5785f0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_b0f21ac41ad94722b2057243a21e33f0",
"IPY_MODEL_eae2898392eb4a94a217d983747cd126"
],
"layout": "IPY_MODEL_d50368fe960e42b6b020554cdce2a6bc"
}
},
"bd49ecd4aa8d46f5bf4ce50178407caa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"bd4c443dde43410b85130b63cda8c40d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"bd78833d96484ee2bc15e6ea1ecafb8d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_ca09c1196d074ddf85abc70d7f0fcf35",
"style": "IPY_MODEL_6bd7f5a1e4894249b3bb75c4920e35d0"
}
},
"bdad99e7c8344789b8eaccfec769ea48": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"bdb3cd8590a949c880b4db8e9d8b99be": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bdd3ad809a8f431dafe0edd54dde6441": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"be1612fca5a94d7ea95110880d2fbf9a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"be3e35c7136d465a9983b8c51331510f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"be648bea5c084a888fa395f7a1ac7b45": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"be940c4b81424723b0eba759863b550a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"bea22c6b2b094192bce25af89cbcb066": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"bebb3445499440df8841867bd033d6b2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"becf6a8166494be09db37c97597a0fbf": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"bf13f7c1b6044bd28c38a8c75541e9b1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bf5420f544724b1581b41ca975283819": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"bf8cc1e69e1040bc9eae812fc16ce174": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"bfd570b3863146bc83dc57fc17c9bde0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_e2d0bece57c9478a8d126ee99047265b",
"style": "IPY_MODEL_c908ad912d704e799ec3046658e1f287"
}
},
"c006be7f0394444cbbfeb2ba827eb2ad": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_11860df43a49443399c74df86a99f63a"
],
"layout": "IPY_MODEL_e29caf14f08f44cf9938ce69cf0c94bb"
}
},
"c02eff29e27f4986acde0cdeb440cd33": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c06d04163b3c4bf2854d367d90e97c5f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c0b90510847d4abc842f3d68a2fb8a3d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Projection:",
"layout": "IPY_MODEL_ff0b6b4b4f944ff4b3d980247b5c44fc",
"style": "IPY_MODEL_4dcc71953b51409a814cc89fdbdf327d",
"value": "EPSG:26914"
}
},
"c0ba335849d2409f9bfb995cac0b747c": {
"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_5f42b308305a4a499038c55c9b30780a",
"rows": 8,
"style": "IPY_MODEL_3a925806e924466e89e9304d282686a1"
}
},
"c0ec801ddfb44ec3a8fa60b2fb60b842": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_723bb09dfb7445d2b65aaee88a79b8c0",
"IPY_MODEL_a2a8553495a149ecbf5eb75bac4881cf",
"IPY_MODEL_214fb1c399394b288bd5ffbb390331f2",
"IPY_MODEL_2852ce0a97454ff8826307e4b80b14f7",
"IPY_MODEL_6bcf1f1e7a354475bd22964712e5be68",
"IPY_MODEL_db6f5b367faf44cb89af6b72f1b73074",
"IPY_MODEL_0afa2d113f4c4c75baf4ff0c0f435180"
],
"layout": "IPY_MODEL_afc6ef0b5bde426eb7d831fae9e85d98"
}
},
"c0f56034fb1d482ca78371a6bad65876": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"c0fbcf20dfda45abb3ae8dff9d43254d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_58549bd89ff64caf80b1d391b6207402",
"style": "IPY_MODEL_024f323b2f24439f9287c3a1b12a7ae4",
"value": "Monitoring folder"
}
},
"c0ff0807e6694bbc8f1bc7243b56d170": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c1059a208be14e6a99fa76951d41c701": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c12fdd1ec6fa401d8c6202b9f2e7e13c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"c14d2c30e5d74e04bcbc5a4b120c74b0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"c161ec2d66614e0fb63eec16e6983ced": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"c17b9fd4a9554066b1e8756812400b05": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"c208f04084b64eff84314779e6a519ac": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c223cc5112924ec9a9566aa5b3f4d685": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"c27a96b4ee8645b7bc6a046fd14e1447": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"Z:\\"
],
"index": 0,
"layout": "IPY_MODEL_efa50a74cf8a42d8aa4c73d8c4d2c199",
"style": "IPY_MODEL_205e78f0c0fb4918a30d63ad47b465a3"
}
},
"c2a8da9ae8ca42ffb58491f6b27f2f96": {
"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_4507b69e198141c7acbd10077f8489fd",
"rows": 8,
"style": "IPY_MODEL_148bdbd56908445e9670dce1bf19c0db"
}
},
"c2bc5384750a4b3d8a25a27d8909644e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c2c18728784f43099e36431d30a4bcdc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c2cdf1fa758d44cabcca4a08ff31cf88": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"c2e24d95c34f48bc8e4f1ca88d78ecce": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"c312ee2a1fed4b20bd1ba08d7b395f3f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"..",
"SimPEG_PFInversion",
"Temp",
"FlinFlon.geoh5",
"Gravity_Magnetics_drape60m_Airborne_Gxx.tif",
"Gravity_Magnetics_drape60m_Airborne_Gxx_Colorbar.png",
"Gravity_Magnetics_drape60m_Airborne_Gxx_RGB.txt",
"MtDore_TMI.geoh5",
"Octree_Mesh.json",
"Octree_Mesh.ui.json",
"Octree_Mesh_v2.json",
"input.ui.geoh5",
"input.ui.json",
"options_tree.json",
"test_no_root.py",
"tester.ui.geoh5",
"tester.ui.json"
],
"index": 3,
"layout": "IPY_MODEL_b888697841de4136a28021ce5ca40e95",
"rows": 8,
"style": "IPY_MODEL_71357faba03f4633b9cefa8d39a78f14"
}
},
"c3417273347045438a6d5653e71dd3bd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"..",
"SimPEG_PFInversion",
"Temp",
"dask-worker-space",
"Crossplot.html",
"FlinFlon.geoh5",
"Gravity_Magnetics_drape60m_Airborne_Gxx.tif",
"Gravity_Magnetics_drape60m_Airborne_Gxx_Colorbar.png",
"Gravity_Magnetics_drape60m_Airborne_Gxx_RGB.txt",
"Inversion_.json",
"Inversion_2.json",
"Inversion_L0L2.json",
"Inversion_L1L2.json",
"Inversion_MVI_susRef.json",
"Inversion_MagSusc.json",
"Inversion_MagSusc_noref.json",
"Inversion_TMI.json",
"Inversion_test.json",
"MtDore.geoh5",
"MtDore_TMI.geoh5",
"Octree_Mesh.ui.geoh5",
"Octree_Mesh.ui.json",
"Octree_Mesh_2.ui.json",
"Octree_Mesh_33.ui.json",
"Octree_Mesh_44.ui.json",
"Octree_Mesh_55.ui.json",
"Octree_Mesh_done.ui.json",
"Octree_Mesh_done2.ui.json",
"Octree_Mesh_geochem.ui.json",
"Octree_Mesh_max_dist.ui.json",
"Octree_Mesh_max_dist_10m.ui.json",
"Octree_Mesh_ore.ui.json",
"Octree_Mesh_padded.ui.json",
"Octree_Mesh_surf.ui.json",
"Octree_Mesh_v2.ui.json",
"Octree_Mesh_v3.ui.geoh5",
"Octree_Mesh_v3.ui.json",
"Octree_Mesh_v4.ui.geoh5",
"Octree_Mesh_v4.ui.json",
"Octree_Mesh_v5.ui.json",
"Octree_Mesh_v6.ui.geoh5",
"Octree_Mesh_v6.ui.json",
"Octree_Mesh_v7.ui.json",
"default_mvi.ui.geoh5",
"default_mvi.ui.json",
"demo.ipynb",
"edge_tester.geoh5",
"input.ui.json",
"live_update_demo.ipynb",
"live_update_demo.ipynb.zip",
"options_tree.json",
"project.geoh5",
"testPoints.geoh5",
"tester.ui.geoh5",
"tester.ui.json"
],
"index": 5,
"layout": "IPY_MODEL_4046afab4f144a2ba8686ab3a8278f0f",
"rows": 8,
"style": "IPY_MODEL_0f6bef2ac15e42a39ee682958a943427"
}
},
"c3ace51f8ff64e2ab5865aa2291886aa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_6f0f1de9109f4410ba42ef37a44f8c01",
"style": "IPY_MODEL_dacbf106e52f4ca7bf76649aa6d751d2"
}
},
"c3fa56c79e8f47acb3246a1515ed3927": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c40e74f6892b40e5a683d9455c7e526e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c463005628c34868a414e72558b7da56": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c476613900b24b5c9c65881394432c3f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c47e08502ce247c994f7cb08c6736382": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_22f8a36086ee4629833f96d06736a8c9",
"style": "IPY_MODEL_96a86c2ee8934d6fba570e782963a722"
}
},
"c4a5e73eda16469ba2105a3137a502bb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Save as:",
"layout": "IPY_MODEL_d00eccdaba1c4eff9afaeccf0971c9d9",
"style": "IPY_MODEL_4053e7bd8b5543e9b683488679957e20",
"value": "Workspace/Gravity_Magnetics_drape60m"
}
},
"c4d099be30f54cfa90f721a068b383f1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_c87e34772d69474c99cf37315747cf1d",
"IPY_MODEL_57c887be4acb45858d99f13896f691d3",
"IPY_MODEL_08cb4bf58e274eeeb78856d3d9d9ca9b"
],
"layout": "IPY_MODEL_30e731c997d347c0aed94abda518fbda"
}
},
"c4f538c2ea0045f39207d25012e82c81": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"c550c94aa55e41718ff75ff7954b199d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_3e293ccf2164434a942acca18016a344",
"IPY_MODEL_eba1886127ef4b50bb3cb5c55ce82b60"
],
"layout": "IPY_MODEL_7708e1f44e70485f99a3ad2bc158ef41"
}
},
"c57498e540374415a734e4f098d54361": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c592775d428343eeb5002cfe549334ea": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_741c1950dcf94648ac1c4448081d662a",
"style": "IPY_MODEL_15f238a9c2d84d73aa5a8e3ed88ee8f7"
}
},
"c605aae3c6894c5db554765fec08d3f3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "75%"
}
},
"c60f04168c574a508c18b994ba4a3750": {
"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",
"Z"
],
"description": "Data: ",
"index": [],
"layout": "IPY_MODEL_26933df903064ca48fcc5f61c4f0623e",
"rows": 5,
"style": "IPY_MODEL_a692190f84e04892a4a3b46fe6078423"
}
},
"c621de334c334e679597c32be0ff3e69": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c630f42d1ca64e9a9bfc39bc2db8e38d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"c6620d30b3a34c02ac6c034d3b6e5e0d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c694bbbe902e43feba1130bee9d57858": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"c6dcb29481264000a1c5876516d0f341": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_e1da7b77d8ac4329b07b378c9ebef7f8",
"IPY_MODEL_fc27c71c3a144b5691fb2d7b94803be5"
],
"layout": "IPY_MODEL_2465ded787064d41aaaf4d1bedb96fd5"
}
},
"c6e7f167addd4cfb93aa0bd6ef7acc4a": {
"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": "500px"
}
},
"c6f742bcdd4a4c74935cb2ddc3830e16": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c728040ed826464bb2434d6fee3030d0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_74c11992bf7745a88ae3a2b9e22a9c4c",
"style": "IPY_MODEL_3f370b10ceb04a69a2b5da4537e7193c"
}
},
"c769cff6b36b4783a471408b43d80a73": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"c7867e5654de4e798a7d03af99fc2919": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c7910fa5f4f941539e3d16322c7666e2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"c7d1e57666994f9bb6565c2ba9fac0a7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Export",
"icon": "check",
"layout": "IPY_MODEL_811f7169336149d4adb2195463e7719e",
"style": "IPY_MODEL_e69aa4a15d234dbb8b46e341d69e7742",
"tooltip": "Run computation"
}
},
"c7f06b88f7a341f4b3f7b187dde22c0c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "75%"
}
},
"c7fc3b2aebc94b9396bba154d13ac096": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c80d7efaa8bd4e43b09f676bf3f2bb56": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c8117fa3d8094b959fbcd31459ca2e1f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c81be0f1b8b541cd9ca2878a2e52a4a4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"c82a011b97fd435797183f5ee2b523dc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_8c2a9b5cb68f4b078c4593136fb3094a",
"placeholder": "output filename",
"style": "IPY_MODEL_0d6ccc65f6414c17a6e5fe3a9ebc2be5"
}
},
"c83a2ff85fb641598b17eb90a184703b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c85bfe3fffba4c8da2e88f50852ad615": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_69657dd6a058486981cbf1c45b7cec16",
"style": "IPY_MODEL_feb1e37080ae466d90771a560254e1c5"
}
},
"c86ce3714e4545e295f6570d7785e65d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"Z:\\"
],
"index": 0,
"layout": "IPY_MODEL_2e098fd37b424fd2a0a0d291f5872f12",
"style": "IPY_MODEL_d5f9d5001a2d42fd9d37a9467ecbc1bc"
}
},
"c87e34772d69474c99cf37315747cf1d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_c630f42d1ca64e9a9bfc39bc2db8e38d",
"style": "IPY_MODEL_f866dce7eb51487182d2d7ee27c11e8b"
}
},
"c8a36711af544267b0b6554d7c911372": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c8fa9c707aef43e0ab47186d2a35a256": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"c903c30ed9154540889df6e58a7ce055": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c908ad912d704e799ec3046658e1f287": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c91007cda9314d8880398ccd00ffadf5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"c91d0b707a55455cb5a7f3196bd4633c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c91f6736a5d742da841b353d1196db47": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_7cbd2e8660714ae9b5d1d31275c53f9e",
"style": "IPY_MODEL_e15306edce1246e68bda4e20dd70eed1"
}
},
"c92cf9a0ec514f23b2ec207554d39942": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_153b74a7e064445db39112bf303b356c",
"IPY_MODEL_60dbca6dc22b4b589e982774de36ee4b"
],
"layout": "IPY_MODEL_2e0eadd51468486bab2b97a1c95d35ff"
}
},
"c9c7dc217f904dcbbf20a6b6649aad9d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_a9e4386f79ca4d01abcd58e78fb16a9d"
],
"layout": "IPY_MODEL_6f01a244226d4df78e9e860a05358e42"
}
},
"c9d0962c895d48f3b382424973ff9c37": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_cb0ef943ef4d401397f445f628d07275",
"IPY_MODEL_cb027f63cd73483daf9d8c1b3247eaef"
],
"layout": "IPY_MODEL_1e6cb8eb8c414e58b6524b677b306a79"
}
},
"c9e265b9bc3f4a9ca080039f2584870d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_ef5d041bc2084397be4916153f00fb6b",
"style": "IPY_MODEL_50f7047ac4cc44378c725cb1f0d718ae"
}
},
"c9e4bbd4d9c749dc8dd654975dce1504": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c9f5a6251d8846e5b2abbe00dc57540a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ca09c1196d074ddf85abc70d7f0fcf35": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"width": "auto"
}
},
"ca0bfe6c573542e3a57b0a316ef30639": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ca12d7f5db2e4df884991aac9eaea99e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ca1f4aa8842f43d499570ae67a306f33": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_4ee2a0cec3f943e2b35e2b639c8ca035",
"style": "IPY_MODEL_7f83ae788d1d4427bead73a3673d75f3"
}
},
"ca484be98d7c4650aa6f31405751e35f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_6a3b4e78b0f747768ee1dde64c6f5e7d",
"IPY_MODEL_66c2bc4fb4f4491db5bbf99da3e5f337"
],
"layout": "IPY_MODEL_0da3a95173dd4b8a9491aa81a4cf6b93"
}
},
"ca5c2513e7b3475392747168f6a4f6c5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_db3032cb907742b8bb1a15c225b64e4e"
],
"layout": "IPY_MODEL_09352a08730b4802a608f1527a40153c"
}
},
"ca5c57a52edc404d9f6b0e60c7285fce": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"ca6c846a3dc949bba8b25d96f046c7f4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"cab4b399d304465f9d4007a817d9bf4e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"cac14bc1cc1d42e99f0fd2a9ed106c03": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"cac7f35a2a3f45e78de1428937724091": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"cad9bdb59d554709a352189b82f57d59": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"cb027f63cd73483daf9d8c1b3247eaef": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "No-Data-Value",
"layout": "IPY_MODEL_f7ae7d821ded475abc1c908e1c2b627f",
"step": null,
"style": "IPY_MODEL_b9e7a7639dbf44dfa50d856009a0badf",
"value": -99999
}
},
"cb0a45e3891c42d8bc88351728ab208f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"cb0ef943ef4d401397f445f628d07275": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_bc12594a8f2c45e299a9f82183db02e2",
"IPY_MODEL_c60f04168c574a508c18b994ba4a3750"
],
"layout": "IPY_MODEL_f8426e08bd834a16a9defa79e3e0df8f"
}
},
"cb37bc1041044914acb21b0c31b454fb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_bd2afe66795e49f9835274f00e5785f0",
"IPY_MODEL_c9c7dc217f904dcbbf20a6b6649aad9d"
],
"layout": "IPY_MODEL_dd12f323b7864231bad44c6a4c558c51"
}
},
"cb66bbc2b8934ff9a3a0effd9b0a5a69": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"ESRI shapefile",
"csv",
"geotiff",
"UBC format"
],
"description": "Export type",
"index": 2,
"layout": "IPY_MODEL_6ffe68cf55b1472b96275f9ee74e566a",
"style": "IPY_MODEL_3fc32f2c23414b259f550a0d943df58a"
}
},
"cb8b8e34328247debf3e57df61504460": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Projection:",
"layout": "IPY_MODEL_0d8d63040a6546e98e11e0f533727b4c",
"style": "IPY_MODEL_8fed742d2b6a429ba2c5538836fae5b8",
"value": "EPSG:26914"
}
},
"cbc626b938864265bdc890f2304a32b8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"cbce484d05f24653a53b6053fd51b60c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_6068da7e342f4901a42fd9d780f64227",
"style": "IPY_MODEL_43dfa72311cd430da0e63a870e1b016d"
}
},
"cbeb84dbbe284e3e9a7270c339f5d8ce": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_80970747248146788052a1e4c77d1316",
"placeholder": "output filename",
"style": "IPY_MODEL_41212bd0feef4ab6955f4f8e1a701585",
"value": "FlinFlon.geoh5"
}
},
"cc024e9d618c493492f8d67bb695fb7c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"cc384b8696a14db48141e24bf29610dd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"cc6b1ca371fd43929b232ebccecf8a31": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"cce5b4076a644939a18d34255ce4e452": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"cd376434138b41d89474fe763ffc8d12": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_6f5754f5882d4d819dccd3d111f6853c",
"IPY_MODEL_22b81bdd57ff497aa2a4a89a9cfaddca",
"IPY_MODEL_dbdfe6996ff24e04b7ace9fd1ddee3e8"
],
"layout": "IPY_MODEL_f1fa23c179c24f2cb3bbbd0aa3e800e7"
}
},
"cd632b3c40ec46fd9f34a36c5a3f8aa6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_b14d8dc48c7843ab834a371562b49595",
"style": "IPY_MODEL_5717e15a43a2496c95098dd07688a315"
}
},
"cd91072abe4b46ec88d2cb4011788e91": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"cd93a3818f7e46daa750ed5b08112460": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"cd9d43c37e47404b8014b9c8af8b6ce5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"cdb3f7162e8b4700803192dc1b974e23": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"cdcd835ec55c4afa81ce2796a75fd670": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"cde331ffeac945cca09645ffabdfe6ec": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"cde439d31729498dbebb75fe4519f49e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"ce155bc6352e4b9389c3aa6855d5863c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ce6002f39dd544b4b42f7625f32c67ea": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_9782dc3ec6f842ee9aed82554772f17a",
"style": "IPY_MODEL_28385a0c0863464b8b0ce51f49002aad"
}
},
"ce609f8662a24feaa44fec6d4fae5a89": {
"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_d37358d5e2ee46bf8906347bd161372f",
"rows": 8,
"style": "IPY_MODEL_a1e0a43ecc834269a9263000bea4ed98"
}
},
"ce63440d4c58467dab325f4d6a491136": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"cedd022d171f4f70996bd80f5cb02421": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"cf066ab6d477422f9905367ff6349c7a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"cf4607936887491499a5dec05ee61429": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_c86ce3714e4545e295f6570d7785e65d",
"IPY_MODEL_7e739b8876f84730bd6fc5b39c596eee",
"IPY_MODEL_a49212b0fc8e4b5e8d7d8f47ddf1393e"
],
"layout": "IPY_MODEL_b7922f5478ce4ce89782eebfb9f9d44a"
}
},
"cf51a00e19744204843f7cfc0ce765a4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_a524db045cf24810b3caba37597c8d57"
],
"layout": "IPY_MODEL_cf9f6b3723af4be493c36ec450e9e2f3"
}
},
"cf52f0a98e07402a823ecc7189639451": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"cf7c7d0ec0a34794a923b52448604686": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"min_width": "6em",
"width": "6em"
}
},
"cf9f6b3723af4be493c36ec450e9e2f3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"cfbc8896766442cb920e28db126483c4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_86786713ec684d05b4898b806d8a4985",
"placeholder": "output filename",
"style": "IPY_MODEL_f2a7de91caeb4df9bc777ca5b96db191"
}
},
"cfead41c114f44cdbfa24b432c4870b6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_8e99d2b8caca4beeb5dcacf02c1f705b",
"style": "IPY_MODEL_a3fc3353e8d34e52af46f798ae4c8441",
"value": "Workspace"
}
},
"d00eccdaba1c4eff9afaeccf0971c9d9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d01c754b860847e3b788151abd4b64bb": {
"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_46c9c524116c4541b8f1a36003e35c78",
"style": "IPY_MODEL_3798d426e676456ba1eb82b100cc99e3",
"value": false
}
},
"d01f771d716c4d07a53f8c296d147fae": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"d0368d97d4a54d4babf1709bdec53ea2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"d0dc020bc50948e1845be7d66e67dbdc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d137e9b8787d423bae00a2b5bacae9f6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_723bb09dfb7445d2b65aaee88a79b8c0",
"IPY_MODEL_a9deb58b83ef4039923ebca2fed114f7"
],
"layout": "IPY_MODEL_456072cd4dd9492d91bbc73c4cd8b84c"
}
},
"d141c54854754ccabfd5d44d4aa404c7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"float",
"RGB"
],
"description": "Type:",
"index": 1,
"layout": "IPY_MODEL_d2f40a10c4404444a4e38c648519b758",
"style": "IPY_MODEL_84a37f4785ef405788e545165fb49f28"
}
},
"d15c8d7ca1d9498183a90d4f5f452602": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_e08b5847d89849c3be15ab6e3f78a8d5",
"style": "IPY_MODEL_76200b741811421f9beb72f048112959"
}
},
"d167685a48db4d60a29af96920c01fa9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"d1689b1c8c7d4770bc85aebac8ff7d19": {
"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_0bc9c5a9cc264e14abbc698d937f31d9",
"rows": 8,
"style": "IPY_MODEL_79b074d31b3e4c8f9ee5c35c8b7e1937"
}
},
"d18ab6e10da74f4d934af49ce3f685cf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_f16bfaf35cc34cb0a0ae071f07f44201",
"style": "IPY_MODEL_be940c4b81424723b0eba759863b550a",
"value": "Workspace"
}
},
"d1b0a521dcd242e4a88243964f773e86": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_6c9b7b783b644d1b8a35c6051dceb578"
],
"layout": "IPY_MODEL_d33c76373b8842bdb6651183930d58fc"
}
},
"d1c8159a7ee147ffb38f5f3f8ffbc602": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_2400ed87cbdb47a1b5e04785973e0ad6",
"IPY_MODEL_783dada734f34aa9a8274c2fc1317e68",
"IPY_MODEL_24d37286bacb416f819e74756b23db9c"
],
"layout": "IPY_MODEL_e0fa1498cd244a88be0eaf67657aacf3"
}
},
"d1d37ee5b6cc4696bd48b4bc4d63d4c2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d1ea34a0c5514c59a031846bba4485f1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d22a1592ae1f4069b8655f1d962f420d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d254489dd2264dc5a462e4c4699cb119": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"d25dea6d18c14b1e9f86f2c9e1056146": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"d264bcc8a5dd4852966b9e27d946c549": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d273b239e6fa44ff97ef4ad3c78069bf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d2a128caa1ec49298d0669892baefbe7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"d2a20c62acb0488b8e58cdedb21abf6d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d2ab5f033ee141cb836a5e70a921a149": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"d2f40a10c4404444a4e38c648519b758": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d303d2919c4c434ba9e3c7adb91924a4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d3332e9031884be289caf9e0f3b25bae": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d33c76373b8842bdb6651183930d58fc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d3515ba5960340718a2740b9962c139b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d352616666f54fae9685ce4e98164810": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"d37358d5e2ee46bf8906347bd161372f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"d39f5082119649cd93c3940d3258223f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"d3bada404bc44bcdac1c8d32322c2e0e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"..",
"SimPEG_PFInversion",
"Temp",
"dask-worker-space",
"FlinFlon.geoh5",
"HelloWorld.ui.json",
"Inversion_.json",
"Inversion_1.json",
"Inversion_2.json",
"MtDore_TMI.geoh5",
"Octree_Mesh.ui.json",
"Untitled.ipynb",
"VTEM_model.mod",
"Workspace.Gravity_Magnetics_drape60m_Airborne_Gxx.tif",
"Workspace.Gravity_Magnetics_drape60m_Airborne_Gxx_Colorbar.png",
"Workspace.Gravity_Magnetics_drape60m_Airborne_Gxx_RGB.txt",
"Workspace.Gravity_Magnetics_drape60m_Airborne_TMI.tif",
"Workspace.Gravity_Magnetics_drape60m_Airborne_TMI_Colorbar.png",
"Workspace.Gravity_Magnetics_drape60m_Airborne_TMI_RGB.txt",
"demo.ipynb",
"input.ui.json",
"options_tree.json",
"tempui.ui.geoh5",
"tempui.ui.json",
"test.ui.geoh5",
"test.ui.json",
"testPoints.geoh5"
],
"index": 4,
"layout": "IPY_MODEL_715e71cc84064d409de8638c8a0f5a1b",
"rows": 8,
"style": "IPY_MODEL_92cd5b0926be40a9aa92b96fe0d73efb"
}
},
"d3c5056120ee462890fd200e9621f520": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_62aa7661cb3c4b2f918a123f96d5b5a1",
"style": "IPY_MODEL_d4c4df518b3d404da425240ff70d34ef"
}
},
"d3c7c719c4a94ffaaeb8c6b2208bd95f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d3dad3dcaada445b81686d710dfe9482": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d3e803ccfe884489a0655194afe3f9c2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_6805f2c6e6df417f929c7416986abae8",
"style": "IPY_MODEL_4483f00f68174869a174ea24f11d3a8e"
}
},
"d402098217c740ed9606011ea8228be2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_b353849b0fb746699f19a1b054646ccd",
"IPY_MODEL_17b5e66f4a724c82ad65b829bd056648"
],
"layout": "IPY_MODEL_9753d8ce108045eca68032d274338c33"
}
},
"d411707139a34d39a910f792bddbb3b4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d4608ee1d84546deb4d1d2056bb2e84c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d46e8f0c919a4cd89d1902df870ebdec": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_f1c51f8fdd574b0b94108a8e00c90bbc",
"IPY_MODEL_87e3ed6c488244e5bf4a0d80d50706db"
],
"layout": "IPY_MODEL_ef6569ee37d84d0eae4f55e11960e319"
}
},
"d4c4df518b3d404da425240ff70d34ef": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"d50368fe960e42b6b020554cdce2a6bc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d51ffed10b3940749a0f1fa5d7978278": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d570ea4dee0d4f1782d79d091b76bc06": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d582340069fd4b98acccfaa84170b75d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_ea467775315549f49574ee4534711ae0",
"IPY_MODEL_130de76936d1439785dbacbf3412eded",
"IPY_MODEL_28ee6726c9b6430991d3d22bc6e2c51f"
],
"layout": "IPY_MODEL_78dccac2827043a4a082e893698deceb"
}
},
"d5b90a30519b43eaa681f4a4004b8988": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d5f9d5001a2d42fd9d37a9467ecbc1bc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d622fe5f197d4980a4303af44a8bbb4a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d638c7c335544cdbbfb82f85421829a7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_04e0a46e309f4b0288f578387f18c66f",
"IPY_MODEL_88a0b509dcd44e26ae168b27ddbea1f2",
"IPY_MODEL_f77a94c46e324bbabe1b824bbd4bfe10"
],
"layout": "IPY_MODEL_033a39e0878c48fb9044e838aff4709f"
}
},
"d665aa15d9884a0f8c3ab3f543013aaa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d6e1bf75eaa9492a969abbf96e110f54": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_ef7fbff535024009b39ad5af9ef91e3a",
"IPY_MODEL_4e311c9297fd4ee0be89c1795620b498"
],
"layout": "IPY_MODEL_43cf2b1eb3b3488f86083fb44aebbde6"
}
},
"d6f6bd167c8a4797b1a6756c0d7a41d8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d75b4929341949ac9acc3669d5a61d19": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_63b66717ad2648b8bd9ef0ba5c5bc273",
"style": "IPY_MODEL_21abc08e920344b7b81a07dc181b2384",
"value": "Workspace"
}
},
"d76efdafa12544f39d4a4a5d3d89946d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"Z:\\"
],
"index": 0,
"layout": "IPY_MODEL_1681386dce2048258946cf42420d470d",
"style": "IPY_MODEL_465409bea84a4467955e1c316844ba84"
}
},
"d76f54af1b664992b5026748262a1826": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d79512e13bd04df2aa99ae08640700d6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d7d49b0d1b514873869a20a520314f1f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_e61eb31c3c7648d18eedf8a6fc091c42",
"IPY_MODEL_93d2c388f0e942e8958812ac81eb9c89",
"IPY_MODEL_bac1777bde864457b993d6502e7431c7",
"IPY_MODEL_dd550224af024afab79ca792bf7835fe",
"IPY_MODEL_0d09fb795ca944038b0ac806c80b2a45",
"IPY_MODEL_f093c88bc61b4a9b9b20e2b5fc79f15f",
"IPY_MODEL_79d064e47e2a493ea4f30ad66e29c2c7"
],
"layout": "IPY_MODEL_2c36c693503349e0afc61f3a1826076c"
}
},
"d7db254398154f37acd535d5be3cb6b8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Export",
"icon": "check",
"layout": "IPY_MODEL_e196d807e5e8464fb834366b877b9376",
"style": "IPY_MODEL_120465fd7ed24aadabdd4049eaa4fba6",
"tooltip": "Run computation"
}
},
"d7fa3970bad24b25b5c569771efa1b9f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d812a50576ea494f80148c1ccd4403ae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d8311694d4ca4b3fb70876d1574543b7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d84def24acdc4f8782aa6913b1beb0c4": {
"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": "500px"
}
},
"d87fc91dc5984e98aca11a1ed5e66833": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d8a594133a9c49daa9f58bf2af86c797": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d8b955630adf405691f364897109b529": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d8fb3f5b65ed4a2a99f43d839016406c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_e3cc243caab24238982e1828737db3e7",
"style": "IPY_MODEL_0f18a09051d64eddb6de136d352cd67d"
}
},
"d911e3ffd38c4d43a1070215c37b5d3a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d91e2e2ef1ac4cddb7ee9e7c2f73fbc7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"fault_splay1",
"fault_Cliff_Lake",
"fault_Other_FlinFlon",
"fault_Club_Lake_splay",
"fault_Catherine_splay2",
"fault_Birch_View",
"fault_Dion_Lake",
"fault_FlinFlon_splay",
"fault_West_Mandy_Road",
"fault_Channing",
"fault_Ross_Lake",
"fault_Louis_Hidden",
"fault_Lake_View_thrust",
"contact_Schist_Lake",
"fault_Burley_Lake",
"fault_Dion_Lake_splay",
"fault_Green_Lake",
"fault_FlinFlon",
"fault_Catherine_splay1",
"fault_East_Mandy_Road",
"fault_Other_FlinFlon_South",
"fault_Catherine_splay4",
"contact_Stitt_Island",
"fault_Club_Lake",
"fault_Tailing_Pond",
"35_Hidden_Reservoir_Hr5",
"29_Hidden_Reservoir_Hr1a",
"60_BlueLagoon_Fb2",
"20_FlinFlon_Undivided_Int_Dykes_D2f",
"04_Boundary_Intrusive_S4h",
"53_Millrock_Rhyolite_Fm4b",
"19_FlinFlon_Undivided_Int_Dykes_D2b",
"18_FlinFlon_Undivided_Int_Dykes_777_D2b",
"06_Phantom_Lake_Intrusive_S3a",
"21_FlinFlon_Undivided_Int_Dykes_D3a",
"43_Millrock_CHLSH_South",
"56_Millrock_Basalt_Fm1ba",
"17_FlinFlon_Undivided_Int_Dykes_D2",
"32_Hidden_Reservoir_Hr1b_SW",
"11_Missi_M3_NE",
"13_Missi_M1",
"07_Annabel_Granitoid_S1",
"45_Millrock_Gabbro_South",
"01_Late_Intrusive_S5b",
"31_Hidden_Reservoir_Hr1c_SW",
"52_Millrock_Rhyolite_Fm4_West_check",
"55_Millrock_Basalt_Fm1bf",
"34_Hidden_Reservoir_Hr2b",
"03_Boundary_Intrusive_S4b",
"42_Millrock_CHLSH_North",
"26_Louis_L3",
"23_FlinFlon_Undivided_Int_Felsic_D4g",
"30_Hidden_Reservoir_Hr1b",
"59_BlueLagoon_Fb3",
"49_Millrock_MVR_Fm5d",
"44_Millrock_Gabbro_North",
"27_Hidden_Carlisle_Hc4",
"22_FlinFlon_Undivided_Int_Felsic_D4e",
"02_Boundary_Intrusive_S4a",
"61_BlueLagoon_Fb1_NW",
"05_Boundary_Intrusive_S4g",
"39_Ore_Callinan",
"38_Ore_Dan_Owens",
"40_Ore_FlinFlon",
"Inversion_VTEM_Model",
"Gravity_Magnetics_drape60m",
"CDI_VTEM_model",
"Data_FEM_pseudo3D",
"O2O_Interp_25m",
"geochem",
"Inversion_DIGHEM_Model",
"Topography",
"Data_TEM_pseudo3D"
],
"description": "Object:",
"index": 66,
"layout": "IPY_MODEL_b77bd33c3db9492192554c60d0375e57",
"style": "IPY_MODEL_7930d4a4017e467699f638f74fde60a3"
}
},
"d974ae1c73c544f3947eac6a9c830441": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d9cccaf4cea345ad9ce1b41c3c499fac": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"d9dc0d78d70347c4a5403096838fbb04": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d9e17ea6e75a4259b4251d071ca11cb1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"d9f0873fc4124272b1152017315a0e57": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"da422d423bdb4be1a4c8dc1ab23132ff": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"da746fb7cae64228a92b24edbf8c5662": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_63d9363612be47f09ea5b679a74f12d4",
"IPY_MODEL_28c3d3a5c5c64ebd9e6dd6c675925cc4"
],
"layout": "IPY_MODEL_ebc95c5bd63a4dbaa6fcb86e3ac0b018"
}
},
"da93c38b06be4a0884d7c02c6fdeb413": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_4d6320defe444479b3f492c594f8ee18",
"IPY_MODEL_3ec257c6bbf44fc99c8a0388237065c3",
"IPY_MODEL_ce609f8662a24feaa44fec6d4fae5a89"
],
"layout": "IPY_MODEL_0666abf64f3a4fc38d7408293e230641"
}
},
"daa881a16db94a628395c8028786288a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"ESRI shapefile",
"csv",
"geotiff",
"UBC format"
],
"description": "Export type",
"index": 2,
"layout": "IPY_MODEL_5ecfe11e168847699a1c806c65004c22",
"style": "IPY_MODEL_927cf934fcec4aa5b1fa059967246974"
}
},
"dac2bb7ed8794050b72e845831db7144": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_400cda87e81444498cfefb667c60b845",
"IPY_MODEL_8ab709f75be14fd8924bc0754ec14c77"
],
"layout": "IPY_MODEL_80bad037323d4979b7dfb94aac5c2425"
}
},
"dacbf106e52f4ca7bf76649aa6d751d2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"dae1e895dc144637bc57e560279e49b6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"daeba087b0b942ec93809c60c7c0140a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"CoordinateTransformation/Data_TEM_pseudo3DEPSG_4326",
"CoordinateTransformation/Gravity_Magnetics_drape60mEPSG_4326",
"CoordinateTransformation/Gravity_Magnetics_drape60mEPSG_4326",
"CoordinateTransformation/Data_TEM_pseudo3DEPSG_4326",
"Faults_Dikes/fault_splay1",
"Faults_Dikes/fault_Cliff_Lake",
"Faults_Dikes/fault_Other_FlinFlon",
"Faults_Dikes/fault_Club_Lake_splay",
"Faults_Dikes/fault_Catherine_splay2",
"Faults_Dikes/fault_Birch_View",
"Faults_Dikes/fault_Dion_Lake",
"Faults_Dikes/fault_FlinFlon_splay",
"Faults_Dikes/fault_West_Mandy_Road",
"Faults_Dikes/fault_Channing",
"Faults_Dikes/fault_Ross_Lake",
"Faults_Dikes/fault_Louis_Hidden",
"Faults_Dikes/fault_Lake_View_thrust",
"Faults_Dikes/contact_Schist_Lake",
"Faults_Dikes/fault_Burley_Lake",
"Faults_Dikes/fault_Dion_Lake_splay",
"Faults_Dikes/fault_Green_Lake",
"Faults_Dikes/fault_FlinFlon",
"Faults_Dikes/fault_Catherine_splay1",
"Faults_Dikes/fault_East_Mandy_Road",
"Faults_Dikes/fault_Other_FlinFlon_South",
"Faults_Dikes/fault_Catherine_splay4",
"Faults_Dikes/contact_Stitt_Island",
"Faults_Dikes/fault_Club_Lake",
"Faults_Dikes/fault_Tailing_Pond",
"Horizons/35_Hidden_Reservoir_Hr5",
"Horizons/29_Hidden_Reservoir_Hr1a",
"Horizons/60_BlueLagoon_Fb2",
"Horizons/20_FlinFlon_Undivided_Int_Dykes_D2f",
"Horizons/04_Boundary_Intrusive_S4h",
"Horizons/53_Millrock_Rhyolite_Fm4b",
"Horizons/19_FlinFlon_Undivided_Int_Dykes_D2b",
"Horizons/18_FlinFlon_Undivided_Int_Dykes_777_D2b",
"Horizons/06_Phantom_Lake_Intrusive_S3a",
"Horizons/21_FlinFlon_Undivided_Int_Dykes_D3a",
"Horizons/43_Millrock_CHLSH_South",
"Horizons/56_Millrock_Basalt_Fm1ba",
"Horizons/17_FlinFlon_Undivided_Int_Dykes_D2",
"Horizons/32_Hidden_Reservoir_Hr1b_SW",
"Horizons/11_Missi_M3_NE",
"Horizons/13_Missi_M1",
"Horizons/07_Annabel_Granitoid_S1",
"Horizons/45_Millrock_Gabbro_South",
"Horizons/01_Late_Intrusive_S5b",
"Horizons/31_Hidden_Reservoir_Hr1c_SW",
"Horizons/52_Millrock_Rhyolite_Fm4_West_check",
"Horizons/55_Millrock_Basalt_Fm1bf",
"Horizons/34_Hidden_Reservoir_Hr2b",
"Horizons/03_Boundary_Intrusive_S4b",
"Horizons/42_Millrock_CHLSH_North",
"Horizons/26_Louis_L3",
"Horizons/23_FlinFlon_Undivided_Int_Felsic_D4g",
"Horizons/30_Hidden_Reservoir_Hr1b",
"Horizons/59_BlueLagoon_Fb3",
"Horizons/49_Millrock_MVR_Fm5d",
"Horizons/44_Millrock_Gabbro_North",
"Horizons/27_Hidden_Carlisle_Hc4",
"Horizons/22_FlinFlon_Undivided_Int_Felsic_D4e",
"Horizons/02_Boundary_Intrusive_S4a",
"Horizons/61_BlueLagoon_Fb1_NW",
"Horizons/05_Boundary_Intrusive_S4g",
"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": 70,
"layout": "IPY_MODEL_c6f742bcdd4a4c74935cb2ddc3830e16",
"style": "IPY_MODEL_0640a712de41447086cfdc1119826fc5"
}
},
"daf306e869894e67821331ee399a8769": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"db01ab8f0fe7464b924bcf2f2a93f83a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Save as:",
"layout": "IPY_MODEL_69ed8c9a2ef44984b586fe950ead0317",
"style": "IPY_MODEL_a28427a8aaaa426c8771a60d45eeb43a",
"value": "Gravity_Magnetics_drape60m"
}
},
"db1c4c1de5f548f8bea57a0fa6a03f14": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_788b2fe9e749425caeb5903805b71732",
"IPY_MODEL_7cba3e7fd5b54531ae21fcb289314084",
"IPY_MODEL_55abac6ca7784a06be65870ecfb1c265"
],
"layout": "IPY_MODEL_15343b0621fd4bd88af31b198436931d"
}
},
"db279bb5332b4561909d2996acbac15b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_90274afbdec9435fb6b034daeeb84d94",
"IPY_MODEL_979fa3f114c744cfbcf1d1010803e1f0",
"IPY_MODEL_29f9c24063f34a71ba7f27ae7cca427d"
],
"layout": "IPY_MODEL_dc00620f672b4ee485b8c6b609c38f90"
}
},
"db3032cb907742b8bb1a15c225b64e4e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_d254489dd2264dc5a462e4c4699cb119",
"placeholder": "",
"style": "IPY_MODEL_e80e7c9e278b43798b3721100d33d611",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\geoapps\\assets\\Temp\\"
}
},
"db6d9ac410aa45fd86389e8913757e73": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"db6f5b367faf44cb89af6b72f1b73074": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Export",
"icon": "check",
"layout": "IPY_MODEL_1f4840d60e3b46fea687aeaf69e1871a",
"style": "IPY_MODEL_c12fdd1ec6fa401d8c6202b9f2e7e13c",
"tooltip": "Run computation"
}
},
"db744a15f4104048a1c8b8111bc3df67": {
"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"
}
},
"db82d54b8e644e4a9fb8d9a4cb07bb3f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"dbc3c05517d04866b742b42a9dc179b2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_3b12887cee9344d184829dd689f713e2",
"IPY_MODEL_da93c38b06be4a0884d7c02c6fdeb413",
"IPY_MODEL_e7dad3ccf7d84f9196cd054fa0fc15fd"
],
"layout": "IPY_MODEL_abd7f7f5954d4d47bb16610216be2be5"
}
},
"dbdfe6996ff24e04b7ace9fd1ddee3e8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"..",
"SimPEG_PFInversion",
"Temp",
"FlinFlon.geoh5",
"Gravity_Magnetics_drape60m_Airborne_Gxx.tif",
"Gravity_Magnetics_drape60m_Airborne_Gxx_Colorbar.png",
"Gravity_Magnetics_drape60m_Airborne_Gxx_RGB.txt",
"MtDore_TMI.geoh5",
"Octree_Mesh.json",
"Octree_Mesh.ui.json",
"Octree_Mesh_v2.json",
"input.ui.geoh5",
"input.ui.json",
"options_tree.json",
"test_no_root.py",
"tester.ui.geoh5",
"tester.ui.json"
],
"index": 3,
"layout": "IPY_MODEL_f9c1548d6e6648ac84feaf73bb4639ba",
"rows": 8,
"style": "IPY_MODEL_5d5e9a83ea114b99a9b37482a3bf2ccf"
}
},
"dbee8a7ce0ea4f29a9d72264e6cace80": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_c0fbcf20dfda45abb3ae8dff9d43254d",
"IPY_MODEL_d1c8159a7ee147ffb38f5f3f8ffbc602"
],
"layout": "IPY_MODEL_00882857292343c5ad5fef035138a8ef"
}
},
"dc00620f672b4ee485b8c6b609c38f90": {
"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": "500px"
}
},
"dc328d8112d94d61b7a3246ae487e893": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"dc77df4d47b84fa28fbfce28c4f8974b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"dcb88f8cd440432da7e1cd74dbb02ccb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"dcfd922f16344abfbbdc646836ede8a6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"dd12f323b7864231bad44c6a4c558c51": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"dd550224af024afab79ca792bf7835fe": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "FloatTextModel",
"state": {
"description": "No-Data-Value",
"layout": "IPY_MODEL_cad9bdb59d554709a352189b82f57d59",
"step": null,
"style": "IPY_MODEL_7009bb07143a47b8b4e19f8095ba533c",
"value": -99999
}
},
"ddb2b7b690364a8e9a8f1fe72540fcb0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"ddb5e25545e2463681dd5bced92a649b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_52e0eb9652604da6a6444df7b98a9ff4",
"IPY_MODEL_877d5eac20d74c2daa9cc7ff0a69a9c1",
"IPY_MODEL_094fbd332f5e49b38fe510a5a731ab6f",
"IPY_MODEL_574d07d2d41046be8f73e08d9560742f",
"IPY_MODEL_24660ebdca7941a6bd087ce0a6cc1406",
"IPY_MODEL_e881619a050c455bb11c8720e27e71d6",
"IPY_MODEL_b5ec999d3b4b43ea831dd15d5a9ab4a4"
],
"layout": "IPY_MODEL_5d1048a212184b1da2086255344f42c9"
}
},
"ddc3bc10886c4726a4acc39b5ad010e0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"de1fef4f33234073aedef503f25d721a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "75%"
}
},
"de338ebeb0eb4880a7974c46e2e45fdf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_095c82b236214859a7717f05331b9882",
"style": "IPY_MODEL_a5901666bb4046c790f49f1b63130ae3",
"value": "Monitoring folder"
}
},
"de5f935756444e3cbd51c69c493b8085": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"de683ce7315d4ef2a2a5b6e6745350ee": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"fault_splay1",
"fault_Cliff_Lake",
"fault_Other_FlinFlon",
"fault_Club_Lake_splay",
"fault_Catherine_splay2",
"fault_Birch_View",
"fault_Dion_Lake",
"fault_FlinFlon_splay",
"fault_West_Mandy_Road",
"fault_Channing",
"fault_Ross_Lake",
"fault_Louis_Hidden",
"fault_Lake_View_thrust",
"contact_Schist_Lake",
"fault_Burley_Lake",
"fault_Dion_Lake_splay",
"fault_Green_Lake",
"fault_FlinFlon",
"fault_Catherine_splay1",
"fault_East_Mandy_Road",
"fault_Other_FlinFlon_South",
"fault_Catherine_splay4",
"contact_Stitt_Island",
"fault_Club_Lake",
"fault_Tailing_Pond",
"35_Hidden_Reservoir_Hr5",
"29_Hidden_Reservoir_Hr1a",
"60_BlueLagoon_Fb2",
"20_FlinFlon_Undivided_Int_Dykes_D2f",
"04_Boundary_Intrusive_S4h",
"53_Millrock_Rhyolite_Fm4b",
"19_FlinFlon_Undivided_Int_Dykes_D2b",
"18_FlinFlon_Undivided_Int_Dykes_777_D2b",
"06_Phantom_Lake_Intrusive_S3a",
"21_FlinFlon_Undivided_Int_Dykes_D3a",
"43_Millrock_CHLSH_South",
"56_Millrock_Basalt_Fm1ba",
"17_FlinFlon_Undivided_Int_Dykes_D2",
"32_Hidden_Reservoir_Hr1b_SW",
"11_Missi_M3_NE",
"13_Missi_M1",
"07_Annabel_Granitoid_S1",
"45_Millrock_Gabbro_South",
"01_Late_Intrusive_S5b",
"31_Hidden_Reservoir_Hr1c_SW",
"52_Millrock_Rhyolite_Fm4_West_check",
"55_Millrock_Basalt_Fm1bf",
"34_Hidden_Reservoir_Hr2b",
"03_Boundary_Intrusive_S4b",
"42_Millrock_CHLSH_North",
"26_Louis_L3",
"23_FlinFlon_Undivided_Int_Felsic_D4g",
"30_Hidden_Reservoir_Hr1b",
"59_BlueLagoon_Fb3",
"49_Millrock_MVR_Fm5d",
"44_Millrock_Gabbro_North",
"27_Hidden_Carlisle_Hc4",
"22_FlinFlon_Undivided_Int_Felsic_D4e",
"02_Boundary_Intrusive_S4a",
"61_BlueLagoon_Fb1_NW",
"05_Boundary_Intrusive_S4g",
"39_Ore_Callinan",
"38_Ore_Dan_Owens",
"40_Ore_FlinFlon",
"Inversion_VTEM_Model",
"Gravity_Magnetics_drape60m",
"CDI_VTEM_model",
"Data_FEM_pseudo3D",
"O2O_Interp_25m",
"geochem",
"Inversion_DIGHEM_Model",
"Topography",
"Data_TEM_pseudo3D",
"Data_ZTEM"
],
"description": "Object:",
"index": 66,
"layout": "IPY_MODEL_892d41a1402f4fd4a0380280f595fbbf",
"style": "IPY_MODEL_5141bd62e4894fd68466f94dc797b8a5"
}
},
"de795d9052e64aed9f4affb1995f8ac7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"width": "auto"
}
},
"de9dfb59a0544aa8a4b41435a98b4aa0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_556ae5cd934a401489057e439d1be51d",
"IPY_MODEL_bc34dd02d0dc45699e064cab6e0c25cd"
],
"layout": "IPY_MODEL_9f19c7c7330543eb9e7c55d21a82d3b7"
}
},
"dec8f5cfa4fb4644a83eba495851496c": {
"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_54673da00d1b49859e683cfa681c6cf4",
"style": "IPY_MODEL_195a14ab40fc4f889f21eafe39781539",
"value": false
}
},
"df07db3e01964d8dbfd5da26c11c38c3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_a79fb098b5f44ce7a2031439aa98dee3",
"style": "IPY_MODEL_3fed53e698f04bcba6b52bb61954f6f8"
}
},
"df3ade9da0c74d65bdf87713380f5991": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_6a39a36868c04f1ba9d878fc82c434c8",
"IPY_MODEL_9f19941649e841ac85646a051820118b"
],
"layout": "IPY_MODEL_2b0865b4767a4494b4930695b0bbffdc"
}
},
"df3f2abfed1044478115a9cefcea08fa": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"df53f3a2f47940cea388ba68a3ef40c6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"df788a56db4743c79783ffd3eddccfb4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"df7e785c484046708495d4ff58af01d2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "BoxModel",
"state": {
"children": [
"IPY_MODEL_46deef5bb43444d0bb482bdbdc3b6054"
],
"layout": "IPY_MODEL_afde0acafb7e45e4b8e886b966910b10"
}
},
"dfb558696e01418b9b3cfe34e378af3d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_2941cf15505c4de4b5b310891541b865",
"placeholder": "output filename",
"style": "IPY_MODEL_8256c64e9e084e549eba9fb965dd29f1"
}
},
"dfc8a856d38a4faaaf9bcc2a27b23558": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"dfd906ad7e51433ab7f58bed230cbd91": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"dfdd0a8cfead4d06b85878be7fdadef7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e002253fbd3d40c59e4cf919e05efcfe": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"fault_splay1",
"fault_Cliff_Lake",
"fault_Other_FlinFlon",
"fault_Club_Lake_splay",
"fault_Catherine_splay2",
"fault_Birch_View",
"fault_Dion_Lake",
"fault_FlinFlon_splay",
"fault_West_Mandy_Road",
"fault_Channing",
"fault_Ross_Lake",
"fault_Louis_Hidden",
"fault_Lake_View_thrust",
"contact_Schist_Lake",
"fault_Burley_Lake",
"fault_Dion_Lake_splay",
"fault_Green_Lake",
"fault_FlinFlon",
"fault_Catherine_splay1",
"fault_East_Mandy_Road",
"fault_Other_FlinFlon_South",
"fault_Catherine_splay4",
"contact_Stitt_Island",
"fault_Club_Lake",
"fault_Tailing_Pond",
"35_Hidden_Reservoir_Hr5",
"29_Hidden_Reservoir_Hr1a",
"60_BlueLagoon_Fb2",
"20_FlinFlon_Undivided_Int_Dykes_D2f",
"04_Boundary_Intrusive_S4h",
"53_Millrock_Rhyolite_Fm4b",
"19_FlinFlon_Undivided_Int_Dykes_D2b",
"18_FlinFlon_Undivided_Int_Dykes_777_D2b",
"06_Phantom_Lake_Intrusive_S3a",
"21_FlinFlon_Undivided_Int_Dykes_D3a",
"43_Millrock_CHLSH_South",
"56_Millrock_Basalt_Fm1ba",
"17_FlinFlon_Undivided_Int_Dykes_D2",
"32_Hidden_Reservoir_Hr1b_SW",
"11_Missi_M3_NE",
"13_Missi_M1",
"07_Annabel_Granitoid_S1",
"45_Millrock_Gabbro_South",
"01_Late_Intrusive_S5b",
"31_Hidden_Reservoir_Hr1c_SW",
"52_Millrock_Rhyolite_Fm4_West_check",
"55_Millrock_Basalt_Fm1bf",
"34_Hidden_Reservoir_Hr2b",
"03_Boundary_Intrusive_S4b",
"42_Millrock_CHLSH_North",
"26_Louis_L3",
"23_FlinFlon_Undivided_Int_Felsic_D4g",
"30_Hidden_Reservoir_Hr1b",
"59_BlueLagoon_Fb3",
"49_Millrock_MVR_Fm5d",
"44_Millrock_Gabbro_North",
"27_Hidden_Carlisle_Hc4",
"22_FlinFlon_Undivided_Int_Felsic_D4e",
"02_Boundary_Intrusive_S4a",
"61_BlueLagoon_Fb1_NW",
"05_Boundary_Intrusive_S4g",
"39_Ore_Callinan",
"38_Ore_Dan_Owens",
"40_Ore_FlinFlon",
"Inversion_VTEM_Model",
"Gravity_Magnetics_drape60m",
"CDI_VTEM_model",
"Data_FEM_pseudo3D",
"O2O_Interp_25m",
"geochem",
"Inversion_DIGHEM_Model",
"Topography",
"Data_TEM_pseudo3D",
"Data_ZTEM"
],
"description": "Object:",
"index": 66,
"layout": "IPY_MODEL_83a2faa007da42e9bee390911aa5cff6",
"style": "IPY_MODEL_1687f2ea267f44cb9ada2c1e76f26f54"
}
},
"e010c129691445a4af6f89e0af05ca7f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e04672ee58444b469d4a1d03093a2409": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e08b5847d89849c3be15ab6e3f78a8d5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"e0a6d48200854e4f88ab95aaca13eb99": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_7b68d30f03af4413ab437ebe9576a61a",
"placeholder": "output filename",
"style": "IPY_MODEL_e38dfae8e1b14e72a3fbfb905d8bb61f"
}
},
"e0cce22dce664ca49fae2f9e1497a259": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextareaModel",
"state": {
"continuous_update": false,
"description": "WKT:",
"layout": "IPY_MODEL_2c1c825d768a4b289ae3d8facd0bd5ae",
"style": "IPY_MODEL_7600d03de36540e3b1f5bd3f68e9ac3c",
"value": "PROJCS[\"NAD83 / UTM zone 14N\",GEOGCS[\"NAD83\",DATUM[\"North_American_Datum_1983\",SPHEROID[\"GRS 1980\",6378137,298.257222101,AUTHORITY[\"EPSG\",\"7019\"]],AUTHORITY[\"EPSG\",\"6269\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.0174532925199433,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4269\"]],PROJECTION[\"Transverse_Mercator\"],PARAMETER[\"latitude_of_origin\",0],PARAMETER[\"central_meridian\",-99],PARAMETER[\"scale_factor\",0.9996],PARAMETER[\"false_easting\",500000],PARAMETER[\"false_northing\",0],UNIT[\"metre\",1,AUTHORITY[\"EPSG\",\"9001\"]],AXIS[\"Easting\",EAST],AXIS[\"Northing\",NORTH],AUTHORITY[\"EPSG\",\"26914\"]]"
}
},
"e0e808072bae44d9ace8f3c3c66b14fe": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e0fa1498cd244a88be0eaf67657aacf3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"e118ac7ff268412fb07a4c71f99111ed": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"min_width": "6em",
"width": "6em"
}
},
"e13286a21ec04d59ac4b37aa42395bc8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "75%"
}
},
"e15306edce1246e68bda4e20dd70eed1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"e1764d74bbe54fbd874bd51e5da7c7f2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e196d807e5e8464fb834366b877b9376": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e1b42e6c53c2421f9d5b84a538c2c558": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"e1d816d46aca4dfaa6ee2e1ff36e9181": {
"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_3f12b5ea62604e53ab8b8e3131d2614d",
"rows": 8,
"style": "IPY_MODEL_db6d9ac410aa45fd86389e8913757e73"
}
},
"e1da7b77d8ac4329b07b378c9ebef7f8": {
"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_7c11051d11b84b5c88ea7aefd63b66d8",
"style": "IPY_MODEL_789bdb3e86b948fc9bd44c80c305e70e",
"value": false
}
},
"e1e4bedb41c44d6dbe623db92087386d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_9c5874bdf17f4636a33ef4b1a64f9d74",
"placeholder": "output filename",
"style": "IPY_MODEL_ed5c74e864694fb5a78687689b705746"
}
},
"e1ec05768fbf49e8bcb5a56954034e56": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_fb11d62bea6643c0b5e24d09ba62ed00",
"IPY_MODEL_0a4917698ada4f518c123996f7aba605",
"IPY_MODEL_7b92a12552d047fb95e72fd5659c9a28"
],
"layout": "IPY_MODEL_70db5232474b442cb0a9041ab8950954"
}
},
"e1ff38de12ef4490981b3293bb760ed0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_6bd953aa431943fdb1c555bd4518ce81",
"style": "IPY_MODEL_4949f38dc29a42218c088a8f17b4e181"
}
},
"e2179f7cb5414120ad851922238af268": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e23cd6b76d7c42178bc8e8787453c16a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"e25621f70bfa410eb0b082a54536fc7e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e29caf14f08f44cf9938ce69cf0c94bb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e2b06ca113764c9ca2a3949b87f5c6e8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e2b20e2877ed46df945aafbd56aaca98": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e2b884b184d3474f848a957d94490026": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"e2bd161fad5041c3a490bae05d7208f0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e2d0bece57c9478a8d126ee99047265b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"e2dcaf432fe04dd59f09cd412ab61600": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"e2eaae32fb5743e1a6ba4ef3355f78a2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_82b0c52a42b341a29a0d30d1eb0d3ba7",
"IPY_MODEL_ce6002f39dd544b4b42f7625f32c67ea",
"IPY_MODEL_9d3b5f9ec2474828aad750c648eaf19a"
],
"layout": "IPY_MODEL_0a847be77530417098a1dd53e8483faf"
}
},
"e301c01c58df4937abd4829edd8cc64f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e32d092dd27a4c85b388fabc17cf5fdc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e38dfae8e1b14e72a3fbfb905d8bb61f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e3bb7995989b4dd89747c16f34142a20": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"e3c0259b6efe4eb1acc70283a03205ff": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e3cc243caab24238982e1828737db3e7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"width": "auto"
}
},
"e3e414ca69c04645a39f1a45ce45fee2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e3eb61c3a3054b66b2ed0615043407b9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e4215629dc644f719b6f9e510ba52c29": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"e428d309154a4a8791430bbcf961ab8f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e43d11f1f1c54052b900d32e17d44bef": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e45f08563136433782285a0600f988ae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_d18ab6e10da74f4d934af49ce3f685cf",
"IPY_MODEL_60e76b79a4f242bb8cd36e56ac79b02f"
],
"layout": "IPY_MODEL_c83a2ff85fb641598b17eb90a184703b"
}
},
"e466617786d3478084802ff38732519b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"float",
"RGB"
],
"description": "Type:",
"index": 1,
"layout": "IPY_MODEL_daf306e869894e67821331ee399a8769",
"style": "IPY_MODEL_11f73149aa1040579ee463dbe70b6d02"
}
},
"e48bd41399e748e2ae1bb12a4678cb1e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e506372c18f64a5299db128f4b74ad5c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"e522b3e7fc124804bc768c04b3f6ea3e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"e5614f0468c143ba9b2ee27b70498bbc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_046110f1bbd9414aaa38fe0f4ae899ee",
"IPY_MODEL_8476de829b284b49a3518eb286c55d28"
],
"layout": "IPY_MODEL_36140327b93e4edc826a79e430df8fb4"
}
},
"e577bd988b6d415ba9e9996719f10a29": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e590f2ee7ade4ef984d5dd49d31ae0d9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e5afb3cb02b440f09c1edc3ea5a75800": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"e5c310aaa1b647e6be1125b33f571602": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e606173ecfe54acd9432ea6522f563ba": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e61eb31c3c7648d18eedf8a6fc091c42": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_f56c57bd35a042b598a5b36f68afedc1",
"IPY_MODEL_6e489e1cefb246b7832013ac1b964e22"
],
"layout": "IPY_MODEL_1eee2da6edb64f65a1fee1a845c0003a"
}
},
"e628de4800d94de89d32cdb313129e6d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e62b65fa3d7649ba8027d1b90a505897": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e69aa4a15d234dbb8b46e341d69e7742": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"e6ca0435cdce4076a132b998e54f13d3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e6f7aae1c6c14c9ebaee1ce220c18c62": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"e7477a9ca4fc45c0959dfc9ac28d4b71": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_aa2b03f8348a4acba193afc8a01a3a47"
],
"layout": "IPY_MODEL_2f57ef721e71478395a894457f5211bf"
}
},
"e7631d3bbd744cd49b616a2779428f02": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e77a70a86b804151925bd7a20e75a29d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectMultipleModel",
"state": {
"_options_labels": [
"",
"--- Channels ---",
"Airborne_Gyz",
"Airborne_TMI",
"Airborne_Gyy",
"Airborne_Gxx",
"Airborne_Gxz",
"Ground_Gz",
"Airborne_Gxy",
"Airborne_Gz",
"Airborne_Gzz",
"X",
"Y",
"Z"
],
"description": "Data: ",
"index": [
3,
5
],
"layout": "IPY_MODEL_4c6e13d2d5f04c3d816d67575a322a6a",
"rows": 5,
"style": "IPY_MODEL_d6f6bd167c8a4797b1a6756c0d7a41d8"
}
},
"e7afbb4ef2de4e3682143908f5eda8c6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"e7b05a57c60f4d1aaefa6ebb25c9a196": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"e7c6614300584bc8ab1cf5c723dd752a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_c17b9fd4a9554066b1e8756812400b05",
"style": "IPY_MODEL_2701409aae8c4cc3b726b2de9b721ad2"
}
},
"e7dad3ccf7d84f9196cd054fa0fc15fd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_2ae06a3b2848487b9c609f948d35c09f",
"IPY_MODEL_c728040ed826464bb2434d6fee3030d0",
"IPY_MODEL_3406d113c88f4b62ac4bc7685c75acbd"
],
"layout": "IPY_MODEL_d0368d97d4a54d4babf1709bdec53ea2"
}
},
"e7eb9e7021db414e924166e3339f4b4e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_870d7848d4384fa4bac028c39c4103a9",
"style": "IPY_MODEL_3a28abcc63aa4664b8e5b462456c19d5"
}
},
"e80e7c9e278b43798b3721100d33d611": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e8152a5b91a54e5dbc4f1bf256fe6d28": {
"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": "500px"
}
},
"e86db034fbe74f57b75e1f0a51166a72": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e86f6c9fba6e40cba08c5fa0533c51a9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"e881619a050c455bb11c8720e27e71d6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Export",
"icon": "check",
"layout": "IPY_MODEL_b0f2534e7d81435abd9f9cae37e32429",
"style": "IPY_MODEL_4abacc08e43c41319912dbb862e9868a",
"tooltip": "Run computation"
}
},
"e893841a176a4153831adc103606e48c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_e45f08563136433782285a0600f988ae",
"IPY_MODEL_bbca9dcc0a894b51a4b8c40e43ff0f6d",
"IPY_MODEL_febb919577e04660918163b5d3e518ed",
"IPY_MODEL_1ad573fc4e1e4772a5882dcf2cc6e622",
"IPY_MODEL_db01ab8f0fe7464b924bcf2f2a93f83a",
"IPY_MODEL_c7d1e57666994f9bb6565c2ba9fac0a7",
"IPY_MODEL_6931ecea821f427986f1eb3008158666"
],
"layout": "IPY_MODEL_2ef0bd7364744fb5ad09c18a5a156b2e"
}
},
"e8d2e5837f574989ac1da48cbd2ffc14": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"ESRI shapefile",
"csv",
"geotiff",
"UBC format"
],
"description": "Export type",
"index": 2,
"layout": "IPY_MODEL_a135309150b8444886a4973ba6647de3",
"style": "IPY_MODEL_a74a667ae8b14722b94e98e715ff9d5f"
}
},
"e91cfc2828a54f7da99bf762f7e7b162": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_c7d1e57666994f9bb6565c2ba9fac0a7",
"IPY_MODEL_9486308aed8e4c15b1799ce95cffc90a"
],
"layout": "IPY_MODEL_7571e9609eb74989b0be4f2de8c0199c"
}
},
"e93a9a45d42041da93083306dfa3db22": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Projection:",
"layout": "IPY_MODEL_ee69cab66705433eb027ea12f1336e51",
"style": "IPY_MODEL_8a9750f96df642749f19a3d2caa09d6e",
"value": "EPSG:26914"
}
},
"e989bd12ff66453593a6c2550efe71ff": {
"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": [
9,
2
],
"layout": "IPY_MODEL_b837007107484e19bced57d00d116c16",
"rows": 5,
"style": "IPY_MODEL_66832a53a89e48e5b2ef8cc8df651717"
}
},
"e989df3010ac4220a7b62ebe4df9a2f3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"e9d9aa37bab94bc1b62f779b047fcfb8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"e9dab1681109433db28e4d453dfdcc80": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Projection:",
"layout": "IPY_MODEL_f237b7a43df243f09b3ed55f04a88f3e",
"style": "IPY_MODEL_d1ea34a0c5514c59a031846bba4485f1",
"value": "EPSG:26914"
}
},
"e9eb8b8b49154eeba4edab489bbbda09": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"ea146b4ecf6743b6ae1fae24ba54fab5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"ea467775315549f49574ee4534711ae0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_031130deb20645c1a187d16b6f48b21b",
"style": "IPY_MODEL_f6354d417b644e9d80d8ae3f60037bf7"
}
},
"ea88c713522141f2ac730d80eba04b1d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_478594231e1d44e7883cae25623ab5e2",
"placeholder": "output filename",
"style": "IPY_MODEL_33ee9b1c212b4e369a72b1480b2bc4ad",
"value": "FlinFlon.geoh5"
}
},
"eab06d0489d9471ba796b5d0b79577e9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"eae2898392eb4a94a217d983747cd126": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_7dec71c228304232b39300c6aefede8e",
"style": "IPY_MODEL_ca0bfe6c573542e3a57b0a316ef30639"
}
},
"eb0caa01c49745369a1c6bd64915e96b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"eb1c942f74e14df5b7473a1fae859a74": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"eb57ae52c14f480c9025a23f9711ddf5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"eba1886127ef4b50bb3cb5c55ce82b60": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextareaModel",
"state": {
"continuous_update": false,
"description": "WKT:",
"layout": "IPY_MODEL_3c83e6e1dc3445a29dc324344703e6f3",
"style": "IPY_MODEL_5a69c6d5cd144a3381760cf4a1d72e0c",
"value": "PROJCS[\"NAD83 / UTM zone 14N\",GEOGCS[\"NAD83\",DATUM[\"North_American_Datum_1983\",SPHEROID[\"GRS 1980\",6378137,298.257222101,AUTHORITY[\"EPSG\",\"7019\"]],AUTHORITY[\"EPSG\",\"6269\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.0174532925199433,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4269\"]],PROJECTION[\"Transverse_Mercator\"],PARAMETER[\"latitude_of_origin\",0],PARAMETER[\"central_meridian\",-99],PARAMETER[\"scale_factor\",0.9996],PARAMETER[\"false_easting\",500000],PARAMETER[\"false_northing\",0],UNIT[\"metre\",1,AUTHORITY[\"EPSG\",\"9001\"]],AXIS[\"Easting\",EAST],AXIS[\"Northing\",NORTH],AUTHORITY[\"EPSG\",\"26914\"]]"
}
},
"ebab9e4657d944bcbcbaa1df04e714ad": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ebc95c5bd63a4dbaa6fcb86e3ac0b018": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ebd83ad714ca4aa79e4a09705a16f92f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ebdf2324ac384338ab7e1c89513a18aa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Projection:",
"layout": "IPY_MODEL_18cef4785c214741936c631118487bba",
"style": "IPY_MODEL_ef4d155fedce49269b2ac1b60c8c4533",
"value": "EPSG:26914"
}
},
"ec06214de90347e0b779fe0dd1e2a682": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ec37b52c27924a9da0dd208a483f12c3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"ec3817cf52af41bab9de0a01b45657d3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextareaModel",
"state": {
"continuous_update": false,
"description": "WKT:",
"layout": "IPY_MODEL_2498abca7705402f8955c7e3eaaaa8d2",
"style": "IPY_MODEL_43764ce117c1497998e5521407fc9e16",
"value": "PROJCS[\"NAD83 / UTM zone 14N\",GEOGCS[\"NAD83\",DATUM[\"North_American_Datum_1983\",SPHEROID[\"GRS 1980\",6378137,298.257222101,AUTHORITY[\"EPSG\",\"7019\"]],AUTHORITY[\"EPSG\",\"6269\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.0174532925199433,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4269\"]],PROJECTION[\"Transverse_Mercator\"],PARAMETER[\"latitude_of_origin\",0],PARAMETER[\"central_meridian\",-99],PARAMETER[\"scale_factor\",0.9996],PARAMETER[\"false_easting\",500000],PARAMETER[\"false_northing\",0],UNIT[\"metre\",1,AUTHORITY[\"EPSG\",\"9001\"]],AXIS[\"Easting\",EAST],AXIS[\"Northing\",NORTH],AUTHORITY[\"EPSG\",\"26914\"]]"
}
},
"ec41bd584d644fcfabc8ab850e661ead": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Save as:",
"layout": "IPY_MODEL_33b2b503bab74b01b557482e90c0d272",
"style": "IPY_MODEL_e301c01c58df4937abd4829edd8cc64f",
"value": "Workspace/Gravity_Magnetics_drape60m"
}
},
"ec49a1072f1f439bb924d57c37f766ac": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ec4c99ed9a8f49f584e3e1bbbd782bb1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_8525bdda3fb34d07a37f664df49042e2",
"IPY_MODEL_55d10c924c8d49609a4cda70a1012bcb"
],
"layout": "IPY_MODEL_f8a65ba894fa4a2bba1fde729158173c"
}
},
"ec5928c6ba054bdf8ff01e32c2b29953": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_735c0f5446164dedb19eb4867bd01490",
"style": "IPY_MODEL_386308a1cd484c1c8daf892872d3d278"
}
},
"ec986b626b8548d3ad93f459f80a50e9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ecabc20136dd4d76b1eb8ce7f3d82e5c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ecba4039ae834902bb8c232a68303914": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"ecdc0cf5d06340b2bb61d99d3ec1d92c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_c3ace51f8ff64e2ab5865aa2291886aa",
"IPY_MODEL_834b791a61b643a7aa3829d6279fdbe0",
"IPY_MODEL_781143769db248d7922179b93eaad715"
],
"layout": "IPY_MODEL_e9d9aa37bab94bc1b62f779b047fcfb8"
}
},
"ece1dfb1586e473c903d355175e83420": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_23be621a8c304bdaa3f0c3b10956d8a6",
"style": "IPY_MODEL_7d480ec288324d10a0ed37c00f540c12",
"value": "Workspace"
}
},
"ed56578c65e04a1ca0f80128e21d8011": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ed59d6d923df4d07bc9abd86e4764ee2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ed5c74e864694fb5a78687689b705746": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ed6a2168afdd450496384332a11c5a4d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"edd15a813b3e4f1da2665873e3245b78": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"eddb9e2785964c73887d76700473d042": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_cd632b3c40ec46fd9f34a36c5a3f8aa6",
"IPY_MODEL_34af575d69ff4b2c846cb48e0b2d4995",
"IPY_MODEL_87eed69348c140babee4f722276a44d6"
],
"layout": "IPY_MODEL_b7114f6432714af8af3214cd29db9f6c"
}
},
"edf364114f1a4c4cbf39486c3958d597": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ee03dfdcc184474e8d276bf5c7882656": {
"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:\\",
"\\\\EgnyteDrive\\mirageoscience\\",
"G:\\",
"D:\\"
],
"index": 0,
"layout": "IPY_MODEL_7a9f5cfaa4b1417ea009a643093ce888",
"style": "IPY_MODEL_8fd1bbd50e414365b8bbed988b000f9d"
}
},
"ee22b45f49de402c8ccd78b9bb2be25e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"ee4129eeeae34ed680ae471e4ee84214": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_1549c4fb230549cf8dbe463fe506be74"
],
"layout": "IPY_MODEL_090f67dd53fe414cae0159e089e42656"
}
},
"ee69cab66705433eb027ea12f1336e51": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ee92b31c524e4a838e5db458ee4592b1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"ee95c5e8895948e99613515fcd6e8f7e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ee9efd30de7146d7b55afadc8a285496": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"disabled": true,
"layout": "IPY_MODEL_e9eb8b8b49154eeba4edab489bbbda09",
"placeholder": "output filename",
"style": "IPY_MODEL_d51ffed10b3940749a0f1fa5d7978278"
}
},
"eee37240ad6d4d699ae010a033ac4c82": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_45ba13ee492c4184bfb9e6c24428e1ff",
"style": "IPY_MODEL_5fd93a739da047cdbf2ae10e50f21dec"
}
},
"ef15c442618e406887f75b54cca7f5bf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_4b187ec14d8241a29f8340e629c30dad",
"IPY_MODEL_61221581b24a478382d735c1136c3d25",
"IPY_MODEL_7af0c867d7484bf48c88fb424696901d"
],
"layout": "IPY_MODEL_7ea0fb0e05d9497493e1a1c4343ee8f8"
}
},
"ef4d155fedce49269b2ac1b60c8c4533": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"ef5b3cf1831a45be927ed94a91ea0e88": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "GridBoxModel",
"state": {
"children": [
"IPY_MODEL_2aaee3d4c9664ee690bdf2ddc10135c0",
"IPY_MODEL_ba413159f48e4696b3e905df26c2bd79",
"IPY_MODEL_1405d7641d814ddd994fc546b19ae741"
],
"layout": "IPY_MODEL_6b644f5b271449aca9dff3cf98e88e6b"
}
},
"ef5d041bc2084397be4916153f00fb6b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"width": "auto"
}
},
"ef5ed3556d38411baf13876519b6ae0c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"ef6569ee37d84d0eae4f55e11960e319": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ef7fbff535024009b39ad5af9ef91e3a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_daeba087b0b942ec93809c60c7c0140a",
"IPY_MODEL_66383735aea348288ba63831396cda42"
],
"layout": "IPY_MODEL_9c85e5e5378348dfb3ab516daa7b7230"
}
},
"efa50a74cf8a42d8aa4c73d8c4d2c199": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"efce112c8b2848c1a13a097972b41481": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Group:",
"layout": "IPY_MODEL_bced5b6bb9e846258cd49dbd24552e91",
"style": "IPY_MODEL_565a81ccc4414c8fbf4b9a5f2e846bcf"
}
},
"efdefae7a44a445d961ea70ae5d4f75a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f011853720234e7e8dcc67f8304711ab": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"f0169f1b4ddd4557b05474f8e69a8892": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"f035ff915d86431cbf5a2267367238bb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"f0889c915f884fd7af9003116d02b5de": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "SelectModel",
"state": {
"_options_labels": [
"..",
"SimPEG_PFInversion",
"Temp",
"dask-worker-space"
],
"index": null,
"layout": "IPY_MODEL_3e6e76351f1b407a86c16d26780297fd",
"rows": 8,
"style": "IPY_MODEL_ce155bc6352e4b9389c3aa6855d5863c"
}
},
"f093c88bc61b4a9b9b20e2b5fc79f15f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Export",
"icon": "check",
"layout": "IPY_MODEL_6ddc8090ceec422f993a2da136eaee1b",
"style": "IPY_MODEL_c2cdf1fa758d44cabcca4a08ff31cf88",
"tooltip": "Run computation"
}
},
"f0a800b33ec84ec481dca48e4f3e7b0f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f0c1b012ddaa4531adf0f0e7bcc96edd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"f0c7c16ae6554bd3b2bf01d8aa15f5b2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f1377eb6fd7b4d15b4aa194ea73ea921": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_47469b130c2547eb82ebb62923eba5e3",
"style": "IPY_MODEL_16a05aa8295043d7a08c9e7df6d8ec35"
}
},
"f16bfaf35cc34cb0a0ae071f07f44201": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f1c51f8fdd574b0b94108a8e00c90bbc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"button_style": "danger",
"description": "Export",
"icon": "check",
"layout": "IPY_MODEL_cac7f35a2a3f45e78de1428937724091",
"style": "IPY_MODEL_2eeb655e87a1402fa79bd383f2bb59af",
"tooltip": "Run computation"
}
},
"f1fa23c179c24f2cb3bbbd0aa3e800e7": {
"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": "500px"
}
},
"f231026803254d52aa89a1a872a39f7c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f237b7a43df243f09b3ed55f04a88f3e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f23f48a484724e20a09d4a78c9a44690": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"f2780b3a6c1f46c3adffd2bcfa311dc4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"f2a7de91caeb4df9bc777ca5b96db191": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"f2af139885b94e92b44d1693248d9c55": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"fault_splay1",
"fault_Cliff_Lake",
"fault_Other_FlinFlon",
"fault_Club_Lake_splay",
"fault_Catherine_splay2",
"fault_Birch_View",
"fault_Dion_Lake",
"fault_FlinFlon_splay",
"fault_West_Mandy_Road",
"fault_Channing",
"fault_Ross_Lake",
"fault_Louis_Hidden",
"fault_Lake_View_thrust",
"contact_Schist_Lake",
"fault_Burley_Lake",
"fault_Dion_Lake_splay",
"fault_Green_Lake",
"fault_FlinFlon",
"fault_Catherine_splay1",
"fault_East_Mandy_Road",
"fault_Other_FlinFlon_South",
"fault_Catherine_splay4",
"contact_Stitt_Island",
"fault_Club_Lake",
"fault_Tailing_Pond",
"35_Hidden_Reservoir_Hr5",
"29_Hidden_Reservoir_Hr1a",
"60_BlueLagoon_Fb2",
"20_FlinFlon_Undivided_Int_Dykes_D2f",
"04_Boundary_Intrusive_S4h",
"53_Millrock_Rhyolite_Fm4b",
"19_FlinFlon_Undivided_Int_Dykes_D2b",
"18_FlinFlon_Undivided_Int_Dykes_777_D2b",
"06_Phantom_Lake_Intrusive_S3a",
"21_FlinFlon_Undivided_Int_Dykes_D3a",
"43_Millrock_CHLSH_South",
"56_Millrock_Basalt_Fm1ba",
"17_FlinFlon_Undivided_Int_Dykes_D2",
"32_Hidden_Reservoir_Hr1b_SW",
"11_Missi_M3_NE",
"13_Missi_M1",
"07_Annabel_Granitoid_S1",
"45_Millrock_Gabbro_South",
"01_Late_Intrusive_S5b",
"31_Hidden_Reservoir_Hr1c_SW",
"52_Millrock_Rhyolite_Fm4_West_check",
"55_Millrock_Basalt_Fm1bf",
"34_Hidden_Reservoir_Hr2b",
"03_Boundary_Intrusive_S4b",
"42_Millrock_CHLSH_North",
"26_Louis_L3",
"23_FlinFlon_Undivided_Int_Felsic_D4g",
"30_Hidden_Reservoir_Hr1b",
"59_BlueLagoon_Fb3",
"49_Millrock_MVR_Fm5d",
"44_Millrock_Gabbro_North",
"27_Hidden_Carlisle_Hc4",
"22_FlinFlon_Undivided_Int_Felsic_D4e",
"02_Boundary_Intrusive_S4a",
"61_BlueLagoon_Fb1_NW",
"05_Boundary_Intrusive_S4g",
"39_Ore_Callinan",
"38_Ore_Dan_Owens",
"40_Ore_FlinFlon",
"Inversion_VTEM_Model",
"Gravity_Magnetics_drape60m",
"CDI_VTEM_model",
"Data_FEM_pseudo3D",
"O2O_Interp_25m",
"geochem",
"Inversion_DIGHEM_Model",
"Topography",
"Data_TEM_pseudo3D",
"Data_ZTEM"
],
"description": "Object:",
"index": 66,
"layout": "IPY_MODEL_35ef36f2809b44fc8879b9351657cd1e",
"style": "IPY_MODEL_8a9b7f4e6d674e2b88f61e6acb0a82f2"
}
},
"f2decb3302274ce99519fd8316c09a98": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f2e04e749ff94257b13cb7d0b177236a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f2e62f74ce07446fa0077c34c4e1ed61": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f3213e8377ad450a8a8c1f4768f99a52": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_1693bb569e3b4ad09abaee18604f2d67",
"style": "IPY_MODEL_a82bed00664b4581a07adea94f7bbd36"
}
},
"f35895403ad24ad8a23bde5a7461b1fc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"f36a224b103d4adc9ea8cede010a60fa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_2f77880d139c4b9eaa80c697392e9856",
"IPY_MODEL_79d064e47e2a493ea4f30ad66e29c2c7"
],
"layout": "IPY_MODEL_4c363571b4fd4be181c6e531c4f56c8b"
}
},
"f36e854b82a140698401d84092cb354b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f39827271a8c4318bd9b7a7039c7a94b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f3a505140398480b92218214de78eb82": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"f3d85dc2a2a84c1cb16ffce4316a5525": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_f87b75fd352b4d03b621776e3f2e70b9",
"IPY_MODEL_e1ff38de12ef4490981b3293bb760ed0"
],
"layout": "IPY_MODEL_05eedd64fb154bfd99b1415e7e1487bb"
}
},
"f400949b70f048fe93350976e6fc910f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"f41eefb750b846da81da962785b9bf7d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"f44f130073614bf9865596a34b0fa70b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_ae7b58ed74274cba8c843ad571a7fc7b",
"placeholder": "",
"style": "IPY_MODEL_b1d472f0b5d4459e9db65bccb6df7d17",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps\\assets\\"
}
},
"f4558e0498d54998b03fd97cb908a6ac": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f47fe748ab7246f8a1a18439a4bf9a20": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_f5afb9e61fe340e781bd0e6381d63301",
"IPY_MODEL_d3e803ccfe884489a0655194afe3f9c2",
"IPY_MODEL_040086cc15b942b890d62ca34946acda"
],
"layout": "IPY_MODEL_6b8943f8b9ce42439a1a536e561781ce"
}
},
"f4ca592915cf41848ca79f8b9515f234": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"f4fbc01aab184018b9eda9704bba630b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f5304a0fdcdc4e8da1e019e584e5264a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f56c57bd35a042b598a5b36f68afedc1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_2bfa689430c240729a27a333d7baa444",
"style": "IPY_MODEL_e62b65fa3d7649ba8027d1b90a505897",
"value": "Workspace"
}
},
"f5afb9e61fe340e781bd0e6381d63301": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_e7afbb4ef2de4e3682143908f5eda8c6",
"style": "IPY_MODEL_e5afb3cb02b440f09c1edc3ea5a75800"
}
},
"f5cd21fd723a421398347a00240cab20": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"f6223b68daf241efb226805d19f86ebc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f6354d417b644e9d80d8ae3f60037bf7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"f6d09543651f4d49873a231d12cee4b5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"display": "none",
"grid_area": "filename",
"width": "auto"
}
},
"f6ec93dffd644c10b6af4732299dcb83": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f6f81a8b3a6d40c09bb9c6a107ba7e69": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"Z:\\"
],
"index": 0,
"layout": "IPY_MODEL_5fe44f05ab874cabbff43d0b99870e4a",
"style": "IPY_MODEL_0e1666a9811d44558b6e74bb3ad47911"
}
},
"f70af4bb1e0b470dae871e8b51b7954b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f70e0f84c75f4e5085f94e762c76353f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"f714f95f84344ca79bdc07635640c170": {
"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": "500px"
}
},
"f75cec0a91b44707b673337f75091285": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f77a94c46e324bbabe1b824bbd4bfe10": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "RadioButtonsModel",
"state": {
"_options_labels": [
"float",
"RGB"
],
"description": "Type:",
"index": 1,
"layout": "IPY_MODEL_38096d5e14de48c19c2e140cc93d24e4",
"style": "IPY_MODEL_1f6e69532d9e40af9732c8b9091aa722"
}
},
"f7ae7d821ded475abc1c908e1c2b627f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f7ca60ed1ece4ae9840d247086b73866": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"f7d16d0d33b446b5825dc40ea4ffee63": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Create copy:",
"layout": "IPY_MODEL_f6223b68daf241efb226805d19f86ebc",
"style": "IPY_MODEL_cc6b1ca371fd43929b232ebccecf8a31"
}
},
"f7d2b9a208514a4d835947ce32b8982f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f81cd96a23b4442fbc31fe5518044e08": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_4d65f738a2a045d4a285e7ef1f4a20b3",
"IPY_MODEL_055ffeadf3a642c084e31065c463def1"
],
"layout": "IPY_MODEL_9d326ecfad0a4551934953ac9c1019b7"
}
},
"f83cedbdc47f45889c77a6893c7aa7ca": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_1b6696372e1d4544bd47a5a9fa000cc3",
"IPY_MODEL_fe13d97bf5ff471396cbdc3452e222c3",
"IPY_MODEL_349e5d300cbd4ffb9b07afbb1641dd82",
"IPY_MODEL_1abc7f756b6444a297bf055edf5a8a5b",
"IPY_MODEL_6f19cc6905da4da1817c4c37c281d0eb",
"IPY_MODEL_f1c51f8fdd574b0b94108a8e00c90bbc",
"IPY_MODEL_e1ec05768fbf49e8bcb5a56954034e56"
],
"layout": "IPY_MODEL_437b7855a5c2469db3948b9592c099b8"
}
},
"f8426e08bd834a16a9defa79e3e0df8f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f8448f75105d46ef81e77bb31a0d391c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"f866dce7eb51487182d2d7ee27c11e8b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"f87b75fd352b4d03b621776e3f2e70b9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_2e0f5a2c9b05480f85db8f59438b3b5c",
"IPY_MODEL_ef5b3cf1831a45be927ed94a91ea0e88",
"IPY_MODEL_db1c4c1de5f548f8bea57a0fa6a03f14"
],
"layout": "IPY_MODEL_8e7fec71f06c442b8ba6fd4341c5d02b"
}
},
"f87bfe1d25c144e8aa99429dd4c8719f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"f8a65ba894fa4a2bba1fde729158173c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f8ad65efca5847139c97e8431adcf0c3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f8c3583af0604a12a75c085ab5a8ccbf": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f8c52d540d3f421a871b8a9f85850974": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f8ce8a0c96414a3d9226753f34dcebf1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f8d4abebfe454c7b9bb4d17366ef579f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ToggleButtonModel",
"state": {
"layout": "IPY_MODEL_7dc01eddab2c4d95b75f94c94363e7a7",
"style": "IPY_MODEL_33fa2932af124eb0ba02877cfa9be430",
"value": true
}
},
"f9093ce5938346c2b4d6a2f606cd129f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"",
"CoordinateTransformation/Gravity_Magnetics_drape60mEPSG_4326",
"CoordinateTransformation/Data_TEM_pseudo3DEPSG_4326",
"ISO/Iso_Iteration_7_model_5_00e-03",
"ISO/Iso_Iteration_7_model_1_00e-02",
"ISO/Iso_Iteration_7_model_1_50e-02",
"ISO/Iso_Iteration_7_model_2_50e-03",
"ISO/Iso_Iteration_7_model_2_00e-02",
"CDI/COND_surface",
"CDI/COND[3]_surface",
"CDI/CDI_",
"CDI/COND[13]_surface",
"CDI/COND[13]_surface",
"CDI/COND[8]_surface",
"CDI/COND_surface",
"CDI/CDI_",
"CDI/COND[8]_surface",
"CDI/COND[18]_surface",
"CDI/CDI_",
"CDI/COND[3]_surface",
"CDI/COND[18]_surface",
"Ore/39_Ore_Callinan",
"Ore/38_Ore_Dan_Owens",
"Ore/40_Ore_FlinFlon",
"Workspace/InterpGrid",
"Workspace/InterpGrid",
"Workspace/InterpGrid",
"Workspace/InterpGrid",
"Workspace/InterpGrid",
"Workspace/InterpGrid",
"Workspace/Inversion_VTEM_Model",
"Workspace/InterpGrid",
"Workspace/InterpGrid",
"Workspace/Gravity_Magnetics_drape60m",
"Workspace/InterpGrid",
"Workspace/CDI_VTEM_model",
"Workspace/Data_FEM_pseudo3D",
"Workspace/InterpGrid",
"Workspace/O2O_Interp_25m",
"Workspace/geochem",
"Workspace/Inversion_DIGHEM_Model",
"Workspace/Topography",
"Workspace/InterpGrid",
"Workspace/InterpGrid",
"Workspace/Data_TEM_pseudo3D",
"Workspace/InterpGrid",
"Workspace/Data_ZTEM",
"Workspace/InterpGrid",
"Workspace/InterpGrid",
"Workspace/Mesh",
"Workspace/InterpGrid",
"Workspace/InterpGrid"
],
"description": "Object:",
"index": 33,
"layout": "IPY_MODEL_b362c94a3a854363a749852f96183305",
"style": "IPY_MODEL_b2b8ee47dba542d994b7cf153148eb19"
}
},
"f9207b119bdd4130ada2e95ed88baf79": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"width": "auto"
}
},
"f9878c98966e4d06857c696c5bc6c574": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"f991e6c203c84587b8f60b393dc9f08e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"f994824182184d16a5da6a0df5ae5244": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"f995213008bd4fc298cd2306000b0033": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_dec8f5cfa4fb4644a83eba495851496c"
],
"layout": "IPY_MODEL_b0b3587116af474fb30c409b8705b950"
}
},
"f9c1548d6e6648ac84feaf73bb4639ba": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "dircontent",
"width": "auto"
}
},
"fa11ce32cdba47f5b64b46dbb63dbbf0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "pathlist",
"width": "auto"
}
},
"fa159facb58e4356a0a5d8c314945660": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_1edb300c39774f9dba7ffd3f4b029cff",
"placeholder": "",
"style": "IPY_MODEL_8a8c4bcdea3e47ac8c9127c72c181e9d",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps\\assets\\FlinFlon.geoh5"
}
},
"fa1ca910c37b4d84b96718556a041508": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"margin": "0 0 0 1em"
}
},
"fa4189140b954117aa37802c7c398c9f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"continuous_update": false,
"description": "Save as:",
"layout": "IPY_MODEL_4165ad8d812245f19e50ee76392fefb5",
"style": "IPY_MODEL_aaaf710e3b8e48408af624609d5360a1",
"value": "Gravity_Magnetics_drape60m"
}
},
"fa4a65c29d604b7480097a115562e820": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"fabb898c0be84537ab4af787954ce1a0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "TextModel",
"state": {
"layout": "IPY_MODEL_e23cd6b76d7c42178bc8e8787453c16a",
"placeholder": "output filename",
"style": "IPY_MODEL_67b4f116889f486eafe2030ce0ff539c",
"value": "FlinFlon.geoh5"
}
},
"fad3086b019c49e4925aaac7f68307ea": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_63fa44ac39334a0f9b2de124a37e221a",
"style": "IPY_MODEL_8ba9c05bc9054249bfa03d4e62b77468"
}
},
"fb1047ef81b24462be7652a87e990cad": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"fb11d62bea6643c0b5e24d09ba62ed00": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_9bc83016dc544d6a8fb78e83cc1de1e5",
"style": "IPY_MODEL_ac287fee3d344117800f06c468ddeac5"
}
},
"fb148b1a12314136a5cf3f290dfa0112": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_a38d3a383d5a46a7bd34874c377534fd",
"IPY_MODEL_2b8b4030f5cc42069dfb32860da97476"
],
"layout": "IPY_MODEL_c7fc3b2aebc94b9396bba154d13ac096"
}
},
"fb354a68a9624fcc81b0f91b5e508f63": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_7916cd6258e5425586764f5b03d702b7",
"style": "IPY_MODEL_815f49551fb44093b6cb83f9497ede48"
}
},
"fb3fdfd2546f4beaa19389aae6a02585": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"fb7ceb92083b41d3954f9dcabae88377": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fbae726e7f6f454eb1ecc7ceeec1dbd6": {
"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",
"Z"
],
"description": "Data: ",
"index": [
2
],
"layout": "IPY_MODEL_0bf6637291cd426a91dc865c4a359515",
"rows": 5,
"style": "IPY_MODEL_cd91072abe4b46ec88d2cb4011788e91"
}
},
"fc14b850e16a432b803201070fc1cd30": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_de795d9052e64aed9f4affb1995f8ac7",
"style": "IPY_MODEL_4361bb0df96345ba8f4a9a3e42c34966"
}
},
"fc24c8b5f9d74a8f93b98d1f429b8866": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"fc27c71c3a144b5691fb2d7b94803be5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_aea9b8cf43394cd2b77a99f079a455a5",
"IPY_MODEL_c4d099be30f54cfa90f721a068b383f1"
],
"layout": "IPY_MODEL_e3c0259b6efe4eb1acc70283a03205ff"
}
},
"fc5491fee01c40c69908e3adb231bb24": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_de9dfb59a0544aa8a4b41435a98b4aa0",
"IPY_MODEL_a9374932676148d19afb94cc007c1de4"
],
"layout": "IPY_MODEL_f70af4bb1e0b470dae871e8b51b7954b"
}
},
"fc6fe98e4ac44d0995ba684cf332e706": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_80be45438e1d4528a7dc1857aa211d87",
"IPY_MODEL_8a9f4676d10343baae5323c0a617f610",
"IPY_MODEL_6e2431f4101447209fd94c29994e919a"
],
"layout": "IPY_MODEL_c769cff6b36b4783a471408b43d80a73"
}
},
"fc9d38cac07144808595467c3876d564": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"fca578d023c144b8a4547371ff4fb889": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_ef5ed3556d38411baf13876519b6ae0c",
"style": "IPY_MODEL_809355609ee747f3b7b5e4a2b3a734eb"
}
},
"fd1e87285e6245f6a07579f32fd10021": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_918491ceddd4422890072be5cb520880",
"IPY_MODEL_c47e08502ce247c994f7cb08c6736382",
"IPY_MODEL_df7e785c484046708495d4ff58af01d2"
],
"layout": "IPY_MODEL_eab06d0489d9471ba796b5d0b79577e9"
}
},
"fd39534af4f445d486088a3aabd96d97": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps\\assets",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps",
"C:\\Users\\dominiquef\\Documents\\GIT\\mira",
"C:\\Users\\dominiquef\\Documents\\GIT",
"C:\\Users\\dominiquef\\Documents",
"C:\\Users\\dominiquef",
"C:\\Users",
"C:\\",
"D:\\",
"Z:\\"
],
"index": 0,
"layout": "IPY_MODEL_7bee07d8514444bf94e1772bfa9781dc",
"style": "IPY_MODEL_d273b239e6fa44ff97ef4ad3c78069bf"
}
},
"fd468409a16b43f5812ce73dbfc1c00d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fd4ff0fb98c7440d92be38f7a536fd3c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"fd6d9a695cbe4e58b6ef99ab7f3c1d12": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {
"grid_area": "filename",
"width": "auto"
}
},
"fddb6665db274c05b2fc4a4cdb6730f2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_6a69eb4a4f6a4e439b57821d0e453664",
"placeholder": "",
"style": "IPY_MODEL_4d09102b8fbf4ed68e5f092297393c4a",
"value": "C:\\Users\\dominiquef\\Documents\\GIT\\mira\\mirageoscience-apps\\assets\\"
}
},
"fdfed50300ac4fcf9ff472e2d2ab9dbe": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"fe13d97bf5ff471396cbdc3452e222c3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_197f945a728347e3abdf305a3d7c76f4",
"IPY_MODEL_1abc7f756b6444a297bf055edf5a8a5b"
],
"layout": "IPY_MODEL_63a2e3aaee2b452ea685543ea34e4657"
}
},
"fe1798474329402685dbd7ddf83eeace": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": "initial"
}
},
"fe1b6b5d27cd43a9b2cd3644c682b1d7": {
"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": "500px"
}
},
"fe613e692e0041f5b8af014ebd9157ea": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_1a2c83114bd74e9bb1ec5426e48ec166",
"IPY_MODEL_e7477a9ca4fc45c0959dfc9ac28d4b71"
],
"layout": "IPY_MODEL_e25621f70bfa410eb0b082a54536fc7e"
}
},
"feb1e37080ae466d90771a560254e1c5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonStyleModel",
"state": {}
},
"febb919577e04660918163b5d3e518ed": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_9a52b2fea0c5452ea876b34db791a4bd",
"IPY_MODEL_12c75fa4a2154a1c8c6b5c73caa56478",
"IPY_MODEL_498b21b866c044ccae3dfc50b07cb808"
],
"layout": "IPY_MODEL_a8072c434d794bd1a6a4a2c46463767f"
}
},
"fefe1efa911e44f0af01f8c8f613e860": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"ff0b6b4b4f944ff4b3d980247b5c44fc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ff2c621b544d4191ae0b338d181462fc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "1.2.0",
"model_name": "LayoutModel",
"state": {}
},
"ff5b03fd15d5409f96c70dcdb8e52503": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_c7910fa5f4f941539e3d16322c7666e2",
"style": "IPY_MODEL_837f8d82758e4c0195c32f8fcc7b068b"
}
},
"ff6c4808120047819224ee6b17e1aef9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Cancel",
"layout": "IPY_MODEL_57e761e6af6b4361981522e05209e6e0",
"style": "IPY_MODEL_c14d2c30e5d74e04bcbc5a4b120c74b0"
}
},
"ffda06d43643404c85aae88663b5d2a8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "1.5.0",
"model_name": "ButtonModel",
"state": {
"description": "Change",
"layout": "IPY_MODEL_72c75069f7f948f8863011a919caec0a",
"style": "IPY_MODEL_afa03ff1becb44e1b19af4037fd657c2"
}
}
},
"version_major": 2,
"version_minor": 0
}
}
},
"nbformat": 4,
"nbformat_minor": 5
}