In [1]:
%matplotlib inline
import inspect, sys
In [2]:
# check pydov path
import pydov
In [3]:
from pydov.search.interpretaties import InformeleHydrogeologischeStratigrafieSearch
itp = InformeleHydrogeologischeStratigrafieSearch()
A description is provided for the 'Informele stratigrafie' datatype:
In [4]:
itp.get_description()
Out[4]:
The different fields that are available for objects of the 'Informele hydrogeologische stratigrafie' datatype can be requested with the get_fields() method:
In [5]:
fields = itp.get_fields()
# print available fields
for f in fields.values():
print(f['name'])
You can get more information of a field by requesting it from the fields dictionary:
In [6]:
fields['Datum']
Out[6]:
Get data for all the 'informele hydrogeologisch stratigrafie' interpretations that are geographically located within the bounds of the specified box.
The coordinates are in the Belgian Lambert72 (EPSG:31370) coordinate system and are given in the order of lower left x, lower left y, upper right x, upper right y.
In [7]:
from pydov.util.location import Within, Box
df = itp.search(location=Within(Box(100000, 100000, 200000, 200000)))
df.head()
Out[7]:
The dataframe contains one 'informele stratigrafie' interpretation where three layers ('laag') were identified. The available data are flattened to represent unique attributes per row of the dataframe.
Using the pkey_interpretatie field one can request the details of this interpretation in a webbrowser:
In [8]:
for pkey_interpretatie in set(df.pkey_interpretatie):
print(pkey_interpretatie)
Next to querying interpretations based on their geographic location within a bounding box, we can also search for interpretations matching a specific set of properties. For this we can build a query using a combination of the 'InformeleHydrogeologischeStratigrafie' fields and operators provided by the WFS protocol.
A list of possible operators can be found below:
In [9]:
[i for i,j in inspect.getmembers(sys.modules['owslib.fes'], inspect.isclass) if 'Property' in i]
Out[9]:
In this example we build a query using the PropertyIsEqualTo operator to find all interpretations that are within the community (gemeente) of 'Herstappe':
In [10]:
from owslib.fes import PropertyIsEqualTo
query = PropertyIsEqualTo(propertyname='gemeente',
literal='Rotselaar')
df = itp.search(query=query)
df.head()
Out[10]:
Once again we can use the pkey_interpretatie as a permanent link to the information of these interpretations:
In [11]:
for pkey_interpretatie in set(df.pkey_interpretatie):
print(pkey_interpretatie)
We can combine a query on attributes with a query on geographic location to get the interpretations within a bounding box that have specific properties.
The following example requests the interpretations of boreholes only, within the given bounding box.
(Note that the datatype of the literal parameter should be a string, regardless of the datatype of this field in the output dataframe.)
In [12]:
from owslib.fes import PropertyIsEqualTo
query = PropertyIsEqualTo(
propertyname='Type_proef',
literal='Boring')
df = itp.search(
location=Within(Box(100000, 100000, 200000, 200000)),
query=query
)
df.head()
Out[12]:
We can look at one of the interpretations in a webbrowser using its pkey_interpretatie:
In [13]:
for pkey_interpretatie in set(df.pkey_interpretatie):
print(pkey_interpretatie)
We can limit the columns in the output dataframe by specifying the return_fields parameter in our search.
In this example we query all the 'informele stratigrafie' interpretations in the community of Rotselaar and return their date:
In [14]:
query = PropertyIsEqualTo(propertyname='gemeente',
literal='Rotselaar')
df = itp.search(query=query,
return_fields=('Datum',))
df.head()
Out[14]:
In [15]:
df.describe()
Out[15]:
To keep the output dataframe size acceptable, not all available WFS fields are included in the standard output. However, one can use this information to select interpretations as illustrated below.
For example, make a selection of the interpretations in the municipality of Rotselaar, before 1/1/1990:
In [16]:
from owslib.fes import And, PropertyIsEqualTo, PropertyIsLessThan
query = And([PropertyIsEqualTo(propertyname='gemeente',
literal='Rotselaar'),
PropertyIsLessThan(propertyname='Datum',
literal='1990-01-01')]
)
df = itp.search(query=query,
return_fields=('pkey_interpretatie', 'Datum'))
df.head()
Out[16]:
As denoted in the previous example, not all available fields are available in the default output frame to keep its size limited. However, you can request any available field by including it in the return_fields parameter of the search:
In [17]:
query = PropertyIsEqualTo(
propertyname='gemeente',
literal='Rotselaar')
df = itp.search(query=query,
return_fields=('pkey_interpretatie', 'pkey_boring',
'x', 'y', 'Z_mTAW', 'gemeente', 'Auteurs', 'Proefnummer'))
df.head()
Out[17]:
Using Folium, we can display the results of our search on a map.
In [19]:
# import the necessary modules (not included in the requirements of pydov!)
import folium
from folium.plugins import MarkerCluster
from pyproj import Transformer
In [20]:
# convert the coordinates to lat/lon for folium
def convert_latlon(x1, y1):
transformer = Transformer.from_crs("epsg:31370", "epsg:4326", always_xy=True)
x2,y2 = transformer.transform(x1, y1)
return x2, y2
df['lon'], df['lat'] = zip(*map(convert_latlon, df['x'], df['y']))
# convert to list
loclist = df[['lat', 'lon']].values.tolist()
In [21]:
# initialize the Folium map on the centre of the selected locations, play with the zoom until ok
fmap = folium.Map(location=[df['lat'].mean(), df['lon'].mean()], zoom_start=12)
marker_cluster = MarkerCluster().add_to(fmap)
for loc in range(0, len(loclist)):
folium.Marker(loclist[loc], popup=df['Proefnummer'][loc]).add_to(marker_cluster)
fmap
Out[21]:
In [ ]: