├── .github └── workflows │ ├── BuildDoc.yml │ ├── ContinuousIntegration.yml │ └── ExampleNotebooks.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs ├── Makefile ├── make.bat └── source │ ├── api │ ├── data.rst │ ├── griddef.rst │ ├── index.rst │ ├── programs.rst │ └── statistics.rst │ ├── conf.py │ ├── contribution │ └── contribution.rst │ ├── examples │ ├── BoundaryModeling.ipynb │ ├── GMM.ipynb │ ├── Introduction.ipynb │ ├── Kriging1.ipynb │ ├── Kriging2.ipynb │ ├── StructuralModeling.ipynb │ └── index.rst │ ├── figures │ ├── CcgGetFiles.png │ ├── GettingStarted │ │ ├── 1.png │ │ ├── 2.png │ │ └── 3.png │ ├── GslibGetFiles.png │ ├── PlottingGallery │ │ ├── Correlation_plot.png │ │ ├── accuracy_plot.png │ │ ├── contour_plot.png │ │ ├── drill_plot.png │ │ ├── grid_slice_plot.png │ │ ├── histogram_plot1.png │ │ ├── histogram_plot2.png │ │ ├── histogram_plot3.png │ │ ├── histogram_plot_simulation.png │ │ ├── loadings_plot.png │ │ ├── location_plot.png │ │ ├── pitplot.png │ │ ├── pitplot_mr.png │ │ ├── probability_plot.png │ │ ├── qq_plot.png │ │ ├── scatter_plot.png │ │ ├── scatter_plots.png │ │ ├── scatter_plots_lu.png │ │ ├── slice_plot.png │ │ ├── validation_plot.png │ │ └── variogram_plot.png │ ├── catpalette1.png │ ├── catpalette2.png │ ├── catpalette3.png │ ├── cmap_topo1.png │ ├── cmap_topo2.png │ ├── colormaps.png │ ├── favicon.ico │ ├── gs_overview.jpg │ ├── pygeostat_logo.png │ └── pygeostat_logo_notxt.png │ ├── gmm_fit.out │ ├── index.rst │ ├── static │ ├── css │ │ └── custom.css │ └── style.css │ ├── temp │ ├── templates │ └── layout.html │ ├── user_guide │ ├── gettingstarted.rst │ ├── index.rst │ ├── installation.rst │ └── plotting.rst │ └── welcome.rst ├── pyproject.toml ├── src └── pygeostat │ ├── __init__.py │ ├── data │ ├── __init__.py │ ├── data.py │ ├── example_data │ │ ├── 3d_correlation.dat │ │ ├── 3d_estimate.out │ │ ├── 3d_grid.out │ │ ├── 97data.dat │ │ ├── accuracy_plot.dat │ │ ├── cluster.dat │ │ ├── data.dat │ │ ├── gmm_fit.out │ │ ├── grid2d_surf.dat │ │ ├── griddef.txt │ │ ├── location_plot.dat │ │ ├── oilsands.dat │ │ ├── parta.dat │ │ ├── partb.dat │ │ ├── partc.dat │ │ ├── point2d_ind.dat │ │ ├── point2d_mv.dat │ │ ├── point2d_surf.dat │ │ ├── point3d_ind_mv.dat │ │ ├── reservoir_boundary.dat │ │ ├── reservoir_data.dat │ │ ├── reservoir_surface.dat │ │ ├── true.dat │ │ ├── varcalc.out │ │ ├── varmodel.out │ │ └── ydata.dat │ ├── grid_definition.py │ ├── h5_io.py │ ├── h5_pytables.py │ └── iotools.py │ ├── datautils │ ├── __init__.py │ ├── desurvey.py │ ├── fastcomps.py │ ├── labels.py │ └── utils.py │ ├── executable │ └── Info.txt │ ├── fortran │ ├── __init__.py │ ├── compile.py │ ├── compile_fortransubs.bat │ ├── compile_linux.py │ ├── readme.txt │ ├── resource │ │ ├── LAPACK │ │ │ ├── ALL │ │ │ │ ├── daxpy.f │ │ │ │ ├── dcopy.f │ │ │ │ ├── ddot.f │ │ │ │ ├── dgemm.f │ │ │ │ ├── dgemv.f │ │ │ │ ├── dger.f │ │ │ │ ├── dgesv.f │ │ │ │ ├── dgetf2.f │ │ │ │ ├── dgetrf.f │ │ │ │ ├── dgetri.f │ │ │ │ ├── dgetrs.f │ │ │ │ ├── disnan.f │ │ │ │ ├── dlae2.f │ │ │ │ ├── dlaev2.f │ │ │ │ ├── dlaisnan.f │ │ │ │ ├── dlamch.f │ │ │ │ ├── dlanst.f │ │ │ │ ├── dlansy.f │ │ │ │ ├── dlapy2.f │ │ │ │ ├── dlarf.f │ │ │ │ ├── dlarfb.f │ │ │ │ ├── dlarfg.f │ │ │ │ ├── dlarft.f │ │ │ │ ├── dlartg.f │ │ │ │ ├── dlascl.f │ │ │ │ ├── dlaset.f │ │ │ │ ├── dlasr.f │ │ │ │ ├── dlasrt.f │ │ │ │ ├── dlassq.f │ │ │ │ ├── dlaswp.f │ │ │ │ ├── dlatrd.f │ │ │ │ ├── dlauu2.f │ │ │ │ ├── dlauum.f │ │ │ │ ├── dnrm2.f │ │ │ │ ├── dorg2l.f │ │ │ │ ├── dorg2r.f │ │ │ │ ├── dorgql.f │ │ │ │ ├── dorgqr.f │ │ │ │ ├── dorgtr.f │ │ │ │ ├── dpotf2.f │ │ │ │ ├── dpotrf.f │ │ │ │ ├── dpotri.f │ │ │ │ ├── dscal.f │ │ │ │ ├── dsteqr.f │ │ │ │ ├── dsterf.f │ │ │ │ ├── dswap.f │ │ │ │ ├── dsyev.f │ │ │ │ ├── dsymv.f │ │ │ │ ├── dsyr2.f │ │ │ │ ├── dsyr2k.f │ │ │ │ ├── dsyrk.f │ │ │ │ ├── dsytd2.f │ │ │ │ ├── dsytrd.f │ │ │ │ ├── dtrmm.f │ │ │ │ ├── dtrmv.f │ │ │ │ ├── dtrsm.f │ │ │ │ ├── dtrti2.f │ │ │ │ ├── dtrtri.f │ │ │ │ ├── idamax.f │ │ │ │ ├── ieeeck.f │ │ │ │ ├── ilaenv.f │ │ │ │ ├── iparmq.f │ │ │ │ ├── lsame.f │ │ │ │ └── xerbla.f │ │ │ ├── eig.f90 │ │ │ └── solve.f90 │ │ ├── compile_lapack.py │ │ ├── compile_lapack_linux.py │ │ └── rm │ │ │ ├── libiconv2.dll │ │ │ ├── libintl3.dll │ │ │ └── rm.exe │ ├── sourcedefs.py │ ├── src │ │ ├── pygsb.f90 │ │ └── subs │ │ │ ├── fileprocessing.f90 │ │ │ └── gslib_binary.f90 │ └── wrappers.py │ ├── multivariate │ ├── __init__.py │ └── utils.py │ ├── plotting │ ├── __init__.py │ ├── accuracy_plot.py │ ├── cmaps.py │ ├── contour_plot.py │ ├── correlation_matrix_plot.py │ ├── drill_plot.py │ ├── export_image.py │ ├── gaussian_mv.py │ ├── grid_slice_plot.py │ ├── histogram_plot.py │ ├── histogram_plot_simulation.py │ ├── image_grid.py │ ├── loadings_plot.py │ ├── location_plot.py │ ├── mds_plot.py │ ├── pit_plot.py │ ├── probability_plot.py │ ├── qq_plot.py │ ├── scatter_plot.py │ ├── set_style.py │ ├── slice_plot.py │ ├── subplots.py │ ├── utils.py │ ├── validation_plot.py │ ├── variogram_plot.py │ ├── variogram_plot_simulation.py │ └── variogram_utils.py │ ├── programs │ ├── __init__.py │ ├── program_utils.py │ └── programs.py │ ├── pygeostat_parameters.py │ ├── statistics │ ├── __init__.py │ ├── cdf.py │ ├── kde.py │ ├── postsim.py │ └── utils.py │ ├── transformations │ ├── __init__.py │ ├── rotations.py │ └── transformations.py │ └── utility │ ├── __init__.py │ ├── deprecation.py │ ├── filemanagement.py │ └── logging.py ├── tests ├── test_data.py ├── test_gmm.py ├── test_parameters.py ├── test_plot_style.py ├── test_plots.py └── test_utility.py └── uv.lock /.github/workflows/BuildDoc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/.github/workflows/BuildDoc.yml -------------------------------------------------------------------------------- /.github/workflows/ContinuousIntegration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/.github/workflows/ContinuousIntegration.yml -------------------------------------------------------------------------------- /.github/workflows/ExampleNotebooks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/.github/workflows/ExampleNotebooks.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/api/data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/api/data.rst -------------------------------------------------------------------------------- /docs/source/api/griddef.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/api/griddef.rst -------------------------------------------------------------------------------- /docs/source/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/api/index.rst -------------------------------------------------------------------------------- /docs/source/api/programs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/api/programs.rst -------------------------------------------------------------------------------- /docs/source/api/statistics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/api/statistics.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/contribution/contribution.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/contribution/contribution.rst -------------------------------------------------------------------------------- /docs/source/examples/BoundaryModeling.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/examples/BoundaryModeling.ipynb -------------------------------------------------------------------------------- /docs/source/examples/GMM.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/examples/GMM.ipynb -------------------------------------------------------------------------------- /docs/source/examples/Introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/examples/Introduction.ipynb -------------------------------------------------------------------------------- /docs/source/examples/Kriging1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/examples/Kriging1.ipynb -------------------------------------------------------------------------------- /docs/source/examples/Kriging2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/examples/Kriging2.ipynb -------------------------------------------------------------------------------- /docs/source/examples/StructuralModeling.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/examples/StructuralModeling.ipynb -------------------------------------------------------------------------------- /docs/source/examples/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/examples/index.rst -------------------------------------------------------------------------------- /docs/source/figures/CcgGetFiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/figures/CcgGetFiles.png -------------------------------------------------------------------------------- /docs/source/figures/GettingStarted/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/figures/GettingStarted/1.png -------------------------------------------------------------------------------- /docs/source/figures/GettingStarted/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/figures/GettingStarted/2.png -------------------------------------------------------------------------------- /docs/source/figures/GettingStarted/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/figures/GettingStarted/3.png -------------------------------------------------------------------------------- /docs/source/figures/GslibGetFiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/figures/GslibGetFiles.png -------------------------------------------------------------------------------- /docs/source/figures/PlottingGallery/Correlation_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/figures/PlottingGallery/Correlation_plot.png -------------------------------------------------------------------------------- /docs/source/figures/PlottingGallery/accuracy_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/figures/PlottingGallery/accuracy_plot.png -------------------------------------------------------------------------------- /docs/source/figures/PlottingGallery/contour_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/figures/PlottingGallery/contour_plot.png -------------------------------------------------------------------------------- /docs/source/figures/PlottingGallery/drill_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/figures/PlottingGallery/drill_plot.png -------------------------------------------------------------------------------- /docs/source/figures/PlottingGallery/grid_slice_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/figures/PlottingGallery/grid_slice_plot.png -------------------------------------------------------------------------------- /docs/source/figures/PlottingGallery/histogram_plot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/figures/PlottingGallery/histogram_plot1.png -------------------------------------------------------------------------------- /docs/source/figures/PlottingGallery/histogram_plot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/figures/PlottingGallery/histogram_plot2.png -------------------------------------------------------------------------------- /docs/source/figures/PlottingGallery/histogram_plot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/figures/PlottingGallery/histogram_plot3.png -------------------------------------------------------------------------------- /docs/source/figures/PlottingGallery/histogram_plot_simulation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/figures/PlottingGallery/histogram_plot_simulation.png -------------------------------------------------------------------------------- /docs/source/figures/PlottingGallery/loadings_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/figures/PlottingGallery/loadings_plot.png -------------------------------------------------------------------------------- /docs/source/figures/PlottingGallery/location_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/figures/PlottingGallery/location_plot.png -------------------------------------------------------------------------------- /docs/source/figures/PlottingGallery/pitplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/figures/PlottingGallery/pitplot.png -------------------------------------------------------------------------------- /docs/source/figures/PlottingGallery/pitplot_mr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/figures/PlottingGallery/pitplot_mr.png -------------------------------------------------------------------------------- /docs/source/figures/PlottingGallery/probability_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/figures/PlottingGallery/probability_plot.png -------------------------------------------------------------------------------- /docs/source/figures/PlottingGallery/qq_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/figures/PlottingGallery/qq_plot.png -------------------------------------------------------------------------------- /docs/source/figures/PlottingGallery/scatter_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/figures/PlottingGallery/scatter_plot.png -------------------------------------------------------------------------------- /docs/source/figures/PlottingGallery/scatter_plots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/figures/PlottingGallery/scatter_plots.png -------------------------------------------------------------------------------- /docs/source/figures/PlottingGallery/scatter_plots_lu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/figures/PlottingGallery/scatter_plots_lu.png -------------------------------------------------------------------------------- /docs/source/figures/PlottingGallery/slice_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/figures/PlottingGallery/slice_plot.png -------------------------------------------------------------------------------- /docs/source/figures/PlottingGallery/validation_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/figures/PlottingGallery/validation_plot.png -------------------------------------------------------------------------------- /docs/source/figures/PlottingGallery/variogram_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/figures/PlottingGallery/variogram_plot.png -------------------------------------------------------------------------------- /docs/source/figures/catpalette1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/figures/catpalette1.png -------------------------------------------------------------------------------- /docs/source/figures/catpalette2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/figures/catpalette2.png -------------------------------------------------------------------------------- /docs/source/figures/catpalette3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/figures/catpalette3.png -------------------------------------------------------------------------------- /docs/source/figures/cmap_topo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/figures/cmap_topo1.png -------------------------------------------------------------------------------- /docs/source/figures/cmap_topo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/figures/cmap_topo2.png -------------------------------------------------------------------------------- /docs/source/figures/colormaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/figures/colormaps.png -------------------------------------------------------------------------------- /docs/source/figures/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/figures/favicon.ico -------------------------------------------------------------------------------- /docs/source/figures/gs_overview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/figures/gs_overview.jpg -------------------------------------------------------------------------------- /docs/source/figures/pygeostat_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/figures/pygeostat_logo.png -------------------------------------------------------------------------------- /docs/source/figures/pygeostat_logo_notxt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/figures/pygeostat_logo_notxt.png -------------------------------------------------------------------------------- /docs/source/gmm_fit.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/gmm_fit.out -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/static/css/custom.css -------------------------------------------------------------------------------- /docs/source/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/static/style.css -------------------------------------------------------------------------------- /docs/source/temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/temp -------------------------------------------------------------------------------- /docs/source/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/templates/layout.html -------------------------------------------------------------------------------- /docs/source/user_guide/gettingstarted.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/user_guide/gettingstarted.rst -------------------------------------------------------------------------------- /docs/source/user_guide/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/user_guide/index.rst -------------------------------------------------------------------------------- /docs/source/user_guide/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/user_guide/installation.rst -------------------------------------------------------------------------------- /docs/source/user_guide/plotting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/user_guide/plotting.rst -------------------------------------------------------------------------------- /docs/source/welcome.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/docs/source/welcome.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/pygeostat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/__init__.py -------------------------------------------------------------------------------- /src/pygeostat/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/data/__init__.py -------------------------------------------------------------------------------- /src/pygeostat/data/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/data/data.py -------------------------------------------------------------------------------- /src/pygeostat/data/example_data/3d_correlation.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/data/example_data/3d_correlation.dat -------------------------------------------------------------------------------- /src/pygeostat/data/example_data/3d_estimate.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/data/example_data/3d_estimate.out -------------------------------------------------------------------------------- /src/pygeostat/data/example_data/3d_grid.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/data/example_data/3d_grid.out -------------------------------------------------------------------------------- /src/pygeostat/data/example_data/97data.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/data/example_data/97data.dat -------------------------------------------------------------------------------- /src/pygeostat/data/example_data/accuracy_plot.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/data/example_data/accuracy_plot.dat -------------------------------------------------------------------------------- /src/pygeostat/data/example_data/cluster.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/data/example_data/cluster.dat -------------------------------------------------------------------------------- /src/pygeostat/data/example_data/data.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/data/example_data/data.dat -------------------------------------------------------------------------------- /src/pygeostat/data/example_data/gmm_fit.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/data/example_data/gmm_fit.out -------------------------------------------------------------------------------- /src/pygeostat/data/example_data/grid2d_surf.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/data/example_data/grid2d_surf.dat -------------------------------------------------------------------------------- /src/pygeostat/data/example_data/griddef.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/data/example_data/griddef.txt -------------------------------------------------------------------------------- /src/pygeostat/data/example_data/location_plot.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/data/example_data/location_plot.dat -------------------------------------------------------------------------------- /src/pygeostat/data/example_data/oilsands.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/data/example_data/oilsands.dat -------------------------------------------------------------------------------- /src/pygeostat/data/example_data/parta.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/data/example_data/parta.dat -------------------------------------------------------------------------------- /src/pygeostat/data/example_data/partb.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/data/example_data/partb.dat -------------------------------------------------------------------------------- /src/pygeostat/data/example_data/partc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/data/example_data/partc.dat -------------------------------------------------------------------------------- /src/pygeostat/data/example_data/point2d_ind.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/data/example_data/point2d_ind.dat -------------------------------------------------------------------------------- /src/pygeostat/data/example_data/point2d_mv.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/data/example_data/point2d_mv.dat -------------------------------------------------------------------------------- /src/pygeostat/data/example_data/point2d_surf.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/data/example_data/point2d_surf.dat -------------------------------------------------------------------------------- /src/pygeostat/data/example_data/point3d_ind_mv.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/data/example_data/point3d_ind_mv.dat -------------------------------------------------------------------------------- /src/pygeostat/data/example_data/reservoir_boundary.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/data/example_data/reservoir_boundary.dat -------------------------------------------------------------------------------- /src/pygeostat/data/example_data/reservoir_data.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/data/example_data/reservoir_data.dat -------------------------------------------------------------------------------- /src/pygeostat/data/example_data/reservoir_surface.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/data/example_data/reservoir_surface.dat -------------------------------------------------------------------------------- /src/pygeostat/data/example_data/true.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/data/example_data/true.dat -------------------------------------------------------------------------------- /src/pygeostat/data/example_data/varcalc.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/data/example_data/varcalc.out -------------------------------------------------------------------------------- /src/pygeostat/data/example_data/varmodel.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/data/example_data/varmodel.out -------------------------------------------------------------------------------- /src/pygeostat/data/example_data/ydata.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/data/example_data/ydata.dat -------------------------------------------------------------------------------- /src/pygeostat/data/grid_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/data/grid_definition.py -------------------------------------------------------------------------------- /src/pygeostat/data/h5_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/data/h5_io.py -------------------------------------------------------------------------------- /src/pygeostat/data/h5_pytables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/data/h5_pytables.py -------------------------------------------------------------------------------- /src/pygeostat/data/iotools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/data/iotools.py -------------------------------------------------------------------------------- /src/pygeostat/datautils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/datautils/__init__.py -------------------------------------------------------------------------------- /src/pygeostat/datautils/desurvey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/datautils/desurvey.py -------------------------------------------------------------------------------- /src/pygeostat/datautils/fastcomps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/datautils/fastcomps.py -------------------------------------------------------------------------------- /src/pygeostat/datautils/labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/datautils/labels.py -------------------------------------------------------------------------------- /src/pygeostat/datautils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/datautils/utils.py -------------------------------------------------------------------------------- /src/pygeostat/executable/Info.txt: -------------------------------------------------------------------------------- 1 | A repository of executable files 2 | -------------------------------------------------------------------------------- /src/pygeostat/fortran/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/__init__.py -------------------------------------------------------------------------------- /src/pygeostat/fortran/compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/compile.py -------------------------------------------------------------------------------- /src/pygeostat/fortran/compile_fortransubs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/compile_fortransubs.bat -------------------------------------------------------------------------------- /src/pygeostat/fortran/compile_linux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/compile_linux.py -------------------------------------------------------------------------------- /src/pygeostat/fortran/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/readme.txt -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/daxpy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/daxpy.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dcopy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dcopy.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/ddot.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/ddot.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dgemm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dgemm.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dgemv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dgemv.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dger.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dger.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dgesv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dgesv.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dgetf2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dgetf2.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dgetrf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dgetrf.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dgetri.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dgetri.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dgetrs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dgetrs.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/disnan.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/disnan.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dlae2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dlae2.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dlaev2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dlaev2.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dlaisnan.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dlaisnan.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dlamch.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dlamch.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dlanst.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dlanst.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dlansy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dlansy.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dlapy2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dlapy2.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dlarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dlarf.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dlarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dlarfb.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dlarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dlarfg.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dlarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dlarft.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dlartg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dlartg.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dlascl.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dlascl.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dlaset.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dlaset.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dlasr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dlasr.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dlasrt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dlasrt.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dlassq.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dlassq.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dlaswp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dlaswp.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dlatrd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dlatrd.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dlauu2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dlauu2.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dlauum.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dlauum.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dnrm2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dnrm2.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dorg2l.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dorg2l.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dorg2r.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dorg2r.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dorgql.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dorgql.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dorgqr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dorgqr.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dorgtr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dorgtr.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dpotf2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dpotf2.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dpotrf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dpotrf.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dpotri.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dpotri.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dscal.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dscal.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dsteqr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dsteqr.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dsterf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dsterf.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dswap.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dswap.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dsyev.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dsyev.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dsymv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dsymv.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dsyr2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dsyr2.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dsyr2k.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dsyr2k.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dsyrk.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dsyrk.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dsytd2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dsytd2.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dsytrd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dsytrd.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dtrmm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dtrmm.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dtrmv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dtrmv.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dtrsm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dtrsm.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dtrti2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dtrti2.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/dtrtri.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/dtrtri.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/idamax.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/idamax.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/ieeeck.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/ieeeck.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/ilaenv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/ilaenv.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/iparmq.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/iparmq.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/lsame.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/lsame.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/ALL/xerbla.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/ALL/xerbla.f -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/eig.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/eig.f90 -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/LAPACK/solve.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/LAPACK/solve.f90 -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/compile_lapack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/compile_lapack.py -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/compile_lapack_linux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/compile_lapack_linux.py -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/rm/libiconv2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/rm/libiconv2.dll -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/rm/libintl3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/rm/libintl3.dll -------------------------------------------------------------------------------- /src/pygeostat/fortran/resource/rm/rm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/resource/rm/rm.exe -------------------------------------------------------------------------------- /src/pygeostat/fortran/sourcedefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/sourcedefs.py -------------------------------------------------------------------------------- /src/pygeostat/fortran/src/pygsb.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/src/pygsb.f90 -------------------------------------------------------------------------------- /src/pygeostat/fortran/src/subs/fileprocessing.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/src/subs/fileprocessing.f90 -------------------------------------------------------------------------------- /src/pygeostat/fortran/src/subs/gslib_binary.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/src/subs/gslib_binary.f90 -------------------------------------------------------------------------------- /src/pygeostat/fortran/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/fortran/wrappers.py -------------------------------------------------------------------------------- /src/pygeostat/multivariate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/multivariate/__init__.py -------------------------------------------------------------------------------- /src/pygeostat/multivariate/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/multivariate/utils.py -------------------------------------------------------------------------------- /src/pygeostat/plotting/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/plotting/__init__.py -------------------------------------------------------------------------------- /src/pygeostat/plotting/accuracy_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/plotting/accuracy_plot.py -------------------------------------------------------------------------------- /src/pygeostat/plotting/cmaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/plotting/cmaps.py -------------------------------------------------------------------------------- /src/pygeostat/plotting/contour_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/plotting/contour_plot.py -------------------------------------------------------------------------------- /src/pygeostat/plotting/correlation_matrix_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/plotting/correlation_matrix_plot.py -------------------------------------------------------------------------------- /src/pygeostat/plotting/drill_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/plotting/drill_plot.py -------------------------------------------------------------------------------- /src/pygeostat/plotting/export_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/plotting/export_image.py -------------------------------------------------------------------------------- /src/pygeostat/plotting/gaussian_mv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/plotting/gaussian_mv.py -------------------------------------------------------------------------------- /src/pygeostat/plotting/grid_slice_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/plotting/grid_slice_plot.py -------------------------------------------------------------------------------- /src/pygeostat/plotting/histogram_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/plotting/histogram_plot.py -------------------------------------------------------------------------------- /src/pygeostat/plotting/histogram_plot_simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/plotting/histogram_plot_simulation.py -------------------------------------------------------------------------------- /src/pygeostat/plotting/image_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/plotting/image_grid.py -------------------------------------------------------------------------------- /src/pygeostat/plotting/loadings_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/plotting/loadings_plot.py -------------------------------------------------------------------------------- /src/pygeostat/plotting/location_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/plotting/location_plot.py -------------------------------------------------------------------------------- /src/pygeostat/plotting/mds_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/plotting/mds_plot.py -------------------------------------------------------------------------------- /src/pygeostat/plotting/pit_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/plotting/pit_plot.py -------------------------------------------------------------------------------- /src/pygeostat/plotting/probability_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/plotting/probability_plot.py -------------------------------------------------------------------------------- /src/pygeostat/plotting/qq_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/plotting/qq_plot.py -------------------------------------------------------------------------------- /src/pygeostat/plotting/scatter_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/plotting/scatter_plot.py -------------------------------------------------------------------------------- /src/pygeostat/plotting/set_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/plotting/set_style.py -------------------------------------------------------------------------------- /src/pygeostat/plotting/slice_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/plotting/slice_plot.py -------------------------------------------------------------------------------- /src/pygeostat/plotting/subplots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/plotting/subplots.py -------------------------------------------------------------------------------- /src/pygeostat/plotting/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/plotting/utils.py -------------------------------------------------------------------------------- /src/pygeostat/plotting/validation_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/plotting/validation_plot.py -------------------------------------------------------------------------------- /src/pygeostat/plotting/variogram_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/plotting/variogram_plot.py -------------------------------------------------------------------------------- /src/pygeostat/plotting/variogram_plot_simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/plotting/variogram_plot_simulation.py -------------------------------------------------------------------------------- /src/pygeostat/plotting/variogram_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/plotting/variogram_utils.py -------------------------------------------------------------------------------- /src/pygeostat/programs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/programs/__init__.py -------------------------------------------------------------------------------- /src/pygeostat/programs/program_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/programs/program_utils.py -------------------------------------------------------------------------------- /src/pygeostat/programs/programs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/programs/programs.py -------------------------------------------------------------------------------- /src/pygeostat/pygeostat_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/pygeostat_parameters.py -------------------------------------------------------------------------------- /src/pygeostat/statistics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/statistics/__init__.py -------------------------------------------------------------------------------- /src/pygeostat/statistics/cdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/statistics/cdf.py -------------------------------------------------------------------------------- /src/pygeostat/statistics/kde.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/statistics/kde.py -------------------------------------------------------------------------------- /src/pygeostat/statistics/postsim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/statistics/postsim.py -------------------------------------------------------------------------------- /src/pygeostat/statistics/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/statistics/utils.py -------------------------------------------------------------------------------- /src/pygeostat/transformations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/transformations/__init__.py -------------------------------------------------------------------------------- /src/pygeostat/transformations/rotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/transformations/rotations.py -------------------------------------------------------------------------------- /src/pygeostat/transformations/transformations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/transformations/transformations.py -------------------------------------------------------------------------------- /src/pygeostat/utility/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/utility/__init__.py -------------------------------------------------------------------------------- /src/pygeostat/utility/deprecation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/utility/deprecation.py -------------------------------------------------------------------------------- /src/pygeostat/utility/filemanagement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/utility/filemanagement.py -------------------------------------------------------------------------------- /src/pygeostat/utility/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/src/pygeostat/utility/logging.py -------------------------------------------------------------------------------- /tests/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/tests/test_data.py -------------------------------------------------------------------------------- /tests/test_gmm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/tests/test_gmm.py -------------------------------------------------------------------------------- /tests/test_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/tests/test_parameters.py -------------------------------------------------------------------------------- /tests/test_plot_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/tests/test_plot_style.py -------------------------------------------------------------------------------- /tests/test_plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/tests/test_plots.py -------------------------------------------------------------------------------- /tests/test_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/tests/test_utility.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CcgAlberta/pygeostat/HEAD/uv.lock --------------------------------------------------------------------------------