Skip to main content

A GeoSpatial Contouring Mapping Utility for Oil and Gas Engineers

Project description

ContourMap Library Examples This notebook demonstrates the usage of the ContourMap class from the essentials.py library.

The ContourMap class is designed to generate contour plots from scattered 2D data (X, Y, and Z values) using different interpolation methods. png

1. Setup

First, let's import the necessary libraries and the ContourMap class itself. We'll also generate some sample data to work with.

import numpy as np
import pandas as pd
import matplotlib.pyplot as plt

# You'll need to have your essentials.py file in the same directory
from PetroMap.essentials import ContourMap
import pandas as pd
data = pd.read_excel("cleaned xy data.xlsx")
X = data.XCOORD
Y = data.YCOORD
Z = data.PAY
well_names = data.ALIAS.to_list()

2. Cubic Spline Interpolation with Matplotlib

The default interpolation method for ContourMap is cubic spline interpolation. This is great for creating a smooth, continuous surface. By default, the backend is set to 'matplotlib'.

# Create a ContourMap instance for cubic interpolation
contour_cubic_mpl = ContourMap(X, Y, Z, well_names=well_names)

# Plot the map and display it
fig = contour_cubic_mpl.plot_cubicmap(title="Cubic Spline Interpolation (Matplotlib)")
plt.show()

png

3. K-Nearest Neighbors (KNN) Interpolation

The plot_knnmap method uses a machine learning approach (KNN) to interpolate the data. This can be useful for data with sharp discontinuities.

# Create a ContourMap instance for KNN interpolation
contour_knn_mpl = ContourMap(X, Y, Z, well_names=well_names)

# Plot the map using KNN with 5 neighbors
fig = contour_knn_mpl.plot_knnmap(title="KNN Interpolation (Matplotlib)", n_neighbors=5)
plt.show()

png

4. Radial Basis Function (RBF) Interpolation

The plot_rbfmap method provides another powerful interpolation technique. You can specify different functions to control the shape of the surface.

# Create a ContourMap instance for RBF interpolation
contour_rbf_mpl = ContourMap(X, Y, Z, well_names=well_names)

# Plot the map using RBF with the 'gaussian' function
fig = contour_rbf_mpl.plot_rbfmap(title="RBF Interpolation ('gaussian' function)", function='gaussian')
plt.show()

png

5. Using the Plotly Backend

If you have Plotly installed, you can use a more interactive backend for your plots.

# Create a ContourMap instance for cubic interpolation
contour_cubic_mpl = ContourMap(X, Y, Z, well_names=well_names, backend="plotly")

# Plot the map and display it
fig = contour_cubic_mpl.plot_cubicmap(title="Cubic Spline Interpolation (Matplotlib)")
fig.update_layout(height=1000, template="plotly_dark")

6. Using the Kriging Interploation

You can use Kriging interpolation to distribute geospatial properties using PyKrige Library

# Create a ContourMap instance for Kriging Simulation
contour_cubic_mpl = ContourMap(X, Y, Z, well_names=well_names, backend="plotly")

# Plot the map and display it
fig = contour_cubic_mpl.plot_krigemap(title="Kriging Map")
fig.update_layout(height=800)

png

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

petromap-0.1.5b0.tar.gz (5.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

petromap-0.1.5b0-py3-none-any.whl (5.1 kB view details)

Uploaded Python 3

File details

Details for the file petromap-0.1.5b0.tar.gz.

File metadata

  • Download URL: petromap-0.1.5b0.tar.gz
  • Upload date:
  • Size: 5.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.7

File hashes

Hashes for petromap-0.1.5b0.tar.gz
Algorithm Hash digest
SHA256 52dab5c2a1baa2b0c0cc98821540d8967301315273920b4b35741765d6737069
MD5 f8326e8aa7ad1d8e354014e56bd1d644
BLAKE2b-256 e50a0f42b3b4cd685e9a53729f726afb95b1d12f98f40c5753b4c663ee766947

See more details on using hashes here.

File details

Details for the file petromap-0.1.5b0-py3-none-any.whl.

File metadata

  • Download URL: petromap-0.1.5b0-py3-none-any.whl
  • Upload date:
  • Size: 5.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.7

File hashes

Hashes for petromap-0.1.5b0-py3-none-any.whl
Algorithm Hash digest
SHA256 9e116f91245726a38ba54372d6f59d7a8f41bca294352e899843d3c418fd68bc
MD5 a5d84bfc5eeb53485cb9fbea98576b0a
BLAKE2b-256 b69ddbffa04c62d90386a72129c63f611326405db3d94c5ea738eb839810ef94

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page