GEOS BI

Supported Geometry Types

GEOS BI supports a variety of geometry types

GEOS BI offers robust support for multiple geometry types, such as circles, lines, and polygons.

Lines (Defined by two coordinates)

To demonstrate the use of line geometries, we’ll use the following dataset:

idnamewidthstart_point_latitudestart_point_longitudeend_point_latitudeend_point_longitude
1Rhine River Segment50051.6522496.600378549.5122118.4361953
2Elbe River Segment70052.10459211.66247750.91612814.152070
3Danube River Segment100048.57703313.46084949.02112612.123448

You can download the dataset here: lines_01.csv

To visualize lines on the map, simply put the four location columns (start and end coordinates) into the first four data fields of the visual. The result will look like this:

Geometry type - Line

Multi-LineStrings, Polygons and other complex geometries

For more complex geometries, such as Multi-LineStrings or Polygons, GEOS BI supports industry-standard formats like GeoJSON and WKT (Well-Known Text).

To use these formats, place the GeoJSON or WKT data into the designated WKT/GeoJSON data field.

GeoJSON

Here’s a sample dataset using GeoJSON:

idnamearea_km2populationgeometry
1Berlin Central District39.47366408{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[13.366,52.537],[13.366,52.500],[13.445,52.500],[13.445,52.537],[13.366,52.537]]]}}
2Munich Old Town310.431488206{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[11.565,48.146],[11.565,48.129],[11.589,48.129],[11.589,48.146],[11.565,48.146]]]}}
3Hamburg Harbor755.221841179{"type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[9.936,53.548],[9.936,53.518],[10.030,53.518],[10.030,53.548],[9.936,53.548]]]}}

Download the dataset here: geojson_01.csv

When visualized in Power BI, the data appears as follows:

GeoJSON in PowerBI

WKT

For WKT-formatted data, here’s an example dataset:

idcitystationsgeometry
1CologneCologne Central, Cologne Messe/DeutzMULTIPOINT ((6.958307 50.941357), (6.982230 50.940326))
2DortmundDortmund Central, Dortmund StadthausMULTIPOINT ((7.458076 51.517781), (7.466944 51.514167))
3EssenEssen Central, Essen SüdMULTIPOINT ((7.013750 51.451389), (7.008611 51.441944))

You can download the dataset here: wkt_01.csv

In Power BI, the WKT data is visualized as shown below:

WKT in PowerBI

On this page