Chapter 11 Spatial Queries
Last updated: 2023-01-05 18:18:20
11.1 Introduction
In this chapter, we are going to integrate our plant observations web map with spatial SQL queries to selectively load data from the database, based on geographical proximity. Specifically, we will build a web map where the user can click on any location, and as a result the nearest n plants observations to the clicked location will be loaded from the database and displayed, along with straight-line paths towards those plants. You can see the final result in Figure 11.8.
We will build the web map going through several steps, each time adding more functionality:
- Adding a marker at the clicked location on the map (Section 11.2.1)
- Adding a custom marker at clicked location, to distinguish it from the observation markers (Section 11.2.2)
- Finding n nearest features, using a spatial SQL query, and adding them on the map (Section 11.4)
- Drawing line segments from clicked location to the nearest features (Section 11.5)
11.2 Adding markers on click
11.2.1 Getting click coordinates
Our first step towards a web map that queries the plants
table based on spatial proximity is to mark the clicked location on the map, while capturing its coordinates. The coordinates will be stored, to pass them on with a spatial SQL query (Section 9.6.4). We start from the basic map example-06-02.html
from Section 6.5 and make changes on top of it. First, we modify the initially displayed map extent to a larger one:
let map = L.map("map").setView([32, 35], 8);
Next, we add a layer group named my_location
. This layer group will contain the clicked location marker, created on map click. As we have seen in Sections 7.6.4 and 10.5.3, using a layer group will make it easy to remove the old marker before adding a new one, in case the user changed his/her mind and subsequently clicked on a different location:
let my_location = L.layerGroup().addTo(map);
We then define an event listener, which will execute a function named map_click
each time the user clicks on the map. Remember the map click event and its .latlng
property introduced in the example-06-08.html
(Section 6.9)? We use exactly the same principle here, only instead of adding a popup with the clicked coordinates in the clicked location, we are adding a marker. To do that, we first set the event listener for "click"
events on the map
object, referencing the map_click
function that we have yet to define:
.addEventListener("click", map_click); map
Second, we define the map_click
function itself. The map_click
function needs to do two things:
- Clear the
my_location
layer of any previous markers, from a previously clicked location (if any) - Add a new marker to the
my_location
layer, at the clicked coordinates, using the.latlng
property of the event object
Here is the definition of the map_click
function:
function map_click(e) {
.clearLayers();
my_location.marker(e.latlng).addTo(my_location);
L }
As a result, we now have a map (example-11-01.html
) where the user can click, with the last clicked location displayed on the map (Figure 11.1).
11.2.2 Adding a custom marker
Shortly, we will write code to load plant observations next to to our clicked location, and display them as markers too (Figure 11.7). To distinguish the marker for the clicked location from the markers for the plant observations, we need to override the default blue marker settings in Leaflet and display a different type of marker for one of the two layers. For example, we can use a red marker for the clicked location and keep using the default blue markers for denoting the plant locations (Figure 11.7). To change marker appearance, however, we first need to understand a little better how it is defined in the first place.
The markers we see on a Leaflet map, created with L.marker
(Section 6.6.2), are in fact PNG images displayed at the specified locations placed on top of the map background. If you look closely, you will see that the default blue marker also has a “shadow” effect behind it, to create an illusion of depth, as if the marker “sticks out” of the map (Figure 11.2). The shadow is a PNG image too, displayed behind the PNG image of the marker itself. We can use the Inspect Element mode (Section 1.9) in the developer tools to figure out which PNG image is actually being loaded by Leaflet, and where it comes from (Figure 11.3). Doing so reveals the following values for the src
attributes of the <img>
elements for the marker and marker shadow images:
- http://localhost:8000/examples/css/images/marker-icon-2x.png
- http://localhost:8000/examples/css/images/marker-shadow.png
Note that the prefix http://localhost:8000/ is specific to a locally-served (Section 5.6.2) copy of the examples, and may be different when viewing them on a different server. The local Leaflet JavaScript library, which is included in example-11-01.html
, looks for the marker PNG images in a sub-directory named images
inside the directory where the leaflet.css
file is placed (Section A). That is the reason for us placing the images in the sub-directory, which we mentioned in Section 6.5.7. In case we use a remote copy of the Leaflet library (Section 6.5.7), the markers would have been loaded from remote PNG files, such as the following ones:
- https://unpkg.com/leaflet@1.9.2/dist/images/marker-icon-2x.png
- https://unpkg.com/leaflet@1.9.2/dist/images/marker-shadow.png
You can follow these URLs to download and inspect the PNG images in any graphical viewer or editor, such as Microsoft Paint.
To distinguish our clicked location from other markers on the map, we will use a different marker for the clicked location. In our example, we will use a marker PNG image, which is similar to the default one, only colored in red instead of blue (Figure 11.2). The PNG images for the red icon and its shadow are also included in the online book materials, in the images
sub-directory (Appendix A):
images/red_icon.png
images/marker-shadow.png
To set a custom Leaflet marker, based on the PNG images red_icon.png
and marker-shadow.png
, you need to place these files on your server. For example, the files can be placed in a folder named images
within the root directory of the web page (see Section 5.5.2), as given in the online materials. A custom marker using these PNG images, assuming they are in the images
folder, is then defined with the L.icon
function as follows:
let red_icon = L.icon({
iconUrl: "images/red_icon.png",
shadowUrl: "images/marker-shadow.png",
iconAnchor: [13, 41]
; })
The L.icon
function requires a path to the PNG images for the icon (iconUrl
), and, optionally, a path to the PNG image for the shadow (shadowUrl
). The other important parameter is iconAnchor
, which sets the anchor point, i.e., the exact icon image pixel which corresponds to the point coordinates where the marker is initiated. The custom icon object is assigned to a variable, hereby named red_icon
, which we can later use to draw custom markers on the map with L.marker
.
What is the meaning of iconAnchor
, and why did we use the value of [13, 41]
? The iconAnchor
parameter specifies which pixel of the marker PNG image will be placed on the [lon, lat]
point where the marker is initialized. To determine the right anchor point coordinates, we need to figure out the size (in pixels) of our particular marker, and the image region where we would like the anchor to be placed. The image size can be determined by viewing the PNG file properties, for example clicking on the file with the right mouse button, choosing Properties and then the Details tab. In our case, the size of the red_icon.png
image is 25 by 41 pixels (Figure 11.4).
Conventionally, image coordinates are set from a [0, 0]
point at the top-left corner of the icon95. The anchor point for our particular icon should be at its tip, at the bottom-middle. Starting from the top-left corner [0, 0]
, this means going all the way down on the Y-axis, then half-way to the right on the X-axis. Since the PNG image size is [25, 41]
, this means we set the the pixel on the center of the X-axis ([13, ...]
) and bottom of the Y-axis ([..., 41]
), thus the anchor value of [13, 41]
(Figure 11.5).
Now that the red_icon
object is ready and the PNG images are in place, we can replace the expression for adding a marker inside the map click event listener in example-11-01.html
:
.marker(e.latlng).addTo(my_location); L
with a new expression that loads our custom red_icon
marker in example-11-02.html
:
.marker(e.latlng, {icon: red_icon}).addTo(my_location); L
The resulting map example-11-02.html
is shown in Figure 11.6. Clicking on the map now adds the red marker icon instead of the default blue one.
You can use just about any PNG image as a marker icon this way, not just a differently-colored default marker. There are many places where you can find PNG images suitable for map markers, such as the Maps and Navigation collection on https://www.flaticon.com website96.
- Download one of the PNG images for custom map icons from https://www.flaticon.com/packs/maps-and-navigation-20, or use any other small PNG image that you have.
- Adapt
example-11-02.html
to display your custom icon instead of the red icon.
11.3 Spatial PostGIS operators
11.3.1 Overview
Now that we know how to add a custom red marker on map click, we are going to add some code into our map_click
function incorporating a spatial SQL query (Section 9.6.4) to find the closest plants to the clicked location. As a result, each time the user clicks on a new point and map_click
adds a red marker, the function also queries for the nearest plants and displays them on the map (Figure 11.7).
As we have already discussed in Section 9.6.4, spatial databases are characterized by the fact that their tables may contain a geometry column. In PostGIS, the geometry column is conventionally named geom
(Section 9.7.3). The geometry column is composed of encoded geometric data in the WKB format, which can be used to transform returned table records to spatial formats, such as GeoJSON. For example, in Chapters 9–10 we used SELECT
statements to return GeoJSON objects based on data from the plants
table on the server. These queries utilized the geom
geometry column to create the "geometry"
properties of the GeoJSON layer. However, the geometry column can also be used to make various spatial calculations on our data, using spatial SQL operators and functions. A very common example of a spatial calculation is the calculation of geographical distance.
In the next two sections (11.3.2–11.3.3), we will discuss the structure of the required spatial SQL query to return nearest features. Then, in Section 11.4, we will see how to implement this type of SQL query in our Leaflet web map.
11.3.2 Geographical distance
To find the five plant observations nearest to our clicked location, we can use the following query, which was introduced as an example of spatial SQL syntax in Section 9.6.4:
SELECT name_lat, obsr_date, ST_AsText(geom) AS geom
FROM plants
ORDER BY
:geography <->
geom:
ST_SetSRID(34.810696, 31.895923), 4326
ST_MakePoint(:geography
):LIMIT 5;
This query returns the nearest five observations from the plants
table, based on distance to a specific point [34.810696,31.895923]
. In this section, we will explain the structure of the query more in depth.
First of all, as we already saw in Chapters 9–10, limiting the returned table to the first n
records can be triggered using the term LIMIT n
, as in LIMIT 5
or LIMIT 25
. However, we need the five nearest plants, not just the five plants incidentally being first in terms of the table row ordering. This means the data need to be ordered before being returned.
As an example of non-spatial ordering, the table can be ordered with ORDER BY
followed by column name(s) to select the five plant observations with the lowest (or highest) values for the given variable(s). We already saw one example of non-spatial ordering when producing the alphabetically ordered list of species in Section 10.4.3. As another example, consider the following query, which returns the five earliest plant observation records. The ORDER BY obsr_date
part means the table is ordered based on the values in the obsr_date
(observation date) column:
SELECT name_lat, obsr_date, ST_AsText(geom) AS geom
FROM plants
ORDER BY obsr_date
LIMIT 5;
which gives the following result:
name_lat | obsr_date | geom
----------------+------------+----------------------------
Iris haynei | 1900-01-01 | POINT(35.654005 32.741372)
Iris atrofusca | 1900-01-01 | POINT(35.193367 31.44711)
Iris atrofusca | 1900-01-01 | POINT(35.189142 31.514754)
Iris vartanii | 1900-01-01 | POINT(35.139696 31.474149)
Iris haynei | 1900-01-01 | POINT(35.679761 32.770133)
(5 rows)
Try the corresponding SQL API query, to examine the above result on your own:
https://geobgu.xyz/sql?q=
SELECT name_lat, obsr_date, geom FROM plants ORDER BY obsr_date LIMIT 5
Indeed, all returned records are from the 1900-01-01
, which is the earliest date in the obsr_date
field. Spatial ordering is similar, only that the table records are ordered based on their spatial arrangement, namely based on their distances to another spatial feature, or set of features. In other words, with spatial ordering, instead of ordering by non-spatial column values, we are ordering by geographical distances, which are calculated using the geometry column. In the above spatial query example for getting the five nearest points from a given location [34.810696,31.895923]
, the only part different from the non-spatial query example is basically just the ORDER BY
term. Instead of the following ORDER BY
term for non-spatial ordering, based on obsr_date
values:
ORDER BY obsr_date
we use the following ORDER BY
term, for spatial ordering, based on distance from a specific point [34.810696,31.895923]
:
ORDER BY
:geography <->
geom:34.810696, 31.895923), 4326)::geography ST_SetSRID(ST_MakePoint(
The result of the spatial query is as follows:
name_lat | obsr_date | geom
----------------------+------------+----------------------------
Lavandula stoechas | 1931-04-30 | POINT(34.808564 31.897377)
Bunium ferulaceum | | POINT(34.808504 31.897328)
Bunium ferulaceum | 1930-02-23 | POINT(34.808504 31.897328)
Silene modesta | 1900-01-01 | POINT(34.822295 31.900125)
Corrigiola litoralis | 2016-01-30 | POINT(34.825931 31.900792)
(5 rows)
These are the locations of the five nearest plants to the specified location. You can see that the longitude and latitude values are fairly similar to [34.810696,31.895923]
, reflecting the fact that the points are proximate. Again, you can experiment with this query in the SQL API:
https://geobgu.xyz/sql?q=
SELECT name_lat, obsr_date, ST_AsText(geom) AS geometry
FROM plants
ORDER BY geom::geography <-> ST_SetSRID(
ST_MakePoint(34.810696, 31.895923), 4326)::geography LIMIT 5
As you probably noticed, the expression used for spatial ordering is more complicated than simply a column name such as obsr_date
:
:geography <->
geom:34.810696, 31.895923), 4326)::geography ST_SetSRID(ST_MakePoint(
In addition to the geometry column name (geom
), this particular ORDER BY
term contains four spatial PostGIS functions and operators, which we will now explain:
ST_MakePoint
—Creates a point geometryST_SetSRID
—Sets the coordinate reference system (CRS)::geography
—Casts to thegeography
type<->
—Calculates 2D distance
A two-dimensional point geometry is constructed using the ST_MakePoint
function, given two coordinates x
and y
, in this case 34.810696
and 31.895923
, respectively. Thus, the expression ST_MakePoint(34.810696,31.895923)
defines a single geometry of type "Point"
, which we can use in spatial calculations. The ST_SetSRID
function then sets the coordinate reference system (CRS) for the geometry. The 4326
argument is the EPSG code of the WGS84 geographical projection (i.e., lon/lat) (Figure 6.1).
The ::geography
part casts the geometry to a special type called geography
, thus determining that what follows is a calculation with spherical geometry, which is the appropriate way to do distance-based calculations with lon/lat data. With ::geography
, distance calculations give the spherical Great Circle distance, in meters (Figure 12.10). Omitting the ::geography
part is equivalent to using the default ::geometry
type, implying that what follows is a planar geometry calculation. Planar geometry calculations are only appropriate for projected data, which we do not use in this book. Using ::geometry
when calculating distances on lon/lat data gives straight-line euclidean distances, in degree units, which is almost always inappropriate.
The <->
operator returns the 2D distance between two sets of geometries. Since we set ::geography
, the result represents spherical Great Circle distance in meters. In the present example, we are calculating the distances between geom
, which is the geometry column of the plants
table, and an individual point. The result is a series of distances in meters, corresponding to all features of the plants
table.
Finally, the series of distances is passed to the ORDER BY
keyword, thus rearranging the table based on the calculated distances, from the smallest to largest, i.e., from nearest observation to furthest. The LIMIT 5
part then takes the top five records, which are the five nearest ones to [34.810696, 31.895923]
.
11.3.3 Sphere vs. spheroid
As another demonstration of the four spatial PostGIS functions discussed in Section 11.3.2 (above), consider the following small query. This query calculates the distance between two points [0, 0]
and [0, 1]
in geographic coordinates (lon/lat), i.e., the length of one degree of longitude along the equator:
SELECT
0, 0), 4326)::geography <->
(ST_SetSRID(ST_MakePoint(1, 0), 4326)::geography) / 1000
ST_SetSRID(ST_MakePoint(AS dist_km;
According to the result, the distance is 111.195
km:
dist_km
------------------
111.195079734632
(1 row)
In this query, we are manually constructing two points in lon/lat, [0, 0]
and [1, 0]
, using ST_MakePoint
, ST_SetSRID
and ::geography
. The 2D distance operator <->
is the applied on the points to calculate the Great Circle distance between them, in meters. Dividing the result by 1000
transforms the distance from meter to kilometer units97.
The true distance between [0, 0]
and [1, 0]
, however, is 111.320
km and not 111.195
. What is the reason for the discrepancy? The reason is that the <->
operator, though using spherical geometry, relies on a sphere model of the earth, rather than the more accurate spheroid model. In PostGIS, the more accurate but somewhat slower distance calculation based on a spheroid can be obtained with ST_Distance
instead of <->
, as in:
SELECT ST_distance(
0, 0), 4326)::geography,
ST_SetSRID(ST_MakePoint(1, 0), 4326)::geography) / 1000
ST_SetSRID(ST_MakePoint(AS dist_km;
This gives the more accurate result of 111.319
km:
dist_km
-----------------
111.31949079327
(1 row)
Though ST_distance
gives the more accurate estimate, the calculation takes longer. For example, finding the 5 nearest neighbors from the plants
table took 0.17 seconds using the <->
operator, compared to 0.37 seconds with ST_Distance
, on an average laptop computer. This is a more than twice longer calculation time. Although, in this particular example, exactly the same five plants are returned in both cases, theoretically the ordering may differ among the two methods in some cases, due to small differences in distance estimates between the sphere and spheroid models. In practice, the trade-off between speed and accuracy should always be considered when choosing the right distance-based calculation given the application requirements, dataset resolution and dataset size. With small amounts of data and/or high accuracy requirements ST_Distance
should be preferred; otherwise the accuracy given by <->
may be sufficient.
- What do you think will happen if we omit the
::geography
keyword from both places where it appears in the above query?- Check your answer using the SQL API.
11.4 Adding nearest points to map
We are now ready to take the SQL spatial query from Section 11.3.2 and incorporate it into the map_click
function, so that the nearest 25 plants are displayed along with the red marker. The key here is that we are going to make the spatial query dynamic, each time replacing the proximity search according to the location clicked by the user on the web map. Unlike in Section 11.3.2, where the longitude and latitude were hard-coded into the SQL query ([34.810696, 31.895923]
), we are going to generate the SQL query by pasting user-clicked coordinates into the SQL query “template”. Specifically, we will use longitude and latitude returned from our map click event, e.latlng
(Section 11.2.1).
We proceed, modifying example-11-02.html
. First, we add two more variable definitions: a layer group for the nearest plant markers (plant_locations
), and the URL prefix for querying the SQL API (url
). Along with the the layer group for the clicked location (my_location
), which we already defined in the previous example (Section 11.2.1), the variable definition part in our <script>
is now composed of the following three expressions:
let my_location = L.layerGroup().addTo(map);
let plant_locations = L.layerGroup().addTo(map);
let url = "https://geobgu.xyz/sql?q=";
The remaining code changes are all inside our map_click
function. In its new version, the function will not only display the clicked location, but also the locations of 25 nearest observations of rare plants. Recall that the previous version of the map_click
function in example-11-02.html
(Section 11.2.1) merely cleared the old marker and added a new one according to the e.latlng
object:
function map_click(e) {
.clearLayers();
my_location.marker(e.latlng, {icon: red_icon}).addTo(my_location);
L }
In the new version of the function, we add four new expressions. First, we define a new local variable click_coords
capturing the contents of e.latlng
(Section 6.9) for that particular event. This is just a convenience, for typing click_coords
instead of e.latlng
in the various places where we will use the clicked coordinates in the new function code body:
let click_coords = e.latlng;
Second, we make sure that the nearest plant observations are cleared between consecutive clicks, just like the red marker is. The following expression takes care of clearing any previously loaded plant_locations
contents:
.clearLayers(); plant_locations
In the third expression, we dynamically compose the SQL query to get 25 nearest records from the plants
table, considering the clicked location. We basically replace the hard-coded lon/lat coordinates from the specific SQL query discussed in Section 11.3.2 with the lng
and lat
properties of the click_coords
object. The result, named sql_query
, is the specific SQL query string needed to obtain the 25 nearest plant observations from our currently clicked location. This is conceptually similar to the way that we dynamically constructed an SQL query to select the observations of a particular species (Section 10.5.3):
let sql_query =
"SELECT name_lat, geom FROM plants" +
"ORDER BY geom::geography <-> ST_SetSRID(ST_MakePoint(" +
.lng + "," + click_coords.lat +
click_coords"), 4326)::geography LIMIT 25";
Fourth, we use the sql_query
string to request the nearest 25 observations from the database, and add them to the plant_locations
layer. The popup, in this case, contains the Latin species name (name_lat
) displayed in italics:
fetch(url + sql_query)
.then(function(response) {
return response.json();
}).then(function(data) {
.geoJSON(data, {
LonEachFeature: function(feature, layer) {
.bindPopup("<i>" + feature.properties.name_lat + "</i>");
layer
}.addTo(plant_locations);
}); })
Here is the complete code for the new version of the map_click
function:
function map_click(e) {
// Get clicked coordinates
let click_coords = e.latlng;
// Clear map
.clearLayers();
my_location.clearLayers();
plant_locations
// Add location marker
.marker(click_coords, {icon: red_icon}).addTo(my_location);
L
// Set SQL query
let sql_query =
"SELECT name_lat, geom FROM plants" +
"ORDER BY geom::geography <-> ST_SetSRID(ST_MakePoint(" +
.lng + "," + click_coords.lat +
click_coords"), 4326)::geography LIMIT 25";
// Get GeoJSON & add to map
fetch(url + sql_query)
.then(function(response) {
return response.json();
}).then(function(data) {
.geoJSON(data, {
LonEachFeature: function(feature, layer) {
.bindPopup("<i>" + feature.properties.name_lat + "</i>");
layer
}.addTo(plant_locations);
});
})
}
The resulting map example-11-03.html
is shown in Figure 11.7. The red marker denotes the clicked location, while the blue markers denote the 25 nearest plant observations loaded from the database.
11.5 Drawing line connectors
To highlight the direction and distance from the clicked location to each of the nearest plants, the final version example-11-04.html
adds code for drawing line segments between the focal point and each observation (Figure 11.8). This is a common visualization technique, also known as a “spider diagram” or “desire lines” (e.g., in ArcGIS documentation). Line segments are frequently used to highlight the association between a focal point or points, and their associated (usually nearest) surrounding points from a different layer. For example, the lines can be used to visualize the association between a set of business stores and the customers who are potentially affiliated with each store.
To draw each of the line segments connecting the red marker (clicked location) with one of the blue ones (plant observation), we can take the two pairs of coordinates and apply the L.polyline
function (Section 6.6.3) on them. The principle is similar to the function we wrote in the exercise for Chapter 3 (Section 3.12). Suppose that the clicked location coordinates are [lon0, lat0]
and the coordinates of the nearest plant observations are [lon1, lat1]
, [lon2, lat2]
, [lon3, lat3]
, etc. The coordinate arrays of the corresponding line segments, connecting each pair of points, are then:
[[lon0, lat0], [lon1, lat1]]
for the first segment[[lon0, lat0], [lon2, lat2]]
for the second segment[[lon0, lat0], [lon3, lat3]]
for the third segment- etc.
Each of these coordinate arrays can be passed to the L.polyline
function to draw the corresponding segment connecting a pair of points, much like the line segment connecting Building 72 with the Library (Figure 6.9). Note that we will actually be using reversed coordinate pairs, such as [lat0, lon0]
, as expected by all Leaflet functions for drawing shapes, including L.polyline
(Section 6.5.9).
To implement the above procedure of drawing line segments, we first create yet another layer group named lines
at the beginning of our script, right below the expressions where we already defined the my_location
and plant_locations
layer groups:
let lines = L.layerGroup().addTo(map);
Accordingly, inside the map_click
function we clear all previous line segments before new ones are drawn, with the following expression clearing the lines
layer group, right below the expressions where we clear my_location
and plant_locations
:
.clearLayers(); lines
Moving on, we are ready to actually draw the line segments. Inside the L.geoJSON
function call, in the previous example-11-03.html
(Section 11.4) we only binded the Latin species name popup like so:
.geoJSON(data, {
LonEachFeature: function(feature, layer) {
// Bind popup
.bindPopup("<i>" + feature.properties.name_lat + "<i>");
layer
}.addTo(plant_locations); })
Now, in example-11-04.html
, we add three more expressions inside the onEachFeature
option. These expressions are used to draw a line segment between the “central” point where the red marker is, which is stored in click_coords
, and the currently-added GeoJSON point, which is given in feature
as part of the onEachFeature
iteration (Section 8.5):
.geoJSON(data, {
LonEachFeature: function(feature, layer) {
// Bind popup
.bindPopup("<i>" + feature.properties.name_lat + "<i>");
layer
// Draw line segment
let feature_coords = feature.geometry.coordinates;
let line_coords = [
.lat, click_coords.lng],
[click_coords1], feature_coords[0]]
[feature_coords[;
].polyline(line_coords, {
Lcolor: "red", weight: 3, opacity: 0.75
.addTo(lines);
})
}.addTo(plant_locations); })
The new code section, right below the //Draw line segment
comment, is composed of three expressions, which we now discuss step by step.
In the first expression, we extract the coordinates of the current plant observation, and assign them to a variable named feature_coords
. As discussed in Section 8.5, as part of the onEachFeature
iteration, the currently processed GeoJSON feature is accessible through the feature
parameter. Just like we are accessing the current species name with feature.properties.name_lat
to include it in the popup, we can also extract the point coordinates with feature.geometry.coordinates
. The feature.geometry.coordinates
property of a GeoJSON "Point"
geometry is an array of the form [lon, lat]
(Section 7.3.2.2), which we store in a variable named feature_coords
:
let feature_coords = feature.geometry.coordinates;
In the second expression, we build the segment coordinates array by combining the coordinates of the focal point stored in click_coords
with the coordinates of the current plant observation stored in feature_coords
. Again, while feature_coords
are stored as [lon, lat]
according to the GeoJSON specification, L.polyline
expects [lat, lon]
(Section 6.6.3). This is why the feature_coords
array is reversed with [feature_coords[1], feature_coords[0]]
. The complete segment coordinates array is assigned into a variable named line_coords
:
let line_coords = [
.lat, click_coords.lng],
[click_coords1], feature_coords[0]]
[feature_coords[; ]
In the third expressions, line_coords
is passed to the L.polyline
function to create a line layer object. The .addTo
method is then applied, in order to add the segment to the lines
layer group and thus actually draw it on the map:
.polyline(line_coords, {color: "red", weight: 3, opacity: 0.75})
L.addTo(lines);
The resulting map example-11-04.html
is shown in Figure 11.8. Clicking on the map now displays both nearest plant observations and the connecting line segments.
11.6 Exercise
- Start with
example-11-04.html
and modify the code so that the popup for each of the nearest plants also specifies its distance to the queried point (Figure 11.9).
- To get the distances, you can use the following SQL query example which returns the five nearest plants along with the distance in kilometers to the specific point
[34.810696, 31.895923]
. The distances are given in an additional column nameddist_km
.
SELECT name_lat,
(:geography <->
geom:34.810696, 31.895923), 4326)::geography
ST_SetSRID(ST_MakePoint(/ 1000 AS dist_km,
) AS geom
ST_AsText(geom) FROM plants
ORDER BY dist_km
LIMIT 5;
- The query gives the following result. Note the
dist_km
column, which contains the distances in kilometers:
name_lat | dist_km | geom
----------------------+-------------------+----------------------------
Lavandula stoechas | 0.258166195505697 | POINT(34.808564 31.897377)
Bunium ferulaceum | 0.25928724896688 | POINT(34.808504 31.897328)
Bunium ferulaceum | 0.25928724896688 | POINT(34.808504 31.897328)
Silene modesta | 1.19050813583538 | POINT(34.822295 31.900125)
Corrigiola litoralis | 1.53676126266166 | POINT(34.825931 31.900792)
(5 rows)
- Here is the corresponding SQL API query you can experiment with:
https://geobgu.xyz/sql?q=
SELECT name_lat, (geom::geography <->
ST_SetSRID(ST_MakePoint(34.810696, 31.895923), 4326
)::geography) / 1000 AS dist_km, geom
FROM plants ORDER BY dist_km LIMIT 5
- Remember that in the actual code you need to use
format=GeoJSON
instead offormat=CSV
, andgeom
instead ofST_AsText(geom)
to get GeoJSON rather than CSV. It is also useful to round the distance values before putting them into the popup (e.g., to two decimal places, as shown in Figure 11.9). This can be done with JavaScript, applying the.toFixed
method with the required number of digits on the numeric variable:
= 2.321342;
x .toFixed(2); // Returns "2.32" x
Measuring the coordinates from top-left and using an inverted Y-axis (values increase when moving down) is an old convention in computer graphics, emerging in many different situations. Going back to
example-04-07.html
(Section 4.10), you will see that mouse coordinates in the browser window are also measured from the top-left corner.↩︎For other examples of using custom icons in Leaflet, check out the Leaflet Custom Markers tutorial (https://leafletjs.com/examples/custom-icons/) and the DUSPviz Map Design tutorial (http://duspviz.mit.edu/web-map-workshop/map-symbolization/).↩︎
Note that this query does not use data from any table, because it calculates distance between two points created as part of the query itself.↩︎