From c2f902aa16132f978220120b84997e72651a36bb Mon Sep 17 00:00:00 2001 From: mferrera Date: Mon, 20 Nov 2023 07:49:31 +0100 Subject: [PATCH] Rename to grid3d-maps --- .../action.yml | 4 +-- .github/actions/test_setup/action.yml | 4 +-- .github/workflows/publish.yml | 2 +- .gitignore | 4 +-- CONTRIBUTING.rst | 20 ++++++------- HISTORY.rst | 4 +-- Makefile | 2 +- README.md | 6 ++-- docs/Makefile | 8 +++--- docs/conf.py | 28 +++++++++---------- docs/index.rst | 2 +- docs/installation.rst | 6 ++-- docs/make.bat | 4 +-- pyproject.toml | 20 ++++++------- .../__init__.py | 2 +- .../aggregate/__init__.py | 0 .../aggregate/_config.py | 0 .../aggregate/_grid_aggregation.py | 2 +- .../aggregate/_migration_time.py | 0 .../aggregate/_parser.py | 4 +-- .../aggregate/grid3d_aggregate_map.py | 6 ++-- .../aggregate/grid3d_migration_time.py | 4 +-- .../avghc/__init__.py | 0 .../avghc/_compute_avg.py | 0 .../avghc/_compute_hcpfz.py | 0 .../avghc/_configparser.py | 2 +- .../avghc/_export_via_fmudataio.py | 4 +-- .../avghc/_get_grid_props.py | 0 .../avghc/_get_zonation_filters.py | 0 .../avghc/_hc_plotmap.py | 0 .../avghc/_loader.py | 0 .../avghc/_mapsettings.py | 0 .../avghc/grid3d_average_map.py | 4 +-- .../avghc/grid3d_hc_thickness.py | 4 +-- .../config_jobs/GRID3D_AGGREGATE_MAP | 0 .../config_jobs/GRID3D_AVERAGE_MAP | 0 .../config_jobs/GRID3D_HC_THICKNESS | 0 .../config_jobs/GRID3D_MIGRATION_TIME | 0 .../contact/__init__.py | 0 .../contact/_compute_contact.py | 0 .../contact/_get_grid_props.py | 0 .../contact/grid3d_contact_map.py | 6 ++-- .../hook_implementations/jobs.py | 2 +- .../test_scripts/test_grid3d_aggregate_map.py | 2 +- .../test_scripts/test_grid3d_average_map1.py | 2 +- .../test_scripts/test_grid3d_average_map2.py | 2 +- .../test_scripts/test_grid3d_average_map4.py | 2 +- .../test_grid3d_average_map_dataio1a.py | 2 +- tests/test_scripts/test_grid3d_contacts1.py | 2 +- .../test_scripts/test_grid3d_hc_thickness1.py | 2 +- .../test_scripts/test_grid3d_hc_thickness2.py | 2 +- .../test_scripts/test_grid3d_hc_thickness3.py | 2 +- .../test_scripts/test_grid3d_hc_thickness4.py | 2 +- .../test_grid3d_hc_thickness_dataio1a.py | 2 +- .../test_grid3d_hc_thickness_dataio1b.py | 2 +- .../test_grid3d_hc_thickness_dataio1c.py | 2 +- .../test_grid3d_migration_time.py | 2 +- tests/test_submodules/test_grid_aggregate.py | 2 +- tests/test_vs_ert/test_ert_hooks.py | 4 +-- .../test_vs_ert/test_hook_implementations.py | 10 +++---- 60 files changed, 99 insertions(+), 99 deletions(-) rename .github/actions/{build-xtgeoapp-grd3dmaps => build-grid3d-maps}/action.yml (83%) rename src/{xtgeoapp_grd3dmaps => grid3d_maps}/__init__.py (71%) rename src/{xtgeoapp_grd3dmaps => grid3d_maps}/aggregate/__init__.py (100%) rename src/{xtgeoapp_grd3dmaps => grid3d_maps}/aggregate/_config.py (100%) rename src/{xtgeoapp_grd3dmaps => grid3d_maps}/aggregate/_grid_aggregation.py (99%) rename src/{xtgeoapp_grd3dmaps => grid3d_maps}/aggregate/_migration_time.py (100%) rename src/{xtgeoapp_grd3dmaps => grid3d_maps}/aggregate/_parser.py (98%) rename src/{xtgeoapp_grd3dmaps => grid3d_maps}/aggregate/grid3d_aggregate_map.py (97%) rename src/{xtgeoapp_grd3dmaps => grid3d_maps}/aggregate/grid3d_migration_time.py (96%) rename src/{xtgeoapp_grd3dmaps => grid3d_maps}/avghc/__init__.py (100%) rename src/{xtgeoapp_grd3dmaps => grid3d_maps}/avghc/_compute_avg.py (100%) rename src/{xtgeoapp_grd3dmaps => grid3d_maps}/avghc/_compute_hcpfz.py (100%) rename src/{xtgeoapp_grd3dmaps => grid3d_maps}/avghc/_configparser.py (99%) rename src/{xtgeoapp_grd3dmaps => grid3d_maps}/avghc/_export_via_fmudataio.py (97%) rename src/{xtgeoapp_grd3dmaps => grid3d_maps}/avghc/_get_grid_props.py (100%) rename src/{xtgeoapp_grd3dmaps => grid3d_maps}/avghc/_get_zonation_filters.py (100%) rename src/{xtgeoapp_grd3dmaps => grid3d_maps}/avghc/_hc_plotmap.py (100%) rename src/{xtgeoapp_grd3dmaps => grid3d_maps}/avghc/_loader.py (100%) rename src/{xtgeoapp_grd3dmaps => grid3d_maps}/avghc/_mapsettings.py (100%) rename src/{xtgeoapp_grd3dmaps => grid3d_maps}/avghc/grid3d_average_map.py (97%) rename src/{xtgeoapp_grd3dmaps => grid3d_maps}/avghc/grid3d_hc_thickness.py (97%) rename src/{xtgeoapp_grd3dmaps => grid3d_maps}/config_jobs/GRID3D_AGGREGATE_MAP (100%) rename src/{xtgeoapp_grd3dmaps => grid3d_maps}/config_jobs/GRID3D_AVERAGE_MAP (100%) rename src/{xtgeoapp_grd3dmaps => grid3d_maps}/config_jobs/GRID3D_HC_THICKNESS (100%) rename src/{xtgeoapp_grd3dmaps => grid3d_maps}/config_jobs/GRID3D_MIGRATION_TIME (100%) rename src/{xtgeoapp_grd3dmaps => grid3d_maps}/contact/__init__.py (100%) rename src/{xtgeoapp_grd3dmaps => grid3d_maps}/contact/_compute_contact.py (100%) rename src/{xtgeoapp_grd3dmaps => grid3d_maps}/contact/_get_grid_props.py (100%) rename src/{xtgeoapp_grd3dmaps => grid3d_maps}/contact/grid3d_contact_map.py (95%) rename src/{xtgeoapp_grd3dmaps => grid3d_maps}/hook_implementations/jobs.py (98%) diff --git a/.github/actions/build-xtgeoapp-grd3dmaps/action.yml b/.github/actions/build-grid3d-maps/action.yml similarity index 83% rename from .github/actions/build-xtgeoapp-grd3dmaps/action.yml rename to .github/actions/build-grid3d-maps/action.yml index 7053f0c..e2da208 100644 --- a/.github/actions/build-xtgeoapp-grd3dmaps/action.yml +++ b/.github/actions/build-grid3d-maps/action.yml @@ -1,5 +1,5 @@ name: Build -description: Builds xtgeoapp-grd3dmaps +description: Builds grid3d-maps inputs: python-version: @@ -13,7 +13,7 @@ runs: with: python-version: ${{ inputs.python-version }} - - name: Install xtgeoapp-grd3maps + - name: Install grid3d-maps run: | python -m pip install -U pip pip install . diff --git a/.github/actions/test_setup/action.yml b/.github/actions/test_setup/action.yml index d6c8e70..ee6f404 100644 --- a/.github/actions/test_setup/action.yml +++ b/.github/actions/test_setup/action.yml @@ -1,5 +1,5 @@ name: "Set up for tests" -description: "Set up the xtgeoapp-grd3dmaps test environment" +description: "Set up the grid3d-maps test environment" inputs: python-version: @@ -8,7 +8,7 @@ inputs: runs: using: "composite" steps: - - uses: "./.github/actions/build-xtgeoapp-grd3dmaps" + - uses: "./.github/actions/build-grid3d-maps" with: python-version: ${{ inputs.python-version }} - run: pip install ".[tests]" diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b786bd3..6360f0c 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest environment: name: pypi - url: https://pypi.org/p/xtgeoapp-grd3dmaps + url: https://pypi.org/p/grid3d-maps permissions: id-token: write diff --git a/.gitignore b/.gitignore index b059618..8ae8cd8 100644 --- a/.gitignore +++ b/.gitignore @@ -43,8 +43,8 @@ coverage.xml *,cover .hypothesis/ TMP/ -src/xtgeoapp_grd3dmaps/_theversion.py -src/xtgeoapp_grd3dmaps/version.py +src/grid3d_maps/_theversion.py +src/grid3d_maps/version.py # Translations *.mo diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 59a0546..9b4a3ec 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -15,7 +15,7 @@ Types of Contributions Report Bugs ~~~~~~~~~~~ -Report bugs at https://github.com/equinor/xtgeoapp-grd3dmaps/issues. +Report bugs at https://github.com/equinor/grid3d-maps/issues. If you are reporting a bug, please include: @@ -38,15 +38,15 @@ and "help wanted" is open to whoever wants to implement it. Write Documentation ~~~~~~~~~~~~~~~~~~~ -xtgeoapp-grd3dmaps could always use more documentation, whether as part of the -official xtgeoapp-grd3dmaps docs, in docstrings, or even on the web in blog posts, +grid3d-maps could always use more documentation, whether as part of the +official grid3d-maps docs, in docstrings, or even on the web in blog posts, articles, and such. Submit Feedback ~~~~~~~~~~~~~~~ The best way to send feedback is to file an issue -at https://github.com/equinor/xtgeoapp-grd3dmaps/issues. +at https://github.com/equinor/grid3d-maps/issues. If you are proposing a feature: @@ -58,18 +58,18 @@ If you are proposing a feature: Get Started! ------------ -Ready to contribute? Here's how to set up `xtgeoapp-grd3dmaps` for local development. +Ready to contribute? Here's how to set up `grid3d-maps` for local development. -1. Fork the `xtgeoapp-grd3dmaps` repo on Github equinor +1. Fork the `grid3d-maps` repo on Github equinor 2. Clone your fork locally:: - $ git clone git@github.com:your_name_here/xtgeoapp-grd3dmaps.git + $ git clone git@github.com:your_name_here/grid3d-maps.git 3. Install your local copy into a virtualenv. Assuming you have virtualenvwrapper installed, this is how you set up your fork for local development:: - $ mkvirtualenv xtgeoapp-grd3dmaps - $ cd xtgeoapp-grd3dmaps/ + $ mkvirtualenv grid3d-maps + $ cd grid3d-maps/ $ python setup.py develop 4. Create a branch for local development:: @@ -81,7 +81,7 @@ Ready to contribute? Here's how to set up `xtgeoapp-grd3dmaps` for local develop 5. When you're done making changes, check that your changes pass flake8 and the tests, including testing other Python versions with tox:: - $ flake8 xtgeoapp-grd3dmaps tests + $ flake8 grid3d-maps tests $ python setup.py test or py.test To get flake8 etc, just pip install them into your virtualenv. diff --git a/HISTORY.rst b/HISTORY.rst index 21e580a..fe2608e 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,5 +4,5 @@ History See commits and releases on Github: -* https://github.com/equinor/xtgeoapp-grd3dmaps/commits/main -* https://github.com/equinor/xtgeoapp-grd3dmaps/releases +* https://github.com/equinor/grid3d-maps/commits/main +* https://github.com/equinor/grid3d-maps/releases diff --git a/Makefile b/Makefile index 05d1399..a3f1b14 100644 --- a/Makefile +++ b/Makefile @@ -30,7 +30,7 @@ endef export PRINT_HELP_PYSCRIPT -APPLICATION := xtgeoapp_grd3dmaps +APPLICATION := grid3d_maps DOCSINSTALL := /project/sdpdocs/XTGeo/apps BROWSER := firefox diff --git a/README.md b/README.md index 9a75718..5b5b546 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ -# xtgeoapp-grd3dmaps +# grid3d-maps -[![tests](https://github.com/equinor/xtgeoapp-grd3dmaps/actions/workflows/test.yml/badge.svg)](https://github.com/equinor/xtgeoapp-grd3dmaps/actions/workflows/test.yml) +[![tests](https://github.com/equinor/grid3d-maps/actions/workflows/test.yml/badge.svg)](https://github.com/equinor/grid3d-maps/actions/workflows/test.yml) ![Python Version](https://img.shields.io/badge/python-3.8%20|%203.9%20|%203.10%20|%203.11-blue.svg) -[![License: GPL v3](https://img.shields.io/github/license/equinor/subscript)](https://www.gnu.org/licenses/gpl-3.0) +[![License: GPL v3](https://img.shields.io/github/license/equinor/grid3d-maps)](https://www.gnu.org/licenses/gpl-3.0) [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) Various scripts for generating maps from 3D grid properties. diff --git a/docs/Makefile b/docs/Makefile index 86d14b8..bd5b80d 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -86,17 +86,17 @@ qthelp: @echo @echo "Build finished; now you can run "qcollectiongenerator" with the" \ ".qhcp project file in $(BUILDDIR)/qthelp, like this:" - @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/xtgeoapp_grd3dmaps.qhcp" + @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/grid3d_maps.qhcp" @echo "To view the help file:" - @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/xtgeoapp_grd3dmaps.qhc" + @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/grid3d_maps.qhc" devhelp: $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp @echo @echo "Build finished." @echo "To view the help file:" - @echo "# mkdir -p $$HOME/.local/share/devhelp/xtgeoapp_grd3dmaps" - @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/xtgeoapp_grd3dmaps" + @echo "# mkdir -p $$HOME/.local/share/devhelp/grid3d_maps" + @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/grid3d_maps" @echo "# devhelp" epub: diff --git a/docs/conf.py b/docs/conf.py index cb7b11c..b093305 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# xtgeoapp_grd3dmaps documentation build configuration file, created by +# grid3d_maps documentation build configuration file, created by # sphinx-quickstart on Tue Jul 9 22:26:36 2013. # # This file is execfile()d with the current directory set to its @@ -12,8 +12,8 @@ # All configuration values have a default; values that are commented out # serve to show the default. -import sys import os +import sys # If extensions (or modules to document with autodoc) are in another # directory, add these directories to sys.path here. If the directory is @@ -30,7 +30,7 @@ sys.path.insert(0, project_root) -import xtgeoapp_grd3dmaps +import grid3d_maps # -- General configuration --------------------------------------------- @@ -59,7 +59,7 @@ master_doc = "index" # General information about the project. -project = u"xtgeoapp_grd3dmaps" +project = u"grid3d_maps" copyright = u"equinor (contact person: Jan C. Rivenæs, JRIV@equinor.com)" # The version info for the project you're documenting, acts as replacement @@ -67,9 +67,9 @@ # the built documents. # # The short X.Y version. -version = xtgeoapp_grd3dmaps.__version__ +version = grid3d_maps.__version__ # The full version, including alpha/beta/rc tags. -release = xtgeoapp_grd3dmaps.__version__ +release = grid3d_maps.__version__ # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -192,7 +192,7 @@ # html_file_suffix = None # Output file base name for HTML help builder. -htmlhelp_basename = "xtgeoapp_grd3dmapsdoc" +htmlhelp_basename = "grid3d_mapsdoc" # -- Options for LaTeX output ------------------------------------------ @@ -212,8 +212,8 @@ latex_documents = [ ( "index", - "xtgeoapp_grd3dmaps.tex", - u"xtgeoapp_grd3dmaps Documentation", + "grid3d_maps.tex", + u"grid3d_maps Documentation", u"Jan C. Rivenaes", "manual", ), @@ -247,8 +247,8 @@ man_pages = [ ( "index", - "xtgeoapp_grd3dmaps", - u"xtgeoapp_grd3dmaps Documentation", + "grid3d_maps", + u"grid3d_maps Documentation", [u"Jan C. Rivenaes"], 1, ) @@ -266,10 +266,10 @@ texinfo_documents = [ ( "index", - "xtgeoapp_grd3dmaps", - u"xtgeoapp_grd3dmaps Documentation", + "grid3d_maps", + u"grid3d_maps Documentation", u"Jan C. Rivenaes", - "xtgeoapp_grd3dmaps", + "grid3d_maps", "One line description of project.", "Miscellaneous", ), diff --git a/docs/index.rst b/docs/index.rst index 2f37178..4c6cb76 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -1,4 +1,4 @@ -Welcome to xtgeoapp_grd3dmaps' documentation! +Welcome to grid3d_maps' documentation! ============================================= Contents: diff --git a/docs/installation.rst b/docs/installation.rst index 67eb175..aa4db63 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -21,14 +21,14 @@ The stable release is on /project/res, so scripts can be run as: From sources ------------ -The sources for xtgeoapp_grd3dmaps can be downloaded from +The sources for grid3d_maps can be downloaded from the `equinor Git repo`_. You can then clone the repository: .. code-block:: console - $ git clone git@github.com:equinor/xtgeoapp-grd3dmaps + $ git clone git@github.com:equinor/grid3d-maps Once you have a copy of the source, and you have a `virtual environment`_, you can install locally (for development and testing) it with: @@ -40,5 +40,5 @@ you can install locally (for development and testing) it with: However, if you will like to contribute, making a personal fork is strongly recommended, see :ref:`Contributing`. -.. _equinor Git repo: https://github.com/equinor/xtgeoapp-grd3dmaps +.. _equinor Git repo: https://github.com/equinor/grid3d-maps .. _virtual environment: http://docs.python-guide.org/en/latest/dev/virtualenvs/ diff --git a/docs/make.bat b/docs/make.bat index 6a0cbe5..0d23380 100644 --- a/docs/make.bat +++ b/docs/make.bat @@ -115,9 +115,9 @@ if "%1" == "qthelp" ( echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: - echo.^> qcollectiongenerator %BUILDDIR%\qthelp\xtgeoapp_grd3dmaps.qhcp + echo.^> qcollectiongenerator %BUILDDIR%\qthelp\grid3d_maps.qhcp echo.To view the help file: - echo.^> assistant -collectionFile %BUILDDIR%\qthelp\xtgeoapp_grd3dmaps.ghc + echo.^> assistant -collectionFile %BUILDDIR%\qthelp\grid3d_maps.ghc goto end ) diff --git a/pyproject.toml b/pyproject.toml index 868a9b6..b3042d8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,10 +6,10 @@ requires = [ build-backend = "setuptools.build_meta" [tool.setuptools_scm] -write_to = "src/xtgeoapp_grd3dmaps/version.py" +write_to = "src/grid3d_maps/version.py" [project] -name = "xtgeoapp_grd3dmaps" +name = "grid3d_maps" description = "Make HC thickness, avg maps, etc directly from 3D props" readme = "README.md" requires-python = ">=3.8" @@ -79,18 +79,18 @@ docs = [ ] [project.urls] -Homepage = "https://github.com/equinor/xtgeoapp-grd3dmaps" -Repository = "https://github.com/equinor/xtgeoapp-grd3dmaps" -Documentation = "https://equinor.github.io/xtgeoapp-grd3dmaps" +Homepage = "https://github.com/equinor/grid3d-maps" +Repository = "https://github.com/equinor/grid3d-maps" +Documentation = "https://equinor.github.io/grid3d-maps" [project.scripts] -grid3d_hc_thickness = "xtgeoapp_grd3dmaps.avghc.grid3d_hc_thickness:main" -grid3d_average_map = "xtgeoapp_grd3dmaps.avghc.grid3d_average_map:main" -grid3d_aggregate_map = "xtgeoapp_grd3dmaps.aggregate.grid3d_aggregate_map:main" -grid3d_migration_time = "xtgeoapp_grd3dmaps.aggregate.grid3d_migration_time:main" +grid3d_hc_thickness = "grid3d_maps.avghc.grid3d_hc_thickness:main" +grid3d_average_map = "grid3d_maps.avghc.grid3d_average_map:main" +grid3d_aggregate_map = "grid3d_maps.aggregate.grid3d_aggregate_map:main" +grid3d_migration_time = "grid3d_maps.aggregate.grid3d_migration_time:main" [project.entry-points.ert] -xtgeoapp_grd3dmaps_jobs = "xtgeoapp_grd3dmaps.hook_implementations.jobs" +grid3d_maps_jobs = "grid3d_maps.hook_implementations.jobs" [tool.black] line-length = 88 diff --git a/src/xtgeoapp_grd3dmaps/__init__.py b/src/grid3d_maps/__init__.py similarity index 71% rename from src/xtgeoapp_grd3dmaps/__init__.py rename to src/grid3d_maps/__init__.py index 35194b3..9ca91fb 100644 --- a/src/xtgeoapp_grd3dmaps/__init__.py +++ b/src/grid3d_maps/__init__.py @@ -1,4 +1,4 @@ -"""Top-level package for xtgeoapp_grd3dmaps""" +"""Top-level package for grid3d_maps""" try: from ._theversion import version diff --git a/src/xtgeoapp_grd3dmaps/aggregate/__init__.py b/src/grid3d_maps/aggregate/__init__.py similarity index 100% rename from src/xtgeoapp_grd3dmaps/aggregate/__init__.py rename to src/grid3d_maps/aggregate/__init__.py diff --git a/src/xtgeoapp_grd3dmaps/aggregate/_config.py b/src/grid3d_maps/aggregate/_config.py similarity index 100% rename from src/xtgeoapp_grd3dmaps/aggregate/_config.py rename to src/grid3d_maps/aggregate/_config.py diff --git a/src/xtgeoapp_grd3dmaps/aggregate/_grid_aggregation.py b/src/grid3d_maps/aggregate/_grid_aggregation.py similarity index 99% rename from src/xtgeoapp_grd3dmaps/aggregate/_grid_aggregation.py rename to src/grid3d_maps/aggregate/_grid_aggregation.py index bccfd16..a266595 100644 --- a/src/xtgeoapp_grd3dmaps/aggregate/_grid_aggregation.py +++ b/src/grid3d_maps/aggregate/_grid_aggregation.py @@ -8,7 +8,7 @@ import scipy.spatial import xtgeo -from xtgeoapp_grd3dmaps.aggregate._config import AggregationMethod +from grid3d_maps.aggregate._config import AggregationMethod def aggregate_maps( diff --git a/src/xtgeoapp_grd3dmaps/aggregate/_migration_time.py b/src/grid3d_maps/aggregate/_migration_time.py similarity index 100% rename from src/xtgeoapp_grd3dmaps/aggregate/_migration_time.py rename to src/grid3d_maps/aggregate/_migration_time.py diff --git a/src/xtgeoapp_grd3dmaps/aggregate/_parser.py b/src/grid3d_maps/aggregate/_parser.py similarity index 98% rename from src/xtgeoapp_grd3dmaps/aggregate/_parser.py rename to src/grid3d_maps/aggregate/_parser.py index 6a3c690..40d65f0 100644 --- a/src/xtgeoapp_grd3dmaps/aggregate/_parser.py +++ b/src/grid3d_maps/aggregate/_parser.py @@ -7,8 +7,8 @@ import xtgeo import yaml -from xtgeoapp_grd3dmaps.aggregate import _config -from xtgeoapp_grd3dmaps.aggregate._config import ( +from grid3d_maps.aggregate import _config +from grid3d_maps.aggregate._config import ( ComputeSettings, Input, MapSettings, diff --git a/src/xtgeoapp_grd3dmaps/aggregate/grid3d_aggregate_map.py b/src/grid3d_maps/aggregate/grid3d_aggregate_map.py similarity index 97% rename from src/xtgeoapp_grd3dmaps/aggregate/grid3d_aggregate_map.py rename to src/grid3d_maps/aggregate/grid3d_aggregate_map.py index e75dbf6..2f9e233 100644 --- a/src/xtgeoapp_grd3dmaps/aggregate/grid3d_aggregate_map.py +++ b/src/grid3d_maps/aggregate/grid3d_aggregate_map.py @@ -6,7 +6,7 @@ import xtgeo from xtgeo.common import XTGeoDialog -from xtgeoapp_grd3dmaps.aggregate._config import ( +from grid3d_maps.aggregate._config import ( AggregationMethod, ComputeSettings, Input, @@ -14,7 +14,7 @@ Output, Zonation, ) -from xtgeoapp_grd3dmaps.aggregate._parser import ( +from grid3d_maps.aggregate._parser import ( create_map_template, extract_properties, extract_zonations, @@ -29,7 +29,7 @@ # Module variables for ERT hook implementation: DESCRIPTION = ( "Aggregate property maps from 3D grids. Docs:\n" - + "https://fmu-docs.equinor.com/docs/xtgeoapp-grd3dmaps/" + + "https://fmu-docs.equinor.com/docs/grid3d-maps/" ) CATEGORY = "modelling.reservoir" EXAMPLES = """ diff --git a/src/xtgeoapp_grd3dmaps/aggregate/grid3d_migration_time.py b/src/grid3d_maps/aggregate/grid3d_migration_time.py similarity index 96% rename from src/xtgeoapp_grd3dmaps/aggregate/grid3d_migration_time.py rename to src/grid3d_maps/aggregate/grid3d_migration_time.py index a4bf127..0dad31b 100644 --- a/src/xtgeoapp_grd3dmaps/aggregate/grid3d_migration_time.py +++ b/src/grid3d_maps/aggregate/grid3d_migration_time.py @@ -6,7 +6,7 @@ import xtgeo -from xtgeoapp_grd3dmaps.aggregate import ( +from grid3d_maps.aggregate import ( _config, _migration_time, _parser, @@ -16,7 +16,7 @@ # Module variables for ERT hook implementation: DESCRIPTION = ( "Generate migration time property maps. Docs:\n" - + "https://fmu-docs.equinor.com/docs/xtgeoapp-grd3dmaps/" + + "https://fmu-docs.equinor.com/docs/grid3d-maps/" ) CATEGORY = "modelling.reservoir" EXAMPLES = """ diff --git a/src/xtgeoapp_grd3dmaps/avghc/__init__.py b/src/grid3d_maps/avghc/__init__.py similarity index 100% rename from src/xtgeoapp_grd3dmaps/avghc/__init__.py rename to src/grid3d_maps/avghc/__init__.py diff --git a/src/xtgeoapp_grd3dmaps/avghc/_compute_avg.py b/src/grid3d_maps/avghc/_compute_avg.py similarity index 100% rename from src/xtgeoapp_grd3dmaps/avghc/_compute_avg.py rename to src/grid3d_maps/avghc/_compute_avg.py diff --git a/src/xtgeoapp_grd3dmaps/avghc/_compute_hcpfz.py b/src/grid3d_maps/avghc/_compute_hcpfz.py similarity index 100% rename from src/xtgeoapp_grd3dmaps/avghc/_compute_hcpfz.py rename to src/grid3d_maps/avghc/_compute_hcpfz.py diff --git a/src/xtgeoapp_grd3dmaps/avghc/_configparser.py b/src/grid3d_maps/avghc/_configparser.py similarity index 99% rename from src/xtgeoapp_grd3dmaps/avghc/_configparser.py rename to src/grid3d_maps/avghc/_configparser.py index a16fc07..c0e1f80 100644 --- a/src/xtgeoapp_grd3dmaps/avghc/_configparser.py +++ b/src/grid3d_maps/avghc/_configparser.py @@ -7,7 +7,7 @@ import yaml from xtgeo.common import XTGeoDialog -from xtgeoapp_grd3dmaps.avghc._loader import ConstructorError, YamlXLoader +from grid3d_maps.avghc._loader import ConstructorError, YamlXLoader xtg = XTGeoDialog() diff --git a/src/xtgeoapp_grd3dmaps/avghc/_export_via_fmudataio.py b/src/grid3d_maps/avghc/_export_via_fmudataio.py similarity index 97% rename from src/xtgeoapp_grd3dmaps/avghc/_export_via_fmudataio.py rename to src/grid3d_maps/avghc/_export_via_fmudataio.py index 57fa65b..b83969e 100644 --- a/src/xtgeoapp_grd3dmaps/avghc/_export_via_fmudataio.py +++ b/src/grid3d_maps/avghc/_export_via_fmudataio.py @@ -114,7 +114,7 @@ def export_avg_map_dataio(surf, nametuple, config): is_observation=False, tagname=globaltag + "average_" + name, verbosity="WARNING", - workflow="xtgeoapp-grd3dmaps script average maps", + workflow="grid3d-maps script average maps", ) fname = edata.export(surf) xtg.say(f"Output as fmu-dataio: {fname}") @@ -169,7 +169,7 @@ def export_hc_map_dataio(surf, zname, date, hcmode, config): unit=unit, tagname=globaltag + name, verbosity="WARNING", - workflow="xtgeoapp-grd3dmaps script hc thickness maps", + workflow="grid3d-maps script hc thickness maps", ) fname = edata.export(surf) xtg.say(f"Output as fmu-dataio: {fname}") diff --git a/src/xtgeoapp_grd3dmaps/avghc/_get_grid_props.py b/src/grid3d_maps/avghc/_get_grid_props.py similarity index 100% rename from src/xtgeoapp_grd3dmaps/avghc/_get_grid_props.py rename to src/grid3d_maps/avghc/_get_grid_props.py diff --git a/src/xtgeoapp_grd3dmaps/avghc/_get_zonation_filters.py b/src/grid3d_maps/avghc/_get_zonation_filters.py similarity index 100% rename from src/xtgeoapp_grd3dmaps/avghc/_get_zonation_filters.py rename to src/grid3d_maps/avghc/_get_zonation_filters.py diff --git a/src/xtgeoapp_grd3dmaps/avghc/_hc_plotmap.py b/src/grid3d_maps/avghc/_hc_plotmap.py similarity index 100% rename from src/xtgeoapp_grd3dmaps/avghc/_hc_plotmap.py rename to src/grid3d_maps/avghc/_hc_plotmap.py diff --git a/src/xtgeoapp_grd3dmaps/avghc/_loader.py b/src/grid3d_maps/avghc/_loader.py similarity index 100% rename from src/xtgeoapp_grd3dmaps/avghc/_loader.py rename to src/grid3d_maps/avghc/_loader.py diff --git a/src/xtgeoapp_grd3dmaps/avghc/_mapsettings.py b/src/grid3d_maps/avghc/_mapsettings.py similarity index 100% rename from src/xtgeoapp_grd3dmaps/avghc/_mapsettings.py rename to src/grid3d_maps/avghc/_mapsettings.py diff --git a/src/xtgeoapp_grd3dmaps/avghc/grid3d_average_map.py b/src/grid3d_maps/avghc/grid3d_average_map.py similarity index 97% rename from src/xtgeoapp_grd3dmaps/avghc/grid3d_average_map.py rename to src/grid3d_maps/avghc/grid3d_average_map.py index 3116a9f..1ac67ba 100644 --- a/src/xtgeoapp_grd3dmaps/avghc/grid3d_average_map.py +++ b/src/grid3d_maps/avghc/grid3d_average_map.py @@ -17,7 +17,7 @@ ) try: - from xtgeoapp_grd3dmaps._theversion import version as __version__ + from grid3d_maps._theversion import version as __version__ except ImportError: __version__ = "0.0.0" @@ -25,7 +25,7 @@ APPDESCR = ( "Make average property maps directly from 3D grids. Docs:\n" - + "https://fmu-docs.equinor.com/docs/xtgeoapp-grd3dmaps/" + + "https://fmu-docs.equinor.com/docs/grid3d-maps/" ) # Module variables for ERT hook implementation: diff --git a/src/xtgeoapp_grd3dmaps/avghc/grid3d_hc_thickness.py b/src/grid3d_maps/avghc/grid3d_hc_thickness.py similarity index 97% rename from src/xtgeoapp_grd3dmaps/avghc/grid3d_hc_thickness.py rename to src/grid3d_maps/avghc/grid3d_hc_thickness.py index f3c9a7a..88d47ac 100644 --- a/src/xtgeoapp_grd3dmaps/avghc/grid3d_hc_thickness.py +++ b/src/grid3d_maps/avghc/grid3d_hc_thickness.py @@ -18,7 +18,7 @@ ) try: - from xtgeoapp_grd3dmaps._theversion import version as __version__ + from grid3d_maps._theversion import version as __version__ except ImportError: __version__ = "0.0.0" @@ -26,7 +26,7 @@ APPDESCR = ( "Make HC thickness maps directly from 3D grids. Docs:\n" - + "https://fmu-docs.equinor.com/docs/xtgeoapp-grd3dmaps/" + + "https://fmu-docs.equinor.com/docs/grid3d-maps/" ) # Module variables for ERT hook implementation: diff --git a/src/xtgeoapp_grd3dmaps/config_jobs/GRID3D_AGGREGATE_MAP b/src/grid3d_maps/config_jobs/GRID3D_AGGREGATE_MAP similarity index 100% rename from src/xtgeoapp_grd3dmaps/config_jobs/GRID3D_AGGREGATE_MAP rename to src/grid3d_maps/config_jobs/GRID3D_AGGREGATE_MAP diff --git a/src/xtgeoapp_grd3dmaps/config_jobs/GRID3D_AVERAGE_MAP b/src/grid3d_maps/config_jobs/GRID3D_AVERAGE_MAP similarity index 100% rename from src/xtgeoapp_grd3dmaps/config_jobs/GRID3D_AVERAGE_MAP rename to src/grid3d_maps/config_jobs/GRID3D_AVERAGE_MAP diff --git a/src/xtgeoapp_grd3dmaps/config_jobs/GRID3D_HC_THICKNESS b/src/grid3d_maps/config_jobs/GRID3D_HC_THICKNESS similarity index 100% rename from src/xtgeoapp_grd3dmaps/config_jobs/GRID3D_HC_THICKNESS rename to src/grid3d_maps/config_jobs/GRID3D_HC_THICKNESS diff --git a/src/xtgeoapp_grd3dmaps/config_jobs/GRID3D_MIGRATION_TIME b/src/grid3d_maps/config_jobs/GRID3D_MIGRATION_TIME similarity index 100% rename from src/xtgeoapp_grd3dmaps/config_jobs/GRID3D_MIGRATION_TIME rename to src/grid3d_maps/config_jobs/GRID3D_MIGRATION_TIME diff --git a/src/xtgeoapp_grd3dmaps/contact/__init__.py b/src/grid3d_maps/contact/__init__.py similarity index 100% rename from src/xtgeoapp_grd3dmaps/contact/__init__.py rename to src/grid3d_maps/contact/__init__.py diff --git a/src/xtgeoapp_grd3dmaps/contact/_compute_contact.py b/src/grid3d_maps/contact/_compute_contact.py similarity index 100% rename from src/xtgeoapp_grd3dmaps/contact/_compute_contact.py rename to src/grid3d_maps/contact/_compute_contact.py diff --git a/src/xtgeoapp_grd3dmaps/contact/_get_grid_props.py b/src/grid3d_maps/contact/_get_grid_props.py similarity index 100% rename from src/xtgeoapp_grd3dmaps/contact/_get_grid_props.py rename to src/grid3d_maps/contact/_get_grid_props.py diff --git a/src/xtgeoapp_grd3dmaps/contact/grid3d_contact_map.py b/src/grid3d_maps/contact/grid3d_contact_map.py similarity index 95% rename from src/xtgeoapp_grd3dmaps/contact/grid3d_contact_map.py rename to src/grid3d_maps/contact/grid3d_contact_map.py index c94a6de..f618e2f 100644 --- a/src/xtgeoapp_grd3dmaps/contact/grid3d_contact_map.py +++ b/src/grid3d_maps/contact/grid3d_contact_map.py @@ -4,8 +4,8 @@ from xtgeo.common import XTGeoDialog -from xtgeoapp_grd3dmaps.avghc import _configparser, _get_zonation_filters -from xtgeoapp_grd3dmaps.contact import _compute_contact, _get_grid_props +from grid3d_maps.avghc import _configparser, _get_zonation_filters +from grid3d_maps.contact import _compute_contact, _get_grid_props try: from .._theversion import version as __version__ @@ -17,7 +17,7 @@ APPDESCR = ( "Estimate contact maps directly from 3D grids. Docs:\n" - + "https://fmu-docs.equinor.com/docs/xtgeoapp-grd3dmaps/" + + "https://fmu-docs.equinor.com/docs/grid3d-maps/" ) xtg = XTGeoDialog() diff --git a/src/xtgeoapp_grd3dmaps/hook_implementations/jobs.py b/src/grid3d_maps/hook_implementations/jobs.py similarity index 98% rename from src/xtgeoapp_grd3dmaps/hook_implementations/jobs.py rename to src/grid3d_maps/hook_implementations/jobs.py index e37aa1f..40ec308 100644 --- a/src/xtgeoapp_grd3dmaps/hook_implementations/jobs.py +++ b/src/grid3d_maps/hook_implementations/jobs.py @@ -10,7 +10,7 @@ from ert_shared.plugins.plugin_manager import hook_implementation from ert_shared.plugins.plugin_response import plugin_response -PLUGIN_NAME = "xtgeoapp_grd3dmaps" +PLUGIN_NAME = "grid3d_maps" def _get_jobs_from_directory(directory): diff --git a/tests/test_scripts/test_grid3d_aggregate_map.py b/tests/test_scripts/test_grid3d_aggregate_map.py index b392152..b737474 100644 --- a/tests/test_scripts/test_grid3d_aggregate_map.py +++ b/tests/test_scripts/test_grid3d_aggregate_map.py @@ -3,7 +3,7 @@ import pytest import xtgeo -from xtgeoapp_grd3dmaps.aggregate import grid3d_aggregate_map +from grid3d_maps.aggregate import grid3d_aggregate_map def test_aggregated_map1(datatree): diff --git a/tests/test_scripts/test_grid3d_average_map1.py b/tests/test_scripts/test_grid3d_average_map1.py index 17dbffc..bf9822c 100644 --- a/tests/test_scripts/test_grid3d_average_map1.py +++ b/tests/test_scripts/test_grid3d_average_map1.py @@ -5,7 +5,7 @@ import pytest import xtgeo -import xtgeoapp_grd3dmaps.avghc.grid3d_average_map as grid3d_hc_thickness +import grid3d_maps.avghc.grid3d_average_map as grid3d_hc_thickness SOURCEPATH = Path(__file__).absolute().parent.parent.parent diff --git a/tests/test_scripts/test_grid3d_average_map2.py b/tests/test_scripts/test_grid3d_average_map2.py index f816c36..8c1a60c 100644 --- a/tests/test_scripts/test_grid3d_average_map2.py +++ b/tests/test_scripts/test_grid3d_average_map2.py @@ -3,7 +3,7 @@ import pytest import xtgeo -import xtgeoapp_grd3dmaps.avghc.grid3d_average_map as grid3d_average_map +import grid3d_maps.avghc.grid3d_average_map as grid3d_average_map # ============================================================================= # Do tests diff --git a/tests/test_scripts/test_grid3d_average_map4.py b/tests/test_scripts/test_grid3d_average_map4.py index 615be61..9082856 100644 --- a/tests/test_scripts/test_grid3d_average_map4.py +++ b/tests/test_scripts/test_grid3d_average_map4.py @@ -2,7 +2,7 @@ import pytest import xtgeo -import xtgeoapp_grd3dmaps.avghc.grid3d_average_map as grid3d_average_map +import grid3d_maps.avghc.grid3d_average_map as grid3d_average_map # ============================================================================= # Do tests diff --git a/tests/test_scripts/test_grid3d_average_map_dataio1a.py b/tests/test_scripts/test_grid3d_average_map_dataio1a.py index f0bae2b..7a791e0 100644 --- a/tests/test_scripts/test_grid3d_average_map_dataio1a.py +++ b/tests/test_scripts/test_grid3d_average_map_dataio1a.py @@ -8,7 +8,7 @@ import xtgeo import yaml -from xtgeoapp_grd3dmaps.avghc import grid3d_average_map +from grid3d_maps.avghc import grid3d_average_map YAMLCONTENT = """ title: Reek diff --git a/tests/test_scripts/test_grid3d_contacts1.py b/tests/test_scripts/test_grid3d_contacts1.py index 1f05728..57b2a73 100644 --- a/tests/test_scripts/test_grid3d_contacts1.py +++ b/tests/test_scripts/test_grid3d_contacts1.py @@ -1,7 +1,7 @@ """Testing contacts, not finished!""" import pytest -import xtgeoapp_grd3dmaps.contact.grid3d_contact_map as grid3d_contacts +import grid3d_maps.contact.grid3d_contact_map as grid3d_contacts # ============================================================================= # Do tests diff --git a/tests/test_scripts/test_grid3d_hc_thickness1.py b/tests/test_scripts/test_grid3d_hc_thickness1.py index c55553b..ec4a405 100644 --- a/tests/test_scripts/test_grid3d_hc_thickness1.py +++ b/tests/test_scripts/test_grid3d_hc_thickness1.py @@ -6,7 +6,7 @@ import pytest import xtgeo -import xtgeoapp_grd3dmaps.avghc.grid3d_hc_thickness as grid3d_hc_thickness +import grid3d_maps.avghc.grid3d_hc_thickness as grid3d_hc_thickness SOURCEPATH = Path(__file__).absolute().parent.parent.parent diff --git a/tests/test_scripts/test_grid3d_hc_thickness2.py b/tests/test_scripts/test_grid3d_hc_thickness2.py index 174aaba..2cf0321 100644 --- a/tests/test_scripts/test_grid3d_hc_thickness2.py +++ b/tests/test_scripts/test_grid3d_hc_thickness2.py @@ -2,7 +2,7 @@ import pytest import xtgeo -import xtgeoapp_grd3dmaps.avghc.grid3d_hc_thickness as grid3d_hc_thickness +import grid3d_maps.avghc.grid3d_hc_thickness as grid3d_hc_thickness def test_hc_thickness2a(datatree): diff --git a/tests/test_scripts/test_grid3d_hc_thickness3.py b/tests/test_scripts/test_grid3d_hc_thickness3.py index 2467fd7..1df254a 100644 --- a/tests/test_scripts/test_grid3d_hc_thickness3.py +++ b/tests/test_scripts/test_grid3d_hc_thickness3.py @@ -1,7 +1,7 @@ import pytest import xtgeo -import xtgeoapp_grd3dmaps.avghc.grid3d_hc_thickness as grid3d_hc_thickness +import grid3d_maps.avghc.grid3d_hc_thickness as grid3d_hc_thickness def test_hc_thickness3a(datatree): diff --git a/tests/test_scripts/test_grid3d_hc_thickness4.py b/tests/test_scripts/test_grid3d_hc_thickness4.py index d2f2cd2..f49c5da 100644 --- a/tests/test_scripts/test_grid3d_hc_thickness4.py +++ b/tests/test_scripts/test_grid3d_hc_thickness4.py @@ -2,7 +2,7 @@ import pytest import xtgeo -import xtgeoapp_grd3dmaps.avghc.grid3d_hc_thickness as grid3d_hc_thickness +import grid3d_maps.avghc.grid3d_hc_thickness as grid3d_hc_thickness def test_hc_thickness4a(datatree): diff --git a/tests/test_scripts/test_grid3d_hc_thickness_dataio1a.py b/tests/test_scripts/test_grid3d_hc_thickness_dataio1a.py index 2194b11..3d764b2 100644 --- a/tests/test_scripts/test_grid3d_hc_thickness_dataio1a.py +++ b/tests/test_scripts/test_grid3d_hc_thickness_dataio1a.py @@ -8,7 +8,7 @@ import xtgeo import yaml -import xtgeoapp_grd3dmaps.avghc.grid3d_hc_thickness as grid3d_hc_thickness +import grid3d_maps.avghc.grid3d_hc_thickness as grid3d_hc_thickness YAMLCONTENT = """ title: Reek diff --git a/tests/test_scripts/test_grid3d_hc_thickness_dataio1b.py b/tests/test_scripts/test_grid3d_hc_thickness_dataio1b.py index 3e77671..1a6334e 100644 --- a/tests/test_scripts/test_grid3d_hc_thickness_dataio1b.py +++ b/tests/test_scripts/test_grid3d_hc_thickness_dataio1b.py @@ -8,7 +8,7 @@ import xtgeo import yaml -import xtgeoapp_grd3dmaps.avghc.grid3d_hc_thickness as grid3d_hc_thickness +import grid3d_maps.avghc.grid3d_hc_thickness as grid3d_hc_thickness YAMLCONTENT = """ title: Reek diff --git a/tests/test_scripts/test_grid3d_hc_thickness_dataio1c.py b/tests/test_scripts/test_grid3d_hc_thickness_dataio1c.py index be8da38..3d463f9 100644 --- a/tests/test_scripts/test_grid3d_hc_thickness_dataio1c.py +++ b/tests/test_scripts/test_grid3d_hc_thickness_dataio1c.py @@ -9,7 +9,7 @@ import yaml from fmu.config import utilities as ut -import xtgeoapp_grd3dmaps.avghc.grid3d_hc_thickness as grid3d_hc_thickness +import grid3d_maps.avghc.grid3d_hc_thickness as grid3d_hc_thickness YAMLCONTENT = """ title: Reek diff --git a/tests/test_scripts/test_grid3d_migration_time.py b/tests/test_scripts/test_grid3d_migration_time.py index 81d57d1..20ff341 100644 --- a/tests/test_scripts/test_grid3d_migration_time.py +++ b/tests/test_scripts/test_grid3d_migration_time.py @@ -1,7 +1,7 @@ import pytest import xtgeo -from xtgeoapp_grd3dmaps.aggregate import grid3d_migration_time +from grid3d_maps.aggregate import grid3d_migration_time def test_migration_time1(datatree): diff --git a/tests/test_submodules/test_grid_aggregate.py b/tests/test_submodules/test_grid_aggregate.py index 41285f9..8a46983 100644 --- a/tests/test_submodules/test_grid_aggregate.py +++ b/tests/test_submodules/test_grid_aggregate.py @@ -3,7 +3,7 @@ import pytest import xtgeo -from xtgeoapp_grd3dmaps.aggregate import AggregationMethod, aggregate_maps +from grid3d_maps.aggregate import AggregationMethod, aggregate_maps @pytest.fixture(name="example_grid") diff --git a/tests/test_vs_ert/test_ert_hooks.py b/tests/test_vs_ert/test_ert_hooks.py index 0d23e76..a4fbe3e 100644 --- a/tests/test_vs_ert/test_ert_hooks.py +++ b/tests/test_vs_ert/test_ert_hooks.py @@ -9,7 +9,7 @@ @pytest.mark.requires_ert -def test_xtgeoapps_through_ert(datatree): +def test_grid3d_maps_through_ert(datatree): """Test through ERT.""" print(f"ERT run on {datatree}") @@ -67,7 +67,7 @@ def test_xtgeoapps_through_ert(datatree): + ")" ) - ert_config_filename = Path(datatree) / "xtgeoapps_test.ert" + ert_config_filename = Path(datatree) / "grid3d_maps_test.ert" ert_config_filename.write_text("\n".join(ert_config)) subprocess.call(["ert", "test_run", ert_config_filename]) diff --git a/tests/test_vs_ert/test_hook_implementations.py b/tests/test_vs_ert/test_hook_implementations.py index 3ab531b..da7a521 100644 --- a/tests/test_vs_ert/test_hook_implementations.py +++ b/tests/test_vs_ert/test_hook_implementations.py @@ -15,7 +15,7 @@ "Not testing ERT hooks when ERT is not installed", allow_module_level=True ) -import xtgeoapp_grd3dmaps.hook_implementations.jobs as jobs +import grid3d_maps.hook_implementations.jobs as jobs try: from ert.shared.plugins.plugin_manager import ErtPluginManager @@ -23,10 +23,10 @@ from ert_shared.plugins.plugin_manager import ErtPluginManager EXPECTED_JOBS = { - "GRID3D_AVERAGE_MAP": "xtgeoapp_grd3dmaps/config_jobs/GRID3D_AVERAGE_MAP", - "GRID3D_HC_THICKNESS": "xtgeoapp_grd3dmaps/config_jobs/GRID3D_HC_THICKNESS", - "GRID3D_AGGREGATE_MAP": "xtgeoapp_grd3dmaps/config_jobs/GRID3D_AGGREGATE_MAP", - "GRID3D_MIGRATION_TIME": "xtgeoapp_grd3dmaps/config_jobs/GRID3D_MIGRATION_TIME", + "GRID3D_AVERAGE_MAP": "grid3d_maps/config_jobs/GRID3D_AVERAGE_MAP", + "GRID3D_HC_THICKNESS": "grid3d_maps/config_jobs/GRID3D_HC_THICKNESS", + "GRID3D_AGGREGATE_MAP": "grid3d_maps/config_jobs/GRID3D_AGGREGATE_MAP", + "GRID3D_MIGRATION_TIME": "grid3d_maps/config_jobs/GRID3D_MIGRATION_TIME", } SRC_PATH = Path(__file__).absolute().parent.parent.parent / "src"