Metadata-Version: 2.1
Name: shape2geosparql
Version: 0.1.0
Summary: Convert shapefile to GeoSPARQL
Home-page: https://github.com/nvitucci/shape2geosparql
Author: Nicola Vitucci
Author-email: nicola.vitucci@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.0
Description-Content-Type: text/markdown
Requires-Dist: rdflib
Requires-Dist: gdal
Requires-Dist: click
Provides-Extra: tests
Requires-Dist: pytest ; extra == 'tests'

# shape2geosparql

A library for converting shapefiles to GeoSPARQL.

### Install

The `GDAL` library should already be installed on the system. On Fedora:

```bash
$ sudo yum install gdal-devel
```

On other systems:
- Ubuntu: https://mothergeo-py.readthedocs.io/en/latest/development/how-to/gdal-ubuntu-pkg.html#install-gdal-ogr
- Windows: https://sandbox.idre.ucla.edu/sandbox/tutorials/installing-gdal-for-windows

You only need to install the core library, as the Python bindings will be installed with `shape2geosparql`.

Once GDAL is installed:

```bash
$ python3 -m venv venv
$ source venv/bin/activate
$ pip install shape2geosparql
```

Should there be any problems in installing the `GDAL` Python library, try to run this first:

```bash
$ pip install gdal==$(gdal-config --version)
```

or insert the GDAL version number in place of `$(gdal-config --version)`. 

### Usage

Download and extract a shapefile, for example from:

- https://dati.trentino.it/dataset/stazioni-treno-open-data
- https://hifld-geoplatform.opendata.arcgis.com/datasets/american-red-cross-chapter-facilities

Then, from `python`, `IPython` or `Jupyter`:

```python
from shape2geosparql import convert

converter = convert('FILENAME.shp')
print(converter.write().decode()) 
```

You can also run the `shape2geosparql` command:

```bash
$ shape2geosparql FILENAME.shp


