Metadata-Version: 1.1
Name: geolinks
Version: 0.0.1
Summary: Utilities to deal with geospatial links
Home-page: https://github.com/geopython/geolinks
Author: Tom Kralidis
Author-email: tomkralidis@gmail.com
License: MIT
Description: [![Build Status](https://travis-ci.org/geopython/geolinks.png)](https://travis-ci.org/geopython/geolinks)
        
        geolinks
        ========
        
        Utilities to deal with geospatial links.  Working implementation
        of the Cat-Interop work at https://github.com/OSGeo/Cat-Interop
        
        Install
        -------
        
        ```bash
        pip install geolinks
        ```
        
        Use
        ---
        
        ```python
        >>> from geolinks.links import sniff_link
        >>> sniff_link('http://host/wms?service=WMS')
        'OGC:WMS'
        >>> sniff_link('http://host/wms?service=WPS')
        'OGC:WPS'
        >>> sniff_link('http://host/wms?service=CSW')
        'OGC:CSW'
        >>> sniff_link('http://host/data/roads.kmz')
        'OGC:KML'
        >>> sniff_link('http://host/data/roads.kml')
        'OGC:KML'
        ```
        
Keywords: links geo protocol url href
Platform: all
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Scientific/Engineering :: GIS
