kopia lustrzana https://github.com/glidernet/ogn-python
commit
a3e4d21e1a
|
@ -2,19 +2,20 @@
|
||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
- Moved to PostGIS, PostgreSQL is now mandantory
|
- Moved to PostGIS, PostgreSQL is now mandantory
|
||||||
- Changed database schema (added airport, added relations, added aircraft_type, removed unused fields)
|
- Changed database schema (added airport, added relations, added `aircraft_type`, removed unused fields)
|
||||||
- Added Airport manager with command line option `db.import_airports`,
|
- Added Airport manager with command line option `db.import_airports`,
|
||||||
default is WELT2000
|
default is WELT2000
|
||||||
- Logbook: instead of lat, lon and name of the airport just pass the name
|
- Logbook: instead of lat, lon and name of the airport just pass the name
|
||||||
- Logbook: optional utc offset, optional single day selection
|
- Logbook: optional utc offset, optional single day selection
|
||||||
- Logbook: remark if different airport is used for takeoff or landing
|
- Logbook: remark if different airport is used for takeoff or landing
|
||||||
- Logbook: several accuracy and speed improvements
|
- Logbook: several accuracy and speed improvements
|
||||||
- DDB: consider aircraft_type
|
- DDB: consider `aircraft_type`
|
||||||
- Moved exceptions from `ogn.exceptions` to `ogn.parser.exceptions`
|
- Moved exceptions from `ogn.exceptions` to `ogn.parser.exceptions`
|
||||||
- Moved parsing from `ogn.model.*` to `ogn.parser`
|
- Moved parsing from `ogn.model.*` to `ogn.parser`
|
||||||
|
- Moved the APRS- & OGN-Parser, the APRS-client and the DDB-client to [python-ogn-client](https://github.com/glidernet/python-ogn-client)
|
||||||
|
|
||||||
## 0.2.1 - 2016-02-17
|
## 0.2.1 - 2016-02-17
|
||||||
First release via PyPi.
|
First and last release via PyPI.
|
||||||
- Added CHANGELOG.
|
- Added CHANGELOG.
|
||||||
|
|
||||||
## 0.2
|
## 0.2
|
||||||
|
|
|
@ -4,8 +4,6 @@
|
||||||
(https://travis-ci.org/glidernet/ogn-python)
|
(https://travis-ci.org/glidernet/ogn-python)
|
||||||
[]
|
[]
|
||||||
(https://coveralls.io/r/glidernet/ogn-python)
|
(https://coveralls.io/r/glidernet/ogn-python)
|
||||||
[]
|
|
||||||
(https://pypi.python.org/pypi/ogn-python)
|
|
||||||
|
|
||||||
A database backend for the [Open Glider Network](http://wiki.glidernet.org/).
|
A database backend for the [Open Glider Network](http://wiki.glidernet.org/).
|
||||||
The ogn-python module saves all received beacons into a database with [SQLAlchemy](http://www.sqlalchemy.org/).
|
The ogn-python module saves all received beacons into a database with [SQLAlchemy](http://www.sqlalchemy.org/).
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -40,7 +40,7 @@ setup(
|
||||||
'aerofiles==0.3',
|
'aerofiles==0.3',
|
||||||
'geoalchemy2==0.3.0',
|
'geoalchemy2==0.3.0',
|
||||||
'shapely==1.5.15',
|
'shapely==1.5.15',
|
||||||
'ogn-client==0.3.0',
|
'ogn-client==0.5.0',
|
||||||
'psycopg2==2.6.1'
|
'psycopg2==2.6.1'
|
||||||
],
|
],
|
||||||
extras_require={
|
extras_require={
|
||||||
|
|
Ładowanie…
Reference in New Issue