Home › Mapping utilities tcllib
map::slippy
Common code for slippy based map packages
literal type exactly as shown
argument replace with your value
?optional? may be omitted
Synopsis#
package require Tcl 8.6 9
package require map::slippy ?0.10?
::map slippy geo box 2point zoom geobox
::map slippy geo box center geobox
::map slippy geo box corners geobox
::map slippy geo box diameter geobox
::map slippy geo box dimensions geobox
::map slippy geo box fit geobox canvdim zmax ?zmin?
::map slippy geo box inside geobox geo
::map slippy geo box limit geobox
::map slippy geo box opposites geobox
::map slippy geo box perimeter geobox
::map slippy geo box valid geobox
::map slippy geo box valid-list geoboxes
::map slippy geo distance geo1 geo2
::map slippy geo distance* closed geo...
::map slippy geo distance-list closed geo-list
::map slippy geo limit geo
::map slippy geo bbox geo...
::map slippy geo bbox-list geo-list
::map slippy geo center geo...
::map slippy geo center-list geo-list
::map slippy geo diameter geo...
::map slippy geo diameter-list geo-list
::map slippy geo 2point zoom geo
::map slippy geo 2point* zoom geo...
::map slippy geo 2point-list zoom geo-list
::map slippy geo valid geo
::map slippy geo valid-list geos
::map slippy length level
::map slippy limit2 x
::map slippy limit3 x
::map slippy limit6 x
::map slippy point box 2geo zoom pointbox
::map slippy point box center pointbox
::map slippy point box corners pointbox
::map slippy point box diameter pointbox
::map slippy point box dimensions pointbox
::map slippy point box inside pointbox point
::map slippy point box opposites pointbox
::map slippy point box perimeter pointbox
::map slippy point distance point1 point2
::map slippy point distance* closed point...
::map slippy point distance-list closed point-list
::map slippy point bbox point...
::map slippy point bbox-list point-list
::map slippy point center point...
::map slippy point center-list point-list
::map slippy point diameter point...
::map slippy point diameter-list point-list
::map slippy point 2geo zoom point
::map slippy point 2geo* zoom point...
::map slippy point 2geo-list zoom point-list
::map slippy point simplify radial threshold point-list
::map slippy point simplify rdp point-list
::map slippy pretty-distance x
::map slippy tiles level
::map slippy tile size
::map slippy tile valid zoom row column levels ?msgvar?
::map slippy valid latitude x
::map slippy valid longitude x
Description#
This package provides a number of methods doing things needed by all types of slippy-based map packages.
BEWARE, Attention Version 0.9 is NOT backward compatible with version 0.7 and earlier. The entire API was heavily revised and changed.
Note: For the representation of locations in the various coordinate systems used by the commands of this package please read section Coordinate systems. The command descriptions will not repeat them, and assume that they are understood already.
Coordinate systems#
The commands of this package operate in two distinct coordinate systems, geographical locations, and points. The former represents coordinates for locations on Earth, while the latter is for use on Tk canvas widgets.
Geographic#
Geographical locations (short: geo) are represented by a pair of Latitude and Longitude values, each of which is measured in degrees, as they are essentially angles.
The Zero longitude is the Greenwich meridian, with positive values going east, and negative values going west, for a total range of +/- 180 degrees. Note that +180 and -180 longitude are the same meridian, opposite to Greenwich.
The zero latitude is the Equator, with positive values going north and negative values going south. While the true range is +/- 90 degrees the projection used by the package requires us to cap the range at roughly +/- 85.05112877983284 degrees. This means that the North and South poles are not representable and not part of any map.
A geographical location is represented by a list containing two values, the latitude, and longitude of the location, in this order.
A geographical bounding box is represented by a list containing four values, the minimal latitude and longitude of the box, and the maximal latitude and longitude of the box, in this order.
Geographical locations and boxes can be converted to points and their boxes by means of an additional parameter, the zoom level. This parameter indicates the size of the map in the canvas the coordinates are to be projected into.
Points#
Points (short: point) are represented by a pair of x and y values, each of which is measured in pixels. They reference a location in a Tk canvas widget. As a map can be shown at different degrees of magnification, the exact pixel coordinates for a geographical location depend on this zoom level.
For the following explanation to make sense it should be noted that a map shown in a Tk canvas widget is split into equal-sized quadratic tiles.
Point coordinates are tile coordinates scaled by the size of these tiles. This package uses tiles of size 256, which is the standard size used by many online servers providing map tiles of some kind or other.
A point is represented by a list containing the x- and y-coordinates of the lcoation, in this in this order.
A point bounding box is represented by a list containing four values, the minimal x and y of the box, and the maximal x and y of the box, in this order.
Point locations and boxes can be converted to geographical locations and their boxes by means of an additional parameter, the zoom level. This parameter indicates the size of the map in the canvas the coordinates are projected from.
Tile coordinates appear only in one place of the API, in the signature of command map slippy tile valid. Everything else uses Point coordinates.
Using tile coordinates in the following however makes the structure of the map at the various zoom levels (maginification factors) easier to explain.
Generally the integer part of the tile coordinates represent the row and column number of a tile of the map, wheras the fractional parts signal how far inside that tile the location in question is, with pure integer coordinates (no fractional part) representing the upper left corner of a tile.
The zero point of the map is at the upper left corner, regardless of zoom level, with larger coordinates going right (east) and down (south), and smaller coordinates going left (west) and up (north). Again regardless of zoom level.
Negative coordinates are not allowed.
At zoom level 0 the entire map is represented by a single tile, putting the geographic zero at 1/2, 1/2 in terms of tile coordinates, and the range of tile coordinates as [0...1].
When going from zoom level N to the next deeper (magnified) level (N+1) each tile of level N is split into its four quadrants, which then are the tiles of level N+1.
This means that at zoom level N the map is sliced (horizontally and vertically) into 2^N rows and columns, for a total of 4^N tiles, with the tile coordinates ranging from 0 to 2^N+1.
API#
::mapslippy geo box 2pointzoom geobox#-
The command converts the geographical box geobox to a point box in the canvas, for the specified zoom level, and returns that box.
::mapslippy geo box centergeobox#-
The command returns the center of the geographical box geobox.
::mapslippy geo box cornersgeobox#-
This command returns a list containing the four corner locations implied by the geographical box geobox. The four points are top-left, bottom-left, top-right, and bottom-right, in that order.
::mapslippy geo box diametergeobox#-
The command returns the diameter of the geographical box geobox, in meters.
::mapslippy geo box dimensionsgeobox#-
The command returns the dimensions of the geographical box geobox, width and height, in this order.
::mapslippy geo box fitgeobox canvdim zmax ?zmin?#-
This command calculates the zoom level such that the geobox will fit into a viewport given by canvdim (a 2-element list containing the width and height of said viewport) and returns it.
The zoom level will be made to fit within the range zmin...zmax. When zmin is not specified it will default to
0. ::mapslippy geo box insidegeobox geo#-
The command tests if the geographical location geo is contained in the geographical box geobox or not. It returns
trueif so, andfalseelse. ::mapslippy geo box limitgeobox#-
This command limits the geographical box to at most 6 decimals and returns the result.
For geographical coordinates 6 decimals is roughly equivalent to a grid of 11.1 cm.
::mapslippy geo box oppositesgeobox#-
This command returns a list containing the two principal corner locations implied by the geographical box geobox. The two points are top-left, and bottom-right, in that order.
::mapslippy geo box perimetergeobox#-
The command returns the perimeter of the geographical box geobox, in meters.
::mapslippy geo box validgeobox#-
This commands tests if the specified geographical box contains only valid latitudes and longitudes. It returns
trueif the box is valid, andfalseelse. ::mapslippy geo box valid-listgeoboxes#-
This commands tests if the list of geographical boxes contains only valid latitudes and longitudes. It returns
trueif all the boxes are valid, andfalseelse. ::mapslippy geo distancegeo1 geo2#-
This command computes the great-circle distance between the two geographical locations in meters and returns that value.
The code is based on https://wiki.tcl-lang.org/page/geodesy take on the haversine formula [https://en.wikipedia.org/wiki/Haversine_formula].
::mapslippy geo distance*closed geo...#-
An extension of
map slippy geo distancethis command computes the cumulative distance along the path specified by the ordered set of geographical locations in meters, and returns it.If the path is marked as closed (i.e. a polygon/loop) the result contains the distance between last and first element of the path as well, making the result the length of the perimeter of the area described by the locations.
::mapslippy geo distance-listclosed geo-list#-
As a variant of
map slippy geo distance*this command takes the path to compute the length of as a single list of geographical locations, instead of a varying number of arguments. ::mapslippy geo limitgeo#-
This command limits the geographical location to at most 6 decimals and returns the result.
For geographical coordinates 6 decimals is roughly equivalent to a grid of 11.1 cm.
::mapslippy geo bboxgeo...#::mapslippy geo bbox-listgeo-list#-
These two commands compute the bounding box for the specified set of geographical locations and return a geographical box.
When no geographical locations are specified the box is "
0 0 0 0".The locations are specified as either a varying number of arguments, or as a single list.
::mapslippy geo centergeo...#::mapslippy geo center-listgeo-list#-
These two commands compute the center of the bounding box for the specified set of geographical locations.
When no geographical locations are specified the center is "
0 0".The locations are specified as either a varying number of arguments, or as a single list.
::mapslippy geo diametergeo...#::mapslippy geo diameter-listgeo-list#-
These two commands compute the diameter for the specified set of geographical locations, in meters. The diameter is the maximum of the pair-wise distances between all locations.
When less than two geographical locations are specified the diameter is "
0".The locations are specified as either a varying number of arguments, or as a single list.
::mapslippy geo 2pointzoom geo#-
This command converts the geographical location geo to a point in the canvas, for the specified zoom level, and returns that point.
::mapslippy geo 2point*zoom geo...#::mapslippy geo 2point-listzoom geo-list#-
These two commands are extensions of
map slippy geo 2pointwhich take a series of geographical locations as either a varying number of arguments or a single list, convert them all to points as per the specified zoom level and return a list of the results. ::mapslippy geo validgeo#-
This commands tests if the specified geographical location contains only valid latitudes and longitudes. It returns
trueif the location is valid, andfalseelse. ::mapslippy geo valid-listgeos#-
This commands tests if the list of geographical locations contains only valid latitudes and longitudes. It returns
trueif all the locations are valid, andfalseelse. ::mapslippy lengthlevel#-
This command returns the width/height of a slippy-based map at the specified zoom level, in pixels. This is, in essence, the result of
expr { [tiles $level] * [tile size] } ::mapslippy limit2x#::mapslippy limit3x#::mapslippy limit6x#-
This command limits the value to at most 2, 3, or 6 decimals and returns the result.
For geographical coordinates 6 decimals is roughly equivalent to a grid of 11.1 cm.
::mapslippy point box 2geozoom pointbox#-
The command converts the point box pointbox to a geographical box in the canvas, as per the specified zoom level, and returns that box.
::mapslippy point box centerpointbox#-
The command returns the center of the pointbox.
::mapslippy point box cornerspointbox#-
This command returns a list containing the four corner locations implied by the point box pointbox. The four points are top-left, bottom-left, top-right, and bottom-right, in that order.
::mapslippy point box diameterpointbox#-
The command returns the diameter of the pointbox, in pixels.
::mapslippy point box dimensionspointbox#-
The command returns the dimensions of the pointbox, width and height, in this order.
::mapslippy point box insidepointbox point#-
The command tests if the point is contained in the pointbox or not. It returns
trueif so, andfalseelse. ::mapslippy point box oppositespointbox#-
This command returns a list containing the two principal corner locations implied by the point box pointbox. The two points are top-left, and bottom-right, in that order.
::mapslippy point box perimeterpointbox#-
The command returns the perimeter of the pointbox, in pixels.
::mapslippy point distancepoint1 point2#-
This command computes the euclidena distance between the two points in pixels and returns that value.
::mapslippy point distance*closed point...#-
An extension of
map slippy point distancethis command computes the cumulative distance along the path specified by the ordered set of points, and returns it.If the path is marked as closed (i.e. a polygon/loop) the result contains the distance between last and first element of the path as well, making the result the length of the perimeter of the area described by the locations.
::mapslippy point distance-listclosed point-list#-
As a variant of
map slippy point distance*this command takes the path to compute the length of as a single list of points, instead of a varying number of arguments. ::mapslippy point bboxpoint...#::mapslippy point bbox-listpoint-list#-
These two commands compute the bounding box for the specified set of points and return a point box.
When no points are specified the box is "
0 0 0 0".The locations are specified as either a varying number of arguments, or as a single list.
::mapslippy point centerpoint...#::mapslippy point center-listpoint-list#-
These two commands compute the center of the bounding box for the specified set of points.
When no points are specified the center is "
0 0".The locations are specified as either a varying number of arguments, or as a single list.
::mapslippy point diameterpoint...#::mapslippy point diameter-listpoint-list#-
These two commands compute the diameter for the specified set of points, in pixels. The diameter is the maximum of the pair-wise distances between all locations.
When less than two points are specified the diameter is "
0".The locations are specified as either a varying number of arguments, or as a single list.
::mapslippy point 2geozoom point#-
This command converts the point in the canvas, for the specified zoom level, to a geograhical location, and returns that location.
::mapslippy point 2geo*zoom point...#::mapslippy point 2geo-listzoom point-list#-
These two commands are extensions of
map slippy point 2geowhich take a series of points as either a varying number of arguments or a single list, convert them all to geographical locations as per the specified zoom level and return a list of the results. ::mapslippy point simplify radialthreshold point-list#-
This command takes a path of points (as a single list), simplifies the path using the Radial Distance algorithm and returns the simplified path as list of points.
In essence the algorithm keeps only the first of adjacent points nearer to that first point than the threshold, and drops the others.
::mapslippy point simplify rdppoint-list#-
This command takes a patch of points (as a single list), simplifies it using the non-parametric Ramer-Douglas-Peucker algorithm and returns the simplified path as list of points.
::mapslippy pretty-distancex#-
This methods formats the distance x (in meters) for display and returns the resulting string (including the chosen unit).
Sub-kilometer distances are limited to 2 decimals, i.e. centimeters, whereas Kilometers are limited to 3 decimals, i.e. meters.
::mapslippy tileslevel#-
This command returns the width/height of a slippy-based map at the specified zoom level, in tiles.
::mapslippy tile size#-
This command returns the width/height of a tile in a slippy-based map, in pixels.
::mapslippy tile validzoom row column levels ?msgvar?#-
This command checks if the tile described by zoom, row, and column is valid for a slippy-based map having that many zoom levels, or not. The result is a boolean value,
trueif the tile is valid, andfalseotherwise. In the latter case a message is left in the variable named by msgvar, should it be specified. ::mapslippy valid latitudex#-
This commands tests if the argument x is a valid latitude value, and returns the boolean result of that test. I.e.
trueif the value is valid, andfalseelse. ::mapslippy valid longitudex#-
This commands tests if the argument x is a valid longitude value, and returns the boolean result of that test. I.e.
trueif the value is valid, andfalseelse.
References#
- [1]
-
http://wiki.openstreetmap.org/wiki/Main_Page
Keywords#
geodesy · geography · latitute · location · longitude · map · slippy · zoom