pyramid-oereb


Namepyramid-oereb JSON
Version 2.5.0 PyPI version JSON
download
home_pagehttps://github.com/openoereb/pyramid_oereb
Summarypyramid_oereb, extension for pyramid web frame work to provide a basic server part for the oereb project
upload_time2024-02-12 13:27:38
maintainer
docs_urlNone
authorFrançois Voisard
requires_python
licenseBSD 2
keywords pyramid oereb
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ===============================
``pyramid_oereb`` (ÖREB-Server)
===============================

Project description
===================

``pyramid_oereb`` is an open-source implementation of the server side part for the swiss `"Cadastre of
Public-law Restrictions on landownership" (PLR-cadastre) <https://www.cadastre.ch/en/oereb.html>`__.

It is written in Python and designed as a plugin for the `Pyramid Web Framework
<http://docs.pylonsproject.org/projects/pyramid/en/latest/>`__. This allows ``pyramid_oereb`` to be
included in any Pyramid web application.

Please refer to the `documentation <https://openoereb.github.io/pyramid_oereb/>`__ for detailed
information and instructions for installation and configuration.

If you are interested in contributing or extending the project, take a look at the
`contribution page <https://openoereb.github.io/pyramid_oereb/doc/contrib/>`__.


Starting the development server
===============================

#. Build run the initial build depending on your OS:

   * ``docker network create print-network``
   * Linux: ``docker compose run --rm -u $(id -u):$(id -g) oereb-make build``
   * MAC/Windows: ``docker compose run --rm oereb-make build``

#. ``docker compose up``

Running ``docker compose up`` will start the DB (it will automatically import the test/dev data on startup) and start
a running instance of the pyramid_oereb DEV server connected to the DB. The project folder is mounted
to it. So changes take effect.

The sample static extract should then be available at http://localhost:6543/oereb/extract/json?EGRID=CH113928077734


Running the tests
=================

To run the tests locally:

The docker way:
---------------
  * ``docker network create print-network``
  * Linux: ``docker compose run --rm -u $(id -u):$(id -g) oereb-server make build tests``
  * MAC/Windows: ``docker compose run --rm oereb-server make build tests``

For systems having a local make tool, the following recipe can be used:
``make docker-tests``

sometimes the local postgres port is already in use, and you must override it:
``EXPOSED_PGPORT=5433 make docker-tests``


Local tests:
------------
For local tests without the complete docker composition you need a running DB.
You can create one based on the oereb image:
``docker compose up -d oereb-db``

or create an empty postgis DB
``docker run -p 5555:5432 --name pg_oereb --rm -it -e POSTGRES_PASSWORD=pw postgis/postgis``

Then you can run the tests easily:
``make tests``

If the DB does not use standard credentials, you can set them as ENV vars:
``PGPORT=5555 PGPASSWORD=pw make tests``

To run one specfic test:

.. code-block:: bash

  docker compose exec oereb-server PYTEST_OPTS="-k <name_of_the_test>" make tests

Troubleshooting
---------------
Some local files may remain from previous builds, and the regular user may not be able to delete them.
In this case cleanup can be done like:

.. code-block:: bash

  docker compose run --rm oereb-make clean-all



Useful ``make`` targets
=======================

Run the ``make`` targets found in the Makefile either in the ``oereb-server`` container (if using ``docker compose``) or in your local shell (if running the server locally).
Some useful targets:

- ``make serve-dev`` to run the application
- ``make tests`` to run the application tests
- ``make docker-tests`` to run the application tests inside a docker composition, so one does not have to care about local set up
- ``make clean`` to empty the database
- ``make clean-all`` to empty the database, uninstall the application and the virtual env and clear the rendered configuration files
- ``make docker-clean-all`` to clean up everything written by the docker container. This is sometimes useful when docker has created some files with root only permission

If necessary the application is re-installed and the database is filled when running ``make serve-dev`` again.


There are further make targets to check the validity of federal data:

- ``make check_fed_data`` downloads currently known federal data definitions and compares them with the active ones
- ``make update_fed_data_urls`` try to retrieve the new urls from the server's index page. The file fed.urls must then be committed to the repo
- ``make update_fed_data_urls`` generate new json files in the repo. The modified files must then be committed
- ``make auto_update_fed_data`` automagic command which finds the new URLs, generates json data, copies json to project. The files fed.urls and dev/sample_data/ch.*.json must be committed if changed

Using MapFish-Print
===================

To be able to test the OEREB static extract (pdf), you need to run ``pyramid_oereb`` with ``docker compose`` and to have a running instance of `pyramid_oereb_mfp <https://github.com/openoereb/pyramid_oereb_mfp>`__.
The Docker network ``print-network`` is also required and can be created with:

.. code-block:: bash

  docker network create print-network

It is also possible to launch a Mapfish Print service on a local URL (via Docker or not) and then run the server via `make serve`. The correct print url must be provided:

.. code-block:: bash

  PRINT_URL="http://localhost:8680/print/oereb" EXPOSED_PGPORT=5433 PGPORT=5433 make serve-dev

The sample static extract should then be available at http://localhost:6543/oereb/extract/pdf?EGRID=CH113928077734


CI Status
=========

CI status on master branch:

.. image:: https://github.com/openoereb/pyramid_oereb/actions/workflows/ci.yaml/badge.svg
   :alt: Master CI status
   :target: https://github.com/openoereb/pyramid_oereb/actions/workflows/ci.yaml

Daily check status:

