Skip to content

Commit

Permalink
Merge pull request #161 from noi-techpark/issue-159-update-providers
Browse files Browse the repository at this point in the history
Issue 159 update providers
  • Loading branch information
bertolla committed Sep 8, 2020
2 parents 9ac0e30 + 4a67848 commit c85541b
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 18 deletions.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,9 @@ changes:
$(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes
@echo
@echo "The overview file is in $(BUILDDIR)/changes."
@python3 make_changelog.py
@echo
@echo "The list of changes is in $(BUILDDIR)/changes/changelog.txt"

.PHONY: linkcheck
linkcheck:
Expand Down
17 changes: 17 additions & 0 deletions make_changelog.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/usr/bin/python3

import io
import sys
import lxml.html
mytext = open('./build/changes/changes.html').read()
doc = lxml.html.fromstring(mytext)

title = doc.xpath('.//title/text()')
modified_items = doc.xpath('.//a/text()')
original_stdout = sys.stdout
with open('./build/changes/changelog.txt', 'w') as filename :
sys.stdout = filename
print(title[0])
for item in modified_items :
print(item)
sys.stdout=original_stdout
4 changes: 2 additions & 2 deletions source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@
# built documents.
#
# The short X.Y version.
version = u'1.0'
version = u'2020.09'
# The full version, including alpha/beta/rc tags.
release = u'1.0'
release = version

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
45 changes: 29 additions & 16 deletions source/datasets.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ section.
Data Providers
--------------

.. versionchanged:: 2020.09 Updated the list of data providers

A :strong:`Data Provider` is any entity that shares their Open Data
with the Open Data Hub project, allowing their free reuse (ideally under a
free licence like |cc0| or |bysa|) from any third-party that relies on
Expand All @@ -48,22 +50,33 @@ multiple types of data that will belong to more than one dataset.

The Open Data Hub\'s Data Providers are:

* IDM Südtirol/Alto Adige
* SIAG, Südtirol Informatica AG - Informatica Alto Adige
* SASA, public transport operator
* Alperia/Neogy, energy provider for South Tyrol
* Municipality of Bolzano
* Municipality of Merano
* Municipality of Trento
* Municipality of Rovereto
* APPA, Trentino Agency of the environment
* CISMA, Bluetooth sensors
* Carsharing Alto Adige, via its technological partner DB Rent
* LTS, South Tyrol Association of Tourism Organisations.
* APPA, South Tyrolean agency for the environment.
* InnoVie.
* Südtirol Wein.
* Route220, Nevicam and Driwe e-charging stations provider
* :strong:`Autostrada del Brennero/Brennerautobahn` management of the
A22 motorway infrastructure
* :strong:`Alperia/Neogy` energy provider for South Tyrol
* :strong:`APPA Bolzano` South Tyrolean agency for the environment
* :strong:`APPA Trento` Trentino Agency of the environment
* :strong:`Bezirksgemeinschaft Burggrafenamt Comunità Comprensoriale
Burgraviato`
* :strong:`Carsharing Alto Adige` via its technological partner DB
Rent
* :strong:`CISMA` bluetooth sensors
* :strong:`IDM Südtirol/Alto Adige` trailblazer for economic
development in South Tyrol
* :strong:`H2 Südtirol Alto Adige` energy company
* :strong:`HGV Hoteliers- und Gastwirteverband`
* :strong:`Inno.vìe` mobility solutions
* :strong:`LTS South Tyrol` Association of Tourism Organisations
* :strong:`Municipality of Bolzano`
* :strong:`Municipality of Merano`
* :strong:`Municipality of Rovereto`
* :strong:`Municipality of Trento`
* :strong:`NOI Techpark` technology and science park of South Tyrol
* :strong:`Route220`, :strong:`Nevicam` and :strong:`Driwe` e-charging
stations provider
* :strong:`SASA` public transport operator
* :strong:`SIAG` Südtirol Informatica AG - Informatica Alto Adige
* :strong:`Südtirol Wein - Vini Alto Adige` consortium of South Tyrol
Wines

.. topic:: A note about datasets

Expand Down

0 comments on commit c85541b

Please sign in to comment.