{ "cells": [ { "cell_type": "markdown", "id": "f6aec733-9a0d-4cbe-a10f-e7f9fe5b6417", "metadata": {}, "source": [ "# Plot a 2D seismic layout\n", "O. Kaufmann, 2022." ] }, { "cell_type": "code", "execution_count": 1, "id": "6d7812c8-e341-4d82-ad87-d73cab39d21b", "metadata": {}, "outputs": [], "source": [ "from geometron.survey import TopoPoint\n", "from geometron.geometries import features_to_gdf\n", "from geometron.plot import plot_gdf_survey\n", "import matplotlib.pyplot as plt\n", "from shapely.geometry import Point" ] }, { "cell_type": "markdown", "id": "bdfe4251-4e97-4e54-b3f1-d62b2348ee34", "metadata": {}, "source": [ "The layout consists of 96 geophones with a spacing of 2.5m. The first geophone is at station 0. \n", "The spacing between shot points is 12.5 m. The first shot is at station -45 and the mast one is at station 140. " ] }, { "cell_type": "markdown", "id": "343145d0-8183-4894-9bdf-379e153b6be2", "metadata": {}, "source": [ "## Create shots using the station as name" ] }, { "cell_type": "code", "execution_count": 2, "id": "fc3ade0d-154d-4da5-8dd9-9cd75cf22cad", "metadata": {}, "outputs": [], "source": [ "shots = [TopoPoint(Point(i*2.5,0), id=f'{i}', kind='shot') for i in range(-45, 145, 5)] " ] }, { "cell_type": "markdown", "id": "48343ae7-c531-4481-8247-bc41586c25e8", "metadata": {}, "source": [ "## Create geophones using the station as name every two geophones" ] }, { "cell_type": "code", "execution_count": 3, "id": "fe888a3a-1826-4abc-acbd-34b3eb23fab6", "metadata": {}, "outputs": [], "source": [ "geophones = [TopoPoint(Point(i*2.5,0), id=f'{i}' if i%2 == 0 else '', kind='geophone') for i in range(0, 96)]" ] }, { "cell_type": "markdown", "id": "9d575a67-7c52-415b-b769-0cf92625e3ff", "metadata": {}, "source": [ "## Create the layout" ] }, { "cell_type": "code", "execution_count": 4, "id": "f1de8a95-9c42-4153-97f5-84572d441ed5", "metadata": {}, "outputs": [], "source": [ "layout = shots\n", "layout.extend(geophones)" ] }, { "cell_type": "markdown", "id": "a53c004a-fb7e-441b-ba20-ec664fa26333", "metadata": {}, "source": [ "## Convert the features in the layout into a geodataframe" ] }, { "cell_type": "code", "execution_count": 5, "id": "e124ddb5-6934-4e18-9146-fcffd52daab8", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", " | geometry | \n", "id | \n", "label | \n", "kind | \n", "class | \n", "
---|---|---|---|---|---|
0 | \n", "POINT (-112.50000 0.00000) | \n", "-45 | \n", "-45 | \n", "shot | \n", "TopoPoint | \n", "
1 | \n", "POINT (-100.00000 0.00000) | \n", "-40 | \n", "-40 | \n", "shot | \n", "TopoPoint | \n", "
2 | \n", "POINT (-87.50000 0.00000) | \n", "-35 | \n", "-35 | \n", "shot | \n", "TopoPoint | \n", "
3 | \n", "POINT (-75.00000 0.00000) | \n", "-30 | \n", "-30 | \n", "shot | \n", "TopoPoint | \n", "
4 | \n", "POINT (-62.50000 0.00000) | \n", "-25 | \n", "-25 | \n", "shot | \n", "TopoPoint | \n", "