Geoformat is a GDAL/OGR library overlayer
Project description
# 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
```sh
$ pip install geoformat
```
## Basic manipulations
### Geoformat structure
![Strucutre of Geoformat](https://framagit.org/Guilhain/Geoformat/raw/master/images/geoformat.png)
### Open a geocontainer
A container is an equivalent to folder or a database containing one or several geolayer.
```py
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.
### Print data geolayer
Sometime it can be uselful to print in terminal geolayer's attributes.
### Write geolayer in a OGR compatible GIS file
You can obviously convert a geolayer in a compatible OGR file format.
### Write a container in OGR compatible dataSource
Like geolayer you can write a geoformat container in a folder or a GRG compatible datasource.
## 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
```sh
$ pip install geoformat
```
## Basic manipulations
### Geoformat structure
![Strucutre of Geoformat](https://framagit.org/Guilhain/Geoformat/raw/master/images/geoformat.png)
### Open a geocontainer
A container is an equivalent to folder or a database containing one or several geolayer.
```py
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.
### Print data geolayer
Sometime it can be uselful to print in terminal geolayer's attributes.
### Write geolayer in a OGR compatible GIS file
You can obviously convert a geolayer in a compatible OGR file format.
### Write a container in OGR compatible dataSource
Like geolayer you can write a geoformat container in a folder or a GRG compatible datasource.
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
geoformat-20190511.tar.gz
(21.8 kB
view details)
File details
Details for the file geoformat-20190511.tar.gz
.
File metadata
- Download URL: geoformat-20190511.tar.gz
- Upload date:
- Size: 21.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.8.1 pkginfo/1.2.1 requests/2.18.1 setuptools/36.2.7 requests-toolbelt/0.8.0 clint/0.5.1 CPython/3.6.3 Linux/4.13.0-46-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bdfe459ece0702fadb5de4a65115b611e8c2b2845ebbef87e1fd074c8e042cd7 |
|
MD5 | 8fc17c6edadaa0682b27a69ce3f1fc30 |
|
BLAKE2b-256 | 1ea46a6e6f0f7c4a272330b476d046c2739d7225284d0f18d1796da70f3a4b27 |