My geo package
Project description
Py4Geo
Is still experimental...
Description
This module implements a DAL database model inspired to the OpenstreetMap database, optimized for storing informations, with a very flexible json structure able to host and model any kind of data.
It supports OpenstreetMap and geojson as main data structures for import.
System requirements
Optional requirements
Install
pip install py4geo
Use Py4geo in custom py4web applications
Py4web applications are nothing more than native python modules, Py4geo tools can be imported from them and for integration you just need to overwrite few basic setting variables.
Setup
-
Define in your application settings subsequent variables with values adapted to your needs:
# db settings # WARNING! Commented out variables are optional. # DB_FOLDER = DB_URI = "postgres://<PG user>:<password>@<host name>/<db name>" # DB_POOL_SIZE = 10 # DB_MIGRATE = True # Actually True is the default if not specified. # MATERIALIZED_VIEWS = []
-
Create your own setup script (
setup.py) in therootof your application:from . import settings from py4geo import settings as py4geo_settings py4geo_settings.DB_URI = settings.DB_URI py4geo_settings.DB_FOLDER = settings.DB_FOLDER py4geo_settings.MATERIALIZED_VIEWS = settings.MATERIALIZED_VIEWS from py4geo.setup import initdb initdb() # WARNING! These imports must follow the call of the previous initdb function. from py4geo.setup.setup import modelsetup # Importing the model defined tables are automatically created from py4geo.models import db # This will create necessary geometry views. modelsetup()
-
Go to your
appsfolder and run:cd path/to/apps python -m <yourAppName>.setup
WARNING the script will ask for necessary PostgreSQL power user credentials that you must know.
Share your py4web/web2py application database with Py4geo
You have two options
-
Overwrite the settings variable
DB_URIwith a valid PostgreSQL connection string to a PostGIS dtabase. -
Overwrite the
dbvariable in thecommonmodule with a DAL object connected to a PostGIS database.
Resources
Dev notes
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file py4geo-1.0.8.tar.gz.
File metadata
- Download URL: py4geo-1.0.8.tar.gz
- Upload date:
- Size: 41.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.0.1 pkginfo/1.6.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e897576c36e0e4ba37004f278128bfba2f5dfb41a06096208a46afcdcfe3e61
|
|
| MD5 |
01749662b12e514aaecf4b309ff8ae5c
|
|
| BLAKE2b-256 |
4017b137d2108308e3413a2e84413548aab1b5a880fe4403b97d66a4125b9cf5
|
File details
Details for the file py4geo-1.0.8-py3-none-any.whl.
File metadata
- Download URL: py4geo-1.0.8-py3-none-any.whl
- Upload date:
- Size: 50.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.0.1 pkginfo/1.6.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c672dce7257ee57c43a56db8ca7a9c1b8feba10e59f3158bbe3934b55beb99c7
|
|
| MD5 |
b128457a29bb781ccf7c8f0b978c2298
|
|
| BLAKE2b-256 |
e729d98bf6b0d5ae243657c8fb6b4a68ad3714717e6b93fd894287e9d0ae89c4
|