Metadata-Version: 2.1
Name: rsgis
Version: 0.0.1
Summary: A python package for basic GIS operations
Home-page: https://github.com/jeafreezy/rsgis
Author: Emmanuel Jolaiya
Author-email: jolaiyaemmanuel@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# rsgis
A python package for basic GIS operations.

## Current release 

- Metadata file handling API

## Installation
#### Python version 3.0 +<br>
    pip install rsgis
#### Using the Metadata module <br>
     #import the class
    from rsgis import Metadata

    #instantiate the class
    mtd=Metadata(path/to/landsat/metadata/file)

    #usage
    mtd.get('SUN') #to get a single parameter. Might return a list of dict if found multiple match. Be specific to avoid this.

    met.get_all() #returns a dict of all available parameters in the metadata file

    mtd.get_some(['sun','path','row']) #To get multiple parameters. Returns a list of values.


## Running the tests

 Paste a metadata file in the data dir(delete old one) in tests and run<br>

    python metadata_test.py in terminal
 If no error,then the file is valid. You can go ahead to using the class.
## Contributing.

 PRs and issues are welcomed.

## Authors:
**Jolaiya Emmanuel** - [@jeafreezy](https://twitter.com/jeafreezy) <br>

## License
This project is licensed under the Apache 2.0 License - see the [LICENSE.md](LICENSE.md) file for details



