Geoformat is a GDAL/OGR library overlayer
Project description
Welcome to Geoformat
Introduction
Geoformat is geopsatial library. The library aim is to simplify loading data and manipulations. Until now this library is in Alpha mode. This means that for the moment the structure of this library is not full oriented object compatible.
Installation
$ pip install geoformat
Geolayer structure
Geolayer is the equivalent of an attribute table. It stores entities that (see below) contain attribute data and/or geographic information.
For the moment a geolayer is a python dictionary. Some developments are underway to make it a python object easier to manipulate.
How is organised a geolayer
Geolayer metadata
'metadata' key in geolayer root structure is used to inform the structure of the geolayer.
If geolayer contains attribute data "fields" key must be filled in. If geolayer contains geometries data "geometry_ref" key must be filled in.
Field type
Each field in geolayer must be filed in "metadata" => "fields" structure.
Is informed : - field name - field type (mandatory) - field width (if necessary) - field precision (if necessary) - field index (optional)
| type | width | precision | index |
+===============+==========+===========+==========+
| 'Integer' | None | None | Optional |
| 'IntegerList' | None | None | Optional |
| 'Real' | Required | Required | Optional |
| 'RealList' | Required | Required | Optional |
| 'String' | Required | None | Optional |
| 'StringList' | Required | None | Optional |
| 'Binary' | None | None | Optional |
| 'Date' | None | None | Optional |
| 'Time' | None | None | Optional |
| 'DateTime' | None | None | Optional |
| 'Boolean' | None | None | Optional |
Geometry type
Each geometrie in geolayer must be filed in "metadata" => "geometry_ref" structure.
Is informed - type : each geometries type code present in geolayer (see table below) - crs : coordinate reference systeme in WKT format or EPSG
List of valid geometries :
Code | Name |
---|---|
0 | Unknown |
1 | Point |
2 | LineString |
3 | Polygon |
4 | MultiPoint |
5 | MultiLinestring |
6 | MultiPolygon |
7 | GeometryCollection |
100 | None |
Feature structure
The feature is de basic object that contains information. This information is of two types:
- attributes : alphanumeric data that describes feature
- geometry : type and coordinates that describe geometrically the feature
attributes
geometry
There are seven types of geometries that we can group into 3 categories.
basics
type | representation | sample data | geoformat |
---|---|---|---|
Point | underground station | { |
|
LineString | a road | { |
|
Polygon | an island | { |
composed
type | representation | sample data | geoformat |
---|---|---|---|
MultiPoint | exits from same underground station | { |
|
MultiLineString | a river with several tributaries | { |
|
MultiPolygon | a country with an island | { |
sets
type | representation | sample data | geoformat |
---|---|---|---|
GeometryCollection | a mix of all examples above | { |
Drivers
Driver are usefull for reading and writing data in a geospatial standard like Esri Shapefile, Geojson, Postgres/Postig, csv ...
Geoformat is progressively integrating its own drivers but it is possible to use the GDAL/OGR library drivers.
Geoformat driver
driver | read | write | read function name | write function name |
---|---|---|---|---|
Geojson | X | X | geojson_to_geolayer | geolayer_to_geojson |
Postgres / Postgis | NOK | X | geolayer_to_postgres | |
CSV | X | X | csv_to_geolayer | geolayer_to_csv |
esri shapefile | dev | dev |
OGR GDAL driver
Usefull if you want to work with ESRI SHAPEFILE or MAP INFO FILE or GML you can use this two functions :
read | write |
---|---|
ogr_layer_to_geolayer | geolayer_to_ogr_layer |
list of maintained drivers :
driver_name |
---|
"ESRI SHAPEFILE" |
"MAPINFO FILE" |
"POSTGRESQL" |
"GML" |
"KML" |
"XLSX" |
"CSV" |
"GEOJSON" |
Examples
Open a geocontainer
A container is an equivalent to folder or a database containing one or several geolayer.
import geoformat
commune_path = 'data/FRANCE_IGN/COMMUNE_2016_MPO_L93.shp'
gare_path = 'data/FRANCE_IGN/GARES_PT_L93.shp'
layer_list = [commune_path, gare_path]
geocontainer = geoformat.ogr_layers_to_geocontainer(layer_list)
print(geocontainer['layers'].keys())
# >>>dict_keys(['COMMUNE_2016_MPO_L93', 'GARES_PT_L93'])
Open a geolayer
A geolayer is an equivalent to a file or a table in database containing one or several features with attibutes and/or geometry.
import geoformat
departement_path = 'data/FRANCE_IGN/DEPARTEMENT_2016_L93.shp'
geolayer = geoformat.ogr_layer_to_geolayer(departement_path)
print(len(geolayer['features']))
# >>>96
Print data geolayer
Sometime it can be uselful to print in terminal geolayer's attributes.
import geoformat
region_path = 'data/FRANCE_IGN/REGION_2016_L93.shp'
geolayer = geoformat.ogr_layer_to_geolayer(region_path)
print(geoformat.print_features_data_table(geolayer)):
### >>>
+--------+----------+-------------------------------------+------------+------------+
| i_feat | CODE_REG | NOM_REG | POPULATION | SUPERFICIE |
+========+==========+=====================================+============+============+
| 0 | 76 | LANGUEDOC-ROUSSILLON-MIDI-PYRENEES | 5683878 | 7243041 |
| 1 | 75 | AQUITAINE-LIMOUSIN-POITOU-CHARENTES | 5844177 | 8466821 |
| 2 | 84 | AUVERGNE-RHONE-ALPES | 7757595 | 7014795 |
| 3 | 32 | NORD-PAS-DE-CALAIS-PICARDIE | 5987883 | 3187435 |
| 4 | 44 | ALSACE-CHAMPAGNE-ARDENNE-LORRAINE | 5552388 | 5732928 |
| 5 | 93 | PROVENCE-ALPES-COTE D'AZUR | 4953675 | 3155736 |
| 6 | 27 | BOURGOGNE-FRANCHE-COMTE | 2819783 | 4746283 |
| 7 | 52 | PAYS DE LA LOIRE | 3660852 | 2997777 |
| 8 | 28 | NORMANDIE | 3328364 | 2728511 |
| 9 | 11 | ILE-DE-FRANCE | 11959807 | 1205191 |
| 10 | 24 | CENTRE-VAL DE LOIRE | 2570548 | 3905914 |
| 11 | 53 | BRETAGNE | 3258707 | 2702269 |
| 12 | 94 | CORSE | 320208 | 875982 |
+--------+----------+-------------------------------------+------------+------------+
Change geolayer coordinate reference system [CRS]
It can be usefull to change the projection for a layer. In this example we will transform a geolayer in projection Lambert93 [EPSG:2154] to coordinates system WGS84 [EPSG:4326].
import geoformat
region_path = 'data/FRANCE_IGN/REGION_2016_L93.shp'
geolayer = geoformat.ogr_layer_to_geolayer(region_path)
geolayer = geoformat.reproject_geolayer(geolayer, out_crs=4326)
print(geolayer['metadata']['geometry_ref']['crs'])
# >>>4326
Write geolayer in a OGR compatible GIS file
You can obviously convert a geolayer in a compatible OGR file format. In this case ye put a geolayer in 'ESRi SHAPEFILE' format and we create a new file in 'GEOJSON' (we add a reprojection because geojson should be in WGS84 coordinates system).
import geoformat
gares_shp_path = 'data/FRANCE_IGN/GARES_L93.shp'
gares_geojson_path = 'data/FRANCE_IGN/GARES_L93.geojson'
geolayer = geoformat.ogr_layer_to_geolayer(gares_shp_path)
geolayer = geoformat.reproject_geolayer(geolayer, out_crs=4326)
geoformat.geolayer_to_geojson(geolayer, gares_geojson_path)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file geoformat-20230103.tar.gz
.
File metadata
- Download URL: geoformat-20230103.tar.gz
- Upload date:
- Size: 3.1 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7b1c966f54bf047a20f38684870416f3ae976fd6a9d6955c13467454c02023c2 |
|
MD5 | 231aa51cb7a3aed72dfbc2297a449ca6 |
|
BLAKE2b-256 | e681e4ee649d9276297cee3667a3e415b11500f861a44e09d7207725c96ddd2c |