Skip to main content

Welcome to Geoformat

Introduction

Geoformat is GDAL / OGR overlayer wiht MIT licence. The library aim is to simplify loading and OGR 'DataSource' and 'Layer' 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

Basic manipulations

Geoformat structure

Strucutre of Geoformat

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)

for line in geoformat.print_features_data_table(geolayer):
    print(line)
    
### >>>
+--------+----------+-------------------------------------+------------+------------+
| 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_ogr_layer(geolayer, gares_geojson_path, 'GEOJSON')

Write a container in OGR compatible dataSource

Like geolayer you can write a geoformat container in a folder or a GRG compatible datasource. Here we have a geocontainer with a lot of layers and we want to save all of this in an other folder (but it can be also a 'POSTGRESQL' database).

import geoformat

# INPUT
commune_path = 'data/FRANCE_IGN/COMMUNE_2016_MPO_L93.shp'
gare_path = 'data/FRANCE_IGN/GARES_PT_L93.shp'

# OUTPUT
output_folder = 'data/'

layer_list = [commune_path, gare_path]

geocontainer = geoformat.ogr_layers_to_geocontainer(layer_list)

geoformat.geocontainer_to_ogr_format(geocontainer, output_folder, 'kml')

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

geoformat-20190523.tar.gz (26.3 kB view details)

Uploaded Source

File details

Details for the file geoformat-20190523.tar.gz.

File metadata

  • Download URL: geoformat-20190523.tar.gz
  • Upload date:
  • Size: 26.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/2.7.15rc1

File hashes

Hashes for geoformat-20190523.tar.gz
Algorithm Hash digest
SHA256 cfb92451980626971f4b6b3200ee175d07b0e0262145deb0734d14eb33fe3026
MD5 dffdd8e0bb8f8e71fc42fc3ccf937a39
BLAKE2b-256 ceb3b835c1a7710bca7ce46cc8212672b083753ec417aa16ac79de0698aa64aa

See more details on using hashes here.

Release history Release notifications | RSS feed

20260910

2 files

20260828

2 files

20260827

2 files

20260315

2 files

20250922

2 files

20250910

2 files

20250825

2 files

20250823

2 files

20250103.1

2 files

20241115

2 files

20240907

1 file

20240906

1 file

20240718

1 file

20240519

1 file

20240407

1 file

20240225

1 file

20240215

1 file

20240211

1 file

20240113

1 file

20231226

1 file

20231225

1 file

20231224

1 file

20231223

1 file

20231222

1 file

20230620

1 file

20230421

1 file

20230116

1 file

20230103

1 file

20221125

1 file

20221123

1 file

20221012

1 file

20220715

1 file

20220625

1 file

20220614

1 file

20220510

1 file

20220205

1 file

20211104

1 file

20210913

1 file

20210725

1 file

20210720

1 file

20210507

1 file

20210423

1 file

20210315

1 file

20210314

1 file

20210308.3

1 file

20210308.2

1 file

20210308

1 file

20210307

1 file

20210212

1 file

20210122

1 file

20210121

1 file

20210116

1 file

20201210

1 file

20201020

1 file

20201012

1 file

20201009

1 file

20201006

1 file

20200906

1 file

20200726

1 file

20200617

1 file

20200424

1 file

20200317

1 file

20200311

1 file

20200309

1 file

20200225

1 file

20200220

1 file

20200202

1 file

20200130.post1

1 file

20200130

1 file

20200118

1 file

20200113

1 file

20200110

1 file

20191224

1 file

20191215

1 file

20191212

1 file

20191209.post1

1 file

20191208

1 file

20191127

1 file

20191126

1 file

20190918

1 file

20190904

1 file

20190809

1 file

This release

20190523 This release

1 file

20190522

1 file

20190512.post1

1 file

20190512

1 file

20190511

1 file

20190510.post7

1 file

20190510.post6

1 file

20190510.post5

1 file

20190510.post4

1 file

20190510.post3

1 file

20190510.post2

1 file

20190510.post1

1 file

20190509.post9

1 file

20190509.post7

1 file

20190509.post6

1 file

20190509.post5

1 file

20190509.post4

1 file

20190509.post2

1 file

20190509

1 file

20190508.post2

1 file

2020.726

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page