Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/garnertb/geopdf
Add GeoPDF functionality to ReportLab.
https://github.com/garnertb/geopdf
Last synced: 22 days ago
JSON representation
Add GeoPDF functionality to ReportLab.
- Host: GitHub
- URL: https://github.com/garnertb/geopdf
- Owner: garnertb
- License: mit
- Created: 2015-01-21T01:06:41.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-06-09T13:53:44.000Z (over 9 years ago)
- Last Synced: 2024-11-25T07:38:57.773Z (about 1 month ago)
- Language: Python
- Size: 171 KB
- Stars: 2
- Watchers: 4
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
GeoPDF
======[![Build Status](https://travis-ci.org/garnertb/geopdf.svg?branch=master)](https://travis-ci.org/garnertb/geopdf)
GeoPDF is a simple wrapper around [ReportLab](http://www.reportlab.com/) that allows developers to create basic GeoPDFs by
following the [GeoPDF Encoding Best Practices](http://portal.opengeospatial.org/files/?artifact_id=33332)
published by the Open Geospatial Consortium. In its current state, this project only exposes the bare minimum needed for
developers to create a GeoPDF in reportlab.Installation
============Install this project from PyPI by running the command below:
```$ pip install geopdf```
or alternatively from source (github master):
```$ pip install git+https://github.com/garnertb/geopdf.git#egg=geopdf```
Creating a GeoPDF
=================
If you have worked with reportlab before, GeoPDF should feel familiar. GeoPDF subclasses the reportlab Canvas so you get all
of the API methods you are used to along with some additional geospatial methods!Example
-------
In this example, we create a 200 x 200 empty rectangle with the bounds of the earth in WGS 1984 (-180, -90, 180, 90). The main
interface you need to be familiar with is the `canvas.addGeo` method which adds the GeoPDF dictionary (called `LGIDict`)
to the PDF. GeoPDF uses a geographic projection by default so in a minimal example you only have set the
registration points (which tie PDF pixel locations to map locations) and you're done. The `addGeo` method updates the LGIDict with any
keyword arguments that you pass it so refer to the [GeoPDF Encoding Best Practices](http://portal.opengeospatial.org/files/?artifact_id=33332)
document to learn about all of the things that the GeoPDF supports.```python
from geopdf import GeoCanvas
from reportlab.pdfbase.pdfdoc import PDFString, PDFArraycanvas = GeoCanvas('example1.pdf')
canvas.rect(200, 400, 200, 200, stroke=1)# A series of registration point pairs (pixel x, pixel y, x, y)
registration = PDFArray([
PDFArray(map(PDFString, ['200', '400', '-180', '-90'])),
PDFArray(map(PDFString, ['200', '600', '-180', '90'])),
PDFArray(map(PDFString, ['400', '600', '180', '90'])),
PDFArray(map(PDFString, ['400', '400', '180', '-90']))
])canvas.addGeo(Registration=registration)
canvas.save()
```Issues
======
Please report any bugs or requests that you have using the GitHub issue tracker!Notes
=====
- http://portal.opengeospatial.org/files/?artifact_id=33332Contributing
============- Fork the repository on GitHub
- Create a named feature branch (like `add_component_x`)
- Write your change
- Write tests for your change (if applicable)
- Run the tests, ensuring they all pass
- Submit a Pull Request using GitHub