在好例子网,分享、交流、成长!
您当前所在位置:首页Python 开发实例Python语言基础 → gempy:GemPy是一个基于Python的开源3D结构地质建模软件,它允许根据界面和方向数据隐式(即自动)创建复杂的地质模型。 它还为随机建模提供支持,以处理参数和模型不确定性-源码

gempy:GemPy是一个基于Python的开源3D结构地质建模软件,它允许根据界面和方向数据隐式(即自动)创建复杂的地质模型。 它还为随机建模提供支持,以处理参数和模型不确定性-源码

Python语言基础

下载此实例
  • 开发语言:Python
  • 实例大小:27.00M
  • 下载次数:2
  • 浏览次数:11
  • 发布时间:2023-11-06
  • 实例类别:Python语言基础
  • 发 布 人:chenxiaolan
  • 文件格式:.zip
  • 所需积分:2
 相关标签: python GEM 源码 软件 自动

实例介绍

【实例简介】gempy:GemPy是一个基于Python的开源3D结构地质建模软件,它允许根据界面和方向数据隐式(即自动)创建复杂的地质模型。 它还为随机建模提供支持,以处理参数和模型不确定性-源码
Python中的开源,隐式3D结构地质建模。 概述 是一个基于Python的开源库。 基于潜在的强大隐式表示方法,它能够构建折叠结构,断层网络和不整合面的复杂3D地质模型。 安装 我们通过PyPi软件包服务提供了GemPy的最新...

【实例截图】

from clipboard

from clipboard

from clipboard

from clipboard

from clipboard

from clipboard

【核心代码】

