Metadata-Version: 1.1
Name: acdh-histogis
Version: 0.0.2
Summary: High level api to interact with [HistoGIS](https://histogis.acdh.oeaw.ac.at/)
Home-page: https://github.com/acdh-oeaw/acdh-histogis
Author: Peter Andorfer, Matthias Schlögl
Author-email: matthias.schloegl@oeaw.ac.at, peter.andorfer@oeaw.ac.at
License: MIT
Description: Readme
        ======
        
        .. image:: https://badge.fury.io/py/acdh-histogis.svg
            :target: https://badge.fury.io/py/acdh-histogis
        
        acdh-histogis is a python package providing a high level api to interact with [HistoGIS](https://histogis.acdh.oeaw.ac.at/)
        
        
        Installation
        ------------
        
            pip install acdh-histogis
        
        
        Use:
        ------------
        
        .. code-block:: python
        
            from histogis.histogis import HistoGis as hg
        
            hg().query(
                lat=48.2894, lng=14.304, when='1860-12-12', polygon=False
            )
        
            hg().query_by_geonames_id(
                gnd='https://www.geonames.org/2772400/',
                when='1860-12-12',
                polygon=False,
            )
        
        
        Licensing
        ---------
        
        All code unless otherwise noted is licensed under the terms of the MIT License (MIT). Please refer to the file LICENSE in the root directory of this repository.
        
        
        
        
        History
        -------
        
        0.0.2 (2019-03-11)
        ++++++++++++++++++
        
        * `fetch_gnd_rdf` and `query_by_geonames_id methods added`
        
        0.0.1 (2019-03-11)
        ++++++++++++++++++
        
        * First version
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