.. image:: https://github.com/openoereb/pyramid_oereb/actions/workflows/daily_check.yaml/badge.svg
   :alt: Daily check status
   :target: https://github.com/openoereb/pyramid_oereb/actions/workflows/daily_check.yaml

Code Quality Status:

.. image:: https://api.codacy.com/project/badge/Grade/cf50094a4e84434d837babf1106f9fcb
   :alt: Codacy Badge
   :target: https://app.codacy.com/gh/openoereb/pyramid_oereb?utm_source=github.com&utm_medium=referral&utm_content=openoereb/pyramid_oereb&utm_campaign=Badge_Grade_Settings


Changelog
=========

2.5.0
-----
- Use ST_DWithin instead of ST_Distance for performance reasons (#1930)
- Library upgrades (SQLAlchemy, geoalchemy2, urllib3, pypdf)

2.4.8
-----
- Support new Oereblex API version (via geolink-formatter 2.0.5)
- Enhance test coverage (#1904)
- Library upgrades (SQLAlchemy, lxml, jsonschema, c2cwsgiutils, pillow, pytest)
- Fix database setup scripts (#1913, #1914)
- Fix deprecation (#1915)

2.4.7
-----
- Add extract_index to disclaimer and general infomation (#1753)
- Interlis bug fix (#1881)
- Library upgrades (geoalchemy2, SQLAlchemy, jsonschema, lxml, responses, urllib3, pypdf)
- Test coverage improvements
- Python 3.8 is no longer explicitly supported
- Remove print proxy xml2pdf, no longer used by the community (#1889)

2.4.6
-----
- Fix error with large of contents and new pdf library (#1813)
- Fix timestamp for archived PDF (#1815)
- Library upgrades (SQLAlchemy, geoalchemy2, shapely, psycopg2, pyreproj, pyramid, responses, urllib, pillow, pypdf, jsonschema)

2.4.5
-----
- Fix base layer usage in grouped PLRs (#1302)
- Various minor library upgrades (SQLAlchemy, geoalchemy2, pypdf, lxml, urllib3)

2.4.4
-----
- Add option for a hook method for LogoRef URLs (#929, #1744)
- Various minor library upgrades (urllib, requests, SQLAlchemy, geoalchemy2)

2.4.3
-----
- Add support for newest oereblex API (via geolink-formatter, #1703)
- Various minor library upgrades (SQLAlchemy, geoalchemy, psycopg2, pypdf)

2.4.2
-----
- Add print configuration parameter for municipality name (#1703)
- Various minor library upgrades (pyramid, shapely, grcode, pypdf)

2.4.1
-----
- Improve getegrid performance (#1680)
- Remove unwanted URL encoding for symbol_ref (#1678)
- Upgrade geolink_formatter library (#1682)
- Various minor library upgrades (#1688, #1689)

2.4.0
-----
- Upgrade to pyramid 2, shapely 2 (#1625, #1642, #1647, #1662)
- Various minor library upgrades
- Preparations for SQLAlchemy 2 upgrade (#1665)
- Python 3.8 is now the minimal recommended version of python

2.3.0
-----
- Add support for prepublinks (#1618)
- Allow to force real estate geometry output (#1619)
- Library updates (#1615, #1622)

2.2.6
-----
- Allow usage of xml2pdf service with embedded images (#1612, #1614)

2.2.5
-----
- Fix response code for parameter "url" (#1605)
- Fix order of change order of ExtractIdentifier & MunicipalityCode (#1606)
- Sort plr within themes (#1607)
- Minor library updates (#1609)

2.2.4
-----
- Support tolerance per geometry type (#1603)
- Library updates (#1604)

2.2.3
-----
- Fix xml2pdf proxy (#1596)
- Library updates (#1597, #1598)

2.2.2
-----
- Default index for oereblex documents (#1591)
- Sort theme lists (#1592)
- Library updates (#1593, #1595)

2.2.1
-----
- Add library needed for QR-Code (#1589)
- Various library updates (#1590)

2.2.0
-----
- Performance improvements (#1580)
- Add QR-Code functionality (#1579)
- Bug-fix for Other Legend (#1586)
- Add optional tolerance on geometric operations (#1571)
- Improve PDF filename when not using egrid (#1585)

2.1.1
-----
- Fix value for service version (#1576)
- Fix XML for localized image blob (#1577)
- Raise error in case of unsupported geometry type (#1578)

2.1.0
-----
- Move DataIntegration to application schema (#1549)
- Bug fix for document relevant only for one municipality (#1561)
- Bug fix for oereblex optional parameters (#1565)
- Library updates (#1567)

2.0.2
-----
- Oereblex integration: facilitate customization of title logic (#1556)
- Fix automated documentation publication (#1555)
- Improve automated testing of federal data (#1548)

2.0.1
-----
- Disclaimer, glossary and municipality are now read only on startup, to improve performance (#1544)
- Add support for OEREBlex prepubs URL (#1546)
- Fix real estate type in XML for GetEgrid (#1545)

2.0.0
-----
- Fix legend entry collection (#1529)
- Fix stats for GetEgrid (#1524)
- Update theme and texts URL according to swisstopo (#1526)
- Fix JSON response of GetEgrid (#1534)
- Fix error in Interlis model sub-code usage (#1538)
- Improve performance by moving availability to main schema and read only on startup (#1540)

2.0.0.rc2
---------
- Finalize stats reactivation (#1517)

2.0.0.rc1
---------
- Updates of all essential libraries used
- Fix multiple disclaimers in print (#1511)

2.0.0.b15
---------
- Fix capabilities extract (#1489)
- Fix real estate type in get egrid extract (#1491)
- Fix legend entry symbol selection (#1505)
- Add document sorting by index in print (#1504)

2.0.0.b14
---------
- Reorganize hook methos (#1484)
- Fix Office Record assignment (#1473)
- External library updates

2.0.0.b13
---------
- Fix collection of legend entries (#1482)

2.0.0.b12
---------
- Reactivate statistics functionality from V1 (#1480)
- Additional fix for static extract (#1478)

2.0.0.b11
---------
- Additional fix for static extract

2.0.0.b10
---------
- Fixes for static extract

2.0.0.b9
--------
- Fixes in configuration (#1445)

2.0.0.b8
--------
- Fix XML templates

2.0.0.b7
--------
- Fix sub-theme generation

2.0.0.b6
--------
- Improvements in error logging

2.0.0.b5
--------
- Fixes in Oereblex integration

2.0.0.b4
--------
- Fix JSON extract

2.0.0.b3
--------
- New federal data import tool and bug-fixes V2 (Status: beta)

2.0.0.b2
--------
- First fully functional implementation of new Oereb specification as per 28.10.11 (Status: beta)

2.0.0.b1
--------
- Implementation of the new Oereb specification 2021 (Status: beta)

1.9.2
-----
- Oereblex: improve testing functionality for Oereblex (#1197)
- Various library updates

1.9.1
-----
- Oereblex: support new Oereblex API version 1.2.1
- Various library updates

1.9.0
-----
- Oereblex: add configuration to pass URL parameters to the oereblex call (#1117)
- Various library updates
- Improve handling of empty geometries, in preparation of additional library updates (#1107)
- Print using MapFish Print: the inclusion of the cantonal logo is now configurable (#1139)

1.8.1
-----
- Update of external libraries such as numpy, SQLAlchemy, lxml, and more.
- oereblex support: avoid extract failure upon missing enactment_date in oereblex (#1093)
- Improve support of Python 3.7 in template Makefile and sample data loading (#1104, #1106)

1.8.0
-----
- Fix bug affecting concurrent requests (#1068)
- Enhance federal data import script to make it more usable with Docker (#1078)
- For full extracts, add configuration parameter to make additional sld usage optional (#1077)

1.7.6
-----
- Improve federal data import script (#1057)
- Last maintenance release with verified python2 compatibility

1.7.5
-----
- Update of all libraries used by pyramid_oereb that still work with python2

1.7.4
-----
- Federal data import script: add SLD_VERSION for legend_at_web (#1022)
- Oereblex integration: add optional configuration 'validation' (#1034)
- Restrict the version of the Shapely library used to 1.6 (#1037)

1.7.3
-----
- Fix import of federal data for cases including both coordinate reference systems (#1011)
- Oereblex: support geolink schema version 1.2.0 (#1010)
- Print: make geometry inclusion optional (performance improvement for MapFish Print) (#1006)

1.7.2
-----
- Test release only; not an official release.

1.7.1
-----
- Print: fix nr_of_points computation (#1002)

1.7.0
-----
- Oereblex: improve performance (implement per topic store) (#993)
- Add statistics functionality (#987)
- Print: fix table of contents page numbering (#983)

1.6.0
-----
- Improve multilingual support (#915, #918, #943, #950)
- Ensure XML schema compliance (#914, #926)
- Improve extract speed (#965)
- Additional options for sorting and grouping (#925, #931, #948, #979)
- Additional options for xml2pdf integration (#905, #938)
- Add PDF archive functionality (#982)
- Make WMS usage in print more flexible (#986)
- Bug fixes and debugging possibilities improvement (#910, #909, #897, #894, #916, #919, #870, #908, #932, #955, #958, #963, #970)

1.5.2
-----
- Provide multilingual OEREB logo (#915)
- Add file extension in logo and symbol URLs (#917)

1.5.1
-----
- Ensure XML Schema compliance (#872, #891)
- Fix polygon GML rendering (#830)
- Integration of ``XML2PDF`` service (#631, #883, #887)

1.5.0
-----
- Fixed a number formatting problem in the legend list (Mapfish Print, GitHub issue 824, pull request 826)
- Fixed an encoding issue for PLR records (GitHub pull request 828)
- Allow configuration of custom parameters for WMS calls in Mapfish Print (GitHub pull request 831)
- Section 'Certification' is now optional, can be configured in the Mapfish Print config (GitHub pull request 841)
- Only prints the PLR section of the PDF if at least one PLR is available (Mapfish Print, GitHub pull request 846)
- Various layout fixes in the table of contents of the Mapfish Print PDF (GitHub pull requests 842, 856, 859)
- Legends are now sorted by geometry type and value (Mapfish Print, GitHub pull request 851)
- Multiple ResponsibleOffices per theme are now rendered correctly (Mapfish Print, GitHub issue 651, pull request 865)
- PDF/A conformance enabled by default (Mapfish Print, GitHub pull request 852)
- In the XML output, LengthShare and NrOfPoints elements were moved to their correct place (GitHub issue 834, GitHub pull request 854)
- Optimized theme sorting (GitHub issue 443, GitHub pull request 858)
- Updated Mapfish Print to 3.20.0
- Dependency updates, better test coverage

1.4.3
-----
- Fixed import script for federal topics (GitHub pull request 821)
- Added test for ordering of non-concerned themes (GitHub pull request 817)
- Fixed footer with disappearing page numbers with MapFish print 3.18 (GitHub pull request 814)

1.4.2
-----
- Downgrade version of pyproj to fix coordinate reprojections (GitHub pull request 810)
- Dependency updates

1.4.1
-----
- Fixed id types in oereblex models and model template, fixed documentation errors in standard models
  and model template  (GitHub pull request 807)
- Fixed warnings in tests (GitHub pull request 803)
- Dependency updates (GitHub pull request 805)

1.4.0
-----
- Additional multilingual functionality (GitHub issues 704, 705, 779)

1.3.1
-----
- Maintenance release (GitHub issues 447, 610, 590, 609, 757, 750, 681, 752, 753, 460, 736,
  666, 596, 678, 461, 751)

1.3.0
-----
- Import script for federal data

1.2.3
-----
- Bug-fix release for 1.2.2 (fix intersection bug, fix pdfreport template)

1.2.2
-----
- Further bug-fixes for oereb service versoin 1.0, notably regarding schema conformity
  and better support for other OS versions.
- New configuration parameter type_mapping in real_estate, which allows to configuratively
  define the texts to be used for realestate types (optional parameter).

1.2.1
-----
- Bug-fixes for service version 1.0 (pyramid_oereb 1.2.0),
  using results from pilot integration of new version at BL.

1.2.0
-----
- First implementation of federal extract requirements as per november 2017
  (service in version 1.0, extract in version 1.0.1, data model in version 1.0.1).
- Update of automated tests to correspond to new requirements.
- Static extract implementation update according to Weisung july 1st, 2018.
- Oereb lex model creation support and documentation.
- Bug fixes (legend entries, multiple view services, scaling in print, document titles in print).
- Facilitate customization of document title generation.

1.1.0
-----
- Final implementation of federal extract requirements as per november 2016
  (extract in version 0.8, data model in version 0.4).

1.0.1
-----

- introduce configurable pdf print service (print proxy)
- enable proxy configuration for external web api usage
- fix standard database
- improve python 3 compatibility
- minor bug fixing

1.0.0
-----

- improved doc
- fix bug for doc creation on python 3.6

1.0.0-beta.1
------------

- first approach of OEREB server
- improved documentation on https://openoereb.github.io/pyramid_oereb/doc/
- cleaned and reorganized code
- binding to OEREB-LEX and GeoAdmin-Api-Address-Service
  (http://api.geo.admin.ch/services/sdiservices.html#search) as sources
- providing pyconizer as icon generator (https://pypi.python.org/pypi/pyconizer)
- proxy binding of geomapfish_print for pdf output as renderer
  (http://mapfish.github.io/mapfish-print-doc/#/overview)
- providing extensive standard configuration for out-of-the-box-usage
- general bug fixing
- add python 3.x support

1.0.0-alpha.2
-------------

-  proceed with renderer for xml and json
-  add metadata for embeddable flavour
-  images accessible via URL
-  add configurable methods for processing
-  improve geometry handling
-  add documentation on https://openoereb.github.io/pyramid_oereb/doc/
-  several bugfixes

1.0.0-alpha.1
-------------

-  first running approach of server
-  main web services are available (not all formats are implemented yet)
-  standard configuration can be used to run server out of the box
-  see README for more details

0.0.1
-----

-  initial version

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/openoereb/pyramid_oereb",
    "name": "pyramid-oereb",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "pyramid oereb",
    "author": "Fran\u00e7ois Voisard",
    "author_email": "francois.voisard@ne.ch",
    "download_url": "https://files.pythonhosted.org/packages/33/1f/75b350c767e095f3c70f2ab9faaddff4a683f0b74457b9abe0a1c7c93b2f/pyramid_oereb-2.5.0.tar.gz",
    "platform": null,
    "description": "===============================\n``pyramid_oereb`` (\u00d6REB-Server)\n===============================\n\nProject description\n===================\n\n``pyramid_oereb`` is an open-source implementation of the server side part for the swiss `\"Cadastre of\nPublic-law Restrictions on landownership\" (PLR-cadastre) <https://www.cadastre.ch/en/oereb.html>`__.\n\nIt is written in Python and designed as a plugin for the `Pyramid Web Framework\n<http://docs.pylonsproject.org/projects/pyramid/en/latest/>`__. This allows ``pyramid_oereb`` to be\nincluded in any Pyramid web application.\n\nPlease refer to the `documentation <https://openoereb.github.io/pyramid_oereb/>`__ for detailed\ninformation and instructions for installation and configuration.\n\nIf you are interested in contributing or extending the project, take a look at the\n`contribution page <https://openoereb.github.io/pyramid_oereb/doc/contrib/>`__.\n\n\nStarting the development server\n===============================\n\n#. Build run the initial build depending on your OS:\n\n   * ``docker network create print-network``\n   * Linux: ``docker compose run --rm -u $(id -u):$(id -g) oereb-make build``\n   * MAC/Windows: ``docker compose run --rm oereb-make build``\n\n#. ``docker compose up``\n\nRunning ``docker compose up`` will start the DB (it will automatically import the test/dev data on startup) and start\na running instance of the pyramid_oereb DEV server connected to the DB. The project folder is mounted\nto it. So changes take effect.\n\nThe sample static extract should then be available at http://localhost:6543/oereb/extract/json?EGRID=CH113928077734\n\n\nRunning the tests\n=================\n\nTo run the tests locally:\n\nThe docker way:\n---------------\n  * ``docker network create print-network``\n  * Linux: ``docker compose run --rm -u $(id -u):$(id -g) oereb-server make build tests``\n  * MAC/Windows: ``docker compose run --rm oereb-server make build tests``\n\nFor systems having a local make tool, the following recipe can be used:\n``make docker-tests``\n\nsometimes the local postgres port is already in use, and you must override it:\n``EXPOSED_PGPORT=5433 make docker-tests``\n\n\nLocal tests:\n------------\nFor local tests without the complete docker composition you need a running DB.\nYou can create one based on the oereb image:\n``docker compose up -d oereb-db``\n\nor create an empty postgis DB\n``docker run -p 5555:5432 --name pg_oereb --rm -it -e POSTGRES_PASSWORD=pw postgis/postgis``\n\nThen you can run the tests easily:\n``make tests``\n\nIf the DB does not use standard credentials, you can set them as ENV vars:\n``PGPORT=5555 PGPASSWORD=pw make tests``\n\nTo run one specfic test:\n\n.. code-block:: bash\n\n  docker compose exec oereb-server PYTEST_OPTS=\"-k <name_of_the_test>\" make tests\n\nTroubleshooting\n---------------\nSome local files may remain from previous builds, and the regular user may not be able to delete them.\nIn this case cleanup can be done like:\n\n.. code-block:: bash\n\n  docker compose run --rm oereb-make clean-all\n\n\n\nUseful ``make`` targets\n=======================\n\nRun the ``make`` targets found in the Makefile either in the ``oereb-server`` container (if using ``docker compose``) or in your local shell (if running the server locally).\nSome useful targets:\n\n- ``make serve-dev`` to run the application\n- ``make tests`` to run the application tests\n- ``make docker-tests`` to run the application tests inside a docker composition, so one does not have to care about local set up\n- ``make clean`` to empty the database\n- ``make clean-all`` to empty the database, uninstall the application and the virtual env and clear the rendered configuration files\n- ``make docker-clean-all`` to clean up everything written by the docker container. This is sometimes useful when docker has created some files with root only permission\n\nIf necessary the application is re-installed and the database is filled when running ``make serve-dev`` again.\n\n\nThere are further make targets to check the validity of federal data:\n\n- ``make check_fed_data`` downloads currently known federal data definitions and compares them with the active ones\n- ``make update_fed_data_urls`` try to retrieve the new urls from the server's index page. The file fed.urls must then be committed to the repo\n- ``make update_fed_data_urls`` generate new json files in the repo. The modified files must then be committed\n- ``make auto_update_fed_data`` automagic command which finds the new URLs, generates json data, copies json to project. The files fed.urls and dev/sample_data/ch.*.json must be committed if changed\n\nUsing MapFish-Print\n===================\n\nTo be able to test the OEREB static extract (pdf), you need to run ``pyramid_oereb`` with ``docker compose`` and to have a running instance of `pyramid_oereb_mfp <https://github.com/openoereb/pyramid_oereb_mfp>`__.\nThe Docker network ``print-network`` is also required and can be created with:\n\n.. code-block:: bash\n\n  docker network create print-network\n\nIt is also possible to launch a Mapfish Print service on a local URL (via Docker or not) and then run the server via `make serve`. The correct print url must be provided:\n\n.. code-block:: bash\n\n  PRINT_URL=\"http://localhost:8680/print/oereb\" EXPOSED_PGPORT=5433 PGPORT=5433 make serve-dev\n\nThe sample static extract should then be available at http://localhost:6543/oereb/extract/pdf?EGRID=CH113928077734\n\n\nCI Status\n=========\n\nCI status on master branch:\n\n.. image:: https://github.com/openoereb/pyramid_oereb/actions/workflows/ci.yaml/badge.svg\n   :alt: Master CI status\n   :target: https://github.com/openoereb/pyramid_oereb/actions/workflows/ci.yaml\n\nDaily check status:\n\n.. image:: https://github.com/openoereb/pyramid_oereb/actions/workflows/daily_check.yaml/badge.svg\n   :alt: Daily check status\n   :target: https://github.com/openoereb/pyramid_oereb/actions/workflows/daily_check.yaml\n\nCode Quality Status:\n\n.. image:: https://api.codacy.com/project/badge/Grade/cf50094a4e84434d837babf1106f9fcb\n   :alt: Codacy Badge\n   :target: https://app.codacy.com/gh/openoereb/pyramid_oereb?utm_source=github.com&utm_medium=referral&utm_content=openoereb/pyramid_oereb&utm_campaign=Badge_Grade_Settings\n\n\nChangelog\n=========\n\n2.5.0\n-----\n- Use ST_DWithin instead of ST_Distance for performance reasons (#1930)\n- Library upgrades (SQLAlchemy, geoalchemy2, urllib3, pypdf)\n\n2.4.8\n-----\n- Support new Oereblex API version (via geolink-formatter 2.0.5)\n- Enhance test coverage (#1904)\n- Library upgrades (SQLAlchemy, lxml, jsonschema, c2cwsgiutils, pillow, pytest)\n- Fix database setup scripts (#1913, #1914)\n- Fix deprecation (#1915)\n\n2.4.7\n-----\n- Add extract_index to disclaimer and general infomation (#1753)\n- Interlis bug fix (#1881)\n- Library upgrades (geoalchemy2, SQLAlchemy, jsonschema, lxml, responses, urllib3, pypdf)\n- Test coverage improvements\n- Python 3.8 is no longer explicitly supported\n- Remove print proxy xml2pdf, no longer used by the community (#1889)\n\n2.4.6\n-----\n- Fix error with large of contents and new pdf library (#1813)\n- Fix timestamp for archived PDF (#1815)\n- Library upgrades (SQLAlchemy, geoalchemy2, shapely, psycopg2, pyreproj, pyramid, responses, urllib, pillow, pypdf, jsonschema)\n\n2.4.5\n-----\n- Fix base layer usage in grouped PLRs (#1302)\n- Various minor library upgrades (SQLAlchemy, geoalchemy2, pypdf, lxml, urllib3)\n\n2.4.4\n-----\n- Add option for a hook method for LogoRef URLs (#929, #1744)\n- Various minor library upgrades (urllib, requests, SQLAlchemy, geoalchemy2)\n\n2.4.3\n-----\n- Add support for newest oereblex API (via geolink-formatter, #1703)\n- Various minor library upgrades (SQLAlchemy, geoalchemy, psycopg2, pypdf)\n\n2.4.2\n-----\n- Add print configuration parameter for municipality name (#1703)\n- Various minor library upgrades (pyramid, shapely, grcode, pypdf)\n\n2.4.1\n-----\n- Improve getegrid performance (#1680)\n- Remove unwanted URL encoding for symbol_ref (#1678)\n- Upgrade geolink_formatter library (#1682)\n- Various minor library upgrades (#1688, #1689)\n\n2.4.0\n-----\n- Upgrade to pyramid 2, shapely 2 (#1625, #1642, #1647, #1662)\n- Various minor library upgrades\n- Preparations for SQLAlchemy 2 upgrade (#1665)\n- Python 3.8 is now the minimal recommended version of python\n\n2.3.0\n-----\n- Add support for prepublinks (#1618)\n- Allow to force real estate geometry output (#1619)\n- Library updates (#1615, #1622)\n\n2.2.6\n-----\n- Allow usage of xml2pdf service with embedded images (#1612, #1614)\n\n2.2.5\n-----\n- Fix response code for parameter \"url\" (#1605)\n- Fix order of change order of ExtractIdentifier & MunicipalityCode (#1606)\n- Sort plr within themes (#1607)\n- Minor library updates (#1609)\n\n2.2.4\n-----\n- Support tolerance per geometry type (#1603)\n- Library updates (#1604)\n\n2.2.3\n-----\n- Fix xml2pdf proxy (#1596)\n- Library updates (#1597, #1598)\n\n2.2.2\n-----\n- Default index for oereblex documents (#1591)\n- Sort theme lists (#1592)\n- Library updates (#1593, #1595)\n\n2.2.1\n-----\n- Add library needed for QR-Code (#1589)\n- Various library updates (#1590)\n\n2.2.0\n-----\n- Performance improvements (#1580)\n- Add QR-Code functionality (#1579)\n- Bug-fix for Other Legend (#1586)\n- Add optional tolerance on geometric operations (#1571)\n- Improve PDF filename when not using egrid (#1585)\n\n2.1.1\n-----\n- Fix value for service version (#1576)\n- Fix XML for localized image blob (#1577)\n- Raise error in case of unsupported geometry type (#1578)\n\n2.1.0\n-----\n- Move DataIntegration to application schema (#1549)\n- Bug fix for document relevant only for one municipality (#1561)\n- Bug fix for oereblex optional parameters (#1565)\n- Library updates (#1567)\n\n2.0.2\n-----\n- Oereblex integration: facilitate customization of title logic (#1556)\n- Fix automated documentation publication (#1555)\n- Improve automated testing of federal data (#1548)\n\n2.0.1\n-----\n- Disclaimer, glossary and municipality are now read only on startup, to improve performance (#1544)\n- Add support for OEREBlex prepubs URL (#1546)\n- Fix real estate type in XML for GetEgrid (#1545)\n\n2.0.0\n-----\n- Fix legend entry collection (#1529)\n- Fix stats for GetEgrid (#1524)\n- Update theme and texts URL according to swisstopo (#1526)\n- Fix JSON response of GetEgrid (#1534)\n- Fix error in Interlis model sub-code usage (#1538)\n- Improve performance by moving availability to main schema and read only on startup (#1540)\n\n2.0.0.rc2\n---------\n- Finalize stats reactivation (#1517)\n\n2.0.0.rc1\n---------\n- Updates of all essential libraries used\n- Fix multiple disclaimers in print (#1511)\n\n2.0.0.b15\n---------\n- Fix capabilities extract (#1489)\n- Fix real estate type in get egrid extract (#1491)\n- Fix legend entry symbol selection (#1505)\n- Add document sorting by index in print (#1504)\n\n2.0.0.b14\n---------\n- Reorganize hook methos (#1484)\n- Fix Office Record assignment (#1473)\n- External library updates\n\n2.0.0.b13\n---------\n- Fix collection of legend entries (#1482)\n\n2.0.0.b12\n---------\n- Reactivate statistics functionality from V1 (#1480)\n- Additional fix for static extract (#1478)\n\n2.0.0.b11\n---------\n- Additional fix for static extract\n\n2.0.0.b10\n---------\n- Fixes for static extract\n\n2.0.0.b9\n--------\n- Fixes in configuration (#1445)\n\n2.0.0.b8\n--------\n- Fix XML templates\n\n2.0.0.b7\n--------\n- Fix sub-theme generation\n\n2.0.0.b6\n--------\n- Improvements in error logging\n\n2.0.0.b5\n--------\n- Fixes in Oereblex integration\n\n2.0.0.b4\n--------\n- Fix JSON extract\n\n2.0.0.b3\n--------\n- New federal data import tool and bug-fixes V2 (Status: beta)\n\n2.0.0.b2\n--------\n- First fully functional implementation of new Oereb specification as per 28.10.11 (Status: beta)\n\n2.0.0.b1\n--------\n- Implementation of the new Oereb specification 2021 (Status: beta)\n\n1.9.2\n-----\n- Oereblex: improve testing functionality for Oereblex (#1197)\n- Various library updates\n\n1.9.1\n-----\n- Oereblex: support new Oereblex API version 1.2.1\n- Various library updates\n\n1.9.0\n-----\n- Oereblex: add configuration to pass URL parameters to the oereblex call (#1117)\n- Various library updates\n- Improve handling of empty geometries, in preparation of additional library updates (#1107)\n- Print using MapFish Print: the inclusion of the cantonal logo is now configurable (#1139)\n\n1.8.1\n-----\n- Update of external libraries such as numpy, SQLAlchemy, lxml, and more.\n- oereblex support: avoid extract failure upon missing enactment_date in oereblex (#1093)\n- Improve support of Python 3.7 in template Makefile and sample data loading (#1104, #1106)\n\n1.8.0\n-----\n- Fix bug affecting concurrent requests (#1068)\n- Enhance federal data import script to make it more usable with Docker (#1078)\n- For full extracts, add configuration parameter to make additional sld usage optional (#1077)\n\n1.7.6\n-----\n- Improve federal data import script (#1057)\n- Last maintenance release with verified python2 compatibility\n\n1.7.5\n-----\n- Update of all libraries used by pyramid_oereb that still work with python2\n\n1.7.4\n-----\n- Federal data import script: add SLD_VERSION for legend_at_web (#1022)\n- Oereblex integration: add optional configuration 'validation' (#1034)\n- Restrict the version of the Shapely library used to 1.6 (#1037)\n\n1.7.3\n-----\n- Fix import of federal data for cases including both coordinate reference systems (#1011)\n- Oereblex: support geolink schema version 1.2.0 (#1010)\n- Print: make geometry inclusion optional (performance improvement for MapFish Print) (#1006)\n\n1.7.2\n-----\n- Test release only; not an official release.\n\n1.7.1\n-----\n- Print: fix nr_of_points computation (#1002)\n\n1.7.0\n-----\n- Oereblex: improve performance (implement per topic store) (#993)\n- Add statistics functionality (#987)\n- Print: fix table of contents page numbering (#983)\n\n1.6.0\n-----\n- Improve multilingual support (#915, #918, #943, #950)\n- Ensure XML schema compliance (#914, #926)\n- Improve extract speed (#965)\n- Additional options for sorting and grouping (#925, #931, #948, #979)\n- Additional options for xml2pdf integration (#905, #938)\n- Add PDF archive functionality (#982)\n- Make WMS usage in print more flexible (#986)\n- Bug fixes and debugging possibilities improvement (#910, #909, #897, #894, #916, #919, #870, #908, #932, #955, #958, #963, #970)\n\n1.5.2\n-----\n- Provide multilingual OEREB logo (#915)\n- Add file extension in logo and symbol URLs (#917)\n\n1.5.1\n-----\n- Ensure XML Schema compliance (#872, #891)\n- Fix polygon GML rendering (#830)\n- Integration of ``XML2PDF`` service (#631, #883, #887)\n\n1.5.0\n-----\n- Fixed a number formatting problem in the legend list (Mapfish Print, GitHub issue 824, pull request 826)\n- Fixed an encoding issue for PLR records (GitHub pull request 828)\n- Allow configuration of custom parameters for WMS calls in Mapfish Print (GitHub pull request 831)\n- Section 'Certification' is now optional, can be configured in the Mapfish Print config (GitHub pull request 841)\n- Only prints the PLR section of the PDF if at least one PLR is available (Mapfish Print, GitHub pull request 846)\n- Various layout fixes in the table of contents of the Mapfish Print PDF (GitHub pull requests 842, 856, 859)\n- Legends are now sorted by geometry type and value (Mapfish Print, GitHub pull request 851)\n- Multiple ResponsibleOffices per theme are now rendered correctly (Mapfish Print, GitHub issue 651, pull request 865)\n- PDF/A conformance enabled by default (Mapfish Print, GitHub pull request 852)\n- In the XML output, LengthShare and NrOfPoints elements were moved to their correct place (GitHub issue 834, GitHub pull request 854)\n- Optimized theme sorting (GitHub issue 443, GitHub pull request 858)\n- Updated Mapfish Print to 3.20.0\n- Dependency updates, better test coverage\n\n1.4.3\n-----\n- Fixed import script for federal topics (GitHub pull request 821)\n- Added test for ordering of non-concerned themes (GitHub pull request 817)\n- Fixed footer with disappearing page numbers with MapFish print 3.18 (GitHub pull request 814)\n\n1.4.2\n-----\n- Downgrade version of pyproj to fix coordinate reprojections (GitHub pull request 810)\n- Dependency updates\n\n1.4.1\n-----\n- Fixed id types in oereblex models and model template, fixed documentation errors in standard models\n  and model template  (GitHub pull request 807)\n- Fixed warnings in tests (GitHub pull request 803)\n- Dependency updates (GitHub pull request 805)\n\n1.4.0\n-----\n- Additional multilingual functionality (GitHub issues 704, 705, 779)\n\n1.3.1\n-----\n- Maintenance release (GitHub issues 447, 610, 590, 609, 757, 750, 681, 752, 753, 460, 736,\n  666, 596, 678, 461, 751)\n\n1.3.0\n-----\n- Import script for federal data\n\n1.2.3\n-----\n- Bug-fix release for 1.2.2 (fix intersection bug, fix pdfreport template)\n\n1.2.2\n-----\n- Further bug-fixes for oereb service versoin 1.0, notably regarding schema conformity\n  and better support for other OS versions.\n- New configuration parameter type_mapping in real_estate, which allows to configuratively\n  define the texts to be used for realestate types (optional parameter).\n\n1.2.1\n-----\n- Bug-fixes for service version 1.0 (pyramid_oereb 1.2.0),\n  using results from pilot integration of new version at BL.\n\n1.2.0\n-----\n- First implementation of federal extract requirements as per november 2017\n  (service in version 1.0, extract in version 1.0.1, data model in version 1.0.1).\n- Update of automated tests to correspond to new requirements.\n- Static extract implementation update according to Weisung july 1st, 2018.\n- Oereb lex model creation support and documentation.\n- Bug fixes (legend entries, multiple view services, scaling in print, document titles in print).\n- Facilitate customization of document title generation.\n\n1.1.0\n-----\n- Final implementation of federal extract requirements as per november 2016\n  (extract in version 0.8, data model in version 0.4).\n\n1.0.1\n-----\n\n- introduce configurable pdf print service (print proxy)\n- enable proxy configuration for external web api usage\n- fix standard database\n- improve python 3 compatibility\n- minor bug fixing\n\n1.0.0\n-----\n\n- improved doc\n- fix bug for doc creation on python 3.6\n\n1.0.0-beta.1\n------------\n\n- first approach of OEREB server\n- improved documentation on https://openoereb.github.io/pyramid_oereb/doc/\n- cleaned and reorganized code\n- binding to OEREB-LEX and GeoAdmin-Api-Address-Service\n  (http://api.geo.admin.ch/services/sdiservices.html#search) as sources\n- providing pyconizer as icon generator (https://pypi.python.org/pypi/pyconizer)\n- proxy binding of geomapfish_print for pdf output as renderer\n  (http://mapfish.github.io/mapfish-print-doc/#/overview)\n- providing extensive standard configuration for out-of-the-box-usage\n- general bug fixing\n- add python 3.x support\n\n1.0.0-alpha.2\n-------------\n\n-  proceed with renderer for xml and json\n-  add metadata for embeddable flavour\n-  images accessible via URL\n-  add configurable methods for processing\n-  improve geometry handling\n-  add documentation on https://openoereb.github.io/pyramid_oereb/doc/\n-  several bugfixes\n\n1.0.0-alpha.1\n-------------\n\n-  first running approach of server\n-  main web services are available (not all formats are implemented yet)\n-  standard configuration can be used to run server out of the box\n-  see README for more details\n\n0.0.1\n-----\n\n-  initial version\n",
    "bugtrack_url": null,
    "license": "BSD 2",
    "summary": "pyramid_oereb, extension for pyramid web frame work to provide a basic server part for the oereb project",
    "version": "2.5.0",
    "project_urls": {
        "Homepage": "https://github.com/openoereb/pyramid_oereb"
    },
    "split_keywords": [
        "pyramid",
        "oereb"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "10daff4bd9f1f78e8bd4b1ca96088f12c8aac5f2fdc8d7d06a4a01efc310de58",
                "md5": "09b2b28251a65d3c9d61bd6148bdabeb",
                "sha256": "c4c61f96400598a6fd6de5b246c357c342cea084c24fbc2bae329b93e601d3ad"
            },
            "downloads": -1,
            "filename": "pyramid_oereb-2.5.0-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "09b2b28251a65d3c9d61bd6148bdabeb",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 207781,
            "upload_time": "2024-02-12T13:27:27",
            "upload_time_iso_8601": "2024-02-12T13:27:27.074015Z",
            "url": "https://files.pythonhosted.org/packages/10/da/ff4bd9f1f78e8bd4b1ca96088f12c8aac5f2fdc8d7d06a4a01efc310de58/pyramid_oereb-2.5.0-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "331f75b350c767e095f3c70f2ab9faaddff4a683f0b74457b9abe0a1c7c93b2f",
                "md5": "ffc78468307babf561c4276e9865eef1",
                "sha256": "818bcf7b4ad4b2dcdd23c3392baaf67d0747148554b8bc1dee4cac34498cd426"
            },
            "downloads": -1,
            "filename": "pyramid_oereb-2.5.0.tar.gz",
            "has_sig": false,
            "md5_digest": "ffc78468307babf561c4276e9865eef1",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 143147,
            "upload_time": "2024-02-12T13:27:38",
            "upload_time_iso_8601": "2024-02-12T13:27:38.033013Z",
            "url": "https://files.pythonhosted.org/packages/33/1f/75b350c767e095f3c70f2ab9faaddff4a683f0b74457b9abe0a1c7c93b2f/pyramid_oereb-2.5.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-12 13:27:38",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "openoereb",
    "github_project": "pyramid_oereb",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "pyramid-oereb"
}
        
Elapsed time: 0.26276s