SlideShare a Scribd company logo
1 of 18
1
STI INNSBRUCK
TOURISMUSVERBAND
PUBLICATION RULES
Zaenal Akbar, Jose Maria Garcia
STI Innsbruck, University of Innsbruck,
Technikerstraße 21a, 6020 Innsbruck, Austria
firstname.lastname@sti2.at
2014-03-11
Semantic Technology Institute Innsbruck
STI INNSBTRUCK
Technikerstraße 21a
A – 6020 Innsbruck
Austria
http://www.sti-innsbruck.
1
Contents
1. Introduction................................................................................................................................. 3
2. Rules Model................................................................................................................................ 4
2.1. Content To Channel Mapping.............................................................................................. 4
2.2. Rules Implementation .......................................................................................................... 5
2.3. Workflows............................................................................................................................ 6
2.4. Content Transformations...................................................................................................... 6
2.5. Publication Scheduling......................................................................................................... 7
Appendix A. Analysis of Published Items in the Facebook ........................................................... 8
1. Hotels ...................................................................................................................................... 8
2. Food and Drink Establishments .............................................................................................. 8
3. Events...................................................................................................................................... 8
4. Trips ........................................................................................................................................ 9
5. Place of Interest....................................................................................................................... 9
6. News...................................................................................................................................... 10
Appendix B. Analysis of Published Items in the Twitter ............................................................. 11
1. Hotels .................................................................................................................................... 11
2. Food and Drink Establishments ............................................................................................ 11
3. Events.................................................................................................................................... 11
4. Trips ...................................................................................................................................... 11
5. Place of Interest..................................................................................................................... 12
6. News...................................................................................................................................... 12
Appendix C. Analysis of Published Items in the YouTube .......................................................... 13
1. Hotels .................................................................................................................................... 13
2. Food and Drink Establishments ............................................................................................ 13
3. Events.................................................................................................................................... 13
4. Trips ...................................................................................................................................... 14
5. Place of Interest..................................................................................................................... 14
6. News...................................................................................................................................... 15
Appendix D. Analysis of Published Items in the Blog ................................................................. 16
1. Hotels .................................................................................................................................... 16
2. Food and Drink Establishments ............................................................................................ 16
2
3. Events.................................................................................................................................... 16
4. Trips ...................................................................................................................................... 17
5. Place of Interest..................................................................................................................... 17
6. News...................................................................................................................................... 17
3
1. Introduction
This document presents the publication rules for Tourismusverband Innsbruck (TVb). The main
functions of publication rules are (i) to define which contents will be disseminated to which
channels and (ii) to define how the disseminations should be performed, for example to define
the order of the disseminations to several channels.
To obtain the publication rules for TVb, we have conducted analysis on the TVb’s website and
TVb’s social media channels. The website will be used as the source of content (input channel)
and the social media channels as target (output channels). The sources of this analysis are:
1. TVb’s Website (http://www.innsbruck.info/)
2. TVb’s Facebook (https://www.facebook.com/Innsbruck)
3. TVb’s Twitter (https://twitter.com/InnsbruckTVB)
4. TVb’s YouTube (http://www.youtube.com/user/InnsbruckTVB)
According to the TVb’s Redaktionsplan 2014, there are another social media channels to be
considered as dissemination target:
1. Google+
2. Pinterest
3. Blog (http://blog.innsbruck.info/)
4. tumblr
It seems that those new channels are still under preparation, as they are not officially linked to
the main website and have very limited contents. In this document, from those 4 new channels,
we will present the analysis result for the blog only.
Another important inputs were obtained from the person who is responsible on managing the
TVb’s social media channels. The inputs are concerning the publication timing, publication
recurrence, including content transformation for a specific channel.
From the ontology definition analysis previously conducted, we have identified several relevant
information categories for dissemination from TVb’s website as follows:
1. Hotels
2. Food and Drink Establishments
3. Events
4. Trips
5. Place of Interest
6. News
Based on those categories, the publication rules are then determined by answering the following
3 questions:
1. (Existence) Can we find similar categories in an output channel? If yes, then there is a
mapping between the categories to that channel.
4
2. (Workflow) Is there any data dependency between a channel to other channels? If yes,
then the publication to this channel must hold until the publication to the other channels
have successfully performed.
3. (Content Transformation) How a content has presented in a channel?. This question is
intended to determine the required content transformation for each category to fit it into
the channel’s requirements.
For text analysis, the messages were classified into 3 categories based on their size as follow:
1. Short: below 150 characters
2. Medium: between 150 and 500 characters
3. Long: more than 500 characters
2. Rules Model
The answer for each question from the previous section will be explained in more detail in the
following sub-sections.
2.1. Content To Channel Mapping
The mapping is representing a relation between the content categories and the available channels.
If a similarity between the content of the website and the content of a channel is detected then we
conclude there is a mapping between them.
Table 2.1 The Mapping of Content to Channel(s)
No. Content Facebook Twitter YouTube Blog
1 Hotels Yes No No No
2 Food and Drink
Establishments
Yes No Yes No
3 Events Yes Yes Yes Yes
4 Trips Yes Yes Yes No
5 Place of Interest Yes Yes Yes No
6 News Yes Yes Yes No
5
As shown at table 2.1, the mapping relations have been existed between all categories (except for
Hotels and Food and Drink Establishments) to all channels.
It is important to mention that the mapping is only indicating the relations between content and
channels. It is not representing which items from a content were disseminated to a channel, as it
will be explained later in a sub-section related to the content transformations.
2.2. Rules Implementation
After the mapping between content to channels is obtained, the rules can be constructed from it.
The basic format of a rule is: IF <content> THEN Publish(<content>, <channel>), meaning if
a new <content> is detected in the website then it will be published to the <channel>.
Each row from the mapping represents one or more rules and can be implemented according to a
specific rule language. In this document, we are going to use the Drools Rule Language1 to
show the rules implementation in Drools Rule Engine2.
Table 2.2 A rule implementation
import info.innsbruck.model.content.Events;
global info.innsbruck.model.channel.FacebookWall
channelFacebookWall;
global info.innsbruck.model.channel.Twitter channelTwitter;
rule “Publish Events to Facebook”
when
i : Events()
then
insert(ItemToBePublished(i, channelFacebookWall);
end
1 The Drools Rule Language, http://docs.jboss.org/drools/release/5.3.0.Final/drools-expert-docs/html/ch05.html
2
The Drools Rule Engine, http://www.jboss.org/drools/
6
Table 2.2 contains a rule to publish Events to the Facebook channel. While the Events are
imported from the knowledge base (KB), the channelFacebookWall is the global name parameter
declared in KB.
2.3. Workflows
Another important aspect needs to be considered during determining the publication rules is the
workflow. If there is a data dependency between two channels, then we have to make sure the
publications a common content to both channels are in correct order.
From our analysis, most of the published post messages on Twitter have an URL (link to the
detail information) to the Facebook channel. So there is a strong evidence that there is a
dependency between Twitter and Facebook where a content should be published to Facebook
first before published to Twitter.
Table 2.3 Rule implementation for the Twitter (has data dependency with Facebook)
rule “Publish Events to Twitter”
when
i : Events()
f : ItemToBePublished(i, channelFacebookWall)
then
insert(ItemToBePublished(i, channelTwitter, f.url);
end
In table 2.3, the rule has a second condition to check if the Events have already been published to
the channelFacebookWall. The rule consequence (to publish the Events to channelTwitter), will
be executed only after the publication to channelFacebookWall has completed. In this case, the
URL from the publication to Facebook is required to be included as a link in the tweet.
2.4. Content Transformations
The mapping between content to channels in sub section 2.1 does not indicate which content
items are disseminated to each relevant channels. While a content could has rich items, a channel
7
has specific requirements that have to follow. The process to transform the content items into an
accepted format based on the channel requirements is called content transformation.
We strongly believe that the existing transformations requires a major improvement. Several
transformations have been causing the lose of potentially important items. For example, the posts
in the category of Hotels in Facebook channel are only Pictures (no Name, Location, etc.). A
similar case happens to the posts in the category of Food and Drink Establishments.
The existing content transformations from Facebook, Twitter and YouTube channels are shown
in appendix A, B, and C respectively. The analysis result from the new channel Blog is shown in
appendix D.
We would like to point out several important notes from the administrator of the TVb’s social
media channels which are related to the content transformation as follow:
 The contents on Facebook are mainly Images
 Sharing a post with a link is less popular than a post without a link
 Not all images on Facebook are available on the website
 Twitter is suitable to disseminate quick news
2.5. Publication Scheduling
Another important aspect in publication rules is how often a rule will be executed from a specific
input to a specific output channel. By considering this aspect, a scheduled publication can be
arranged automatically. For example, if there is a new incoming Event, then it is most likely a
better idea to send out reminder several times to certain channels automatically.
According to the administrator of TVb’s social media, regular posting to Facebook is 2 posts per
day and the publication to Facebook is synchonized automatically with Twitter but sometimes an
independent Tweet is also required.
8
Appendix A. Analysis of Published Items in the Facebook
Facebook is a social network channel that support various data including text messages, pictures,
videos.
1. Hotels
Table A.1 List of Published Content Items
No. Items Type Example
1 Picture Image A picture of Adlers Hotel
2. Food and Drink Establishments
Table A.2 List of Published Content Items
No. Items Type Example
1 Picture Image A picture of Cafe Central
3. Events
Table A.3 List of Published Content Items
No. Items Type Example
1 Name Text (Short) Silvesterlauf Innsbruck
2 Date DateTime 31.12.2013
3 Time DateTime 16:15
4 Place Text (Short) Innsbrucker Markplatz
9
5 Description Text (Medium) The sporty end of the year ...
6 More URL www.innsbrucklaeuft.com
7 Picture Image
4. Trips
Table A.4 List of Published Content Items
No. Items Type Example
1 Place Text (Short) Das Sellraintal
2 Description Text (Medium) Das Sellraintal ist mit über 25 ausgewiesenen
Touren und ...
3 More URL http://www.innsbruck-
pauschalen.com/skitouren.html
4 Picture Image
5. Place of Interest
Table A.5 List of Published Content Items
No. Items Type Example
1 Name Text (Short) Innsbrucks Olympia SkiWorld
2 Place Text (Short) Alps
3 Description Text (Medium) Winter sports in the heart of ...
4 More URL www.innsbruck-pauschalen.com
10
5 Picture Image
6. News
Table A.6 List of Published Content Items
No. Items Type Example
1 Title Text (Short) And the winner is ...
2 Description Text (Medium) The winner of the Innsbruck-Trails has been ...
3 More URL
4 Picture Image
11
Appendix B. Analysis of Published Items in the Twitter
Twitter is a Microblogging channel where the size of submitted text message (tweet) is limited to
maximum 140 characters. A post message could also contains an image.
1. Hotels
No data.
2. Food and Drink Establishments
No data.
3. Events
Table B.3 List of Published Content Items
No. Items Type Example
1 Name Text (Short) Innsbruck läuft
2 Date DateTime 31.12
3 Place Text(Short) Martplatz
4 Description Text (Short) … sportlichen Jahresausklang am Innsbrucker
Marktplatz. Wenn's dunkel..
5 More URL http://fb.me/1wAQU9IO3
4. Trips
Table B.4 List of Published Content Items
No. Items Type Example
1 Name Text (Short) #Nachtskitouren rund
2 Place Text (Short) im #Innsbruck
12
3 Description Text (Short) ...alle Informationen zu einer schnell
wachsenden 'Sportart'...
4 More URL http://www.mountaineers.at/nachtskitouren
5. Place of Interest
Table B.5 List of Published Content Items
No. Items Type Example
1 Name Text (Short) Innsbrucks Olympia SkiWorld
2 Description Text (Short) Skifahren in der Hauptstadt der Alpen ...
3 More URL http://fb.me/3wR3Yxwuu
4 Picture Image URL http://pic.twitter.com/sIIEOfNXaw
6. News
Table B.6 List of Published Content Items
No. Items Type Example
1 Description Text (Short) Innsbruck, 31-12-2013, 9:20, -5 C, sunny. Have
a nice last day of the year
2 More URL http://fb.me/2Q5ODTzAl
13
Appendix C. Analysis of Published Items in the YouTube
YouTube is a video sharing channel, the registered users able to upload a video along with
description. From the description, meta information were extracted such as as the location of a
video was taken, user generated description, date, etc.
1. Hotels
No data.
2. Food and Drink Establishments
Table C.2 List of Published Content Items
No. Items Type Example
1 Name Text (Short) Adlers Bar Innsbruck
2 Place Text (Short) 12th floor of the Pema-building, located next to
the main station
3 Offers Text (Short) Cool rhythms, Livemusik, cocktails,
astounding views
4 Description Text (Medium) Innsbruck is a very special location to
experience the ...
3. Events
Table C.3 List of Published Content Items
No. Items Type Example
1 Name Text (Short) Innsbruck’s Christmas Markets
2 Time Text (Short) About four weeks before Christmas
3 Place Text (Short) Wiltener Platz, Old Town
14
4 Description Text (Medium) Get enchanted by the flair of the Tyrolean
Christmas Markets and the lovely smell of ...
4. Trips
Table C.4 List of Published Content Items
No. Items Type Example
1 Name Text (Short) Mieming’s idyllic trails
2 Place Text (Short) In Mieming - one of Innsbruck’s Holiday
villages
3 Description Text (Medium) Enjoy a summer day among the mountains with
your family ...
4 More URL www.sonnenplateau.com
5. Place of Interest
Table C.5 List of Published Content Items
No. Items Type Example
1 Name Text (Short) Moeserer See
2 Place Text (Short) Few kilometers uphill from Telfs in the woods
around Moesem
3 Description Text (Medium) The lake in the midst of pine trees and a
stunning alpine scenery is the warmest bathing
lakes in Tyrol.
15
6. News
Table C.6 List of Published Content Items
No. Items Type Example
1 Title Text (Short) Happy Birthday Alpenzoo Innsbruck!
2 Description Text (Medium) The Alpenzoo in Innsbruck is celebrating it’s
50th anniversary this year. On this occasion a
special issue stamp was produced ...
16
Appendix D. Analysis of Published Items in the Blog
A blog is a dissemination channel consisting of discrete entries (posts) displayed in
chronological order. A post in a blog could cointains Text, Images, Videos and typically
provides comment features to its visitors.
In the time of this analysis was performed, the TVb’s Blog was still under preparation and had 2
posts only.
1. Hotels
No data.
2. Food and Drink Establishments
No data.
3. Events
Table D.3 List of Published Content Items
No. Items Type Example
1 Name Text (Short) “ART Innsbruck” ist einzigARTig
2 Date Text (Short) 20. - 23. Februar 2014
3 Time Text (Short) Do. - Sa.: 11 - 20 Uhr
So.: 11 - 19 Uhr
4 Place Text (Short) Innsbruck, Messehalle D+E
5 Description Text (Long) Rund 70 Austeller aus zehn Nationen
präsentieren auf einer Fläche von ca. 4000m²
zeitgenössische ...
6 Picture Images
7 Links URL http://www.art-innsbruck.at/index.php/de/
http://www.artroom21.at/
17
4. Trips
No data.
5. Place of Interest
No data.
6. News
No data.

More Related Content

Similar to T vb publication_rules_11032014

Rotes wildschwein showcase description - 2012-07-04
Rotes wildschwein   showcase description - 2012-07-04Rotes wildschwein   showcase description - 2012-07-04
Rotes wildschwein showcase description - 2012-07-04STIinnsbruck
 
LoCloud - D3.3: Metadata Enrichment services
LoCloud - D3.3: Metadata Enrichment servicesLoCloud - D3.3: Metadata Enrichment services
LoCloud - D3.3: Metadata Enrichment serviceslocloud
 
Feratel annotation 10122014
Feratel annotation 10122014Feratel annotation 10122014
Feratel annotation 10122014STIinnsbruck
 
On Summarization and Timeline Generation for Evolutionary Tweet Streams
On Summarization and Timeline Generation for Evolutionary Tweet StreamsOn Summarization and Timeline Generation for Evolutionary Tweet Streams
On Summarization and Timeline Generation for Evolutionary Tweet Streams1crore projects
 
A Proposed Method to Develop Shared Papers for Researchers at Conference
A Proposed Method to Develop Shared Papers for Researchers at ConferenceA Proposed Method to Develop Shared Papers for Researchers at Conference
A Proposed Method to Develop Shared Papers for Researchers at Conferenceiosrjce
 
D6.1. Scenario Descriptions
D6.1. Scenario DescriptionsD6.1. Scenario Descriptions
D6.1. Scenario DescriptionsLinkedTV
 
Pipes Book - imaginings
Pipes Book - imaginingsPipes Book - imaginings
Pipes Book - imaginingsTony Hirst
 
T vb mapping_implementation_25032014
T vb mapping_implementation_25032014T vb mapping_implementation_25032014
T vb mapping_implementation_25032014STIinnsbruck
 
Description of the Applications’ Lifecycle Management Support
Description of the Applications’ Lifecycle Management SupportDescription of the Applications’ Lifecycle Management Support
Description of the Applications’ Lifecycle Management SupportEU ARCADIA PROJECT
 
Feratel schema.org mapping_20052014
Feratel schema.org mapping_20052014Feratel schema.org mapping_20052014
Feratel schema.org mapping_20052014STIinnsbruck
 
Topic Evolutionary Tweet Stream Clustering Algorithm and TCV Rank Summarization
Topic Evolutionary Tweet Stream Clustering Algorithm and TCV Rank SummarizationTopic Evolutionary Tweet Stream Clustering Algorithm and TCV Rank Summarization
Topic Evolutionary Tweet Stream Clustering Algorithm and TCV Rank SummarizationIJERA Editor
 
No tube & experimenting with linked data to improve ux
No tube & experimenting with linked data to improve uxNo tube & experimenting with linked data to improve ux
No tube & experimenting with linked data to improve uxvickybuser
 
Combining and easing the access of the eswc semantic web data 0
Combining and easing the access of the eswc semantic web data 0Combining and easing the access of the eswc semantic web data 0
Combining and easing the access of the eswc semantic web data 0STIinnsbruck
 
Dr. Sam Musa01-01-2017Network LAN Design with VoIP and Wireles.docx
Dr. Sam Musa01-01-2017Network LAN Design with VoIP and Wireles.docxDr. Sam Musa01-01-2017Network LAN Design with VoIP and Wireles.docx
Dr. Sam Musa01-01-2017Network LAN Design with VoIP and Wireles.docxkanepbyrne80830
 
BUA 3305 MIS Analysis and Design Summary Report Assi.docx
 BUA 3305 MIS Analysis and Design Summary Report Assi.docx BUA 3305 MIS Analysis and Design Summary Report Assi.docx
BUA 3305 MIS Analysis and Design Summary Report Assi.docxShiraPrater50
 
Harnessing Web Page Directories for Large-Scale Classification of Tweets
Harnessing Web Page Directories for Large-Scale Classification of TweetsHarnessing Web Page Directories for Large-Scale Classification of Tweets
Harnessing Web Page Directories for Large-Scale Classification of TweetsGabriela Agustini
 
Test Strategy Utilising Mc Useful Tools
Test Strategy Utilising Mc Useful ToolsTest Strategy Utilising Mc Useful Tools
Test Strategy Utilising Mc Useful Toolsmcthedog
 
Using transfer learning for video popularity prediction
Using transfer learning for video popularity predictionUsing transfer learning for video popularity prediction
Using transfer learning for video popularity predictioneSAT Publishing House
 

Similar to T vb publication_rules_11032014 (20)

Rules
RulesRules
Rules
 
Rotes wildschwein showcase description - 2012-07-04
Rotes wildschwein   showcase description - 2012-07-04Rotes wildschwein   showcase description - 2012-07-04
Rotes wildschwein showcase description - 2012-07-04
 
LoCloud - D3.3: Metadata Enrichment services
LoCloud - D3.3: Metadata Enrichment servicesLoCloud - D3.3: Metadata Enrichment services
LoCloud - D3.3: Metadata Enrichment services
 
Feratel annotation 10122014
Feratel annotation 10122014Feratel annotation 10122014
Feratel annotation 10122014
 
On Summarization and Timeline Generation for Evolutionary Tweet Streams
On Summarization and Timeline Generation for Evolutionary Tweet StreamsOn Summarization and Timeline Generation for Evolutionary Tweet Streams
On Summarization and Timeline Generation for Evolutionary Tweet Streams
 
A Proposed Method to Develop Shared Papers for Researchers at Conference
A Proposed Method to Develop Shared Papers for Researchers at ConferenceA Proposed Method to Develop Shared Papers for Researchers at Conference
A Proposed Method to Develop Shared Papers for Researchers at Conference
 
N0176195102
N0176195102N0176195102
N0176195102
 
D6.1. Scenario Descriptions
D6.1. Scenario DescriptionsD6.1. Scenario Descriptions
D6.1. Scenario Descriptions
 
Pipes Book - imaginings
Pipes Book - imaginingsPipes Book - imaginings
Pipes Book - imaginings
 
T vb mapping_implementation_25032014
T vb mapping_implementation_25032014T vb mapping_implementation_25032014
T vb mapping_implementation_25032014
 
Description of the Applications’ Lifecycle Management Support
Description of the Applications’ Lifecycle Management SupportDescription of the Applications’ Lifecycle Management Support
Description of the Applications’ Lifecycle Management Support
 
Feratel schema.org mapping_20052014
Feratel schema.org mapping_20052014Feratel schema.org mapping_20052014
Feratel schema.org mapping_20052014
 
Topic Evolutionary Tweet Stream Clustering Algorithm and TCV Rank Summarization
Topic Evolutionary Tweet Stream Clustering Algorithm and TCV Rank SummarizationTopic Evolutionary Tweet Stream Clustering Algorithm and TCV Rank Summarization
Topic Evolutionary Tweet Stream Clustering Algorithm and TCV Rank Summarization
 
No tube & experimenting with linked data to improve ux
No tube & experimenting with linked data to improve uxNo tube & experimenting with linked data to improve ux
No tube & experimenting with linked data to improve ux
 
Combining and easing the access of the eswc semantic web data 0
Combining and easing the access of the eswc semantic web data 0Combining and easing the access of the eswc semantic web data 0
Combining and easing the access of the eswc semantic web data 0
 
Dr. Sam Musa01-01-2017Network LAN Design with VoIP and Wireles.docx
Dr. Sam Musa01-01-2017Network LAN Design with VoIP and Wireles.docxDr. Sam Musa01-01-2017Network LAN Design with VoIP and Wireles.docx
Dr. Sam Musa01-01-2017Network LAN Design with VoIP and Wireles.docx
 
BUA 3305 MIS Analysis and Design Summary Report Assi.docx
 BUA 3305 MIS Analysis and Design Summary Report Assi.docx BUA 3305 MIS Analysis and Design Summary Report Assi.docx
BUA 3305 MIS Analysis and Design Summary Report Assi.docx
 
Harnessing Web Page Directories for Large-Scale Classification of Tweets
Harnessing Web Page Directories for Large-Scale Classification of TweetsHarnessing Web Page Directories for Large-Scale Classification of Tweets
Harnessing Web Page Directories for Large-Scale Classification of Tweets
 
Test Strategy Utilising Mc Useful Tools
Test Strategy Utilising Mc Useful ToolsTest Strategy Utilising Mc Useful Tools
Test Strategy Utilising Mc Useful Tools
 
Using transfer learning for video popularity prediction
Using transfer learning for video popularity predictionUsing transfer learning for video popularity prediction
Using transfer learning for video popularity prediction
 

More from STIinnsbruck (20)

Unister
UnisterUnister
Unister
 
Twoo
TwooTwoo
Twoo
 
Twibes
TwibesTwibes
Twibes
 
Tweet deck 2012-01-02
Tweet deck 2012-01-02Tweet deck 2012-01-02
Tweet deck 2012-01-02
 
Tv evaluation 12032014
Tv evaluation 12032014Tv evaluation 12032014
Tv evaluation 12032014
 
T vb alignment_022814_0
T vb alignment_022814_0T vb alignment_022814_0
T vb alignment_022814_0
 
Ttr 20130701
Ttr 20130701Ttr 20130701
Ttr 20130701
 
Ttg mapping to_schema.org_
Ttg mapping to_schema.org_Ttg mapping to_schema.org_
Ttg mapping to_schema.org_
 
Ttb 08042014
Ttb 08042014Ttb 08042014
Ttb 08042014
 
Trust you
Trust youTrust you
Trust you
 
Tripwolf
TripwolfTripwolf
Tripwolf
 
Tripbirds
TripbirdsTripbirds
Tripbirds
 
Traveltainment
TraveltainmentTraveltainment
Traveltainment
 
Tourismuszukunft
TourismuszukunftTourismuszukunft
Tourismuszukunft
 
Tourismusverband innsbruck 24.09.2013
Tourismusverband innsbruck 24.09.2013Tourismusverband innsbruck 24.09.2013
Tourismusverband innsbruck 24.09.2013
 
Tourism link
Tourism linkTourism link
Tourism link
 
Tourcomm germany.com
Tourcomm germany.com Tourcomm germany.com
Tourcomm germany.com
 
Tor
TorTor
Tor
 
Toocan
ToocanToocan
Toocan
 
Tomnod
TomnodTomnod
Tomnod
 

Recently uploaded

Presentation for the Strategic Dialogue on the Future of Agriculture, Brussel...
Presentation for the Strategic Dialogue on the Future of Agriculture, Brussel...Presentation for the Strategic Dialogue on the Future of Agriculture, Brussel...
Presentation for the Strategic Dialogue on the Future of Agriculture, Brussel...Krijn Poppe
 
OSCamp Kubernetes 2024 | SRE Challenges in Monolith to Microservices Shift at...
OSCamp Kubernetes 2024 | SRE Challenges in Monolith to Microservices Shift at...OSCamp Kubernetes 2024 | SRE Challenges in Monolith to Microservices Shift at...
OSCamp Kubernetes 2024 | SRE Challenges in Monolith to Microservices Shift at...NETWAYS
 
SaaStr Workshop Wednesday w: Jason Lemkin, SaaStr
SaaStr Workshop Wednesday w: Jason Lemkin, SaaStrSaaStr Workshop Wednesday w: Jason Lemkin, SaaStr
SaaStr Workshop Wednesday w: Jason Lemkin, SaaStrsaastr
 
George Lever - eCommerce Day Chile 2024
George Lever -  eCommerce Day Chile 2024George Lever -  eCommerce Day Chile 2024
George Lever - eCommerce Day Chile 2024eCommerce Institute
 
Open Source Strategy in Logistics 2015_Henrik Hankedvz-d-nl-log-conference.pdf
Open Source Strategy in Logistics 2015_Henrik Hankedvz-d-nl-log-conference.pdfOpen Source Strategy in Logistics 2015_Henrik Hankedvz-d-nl-log-conference.pdf
Open Source Strategy in Logistics 2015_Henrik Hankedvz-d-nl-log-conference.pdfhenrik385807
 
LANDMARKS AND MONUMENTS IN NIGERIA.pptx
LANDMARKS  AND MONUMENTS IN NIGERIA.pptxLANDMARKS  AND MONUMENTS IN NIGERIA.pptx
LANDMARKS AND MONUMENTS IN NIGERIA.pptxBasil Achie
 
CTAC 2024 Valencia - Sven Zoelle - Most Crucial Invest to Digitalisation_slid...
CTAC 2024 Valencia - Sven Zoelle - Most Crucial Invest to Digitalisation_slid...CTAC 2024 Valencia - Sven Zoelle - Most Crucial Invest to Digitalisation_slid...
CTAC 2024 Valencia - Sven Zoelle - Most Crucial Invest to Digitalisation_slid...henrik385807
 
Call Girls in Sarojini Nagar Market Delhi 💯 Call Us 🔝8264348440🔝
Call Girls in Sarojini Nagar Market Delhi 💯 Call Us 🔝8264348440🔝Call Girls in Sarojini Nagar Market Delhi 💯 Call Us 🔝8264348440🔝
Call Girls in Sarojini Nagar Market Delhi 💯 Call Us 🔝8264348440🔝soniya singh
 
OSCamp Kubernetes 2024 | A Tester's Guide to CI_CD as an Automated Quality Co...
OSCamp Kubernetes 2024 | A Tester's Guide to CI_CD as an Automated Quality Co...OSCamp Kubernetes 2024 | A Tester's Guide to CI_CD as an Automated Quality Co...
OSCamp Kubernetes 2024 | A Tester's Guide to CI_CD as an Automated Quality Co...NETWAYS
 
Governance and Nation-Building in Nigeria: Some Reflections on Options for Po...
Governance and Nation-Building in Nigeria: Some Reflections on Options for Po...Governance and Nation-Building in Nigeria: Some Reflections on Options for Po...
Governance and Nation-Building in Nigeria: Some Reflections on Options for Po...Kayode Fayemi
 
Andrés Ramírez Gossler, Facundo Schinnea - eCommerce Day Chile 2024
Andrés Ramírez Gossler, Facundo Schinnea - eCommerce Day Chile 2024Andrés Ramírez Gossler, Facundo Schinnea - eCommerce Day Chile 2024
Andrés Ramírez Gossler, Facundo Schinnea - eCommerce Day Chile 2024eCommerce Institute
 
Russian Call Girls in Kolkata Vaishnavi 🤌 8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Vaishnavi 🤌  8250192130 🚀 Vip Call Girls KolkataRussian Call Girls in Kolkata Vaishnavi 🤌  8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Vaishnavi 🤌 8250192130 🚀 Vip Call Girls Kolkataanamikaraghav4
 
Night 7k Call Girls Noida Sector 128 Call Me: 8448380779
Night 7k Call Girls Noida Sector 128 Call Me: 8448380779Night 7k Call Girls Noida Sector 128 Call Me: 8448380779
Night 7k Call Girls Noida Sector 128 Call Me: 8448380779Delhi Call girls
 
Exploring protein-protein interactions by Weak Affinity Chromatography (WAC) ...
Exploring protein-protein interactions by Weak Affinity Chromatography (WAC) ...Exploring protein-protein interactions by Weak Affinity Chromatography (WAC) ...
Exploring protein-protein interactions by Weak Affinity Chromatography (WAC) ...Salam Al-Karadaghi
 
Navi Mumbai Call Girls Service Pooja 9892124323 Real Russian Girls Looking Mo...
Navi Mumbai Call Girls Service Pooja 9892124323 Real Russian Girls Looking Mo...Navi Mumbai Call Girls Service Pooja 9892124323 Real Russian Girls Looking Mo...
Navi Mumbai Call Girls Service Pooja 9892124323 Real Russian Girls Looking Mo...Pooja Nehwal
 
Genesis part 2 Isaiah Scudder 04-24-2024.pptx
Genesis part 2 Isaiah Scudder 04-24-2024.pptxGenesis part 2 Isaiah Scudder 04-24-2024.pptx
Genesis part 2 Isaiah Scudder 04-24-2024.pptxFamilyWorshipCenterD
 
Motivation and Theory Maslow and Murray pdf
Motivation and Theory Maslow and Murray pdfMotivation and Theory Maslow and Murray pdf
Motivation and Theory Maslow and Murray pdfakankshagupta7348026
 
Microsoft Copilot AI for Everyone - created by AI
Microsoft Copilot AI for Everyone - created by AIMicrosoft Copilot AI for Everyone - created by AI
Microsoft Copilot AI for Everyone - created by AITatiana Gurgel
 
Open Source Camp Kubernetes 2024 | Running WebAssembly on Kubernetes by Alex ...
Open Source Camp Kubernetes 2024 | Running WebAssembly on Kubernetes by Alex ...Open Source Camp Kubernetes 2024 | Running WebAssembly on Kubernetes by Alex ...
Open Source Camp Kubernetes 2024 | Running WebAssembly on Kubernetes by Alex ...NETWAYS
 
OSCamp Kubernetes 2024 | Zero-Touch OS-Infrastruktur für Container und Kubern...
OSCamp Kubernetes 2024 | Zero-Touch OS-Infrastruktur für Container und Kubern...OSCamp Kubernetes 2024 | Zero-Touch OS-Infrastruktur für Container und Kubern...
OSCamp Kubernetes 2024 | Zero-Touch OS-Infrastruktur für Container und Kubern...NETWAYS
 

Recently uploaded (20)

Presentation for the Strategic Dialogue on the Future of Agriculture, Brussel...
Presentation for the Strategic Dialogue on the Future of Agriculture, Brussel...Presentation for the Strategic Dialogue on the Future of Agriculture, Brussel...
Presentation for the Strategic Dialogue on the Future of Agriculture, Brussel...
 
OSCamp Kubernetes 2024 | SRE Challenges in Monolith to Microservices Shift at...
OSCamp Kubernetes 2024 | SRE Challenges in Monolith to Microservices Shift at...OSCamp Kubernetes 2024 | SRE Challenges in Monolith to Microservices Shift at...
OSCamp Kubernetes 2024 | SRE Challenges in Monolith to Microservices Shift at...
 
SaaStr Workshop Wednesday w: Jason Lemkin, SaaStr
SaaStr Workshop Wednesday w: Jason Lemkin, SaaStrSaaStr Workshop Wednesday w: Jason Lemkin, SaaStr
SaaStr Workshop Wednesday w: Jason Lemkin, SaaStr
 
George Lever - eCommerce Day Chile 2024
George Lever -  eCommerce Day Chile 2024George Lever -  eCommerce Day Chile 2024
George Lever - eCommerce Day Chile 2024
 
Open Source Strategy in Logistics 2015_Henrik Hankedvz-d-nl-log-conference.pdf
Open Source Strategy in Logistics 2015_Henrik Hankedvz-d-nl-log-conference.pdfOpen Source Strategy in Logistics 2015_Henrik Hankedvz-d-nl-log-conference.pdf
Open Source Strategy in Logistics 2015_Henrik Hankedvz-d-nl-log-conference.pdf
 
LANDMARKS AND MONUMENTS IN NIGERIA.pptx
LANDMARKS  AND MONUMENTS IN NIGERIA.pptxLANDMARKS  AND MONUMENTS IN NIGERIA.pptx
LANDMARKS AND MONUMENTS IN NIGERIA.pptx
 
CTAC 2024 Valencia - Sven Zoelle - Most Crucial Invest to Digitalisation_slid...
CTAC 2024 Valencia - Sven Zoelle - Most Crucial Invest to Digitalisation_slid...CTAC 2024 Valencia - Sven Zoelle - Most Crucial Invest to Digitalisation_slid...
CTAC 2024 Valencia - Sven Zoelle - Most Crucial Invest to Digitalisation_slid...
 
Call Girls in Sarojini Nagar Market Delhi 💯 Call Us 🔝8264348440🔝
Call Girls in Sarojini Nagar Market Delhi 💯 Call Us 🔝8264348440🔝Call Girls in Sarojini Nagar Market Delhi 💯 Call Us 🔝8264348440🔝
Call Girls in Sarojini Nagar Market Delhi 💯 Call Us 🔝8264348440🔝
 
OSCamp Kubernetes 2024 | A Tester's Guide to CI_CD as an Automated Quality Co...
OSCamp Kubernetes 2024 | A Tester's Guide to CI_CD as an Automated Quality Co...OSCamp Kubernetes 2024 | A Tester's Guide to CI_CD as an Automated Quality Co...
OSCamp Kubernetes 2024 | A Tester's Guide to CI_CD as an Automated Quality Co...
 
Governance and Nation-Building in Nigeria: Some Reflections on Options for Po...
Governance and Nation-Building in Nigeria: Some Reflections on Options for Po...Governance and Nation-Building in Nigeria: Some Reflections on Options for Po...
Governance and Nation-Building in Nigeria: Some Reflections on Options for Po...
 
Andrés Ramírez Gossler, Facundo Schinnea - eCommerce Day Chile 2024
Andrés Ramírez Gossler, Facundo Schinnea - eCommerce Day Chile 2024Andrés Ramírez Gossler, Facundo Schinnea - eCommerce Day Chile 2024
Andrés Ramírez Gossler, Facundo Schinnea - eCommerce Day Chile 2024
 
Russian Call Girls in Kolkata Vaishnavi 🤌 8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Vaishnavi 🤌  8250192130 🚀 Vip Call Girls KolkataRussian Call Girls in Kolkata Vaishnavi 🤌  8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Vaishnavi 🤌 8250192130 🚀 Vip Call Girls Kolkata
 
Night 7k Call Girls Noida Sector 128 Call Me: 8448380779
Night 7k Call Girls Noida Sector 128 Call Me: 8448380779Night 7k Call Girls Noida Sector 128 Call Me: 8448380779
Night 7k Call Girls Noida Sector 128 Call Me: 8448380779
 
Exploring protein-protein interactions by Weak Affinity Chromatography (WAC) ...
Exploring protein-protein interactions by Weak Affinity Chromatography (WAC) ...Exploring protein-protein interactions by Weak Affinity Chromatography (WAC) ...
Exploring protein-protein interactions by Weak Affinity Chromatography (WAC) ...
 
Navi Mumbai Call Girls Service Pooja 9892124323 Real Russian Girls Looking Mo...
Navi Mumbai Call Girls Service Pooja 9892124323 Real Russian Girls Looking Mo...Navi Mumbai Call Girls Service Pooja 9892124323 Real Russian Girls Looking Mo...
Navi Mumbai Call Girls Service Pooja 9892124323 Real Russian Girls Looking Mo...
 
Genesis part 2 Isaiah Scudder 04-24-2024.pptx
Genesis part 2 Isaiah Scudder 04-24-2024.pptxGenesis part 2 Isaiah Scudder 04-24-2024.pptx
Genesis part 2 Isaiah Scudder 04-24-2024.pptx
 
Motivation and Theory Maslow and Murray pdf
Motivation and Theory Maslow and Murray pdfMotivation and Theory Maslow and Murray pdf
Motivation and Theory Maslow and Murray pdf
 
Microsoft Copilot AI for Everyone - created by AI
Microsoft Copilot AI for Everyone - created by AIMicrosoft Copilot AI for Everyone - created by AI
Microsoft Copilot AI for Everyone - created by AI
 
Open Source Camp Kubernetes 2024 | Running WebAssembly on Kubernetes by Alex ...
Open Source Camp Kubernetes 2024 | Running WebAssembly on Kubernetes by Alex ...Open Source Camp Kubernetes 2024 | Running WebAssembly on Kubernetes by Alex ...
Open Source Camp Kubernetes 2024 | Running WebAssembly on Kubernetes by Alex ...
 
OSCamp Kubernetes 2024 | Zero-Touch OS-Infrastruktur für Container und Kubern...
OSCamp Kubernetes 2024 | Zero-Touch OS-Infrastruktur für Container und Kubern...OSCamp Kubernetes 2024 | Zero-Touch OS-Infrastruktur für Container und Kubern...
OSCamp Kubernetes 2024 | Zero-Touch OS-Infrastruktur für Container und Kubern...
 

T vb publication_rules_11032014

  • 1. 1 STI INNSBRUCK TOURISMUSVERBAND PUBLICATION RULES Zaenal Akbar, Jose Maria Garcia STI Innsbruck, University of Innsbruck, Technikerstraße 21a, 6020 Innsbruck, Austria firstname.lastname@sti2.at 2014-03-11 Semantic Technology Institute Innsbruck STI INNSBTRUCK Technikerstraße 21a A – 6020 Innsbruck Austria http://www.sti-innsbruck.
  • 2. 1 Contents 1. Introduction................................................................................................................................. 3 2. Rules Model................................................................................................................................ 4 2.1. Content To Channel Mapping.............................................................................................. 4 2.2. Rules Implementation .......................................................................................................... 5 2.3. Workflows............................................................................................................................ 6 2.4. Content Transformations...................................................................................................... 6 2.5. Publication Scheduling......................................................................................................... 7 Appendix A. Analysis of Published Items in the Facebook ........................................................... 8 1. Hotels ...................................................................................................................................... 8 2. Food and Drink Establishments .............................................................................................. 8 3. Events...................................................................................................................................... 8 4. Trips ........................................................................................................................................ 9 5. Place of Interest....................................................................................................................... 9 6. News...................................................................................................................................... 10 Appendix B. Analysis of Published Items in the Twitter ............................................................. 11 1. Hotels .................................................................................................................................... 11 2. Food and Drink Establishments ............................................................................................ 11 3. Events.................................................................................................................................... 11 4. Trips ...................................................................................................................................... 11 5. Place of Interest..................................................................................................................... 12 6. News...................................................................................................................................... 12 Appendix C. Analysis of Published Items in the YouTube .......................................................... 13 1. Hotels .................................................................................................................................... 13 2. Food and Drink Establishments ............................................................................................ 13 3. Events.................................................................................................................................... 13 4. Trips ...................................................................................................................................... 14 5. Place of Interest..................................................................................................................... 14 6. News...................................................................................................................................... 15 Appendix D. Analysis of Published Items in the Blog ................................................................. 16 1. Hotels .................................................................................................................................... 16 2. Food and Drink Establishments ............................................................................................ 16
  • 3. 2 3. Events.................................................................................................................................... 16 4. Trips ...................................................................................................................................... 17 5. Place of Interest..................................................................................................................... 17 6. News...................................................................................................................................... 17
  • 4. 3 1. Introduction This document presents the publication rules for Tourismusverband Innsbruck (TVb). The main functions of publication rules are (i) to define which contents will be disseminated to which channels and (ii) to define how the disseminations should be performed, for example to define the order of the disseminations to several channels. To obtain the publication rules for TVb, we have conducted analysis on the TVb’s website and TVb’s social media channels. The website will be used as the source of content (input channel) and the social media channels as target (output channels). The sources of this analysis are: 1. TVb’s Website (http://www.innsbruck.info/) 2. TVb’s Facebook (https://www.facebook.com/Innsbruck) 3. TVb’s Twitter (https://twitter.com/InnsbruckTVB) 4. TVb’s YouTube (http://www.youtube.com/user/InnsbruckTVB) According to the TVb’s Redaktionsplan 2014, there are another social media channels to be considered as dissemination target: 1. Google+ 2. Pinterest 3. Blog (http://blog.innsbruck.info/) 4. tumblr It seems that those new channels are still under preparation, as they are not officially linked to the main website and have very limited contents. In this document, from those 4 new channels, we will present the analysis result for the blog only. Another important inputs were obtained from the person who is responsible on managing the TVb’s social media channels. The inputs are concerning the publication timing, publication recurrence, including content transformation for a specific channel. From the ontology definition analysis previously conducted, we have identified several relevant information categories for dissemination from TVb’s website as follows: 1. Hotels 2. Food and Drink Establishments 3. Events 4. Trips 5. Place of Interest 6. News Based on those categories, the publication rules are then determined by answering the following 3 questions: 1. (Existence) Can we find similar categories in an output channel? If yes, then there is a mapping between the categories to that channel.
  • 5. 4 2. (Workflow) Is there any data dependency between a channel to other channels? If yes, then the publication to this channel must hold until the publication to the other channels have successfully performed. 3. (Content Transformation) How a content has presented in a channel?. This question is intended to determine the required content transformation for each category to fit it into the channel’s requirements. For text analysis, the messages were classified into 3 categories based on their size as follow: 1. Short: below 150 characters 2. Medium: between 150 and 500 characters 3. Long: more than 500 characters 2. Rules Model The answer for each question from the previous section will be explained in more detail in the following sub-sections. 2.1. Content To Channel Mapping The mapping is representing a relation between the content categories and the available channels. If a similarity between the content of the website and the content of a channel is detected then we conclude there is a mapping between them. Table 2.1 The Mapping of Content to Channel(s) No. Content Facebook Twitter YouTube Blog 1 Hotels Yes No No No 2 Food and Drink Establishments Yes No Yes No 3 Events Yes Yes Yes Yes 4 Trips Yes Yes Yes No 5 Place of Interest Yes Yes Yes No 6 News Yes Yes Yes No
  • 6. 5 As shown at table 2.1, the mapping relations have been existed between all categories (except for Hotels and Food and Drink Establishments) to all channels. It is important to mention that the mapping is only indicating the relations between content and channels. It is not representing which items from a content were disseminated to a channel, as it will be explained later in a sub-section related to the content transformations. 2.2. Rules Implementation After the mapping between content to channels is obtained, the rules can be constructed from it. The basic format of a rule is: IF <content> THEN Publish(<content>, <channel>), meaning if a new <content> is detected in the website then it will be published to the <channel>. Each row from the mapping represents one or more rules and can be implemented according to a specific rule language. In this document, we are going to use the Drools Rule Language1 to show the rules implementation in Drools Rule Engine2. Table 2.2 A rule implementation import info.innsbruck.model.content.Events; global info.innsbruck.model.channel.FacebookWall channelFacebookWall; global info.innsbruck.model.channel.Twitter channelTwitter; rule “Publish Events to Facebook” when i : Events() then insert(ItemToBePublished(i, channelFacebookWall); end 1 The Drools Rule Language, http://docs.jboss.org/drools/release/5.3.0.Final/drools-expert-docs/html/ch05.html 2 The Drools Rule Engine, http://www.jboss.org/drools/
  • 7. 6 Table 2.2 contains a rule to publish Events to the Facebook channel. While the Events are imported from the knowledge base (KB), the channelFacebookWall is the global name parameter declared in KB. 2.3. Workflows Another important aspect needs to be considered during determining the publication rules is the workflow. If there is a data dependency between two channels, then we have to make sure the publications a common content to both channels are in correct order. From our analysis, most of the published post messages on Twitter have an URL (link to the detail information) to the Facebook channel. So there is a strong evidence that there is a dependency between Twitter and Facebook where a content should be published to Facebook first before published to Twitter. Table 2.3 Rule implementation for the Twitter (has data dependency with Facebook) rule “Publish Events to Twitter” when i : Events() f : ItemToBePublished(i, channelFacebookWall) then insert(ItemToBePublished(i, channelTwitter, f.url); end In table 2.3, the rule has a second condition to check if the Events have already been published to the channelFacebookWall. The rule consequence (to publish the Events to channelTwitter), will be executed only after the publication to channelFacebookWall has completed. In this case, the URL from the publication to Facebook is required to be included as a link in the tweet. 2.4. Content Transformations The mapping between content to channels in sub section 2.1 does not indicate which content items are disseminated to each relevant channels. While a content could has rich items, a channel
  • 8. 7 has specific requirements that have to follow. The process to transform the content items into an accepted format based on the channel requirements is called content transformation. We strongly believe that the existing transformations requires a major improvement. Several transformations have been causing the lose of potentially important items. For example, the posts in the category of Hotels in Facebook channel are only Pictures (no Name, Location, etc.). A similar case happens to the posts in the category of Food and Drink Establishments. The existing content transformations from Facebook, Twitter and YouTube channels are shown in appendix A, B, and C respectively. The analysis result from the new channel Blog is shown in appendix D. We would like to point out several important notes from the administrator of the TVb’s social media channels which are related to the content transformation as follow:  The contents on Facebook are mainly Images  Sharing a post with a link is less popular than a post without a link  Not all images on Facebook are available on the website  Twitter is suitable to disseminate quick news 2.5. Publication Scheduling Another important aspect in publication rules is how often a rule will be executed from a specific input to a specific output channel. By considering this aspect, a scheduled publication can be arranged automatically. For example, if there is a new incoming Event, then it is most likely a better idea to send out reminder several times to certain channels automatically. According to the administrator of TVb’s social media, regular posting to Facebook is 2 posts per day and the publication to Facebook is synchonized automatically with Twitter but sometimes an independent Tweet is also required.
  • 9. 8 Appendix A. Analysis of Published Items in the Facebook Facebook is a social network channel that support various data including text messages, pictures, videos. 1. Hotels Table A.1 List of Published Content Items No. Items Type Example 1 Picture Image A picture of Adlers Hotel 2. Food and Drink Establishments Table A.2 List of Published Content Items No. Items Type Example 1 Picture Image A picture of Cafe Central 3. Events Table A.3 List of Published Content Items No. Items Type Example 1 Name Text (Short) Silvesterlauf Innsbruck 2 Date DateTime 31.12.2013 3 Time DateTime 16:15 4 Place Text (Short) Innsbrucker Markplatz
  • 10. 9 5 Description Text (Medium) The sporty end of the year ... 6 More URL www.innsbrucklaeuft.com 7 Picture Image 4. Trips Table A.4 List of Published Content Items No. Items Type Example 1 Place Text (Short) Das Sellraintal 2 Description Text (Medium) Das Sellraintal ist mit über 25 ausgewiesenen Touren und ... 3 More URL http://www.innsbruck- pauschalen.com/skitouren.html 4 Picture Image 5. Place of Interest Table A.5 List of Published Content Items No. Items Type Example 1 Name Text (Short) Innsbrucks Olympia SkiWorld 2 Place Text (Short) Alps 3 Description Text (Medium) Winter sports in the heart of ... 4 More URL www.innsbruck-pauschalen.com
  • 11. 10 5 Picture Image 6. News Table A.6 List of Published Content Items No. Items Type Example 1 Title Text (Short) And the winner is ... 2 Description Text (Medium) The winner of the Innsbruck-Trails has been ... 3 More URL 4 Picture Image
  • 12. 11 Appendix B. Analysis of Published Items in the Twitter Twitter is a Microblogging channel where the size of submitted text message (tweet) is limited to maximum 140 characters. A post message could also contains an image. 1. Hotels No data. 2. Food and Drink Establishments No data. 3. Events Table B.3 List of Published Content Items No. Items Type Example 1 Name Text (Short) Innsbruck läuft 2 Date DateTime 31.12 3 Place Text(Short) Martplatz 4 Description Text (Short) … sportlichen Jahresausklang am Innsbrucker Marktplatz. Wenn's dunkel.. 5 More URL http://fb.me/1wAQU9IO3 4. Trips Table B.4 List of Published Content Items No. Items Type Example 1 Name Text (Short) #Nachtskitouren rund 2 Place Text (Short) im #Innsbruck
  • 13. 12 3 Description Text (Short) ...alle Informationen zu einer schnell wachsenden 'Sportart'... 4 More URL http://www.mountaineers.at/nachtskitouren 5. Place of Interest Table B.5 List of Published Content Items No. Items Type Example 1 Name Text (Short) Innsbrucks Olympia SkiWorld 2 Description Text (Short) Skifahren in der Hauptstadt der Alpen ... 3 More URL http://fb.me/3wR3Yxwuu 4 Picture Image URL http://pic.twitter.com/sIIEOfNXaw 6. News Table B.6 List of Published Content Items No. Items Type Example 1 Description Text (Short) Innsbruck, 31-12-2013, 9:20, -5 C, sunny. Have a nice last day of the year 2 More URL http://fb.me/2Q5ODTzAl
  • 14. 13 Appendix C. Analysis of Published Items in the YouTube YouTube is a video sharing channel, the registered users able to upload a video along with description. From the description, meta information were extracted such as as the location of a video was taken, user generated description, date, etc. 1. Hotels No data. 2. Food and Drink Establishments Table C.2 List of Published Content Items No. Items Type Example 1 Name Text (Short) Adlers Bar Innsbruck 2 Place Text (Short) 12th floor of the Pema-building, located next to the main station 3 Offers Text (Short) Cool rhythms, Livemusik, cocktails, astounding views 4 Description Text (Medium) Innsbruck is a very special location to experience the ... 3. Events Table C.3 List of Published Content Items No. Items Type Example 1 Name Text (Short) Innsbruck’s Christmas Markets 2 Time Text (Short) About four weeks before Christmas 3 Place Text (Short) Wiltener Platz, Old Town
  • 15. 14 4 Description Text (Medium) Get enchanted by the flair of the Tyrolean Christmas Markets and the lovely smell of ... 4. Trips Table C.4 List of Published Content Items No. Items Type Example 1 Name Text (Short) Mieming’s idyllic trails 2 Place Text (Short) In Mieming - one of Innsbruck’s Holiday villages 3 Description Text (Medium) Enjoy a summer day among the mountains with your family ... 4 More URL www.sonnenplateau.com 5. Place of Interest Table C.5 List of Published Content Items No. Items Type Example 1 Name Text (Short) Moeserer See 2 Place Text (Short) Few kilometers uphill from Telfs in the woods around Moesem 3 Description Text (Medium) The lake in the midst of pine trees and a stunning alpine scenery is the warmest bathing lakes in Tyrol.
  • 16. 15 6. News Table C.6 List of Published Content Items No. Items Type Example 1 Title Text (Short) Happy Birthday Alpenzoo Innsbruck! 2 Description Text (Medium) The Alpenzoo in Innsbruck is celebrating it’s 50th anniversary this year. On this occasion a special issue stamp was produced ...
  • 17. 16 Appendix D. Analysis of Published Items in the Blog A blog is a dissemination channel consisting of discrete entries (posts) displayed in chronological order. A post in a blog could cointains Text, Images, Videos and typically provides comment features to its visitors. In the time of this analysis was performed, the TVb’s Blog was still under preparation and had 2 posts only. 1. Hotels No data. 2. Food and Drink Establishments No data. 3. Events Table D.3 List of Published Content Items No. Items Type Example 1 Name Text (Short) “ART Innsbruck” ist einzigARTig 2 Date Text (Short) 20. - 23. Februar 2014 3 Time Text (Short) Do. - Sa.: 11 - 20 Uhr So.: 11 - 19 Uhr 4 Place Text (Short) Innsbruck, Messehalle D+E 5 Description Text (Long) Rund 70 Austeller aus zehn Nationen präsentieren auf einer Fläche von ca. 4000m² zeitgenössische ... 6 Picture Images 7 Links URL http://www.art-innsbruck.at/index.php/de/ http://www.artroom21.at/
  • 18. 17 4. Trips No data. 5. Place of Interest No data. 6. News No data.