.
├── gempy-master
│   ├── CONTRIBUTING.md
│   ├── DevelopersGuide.md
│   ├── Dockerfile
│   ├── LICENSE
│   ├── MANIFEST.in
│   ├── README.md
│   ├── dev-requirements.txt
│   ├── docs
│   │   ├── CNAME
│   │   ├── Makefile
│   │   ├── index.html
│   │   ├── main_docstrings
│   │   ├── readme_images
│   │   │   ├── alesmodel.png
│   │   │   ├── data_vis.png
│   │   │   ├── geomap.png
│   │   │   ├── greenstonemodel.png
│   │   │   ├── header_combined_slim.png
│   │   │   ├── model1_nodata.png
│   │   │   ├── model2_nodata.png
│   │   │   ├── model3_nodata.png
│   │   │   ├── model4_nodata.png
│   │   │   ├── model5_nodata.png
│   │   │   ├── model6_nodata.png
│   │   │   ├── model_header.png
│   │   │   ├── perthmodel.png
│   │   │   ├── scalarfield.png
│   │   │   ├── sectiontest.png
│   │   │   ├── topology.png
│   │   │   └── topology_matrix.png
│   │   └── source
│   │       ├── _static
│   │       │   ├── GemPy_model_combined.png
│   │       │   ├── computational_graph1.png
│   │       │   ├── computational_graph2.png
│   │       │   ├── correlation.pdf
│   │       │   ├── grids.jpg
│   │       │   ├── logos
│   │       │   │   ├── Terranigma.png
│   │       │   │   ├── favicon.ico
│   │       │   │   ├── gempy.png
│   │       │   │   └── logo_CGRE.png
│   │       │   └── nothing.txt
│   │       ├── _templates
│   │       │   ├── base.rst
│   │       │   ├── class.rst
│   │       │   └── module.rst
│   │       ├── code.rst
│   │       ├── conf.py
│   │       ├── images
│   │       │   ├── ge.png
│   │       │   ├── gempy_zunc.png
│   │       │   ├── google_Earth.svg
│   │       │   ├── input_example.png
│   │       │   ├── institute.JPG
│   │       │   ├── model_example.png
│   │       │   ├── model_examples.png
│   │       │   ├── modeling_principle.png
│   │       │   ├── perth_example.png
│   │       │   ├── sandbox.jpg
│   │       │   ├── sandstone_example.png
│   │       │   ├── uncertainty.png
│   │       │   └── vtkFault.png
│   │       ├── index.rst
│   │       ├── installation.rst
│   │       └── projects.rst
│   ├── examples
│   │   ├── __init__.py
│   │   ├── data
│   │   │   ├── figures
│   │   │   │   ├── ipv.png
│   │   │   │   └── ipyvolume.png
│   │   │   ├── gempy_models
│   │   │   │   ├── Greenstone
│   │   │   │   │   ├── Greenstone_extent.npy
│   │   │   │   │   ├── Greenstone_faults.csv
│   │   │   │   │   ├── Greenstone_faults_relations.csv
│   │   │   │   │   ├── Greenstone_kriging_data.csv
│   │   │   │   │   ├── Greenstone_options.csv
│   │   │   │   │   ├── Greenstone_orientations.csv
│   │   │   │   │   ├── Greenstone_rescaling_data.csv
│   │   │   │   │   ├── Greenstone_resolution.npy
│   │   │   │   │   ├── Greenstone_series.csv
│   │   │   │   │   ├── Greenstone_surface_points.csv
│   │   │   │   │   └── Greenstone_surfaces.csv
│   │   │   │   ├── Tutorial_ch1-1_Basics
│   │   │   │   │   ├── Tutorial_ch1-1_Basics_extent.npy
│   │   │   │   │   ├── Tutorial_ch1-1_Basics_faults.csv
│   │   │   │   │   ├── Tutorial_ch1-1_Basics_faults_relations.csv
│   │   │   │   │   ├── Tutorial_ch1-1_Basics_kriging_data.csv
│   │   │   │   │   ├── Tutorial_ch1-1_Basics_options.csv
│   │   │   │   │   ├── Tutorial_ch1-1_Basics_orientations.csv
│   │   │   │   │   ├── Tutorial_ch1-1_Basics_rescaling_data.csv
│   │   │   │   │   ├── Tutorial_ch1-1_Basics_resolution.npy
│   │   │   │   │   ├── Tutorial_ch1-1_Basics_series.csv
│   │   │   │   │   ├── Tutorial_ch1-1_Basics_surface_points.csv
│   │   │   │   │   └── Tutorial_ch1-1_Basics_surfaces.csv
│   │   │   │   ├── Tutorial_ch1-8_Onlap_relations
│   │   │   │   │   ├── Tutorial_ch1-8_Onlap_relations_extent.npy
│   │   │   │   │   ├── Tutorial_ch1-8_Onlap_relations_fault_blocks.npy
│   │   │   │   │   ├── Tutorial_ch1-8_Onlap_relations_faults.csv
│   │   │   │   │   ├── Tutorial_ch1-8_Onlap_relations_faults_relations.csv
│   │   │   │   │   ├── Tutorial_ch1-8_Onlap_relations_gradient.npy
│   │   │   │   │   ├── Tutorial_ch1-8_Onlap_relations_kriging_data.csv
│   │   │   │   │   ├── Tutorial_ch1-8_Onlap_relations_lith_block.npy
│   │   │   │   │   ├── Tutorial_ch1-8_Onlap_relations_options.csv
│   │   │   │   │   ├── Tutorial_ch1-8_Onlap_relations_orientations.csv
│   │   │   │   │   ├── Tutorial_ch1-8_Onlap_relations_rescaling_data.csv
│   │   │   │   │   ├── Tutorial_ch1-8_Onlap_relations_resolution.npy
│   │   │   │   │   ├── Tutorial_ch1-8_Onlap_relations_scalar_field_faults.npy
│   │   │   │   │   ├── Tutorial_ch1-8_Onlap_relations_scalar_field_lith.npy
│   │   │   │   │   ├── Tutorial_ch1-8_Onlap_relations_series.csv
│   │   │   │   │   ├── Tutorial_ch1-8_Onlap_relations_surface_points.csv
│   │   │   │   │   ├── Tutorial_ch1-8_Onlap_relations_surfaces.csv
│   │   │   │   │   └── Tutorial_ch1-8_Onlap_relations_values_block.npy
│   │   │   │   ├── Tutorial_ch1-9a_Fault_relations
│   │   │   │   │   ├── Tutorial_ch1-9a_Fault_relations_extent.npy
│   │   │   │   │   ├── Tutorial_ch1-9a_Fault_relations_fault_blocks.npy
│   │   │   │   │   ├── Tutorial_ch1-9a_Fault_relations_faults.csv
│   │   │   │   │   ├── Tutorial_ch1-9a_Fault_relations_faults_relations.csv
│   │   │   │   │   ├── Tutorial_ch1-9a_Fault_relations_gradient.npy
│   │   │   │   │   ├── Tutorial_ch1-9a_Fault_relations_kriging_data.csv
│   │   │   │   │   ├── Tutorial_ch1-9a_Fault_relations_lith_block.npy
│   │   │   │   │   ├── Tutorial_ch1-9a_Fault_relations_options.csv
│   │   │   │   │   ├── Tutorial_ch1-9a_Fault_relations_orientations.csv
│   │   │   │   │   ├── Tutorial_ch1-9a_Fault_relations_rescaling_data.csv
│   │   │   │   │   ├── Tutorial_ch1-9a_Fault_relations_resolution.npy
│   │   │   │   │   ├── Tutorial_ch1-9a_Fault_relations_scalar_field_faults.npy
│   │   │   │   │   ├── Tutorial_ch1-9a_Fault_relations_scalar_field_lith.npy
│   │   │   │   │   ├── Tutorial_ch1-9a_Fault_relations_series.csv
│   │   │   │   │   ├── Tutorial_ch1-9a_Fault_relations_surface_points.csv
│   │   │   │   │   ├── Tutorial_ch1-9a_Fault_relations_surfaces.csv
│   │   │   │   │   └── Tutorial_ch1-9a_Fault_relations_values_block.npy
│   │   │   │   └── Tutorial_ch1-9b_Fault_relations
│   │   │   │       ├── Tutorial_ch1-9b_Fault_relations_extent.npy
│   │   │   │       ├── Tutorial_ch1-9b_Fault_relations_fault_blocks.npy
│   │   │   │       ├── Tutorial_ch1-9b_Fault_relations_faults.csv
│   │   │   │       ├── Tutorial_ch1-9b_Fault_relations_faults_relations.csv
│   │   │   │       ├── Tutorial_ch1-9b_Fault_relations_gradient.npy
│   │   │   │       ├── Tutorial_ch1-9b_Fault_relations_kriging_data.csv
│   │   │   │       ├── Tutorial_ch1-9b_Fault_relations_lith_block.npy
│   │   │   │       ├── Tutorial_ch1-9b_Fault_relations_options.csv
│   │   │   │       ├── Tutorial_ch1-9b_Fault_relations_orientations.csv
│   │   │   │       ├── Tutorial_ch1-9b_Fault_relations_rescaling_data.csv
│   │   │   │       ├── Tutorial_ch1-9b_Fault_relations_resolution.npy
│   │   │   │       ├── Tutorial_ch1-9b_Fault_relations_scalar_field_faults.npy
│   │   │   │       ├── Tutorial_ch1-9b_Fault_relations_scalar_field_lith.npy
│   │   │   │       ├── Tutorial_ch1-9b_Fault_relations_series.csv
│   │   │   │       ├── Tutorial_ch1-9b_Fault_relations_surface_points.csv
│   │   │   │       ├── Tutorial_ch1-9b_Fault_relations_surfaces.csv
│   │   │   │       └── Tutorial_ch1-9b_Fault_relations_values_block.npy
│   │   │   └── input_data
│   │   │       ├── AlesModel
│   │   │       │   ├── 2018_interf.csv
│   │   │       │   ├── 2018_orient_clust_n_init5_0.csv
│   │   │       │   └── _cropped_DEM_coarse.tif
│   │   │       ├── Claudius
│   │   │       │   └── Fault.csv
│   │   │       ├── Moureze
│   │   │       │   ├── Moureze_Points.csv
│   │   │       │   ├── Sections_EW.csv
│   │   │       │   └── Sections_NS.csv
│   │   │       ├── jan_models
│   │   │       │   ├── fixture_model_orientations.csv
│   │   │       │   ├── fixture_model_surfaces.csv
│   │   │       │   ├── model1_orientations.csv
│   │   │       │   ├── model1_surface_points.csv
│   │   │       │   ├── model2_orientations.csv
│   │   │       │   ├── model2_surface_points.csv
│   │   │       │   ├── model3_orientations.csv
│   │   │       │   ├── model3_surface_points.csv
│   │   │       │   ├── model4_orientations.csv
│   │   │       │   ├── model4_surface_points.csv
│   │   │       │   ├── model5_orientations.csv
│   │   │       │   ├── model5_surface_points.csv
│   │   │       │   ├── model6_orientations.csv
│   │   │       │   ├── model6_surface_points.csv
│   │   │       │   ├── model7_orientations.csv
│   │   │       │   └── model7_surface_points.csv
│   │   │       ├── lisa_models
│   │   │       │   ├── foliations1.csv
│   │   │       │   ├── foliations2.csv
│   │   │       │   ├── foliations3.csv
│   │   │       │   ├── foliations5.csv
│   │   │       │   ├── foliations6.csv
│   │   │       │   ├── foliations7.csv
│   │   │       │   ├── foliations8.csv
│   │   │       │   ├── foliations9.csv
│   │   │       │   ├── interfaces1.csv
│   │   │       │   ├── interfaces2.csv
│   │   │       │   ├── interfaces3.csv
│   │   │       │   ├── interfaces5.csv
│   │   │       │   ├── interfaces6.csv
│   │   │       │   ├── interfaces7.csv
│   │   │       │   ├── interfaces8.csv
│   │   │       │   └── interfaces9.csv
│   │   │       ├── perth_basin
│   │   │       │   ├── Paper_GU2F_sc_faults_topo_Foliations.csv
│   │   │       │   └── Paper_GU2F_sc_faults_topo_Points.csv
│   │   │       ├── striplog_integration
│   │   │       │   ├── alpha_strip.tops
│   │   │       │   ├── beta_strip.tops
│   │   │       │   ├── epsilon_strip.tops
│   │   │       │   └── gamma_strip.tops
│   │   │       ├── tut-ch1-7
│   │   │       │   ├── bogota.tif
│   │   │       │   ├── onelayer_interfaces.csv
│   │   │       │   └── onelayer_orient.csv
│   │   │       ├── tut_SandStone
│   │   │       │   ├── SandStone_Foliations.csv
│   │   │       │   ├── SandStone_Points.csv
│   │   │       │   ├── Sst_grav_1000.xyz
│   │   │       │   ├── Sst_grav_2000.xyz
│   │   │       │   ├── Sst_grav_500.xyz
│   │   │       │   ├── Uncertainties.xlsx
│   │   │       │   ├── parameters.xlsx
│   │   │       │   └── real_grav.npy
│   │   │       ├── tut_chapter1
│   │   │       │   ├── fault_unconformity_model_orientations.csv
│   │   │       │   ├── fault_unconformity_model_points.csv
│   │   │       │   ├── simple_fault_model_orientations.csv
│   │   │       │   ├── simple_fault_model_orientations_geophy.csv
│   │   │       │   ├── simple_fault_model_points.csv
│   │   │       │   └── simple_fault_model_points_geophy.csv
│   │   │       └── tut_chapter6
│   │   │           ├── ch6_data_fol.csv
│   │   │           └── ch6_data_interf.csv
│   │   ├── examples
│   │   │   ├── README.rst
│   │   │   ├── __init__.py
│   │   │   ├── geometries
│   │   │   │   ├── 1_horizontal_stratigraphic.py
│   │   │   │   ├── 2_fold.py
│   │   │   │   ├── 3_recumbent_fold.py
│   │   │   │   ├── 4_pinchout.py
│   │   │   │   ├── 5_fault.py
│   │   │   │   ├── 6_unconformity.py
│   │   │   │   ├── 7_combination.py
│   │   │   │   ├── README.rst
│   │   │   │   ├── __init__.py
│   │   │   │   └── foo
│   │   │   │       ├── __init__.py
│   │   │   │       └── more_examples.py
│   │   │   └── real
│   │   │       ├── Alesmodel.py
│   │   │       ├── Claudius.py
│   │   │       ├── Greenstone.py
│   │   │       ├── Hecho.py
│   │   │       ├── Moureze.py
│   │   │       ├── Perth_basin.py
│   │   │       ├── README.rst
│   │   │       ├── __init__.py
│   │   │       ├── claudius_sf_gempy
│   │   │       ├── hecho_sf_gempy
│   │   │       └── moureze_sf_gempy
│   │   ├── getting_started
│   │   │   ├── README.rst
│   │   │   ├── __init__.py
│   │   │   ├── get_started.py
│   │   │   └── wells.png
│   │   ├── integrations
│   │   │   ├── README.rst
│   │   │   ├── __init__.py
│   │   │   ├── gempy_export_MOOSE.py
│   │   │   ├── gempy_striplog.py
│   │   │   ├── gempy_subsurface.py
│   │   │   └── geo_model_units_moose_input.i
│   │   └── tutorials
│   │       ├── README.rst
│   │       ├── __init__.py
│   │       ├── advanced
│   │       │   └── Modifying smoothing.py
│   │       ├── ch1_fundamentals
│   │       │   ├── README.rst
│   │       │   ├── ch1_1_basics.py
│   │       │   ├── ch1_2a_data_manipulation.py
│   │       │   ├── ch1_2b_implicit_cokriging.py
│   │       │   ├── ch1_3a_grids.py
│   │       │   ├── ch1_3b_cross_sections.py
│   │       │   ├── ch1_3c_topography.py
│   │       │   ├── ch1_4_onlap_relations.py
│   │       │   ├── ch1_5_fault_relations.py
│   │       │   ├── ch1_6_2d_visualization.py
│   │       │   └── ch1_7_3d_visualization.py
│   │       ├── ch2-Geophysics
│   │       │   ├── README.rst
│   │       │   ├── __init__.py
│   │       │   ├── ch2_1_gravity.py
│   │       │   └── ch2_2_cell_selection.py
│   │       ├── ch3-Interpolations
│   │       │   ├── README.rst
│   │       │   └── ch3_1_kriging_interpolation_and_simulation.py
│   │       ├── ch4-Topology
│   │       │   ├── README.rst
│   │       │   ├── __init__.py
│   │       │   └── ch4-1-Topology.py
│   │       └── ch5_probabilistic_modeling_DEP
│   │           ├── 2-layers
│   │           │   ├── 2-layers_extent.npy
│   │           │   ├── 2-layers_faults.csv
│   │           │   ├── 2-layers_faults_relations.csv
│   │           │   ├── 2-layers_kriging_data.csv
│   │           │   ├── 2-layers_options.csv
│   │           │   ├── 2-layers_orientations.csv
│   │           │   ├── 2-layers_rescaling_data.csv
│   │           │   ├── 2-layers_resolution.npy
│   │           │   ├── 2-layers_series.csv
│   │           │   ├── 2-layers_surface_points.csv
│   │           │   ├── 2-layers_surfaces.csv
│   │           │   └── 2-layers_topography.npy
│   │           ├── _README.rst
│   │           ├── _aux
│   │           │   ├── ch5_4a_joint_inversion.py
│   │           │   └── ch5_4b_posterior_analysis.py
│   │           ├── aux_functions
│   │           │   ├── DEP_aux_funct.py
│   │           │   └── __init__.py
│   │           ├── ch5_1.py
│   │           ├── ch5_2_introduction_pymc3.py
│   │           └── ch5_3_probability_density_transformation.py
│   ├── gempy
│   │   ├── __init__.py
│   │   ├── addons
│   │   │   ├── __init__.py
│   │   │   ├── gempy_to_rexfile.py
│   │   │   ├── map2gempy.py
│   │   │   └── rex_api.py
│   │   ├── api_modules
│   │   │   ├── __init__.py
│   │   │   ├── aux_func.py
│   │   │   ├── editing.py
│   │   │   ├── getters.py
│   │   │   ├── io.py
│   │   │   └── setters.py
│   │   ├── assets
│   │   │   ├── __init__.py
│   │   │   ├── coKriging.py
│   │   │   ├── decision_making.py
│   │   │   ├── geophysics.py
│   │   │   ├── kriging.py
│   │   │   ├── spill_analysis.py
│   │   │   └── topology.py
│   │   ├── bayesian
│   │   │   ├── __init__.py
│   │   │   ├── axes_utils.py
│   │   │   ├── fields.py
│   │   │   ├── joyplot.py
│   │   │   ├── plot_posterior.py
│   │   │   ├── posterior_analysis_DEP.py
│   │   │   ├── posterior_analysis_elisa.py
│   │   │   └── theano_op.py
│   │   ├── core
│   │   │   ├── __init__.py
│   │   │   ├── checkers.py
│   │   │   ├── data.py
│   │   │   ├── data_modules
│   │   │   │   ├── __init__.py
│   │   │   │   ├── geometric_data.py
│   │   │   │   └── stack.py
│   │   │   ├── engine.rst
│   │   │   ├── grid_modules
│   │   │   │   ├── __init__.py
│   │   │   │   ├── create_topography.py
│   │   │   │   ├── diamond_square.py
│   │   │   │   ├── grid_types.py
│   │   │   │   ├── section_utils.py
│   │   │   │   └── topography.py
│   │   │   ├── interpolator.py
│   │   │   ├── model.py
│   │   │   ├── qgrid_integration.py
│   │   │   ├── solution.py
│   │   │   ├── theano_modules
│   │   │   │   ├── __init__.py
│   │   │   │   ├── theano_export.py
│   │   │   │   ├── theano_graph.py
│   │   │   │   ├── theano_graph_pro.py
│   │   │   │   └── theano_kriging.py
│   │   │   └── xsolution.py
│   │   ├── gempy_api.py
│   │   ├── plot
│   │   │   ├── __init__.py
│   │   │   ├── _plot.py
│   │   │   ├── _vista.py
│   │   │   ├── _visualization_2d.py
│   │   │   ├── decorators.py
│   │   │   ├── helpers.py
│   │   │   ├── plot_api.py
│   │   │   ├── plot_utils.py
│   │   │   ├── sequential_pile.py
│   │   │   ├── vista.py
│   │   │   ├── vista_aux.py
│   │   │   ├── vista_qt.py
│   │   │   ├── visualization_2d.py
│   │   │   └── visualization_3d.py
│   │   └── utils
│   │       ├── __init__.py
│   │       ├── analysis.py
│   │       ├── decimation.py
│   │       ├── docstring.py
│   │       ├── export.py
│   │       ├── extract_geomodeller_data.py
│   │       ├── geogrid.py
│   │       ├── geomodeller_integration.py
│   │       ├── gradient.py
│   │       ├── input_manipulation.py
│   │       ├── meta.py
│   │       └── qgrid_api.py
│   ├── notebooks
│   │   ├── 2d_visualization.ipynb
│   │   ├── 3d_visualization.ipynb
│   │   ├── Getting_started.ipynb
│   │   └── Qgrid_creating_models (unstable).ipynb
│   ├── optional-requirements.txt
│   ├── requirements.txt
│   ├── scripts
│   │   ├── convert_jupyter_to_py.py
│   │   ├── deploy.sh
│   │   ├── theano_gpu.py
│   │   └── update_doc_elements.sh
│   ├── setup.cfg
│   ├── setup.py
│   └── test
│       ├── __init__.py
│       ├── conftest.py
│       ├── context.py
│       ├── figs
│       │   └── __init__.py
│       ├── input_data
│       │   ├── 05_toy_fold_unconformity_interfaces.csv
│       │   ├── 05_toy_fold_unconformity_orientations.csv
│       │   ├── 2018_interf.csv
│       │   ├── 2018_orient_clust_n_init5_0.csv
│       │   ├── FabLessPoints_Foliations.csv
│       │   ├── FabLessPoints_Points.csv
│       │   ├── GeoModeller
│       │   │   ├── test_a
│       │   │   │   ├── Middle._1.s3d
│       │   │   │   ├── Middle.sec
│       │   │   │   ├── Settings
│       │   │   │   │   ├── 3dview_3D View.cfg
│       │   │   │   │   └── viewers.cfg
│       │   │   │   ├── SurfaceTopography._1.s3d
│       │   │   │   ├── SurfaceTopography.sec
│       │   │   │   ├── Viewer2dState
│       │   │   │   │   ├── Middle.dat
│       │   │   │   │   └── SurfaceTopography.dat
│       │   │   │   ├── test_a.md5
│       │   │   │   ├── test_a.wsp
│       │   │   │   ├── test_a.xml
│       │   │   │   ├── test_a.xml.bu
│       │   │   │   ├── test_a_Foliations.csv
│       │   │   │   └── test_a_Points.csv
│       │   │   ├── test_b
│       │   │   │   ├── Middle._1.s3d
│       │   │   │   ├── Middle.sec
│       │   │   │   ├── Settings
│       │   │   │   │   ├── 3dview_3D View.cfg
│       │   │   │   │   └── viewers.cfg
│       │   │   │   ├── SurfaceTopography._1.s3d
│       │   │   │   ├── SurfaceTopography.sec
│       │   │   │   ├── Viewer2dState
│       │   │   │   │   ├── Middle.dat
│       │   │   │   │   └── SurfaceTopography.dat
│       │   │   │   ├── test_b.md5
│       │   │   │   ├── test_b.xml
│       │   │   │   ├── test_b.xml.bu
│       │   │   │   ├── test_b_Foliations.csv
│       │   │   │   └── test_b_Points.csv
│       │   │   ├── test_b2
│       │   │   │   ├── Middle._1.s3d
│       │   │   │   ├── Middle.sec
│       │   │   │   ├── Settings
│       │   │   │   │   ├── 3dview_3D View.cfg
│       │   │   │   │   └── viewers.cfg
│       │   │   │   ├── SurfaceTopography._1.s3d
│       │   │   │   ├── SurfaceTopography.sec
│       │   │   │   ├── Viewer2dState
│       │   │   │   │   ├── Middle.dat
│       │   │   │   │   └── SurfaceTopography.dat
│       │   │   │   ├── test_b2.md5
│       │   │   │   ├── test_b2.xml
│       │   │   │   └── test_b2.xml.bu
│       │   │   ├── test_b3
│       │   │   │   ├── Middle._1.s3d
│       │   │   │   ├── Middle.sec
│       │   │   │   ├── Settings
│       │   │   │   │   └── viewers.cfg
│       │   │   │   ├── SurfaceTopography._1.s3d
│       │   │   │   ├── SurfaceTopography.sec
│       │   │   │   ├── Viewer2dState
│       │   │   │   │   ├── Middle.dat
│       │   │   │   │   └── SurfaceTopography.dat
│       │   │   │   ├── test_b3.md5
│       │   │   │   ├── test_b3.xml
│       │   │   │   └── test_b3.xml.bu
│       │   │   ├── test_b4
│       │   │   │   ├── Middle._1.s3d
│       │   │   │   ├── Middle.sec
│       │   │   │   ├── Settings
│       │   │   │   │   └── viewers.cfg
│       │   │   │   ├── SurfaceTopography._1.s3d
│       │   │   │   ├── SurfaceTopography.sec
│       │   │   │   ├── Viewer2dState
│       │   │   │   │   ├── Middle.dat
│       │   │   │   │   └── SurfaceTopography.dat
│       │   │   │   ├── test_b4.md5
│       │   │   │   ├── test_b4.xml
│       │   │   │   └── test_b4.xml.bu
│       │   │   ├── test_c
│       │   │   │   ├── Middle._1.s3d
│       │   │   │   ├── Middle.sec
│       │   │   │   ├── Settings
│       │   │   │   │   ├── 3dview_3D View.cfg
│       │   │   │   │   └── viewers.cfg
│       │   │   │   ├── SurfaceTopography._1.s3d
│       │   │   │   ├── SurfaceTopography.sec
│       │   │   │   ├── Viewer2dState
│       │   │   │   │   ├── Middle.dat
│       │   │   │   │   └── SurfaceTopography.dat
│       │   │   │   ├── test_c.md5
│       │   │   │   ├── test_c.xml
│       │   │   │   ├── test_c.xml.bu
│       │   │   │   ├── test_c_Foliations.csv
│       │   │   │   └── test_c_Points.csv
│       │   │   ├── test_d
│       │   │   │   ├── Middle._1.s3d
│       │   │   │   ├── Middle.sec
│       │   │   │   ├── Settings
│       │   │   │   │   ├── 3dview_3D View.cfg
│       │   │   │   │   └── viewers.cfg
│       │   │   │   ├── SurfaceTopography._1.s3d
│       │   │   │   ├── SurfaceTopography.sec
│       │   │   │   ├── Viewer2dState
│       │   │   │   │   ├── Middle.dat
│       │   │   │   │   └── SurfaceTopography.dat
│       │   │   │   ├── test_d.md5
│       │   │   │   ├── test_d.xml
│       │   │   │   ├── test_d.xml.bu
│       │   │   │   ├── test_d_Foliations.csv
│       │   │   │   └── test_d_Points.csv
│       │   │   ├── test_e
│       │   │   │   ├── Middle._1.s3d
│       │   │   │   ├── Middle.sec
│       │   │   │   ├── Settings
│       │   │   │   │   ├── 3dview_3D View.cfg
│       │   │   │   │   └── viewers.cfg
│       │   │   │   ├── SurfaceTopography._1.s3d
│       │   │   │   ├── SurfaceTopography.sec
│       │   │   │   ├── Viewer2dState
│       │   │   │   │   ├── Middle.dat
│       │   │   │   │   └── SurfaceTopography.dat
│       │   │   │   ├── test_e.md5
│       │   │   │   ├── test_e.xml
│       │   │   │   ├── test_e.xml.bu
│       │   │   │   ├── test_e_Foliations.csv
│       │   │   │   └── test_e_Points.csv
│       │   │   ├── test_f
│       │   │   │   ├── FootwallSection_-_parallel_fault._1.s3d
│       │   │   │   ├── FootwallSection_-_parallel_fault.sec
│       │   │   │   ├── MiddleSection_-_across_fault._1.s3d
│       │   │   │   ├── MiddleSection_-_across_fault.sec
│       │   │   │   ├── MiddleSection_-_along_fault._1.s3d
│       │   │   │   ├── MiddleSection_-_along_fault.sec
│       │   │   │   ├── Settings
│       │   │   │   │   ├── 3dview_3D View.cfg
│       │   │   │   │   └── viewers.cfg
│       │   │   │   ├── SideSection1_-_across_fault.sec
│       │   │   │   ├── SurfaceTopography._1.s3d
│       │   │   │   ├── SurfaceTopography.sec
│       │   │   │   ├── Viewer2dState
│       │   │   │   │   ├── FootwallSection - parallel fault.dat
│       │   │   │   │   ├── MiddleSection - across fault.dat
│       │   │   │   │   ├── MiddleSection - along fault.dat
│       │   │   │   │   ├── SideSection1 - across fault.dat
│       │   │   │   │   └── SurfaceTopography.dat
│       │   │   │   ├── test_f.md5
│       │   │   │   ├── test_f.xml
│       │   │   │   ├── test_f.xml.bu
│       │   │   │   ├── test_f_Foliations.csv
│       │   │   │   ├── test_f_Points.csv
│       │   │   │   ├── test_f_dfa_Model_NonReservoirDeep.shp
│       │   │   │   ├── test_f_dfa_Model_Reservoir.shp
│       │   │   │   ├── test_f_dfa_Model_Seal.shp
│       │   │   │   ├── test_f_dfa_Model_SecondaryReservoir.shp
│       │   │   │   ├── test_f_dfa_Model_SecondarySeal.shp
│       │   │   │   └── test_f_dfa_Surface_MainFault.shp
│       │   │   ├── test_g
│       │   │   │   ├── Atley._1.s3d
│       │   │   │   ├── Atley.sec
│       │   │   │   ├── NorthSandstone._1.s3d
│       │   │   │   ├── NorthSandstone.sec
│       │   │   │   ├── Seismic._1.s3d
│       │   │   │   ├── Seismic.sec
│       │   │   │   ├── Settings
│       │   │   │   │   └── viewers.cfg
│       │   │   │   ├── SurfaceTopography._1.s3d
│       │   │   │   ├── Viewer2dState
│       │   │   │   │   ├── Atley.dat
│       │   │   │   │   ├── NorthSandstone.dat
│       │   │   │   │   ├── Seismic.dat
│       │   │   │   │   └── SurfaceTopography.dat
│       │   │   │   ├── test_g.md5
│       │   │   │   ├── test_g.xml
│       │   │   │   ├── test_g.xml.bu
│       │   │   │   ├── test_g_Foliations.csv
│       │   │   │   ├── test_g_Points.csv
│       │   │   │   ├── test_g_dfa_Model_EarlyGranite.shp
│       │   │   │   ├── test_g_dfa_Model_Murchison.shp
│       │   │   │   ├── test_g_dfa_Model_SimpleBIF.shp
│       │   │   │   ├── test_g_dfa_Model_SimpleMafic.shp
│       │   │   │   └── test_g_dfa_Model_SimpleMafic2.shp
│       │   │   └── test_h
│       │   │       ├── Atley._1.s3d
│       │   │       ├── Atley.sec
│       │   │       ├── NorthSandstone._1.s3d
│       │   │       ├── NorthSandstone.sec
│       │   │       ├── Seismic._1.s3d
│       │   │       ├── Seismic.sec
│       │   │       ├── Settings
│       │   │       │   ├── 3dview_3D View.cfg
│       │   │       │   └── viewers.cfg
│       │   │       ├── SurfaceTopography._1.s3d
│       │   │       ├── Viewer2dState
│       │   │       │   ├── Atley.dat
│       │   │       │   ├── NorthSandstone.dat
│       │   │       │   ├── Seismic.dat
│       │   │       │   └── SurfaceTopography.dat
│       │   │       ├── cave
│       │   │       │   ├── sandstone.grd_interfaces_EarlyGranite.txt
│       │   │       │   ├── sandstone.grd_interfaces_SimpleBIF.txt
│       │   │       │   ├── sandstone.grd_interfaces_SimpleMafic.txt
│       │   │       │   ├── sandstone.grd_interfaces_SimpleMafic2.txt
│       │   │       │   ├── sandstone.grd_isopachs_EarlyGranite.txt
│       │   │       │   ├── sandstone.grd_isopachs_Murchison.txt
│       │   │       │   ├── sandstone.grd_isopachs_SimpleBIF.txt
│       │   │       │   ├── sandstone.grd_isopachs_SimpleMafic.txt
│       │   │       │   └── sandstone.grd_isopachs_SimpleMafic2.txt
│       │   │       ├── test_h.md5
│       │   │       ├── test_h.vox
│       │   │       ├── test_h.xml
│       │   │       ├── test_h.xml.bu
│       │   │       ├── test_h_Foliations.csv
│       │   │       ├── test_h_Points.csv
│       │   │       ├── test_h_dfa_Surface_EarlyGranite.shp
│       │   │       ├── test_h_dfa_Surface_SimpleBIF.shp
│       │   │       ├── test_h_dfa_Surface_SimpleMafic.shp
│       │   │       └── test_h_dfa_Surface_SimpleMafic2.shp
│       │   ├── __init__.py
│       │   ├── _cropped_DEM_coarse.tif
│       │   ├── ch6_data_fol.csv
│       │   ├── ch6_data_interf.csv
│       │   ├── coordinates_mwe.csv
│       │   ├── dome_sub_sub_utm.tif
│       │   ├── dtm_rp.tif
│       │   ├── dtm_rp2.tif
│       │   ├── filtered_orientations.csv
│       │   ├── filtered_surface_points.csv
│       │   ├── gempy_foliations.csv
│       │   ├── gempy_interfaces.csv
│       │   ├── geo_data.pickle
│       │   ├── orientations_mwe.csv
│       │   ├── simple_fault_model_orientations.csv
│       │   ├── simple_fault_model_points.csv
│       │   ├── templates
│       │   │   ├── dip.png
│       │   │   ├── ge_placemark_template_fol.xml
│       │   │   ├── ge_placemark_template_interf.xml
│       │   │   ├── ge_template_raw_fol.xml
│       │   │   └── ge_template_raw_interf.xml
│       │   ├── test_a_sol.npy
│       │   ├── test_b_sol.npy
│       │   ├── test_c_sol.npy
│       │   ├── test_d_sol.npy
│       │   ├── test_e_sol.npy
│       │   ├── test_f_sol.npy
│       │   ├── test_integration_lith_block.npy
│       │   └── test_solution.pickle.pickle
│       ├── pytest.in
│       ├── test_addons
│       │   ├── TOUPDATE_addons
│       │   │   ├── pynoddy
│       │   │   │   ├── TOUPDATE_pynoddy_gempy.py
│       │   │   │   ├── noddy_block.npy
│       │   │   │   └── te_pynoddy.py
│       │   │   └── test_google_earth.py
│       │   ├── __init__.py
│       │   ├── rexfiles
│       │   │   └── __init__.py
│       │   ├── test_gempy_to_rexfile.py
│       │   └── test_rex_cloud_api.py
│       ├── test_anisotropies
│       │   ├── __init__.py
│       │   └── test_anisotropies.py
│       ├── test_api
│       │   ├── __init__.py
│       │   ├── test_api.py
│       │   └── test_geometry_api.py
│       ├── test_assets
│       │   ├── __init__.py
│       │   ├── test_gravity.py
│       │   ├── test_grid_tz.py
│       │   ├── test_magnetics.py
│       │   └── test_topology_np.py
│       ├── test_community_bugs
│       │   ├── __init__.py
│       │   └── test_community_bugs.py
│       ├── test_core
│       │   ├── UPDATE_data.py
│       │   ├── UPDATE_model.py
│       │   ├── __init__.py
│       │   ├── test_colors.py
│       │   ├── test_data_classes.py
│       │   ├── test_data_mutation.py
│       │   ├── test_data_mutation2.py
│       │   ├── test_grids
│       │   │   ├── __init__.py
│       │   │   ├── test_diamond_square.py
│       │   │   ├── test_grid.py
│       │   │   └── test_topography.py
│       │   ├── test_io.py
│       │   ├── test_masking
│       │   │   ├── all_ero.npy
│       │   │   ├── one_onlap.npy
│       │   │   ├── test_unconformities.py
│       │   │   └── two_onlap.npy
│       │   ├── test_model.py
│       │   ├── test_performance.py
│       │   ├── test_pile_manipulation.py
│       │   ├── test_solution.py
│       │   ├── test_sort_surfaces.py
│       │   └── test_xsol.py
│       ├── test_integrations
│       │   ├── __init__.py
│       │   └── test_map2loop.py
│       ├── test_model_types
│       │   ├── __init__.py
│       │   ├── test_complex_model.py
│       │   ├── test_one_fault_model.py
│       │   └── test_simple_models.py
│       ├── test_plotting
│       │   ├── TEST_vista_
│       │   ├── __init__.py
│       │   ├── test_2d.py
│       │   ├── test_plot_3d.py
│       │   └── test_vista.py
│       ├── test_prob_modeling
│       │   ├── TEST_pymc3.py
│       │   └── __init__.py
│       └── test_utilities
│           ├── __init__.py
│           └── test_utilities.py
└── gempyGemPy是一个基于Python的开源3D结构地质建模软件,它允许根据界面和方向数据隐式(即自动)创建复杂的地质模型。 它还为随机建模提供支持,以处理参数和模型不确定性-源码_gempy-master.zip

113 directories, 640 files


实例下载地址

gempy:GemPy是一个基于Python的开源3D结构地质建模软件,它允许根据界面和方向数据隐式(即自动)创建复杂的地质模型。 它还为随机建模提供支持,以处理参数和模型不确定性-源码

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警