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
$ pip install geoformat
Basic manipulations
Geoformat structure
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.
Print data geolayer
Sometime it can be uselful to print in terminal geolayer's attributes.
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]
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
File details
Details for the file geoformat-20190512.tar.gz
.
File metadata
- Download URL: geoformat-20190512.tar.gz
- Upload date:
- Size: 22.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4459bb587b5d1750fba7bd4c3dd178be37dda7a06f116f4f50d013f17b7ab11f |
|
MD5 | 3d68a8104cd9495f7ed56cc1bded7d95 |
|
BLAKE2b-256 | 184fb014d1fef5c7d4889e186102ddd4df1a58266a421edaaef6632bd6ec1e86 |