LiteratureMapper
LiteratureMapper copied to clipboard
A QGIS plugin to add geoJSON geometries to records in a Zotero library
Include an open in browser option for records to make it easy for a user to open a paper while digitizing in order to read the location descriptions. Should be...
As GeoJson currently only supports EPSG:4236 and it's the most interchangeable, only record data in that crs, reprojecting if needed from the map canvas. Optional: Could also set the map...
Looking at the Extra Field specification, I'm wondering if we should move to Geometry: {geosjon} \n , to follow the conventions noted in the docs. It's more similar to json...
Add an option to the start-up window (where you put in your credentials) to decide which columns to display in the table of citations. Particularly, I'd like the option to...
The API request for a group library appears to succeed(maybe not), but the json returned might not be exactly the same as direct user collections. Was working on this in...
Currently the Save feature only works if your library is set to "Publish Entire Library" in the privacy settings of your account. Let's figure out how to make this optional...
**Background:** Zotero accepts dates in a multitude of formats so there can be a variety of formats in any given citation collection. Currently we handle this challenge by converting the...
- [ ] Add row numbers to table. - [ ] Add count of records like the attribute table interface has
Ran ```make pep8``` which checks the code against python style guidelines. Should be easy to fix most of these, not critical as it doesn't break code. `./literature_mapper.py:24:80: E501 line too...
Tried to implement f-strings to make url calls more readable in the code. Works fine in python but QGIS doesn't like it, not really sure why. https://realpython.com/python-f-strings/