Exploration Production Construction
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.
import brodata
epc = brodata.epc.ExplorationProductionConstruction.from_bro_id("EPC000000000140")
epc
ExplorationProductionConstruction(broId='EPC000000000140')
Display the construction history.
epc.constructionHistory
| date | name | |
|---|---|---|
| 0 | 1983-07-13 | aanlegBoorgatGestart |
| 1 | 1984-09-26 | wettelijkeStatusGewijzigd |
Show the borehole segments. In this case there is only one segment.
epc.boreholeSegment
| boreholeSegmentCode | boreholeSegmentName | boreholeSegmentCategory | purpose | drillingStartDate | drillingEndDate | dateOfDisclosure | |
|---|---|---|---|---|---|---|---|
| 0 | 1394 | HAASTRECHT-02 | primair | opsporenDelfstof | None | None | 2003-01-01 |
Show the rest of the contents of the Exploration Production Construction.
epc_data = epc.to_dict()
epc_data.pop("boreholeSegment")
epc_data.pop("constructionHistory")
epc_data
{'broId': 'EPC000000000140',
'coordinateTransformation': 'RDNAPTRANS2018MV0',
'corrected': 'nee',
'deliveryAccountableParty': '95206957',
'deliveryContext': 'archiefoverdracht',
'deregistered': 'nee',
'id': 'BRO_0004',
'latestAdditionTime': '2025-09-30T15:18:01+02:00',
'legalStatus': 'buitenGebruikMijnbouw',
'localVerticalReferencePoint': 'NAP',
'location': <POINT (113875.53 445039.64)>,
'objectRegistrationTime': '2025-09-29T19:16:28+02:00',
'offset': 0.0,
'originalOffset': '6.010',
'originalVerticalReferencePoint': 'draaitafel',
'owner': None,
'qualityRegime': 'IMBRO/A',
'registrationStatus': 'aangevuld',
'reregistered': 'nee',
'sourceReference_chamberOfCommerceNumber': '27376655',
'standardizedLocation': <POINT (4.788 51.992)>,
'startDate': Timestamp('1983-07-13 00:00:00'),
'underReview': 'nee',
'verticalDatum': 'NAP'}