{ "cells": [ { "cell_type": "markdown", "id": "3c2cdecf", "metadata": {}, "source": [ "# Exploration Production Construction\n", "An Exploration Production Construction is a registration object that contains data on subsurface works that fall under the Mining Act. These include works for the exploration, extraction, and storage of minerals and geothermal energy, such as boreholes, mine systems, and salt caverns." ] }, { "cell_type": "code", "execution_count": null, "id": "7ca7eac5", "metadata": {}, "outputs": [], "source": [ "import brodata" ] }, { "cell_type": "code", "execution_count": null, "id": "0b59b927", "metadata": {}, "outputs": [], "source": [ "epc = brodata.epc.ExplorationProductionConstruction.from_bro_id(\"EPC000000000140\")\n", "epc" ] }, { "cell_type": "markdown", "id": "ab7725da", "metadata": {}, "source": [ "Display the construction history." ] }, { "cell_type": "code", "execution_count": null, "id": "42e0a22a", "metadata": {}, "outputs": [], "source": [ "epc.constructionHistory" ] }, { "cell_type": "markdown", "id": "da13cdd9", "metadata": {}, "source": [ "Show the borehole segments. In this case there is only one segment." ] }, { "cell_type": "code", "execution_count": null, "id": "74d1d4b8", "metadata": {}, "outputs": [], "source": [ "epc.boreholeSegment" ] }, { "cell_type": "markdown", "id": "5b61937e", "metadata": {}, "source": [ "Show the rest of the contents of the Exploration Production Construction." ] }, { "cell_type": "code", "execution_count": null, "id": "b30c643b", "metadata": {}, "outputs": [], "source": [ "epc_data = epc.to_dict()\n", "epc_data.pop(\"boreholeSegment\")\n", "epc_data.pop(\"constructionHistory\")\n", "epc_data" ] } ], "metadata": { "language_info": { "name": "python" } }, "nbformat": 4, "nbformat_minor": 5 }