All Projects → DOV-Vlaanderen → pydov

DOV-Vlaanderen / pydov

Licence: MIT license
Python package to retrieve data from Databank Ondergrond Vlaanderen (DOV)

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to pydov

bioRad
R package for analysis and visualisation of biological signals in weather radar data
Stars: ✭ 24 (-17.24%)
Mutual labels:  lifewatch, oscibio
URPOcean
Ocean waves on URP for wide-range mobile devices (gles 3.0)
Stars: ✭ 98 (+237.93%)
Mutual labels:  water
FusionWater
A simple way to add buoyancy / water physics in Unity, built on the existing physics engine
Stars: ✭ 204 (+603.45%)
Mutual labels:  water
grand
A Python module for carrying out GCMC insertions and deletions of water molecules in OpenMM.
Stars: ✭ 23 (-20.69%)
Mutual labels:  water
WaterModels.jl
A Julia/JuMP Package for Water Distribution Network Optimization
Stars: ✭ 50 (+72.41%)
Mutual labels:  water
URP Water
Water shader in unity urp.
Stars: ✭ 19 (-34.48%)
Mutual labels:  water
GuthrieSolv
Experimental small molecule hydration free energy dataset
Stars: ✭ 30 (+3.45%)
Mutual labels:  water
epanetReader
Read text files in Epanet's .inp and .rpt formats into R
Stars: ✭ 18 (-37.93%)
Mutual labels:  water
unity-stylized-water
A stylized water shader (and material presets) for Unity.
Stars: ✭ 336 (+1058.62%)
Mutual labels:  water
Smart-Net-Data-Accessor
2-way/outside SQL build-time data accessor generator library.
Stars: ✭ 22 (-24.14%)
Mutual labels:  data-access
epynet
Object-oriented wrapper for EPANET 2.1
Stars: ✭ 24 (-17.24%)
Mutual labels:  water
qgis-epanet
Project migrated to : https://gitlab.com/Oslandia/qgis/qgis-epanet
Stars: ✭ 36 (+24.14%)
Mutual labels:  water
elliotforwater.com
Webapp which run the https://elliotforwater.com/ website
Stars: ✭ 15 (-48.28%)
Mutual labels:  water
CustomWaterView
⭐ 仿支付宝蚂蚁森林效果
Stars: ✭ 118 (+306.9%)
Mutual labels:  water
QWAT
TEKSI Water module (project QWAT) - QGIS project
Stars: ✭ 52 (+79.31%)
Mutual labels:  water
unity-water-shader2d
A 2D water shader for Unity
Stars: ✭ 91 (+213.79%)
Mutual labels:  water
RTWG
The Real-Time World Generation projekt aims to provide a tool for world/terrain generation based on prozedural algorithmes and cellular automata simulation.
Stars: ✭ 52 (+79.31%)
Mutual labels:  water
epanet2toolkit
An R package for calling the Epanet software for simulation of piping networks.
Stars: ✭ 13 (-55.17%)
Mutual labels:  water
leaflet-velocity
Visualise velocity data on a leaflet layer
Stars: ✭ 467 (+1510.34%)
Mutual labels:  water
Crest
An advanced ocean system implemented in Unity3D
Stars: ✭ 2,364 (+8051.72%)
Mutual labels:  water

pydov

CI Documentation Status Project Status: Active – The project has reached a stable, usable state and is being actively developed. DOI pyOpenSci

pydov is a Python package to query and download data from Databank Ondergrond Vlaanderen (DOV). It is hosted on GitHub and development is coordinated by Databank Ondergrond Vlaanderen (DOV). DOV aggregates data about soil, subsoil and groundwater of Flanders and makes them publicly available. Interactive and human-readable extraction and querying of the data is provided by a web application, whereas the focus of this package is to support machine-based extraction and conversion of the data.

To get started, see the documentation at https://pydov.readthedocs.io.

Please note that downloading DOV data with pydov is governed by the same disclaimer that applies to the other DOV services. Be sure to consult it when using DOV data with pydov.

Installation

You can install pydov stable using pip:

pip install pydov

Or clone the git repository and install with python setup.py install to get the latest snapshot from the master branch.

To contribute to the code, make sure to install the package and all of the development dependencies enlisted in the requirements_dev.txt file. First, clone the git repository. We advice to use an Python development environment, for example with conda or virtualenv. Activate the (conda/virtualenv) environment and install the package in development mode:

pip install -e .[devs]

Need more detailed instructions? Check out the installation instructions and the development guidelines.

Quick start

Read the quick start from the docs or jump straight in:

from pydov.search.boring import BoringSearch
from pydov.util.location import Within, Box

from owslib.fes2 import PropertyIsGreaterThan

boringsearch = BoringSearch()

dataframe = boringsearch.search(
    query=PropertyIsGreaterThan(propertyname='diepte_tot_m', literal='550'),
    location=Within(Box(107500, 202000, 108500, 203000))
)

The resulting dataframe contains the information on boreholes (boringen) within the provided bounding box (as defined by the location argument) with a depth larger than 550m:

>>> dataframe
                                         pkey_boring     boornummer         x         y  mv_mtaw  start_boring_mtaw gemeente  diepte_boring_van  diepte_boring_tot datum_aanvang uitvoerder  boorgatmeting  diepte_methode_van  diepte_methode_tot boormethode
0  https://www.dov.vlaanderen.be/data/boring/1989...  kb14d40e-B777  108015.0  202860.0      5.0                5.0     Gent                0.0              660.0    1989-01-25   onbekend          False                 0.0               660.0    onbekend
1  https://www.dov.vlaanderen.be/data/boring/1972...  kb14d40e-B778  108090.0  202835.0      5.0                5.0     Gent                0.0              600.0    1972-05-17   onbekend          False                 0.0               600.0    onbekend

Documentation

Full documentation of pydov can be found on our ReadTheDocs page.

Contributing

You do not need to be a code expert to contribute to this project as there are several ways you can contribute to this project. Have a look at the contributing page.

Meta

  • We welcome contributions including bug reports.
  • License: MIT
  • Citation information can be found on Zenodo.
  • Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.
  • Also note that downloading DOV data with pydov is governed by the same disclaimer that applies to the other DOV services. Be sure to consult it when using DOV data with pydov.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].