<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.0 20120330//EN" "JATS-archivearticle1.dtd">
<article xmlns:xlink="http://www.w3.org/1999/xlink">
  <front>
    <journal-meta />
    <article-meta>
      <title-group>
        <article-title>Optimization Model of the Buses Number on the Route Based on Queueing Theory in a Smart City</article-title>
      </title-group>
      <contrib-group>
        <aff id="aff0">
          <label>0</label>
          <institution>Ivan Franko Drogobych State Pedagogical University</institution>
          ,
          <addr-line>Drogobych</addr-line>
          ,
          <country country="UA">Ukraine</country>
        </aff>
      </contrib-group>
      <fpage>0000</fpage>
      <lpage>0003</lpage>
      <abstract>
        <p>The busload on the route is modeled, the main statistical characteristics of the process on route number 10 were calculated, and the optimal number of buses on the route is calculated, which would maximize the total number of passengers per flight. The developed program allows us to calculate the optimal number of buses on the route according to the previously defined criteria in a certain period of the day on weekdays and weekends (including holidays). Diagrams of distribution of passengers and their dependence on the number of buses and their schedules are given in the work.</p>
      </abstract>
      <kwd-group>
        <kwd>Transport</kwd>
        <kwd>Bus Route</kwd>
        <kwd>Smart City</kwd>
        <kwd>Queueing Theory</kwd>
        <kwd>Optimization Model</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>
        A promising direction for improving urban transport systems is to determine the
optimal number of vehicles on the route. The solution to this problem involves bringing
to the route so many large or medium-sized buses that can provide comfortable
conditions for passengers and fully meet the demand during rush hour [
        <xref ref-type="bibr" rid="ref1 ref2 ref3 ref4 ref5 ref6 ref7">1-7</xref>
        ]. Among the
programs we know, most of them help passengers see the location of the vehicle,
make a route to get from one part of the city to another, and so on. There are useful
applications for tracking traffic, which count the number of buses on the route and
indicate where they are located too. This proves the actuality of developing a program
that would be analyzed at different times of the day and different days of the week the
number of passengers who want to take the bus. Currently, there are no analogs of
such a program, which would analyze the data on the number of buses on the route for
different parameters and justify how many and which buses on the route are the most
optimal. Potential consumers of the developed software are both civil servants (heads
of cities and relevant government agencies) and heads of private transport companies.
      </p>
    </sec>
    <sec id="sec-2">
      <title>System Analysis</title>
      <p>
        To develop the system and understand the essence of the task, a plan of its work was
drawn up [
        <xref ref-type="bibr" rid="ref10 ref11 ref12 ref13 ref14 ref15 ref8 ref9">8-15</xref>
        ]. At the stages of system development, certain independent tasks were
divided into works, which helped to accelerate the implementation of the system
[1623].
      </p>
      <p>
        The use case diagram was built for the designed system (Fig. 1). It was singled out
two main actors: the program creator and the bus driver. The main goal of the
program creator is to optimize the number of buses on the flight along a certain route.
To do this, the program creator needs to collect data on the number of passengers on
different days, as well as different hours during these days, to statistically present this
data. This will allow the program creator to determine the optimal number of buses
for a given day and time.
To build a class diagram of this system (fig.2), you should add the rest of the classes
and associations, as well as clarify the stereotypes, attributes and operations of these
classes [
        <xref ref-type="bibr" rid="ref24 ref25 ref26 ref27 ref28 ref29 ref30 ref31 ref32">24-32</xref>
        ]. Operations have been added for the Transport Company class: check
the correctness of entering personal data, establish the user's identity, check the
number of passengers, and optimize the number of buses (data identifier: Integer). An
operation has been added for the Company Bus class: go on a flight (). Operations
have been added for the User Interface class: show bus usage statistics, show a page
for entering personal data, and specify the type of transport.
      </p>
      <p>
        Fig. 3 presents a cooperation diagram, which shows not only the sequence of
interaction but also all the structural relationships between the objects involved in this
interaction. In contrast to a sequence diagram, a cooperation diagram shows only the
relationship between objects that play certain roles in the interaction [
        <xref ref-type="bibr" rid="ref24 ref25 ref26 ref27 ref28 ref29 ref30 ref31 ref32">24-32</xref>
        ].
The deployment diagram shows the working copies of the program components, they
are buses that belong to the transport company.
The next task was to calculate the main statistical characteristics of the process:
 minimum number of bus passengers;
 maximum number of bus passengers;
 the average value of the number of bus passengers;
 median;
 variance;
 standard deviation.
      </p>
      <p>The code snippet allows you to calculate all of the above characteristics.
# basic statistical characteristics of the process
print("Min amount of people in bus:",min(dataset.inbus))
print("Max amount of people in bus:",max(dataset.inbus))
print("Mean:",np.mean(dataset.inbus))
print("Median:",np.median(dataset.inbus))
print("Variation:",np.var(list(dataset.inbus)))
print("Standart deviation:",np.std(dataset.inbus))
The results obtained in Fig. 6 allow us to conclude that the minimum of passenger
number in the bus = 0, the maximum is 100 people. The average number of
passengers in the bus is 60 passengers, the median is 73 passengers, the variation = 780.63
and the standard deviation = 27.9..</p>
      <p>Travel time along the entire route by one bus was determined. The distribution of
time between stops was carried out in proportion to the length of the path between
stops.
# time of passing the route by one bus
# time to overcome the route between stops by one bus
dataset['time'] = dataset['next_stop[km]']/40+2/60
time = np.ceil(sum(dataset.time)*60)
dataset['time_min'] = dataset['time']*60
print("Full time of bus on its way:",time)
col=['name', 'time_min']
print("Time interval between bus-stop for one bus:\n",
dataset[col])
For a predetermined λ and bus capacity, we calculate the number of buses on the route
that would maximize the total number of passengers carried per flight.</p>
      <p>The following code snippet performs the above task:</p>
      <p>dataset['queue'][i]=np.ceil(abs(random.expovariate(alpha*(i)/n)))</p>
      <p>dataset.inbus[i]=dataset.inbus[i-1]dataset.comeout[i]+dataset['queue'][i]
if(dataset.inbus[i]&gt;m):
dataset.comein[i] = m-dataset.inbus[i-1]
dataset['queue'][i] =
dataset['queue'][i]-(mdataset.inbus[i-1])</p>
      <p>dataset.inbus[i] = m
else:
dataset['comein'][i]=dataset['queue'][i]
dataset['queue'][i]=0
S+= dataset.comein.sum()
dataset['comeout'][n-1]=dataset['inbus'][n-2]
dataset['inbus'][n-1] = 0
f = 0
if(dataset[dataset['queue']&gt;60].empty):</p>
      <p>
        break
The next step in working with this route will be to work on weekdays and weekends,
as the number of passengers varies. That is, it was necessary to set the dependence of
λ on the hour of the day for weekdays and weekends (including holidays). And
calculate the optimal number of buses on the route for working days and for weekends
(holidays). Fragment of the program:
# number of passengers depending on the day of the week
and the time of day
# optimal number of buses
dataset_time = pd.DataFrame([[0.6,0.4],
[1,0.4],
[1,0.6],
[0.4,0.6],
[0.4,1],
[
        <xref ref-type="bibr" rid="ref1 ref1">1,1</xref>
        ],
[1,0.6],
[0.6,0.6]], columns =
['WorkDay','Weekend'], index =
['6-8','8-10','10-12','1214','14-16','16-18','18-20','20-22'])
count_of_bus = pd.DataFrame(columns
=['WorkDay','Weekend'], index =
['6-8','8-10','1012','12-14','14-16','16-18','18-20','20-22'])
count_of_people = pd.DataFrame(columns
=['WorkDay','Weekend'], index =
['6-8','8-10','1012','12-14','14-16','16-18','18-20','20-22'])
for j in dataset_time.columns:
for k in dataset_time.index:
count = 0
S=0
while(True):
count+=1
#1 зупинка
dataset['comein']=random.randint(2,40)
dataset['comeout'] = 0
dataset['inbus'] = dataset['comein']
dataset['queue'][0]=0
for i in range(1,n): #зупинки
      </p>
      <p>da</p>
    </sec>
    <sec id="sec-3">
      <title>Discussion</title>
      <p>Finally, we find the estimate for the mathematical expectation and construct a
confidence interval that will correspond to a confidence probability = 0.8 for all flights
per day. Fragment of the program:
# score for mathematical expectation
# confidence interval for mathematical expectation
mat_spod = np.mean(count_of_people_in_run)
F= 1.282 #при значенні довірчої імовірності 0.8
D = np.var(count_of_people_in_run)
sigma = pow(D/len(count_of_people_in_run),1/2)
d1 = mat_spod - F * sigma
d2 = mat_spod + F * sigma
print("Math expectation:", mat_spod)
print("Сonfidence interval: (", d1,";", d2, ")")
Fig.13 shows the result of the execution of the above fragment of the program code
for calculation of a point estimation of mathematical expectation and trust probability.
Because of work on optimizing the number of buses on the route, the theory of the
queuing system is introduced. The main characteristics of QMS are considered. In
addition, the end result is a program for analysis and processing of data on one of the
routes of the city bus of the city of Lviv, namely: route number 10, which runs daily
from six o'clock in the morning to ten o'clock in the evening every working day, and
on weekends and holidays. Because of the analysis, the busload on the route is
modeled, the main statistical characteristics of the process on route number 10 were
calculated, and the optimal number of buses on the route is calculated, which would
maximize the total number of passengers per flight. In particular, the developed program
allows you to calculate the optimal number of buses on the route according to the
previously specified criteria for specific hours of the day on weekdays (weekends)
and weekends (including holidays). The work is illustrated by a sufficient number of
schedules of passenger distribution, their dependence on the number of buses,
schedule, etc.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <article-title>System analysis</article-title>
          .
          <source>Theory of queuing</source>
          , er.nau.edu.ua/bitstream/NAU/21000/23/Лекция_CA_
          <fpage>12</fpage>
          .pdf.
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>2. Theory of queuing, studopedia.com.ua/1_133235_teoriya-masovogoobslugovuvannya.html.</mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <given-names>Learn</given-names>
            <surname>Data</surname>
          </string-name>
          <article-title>Science Online. DataCamp, www</article-title>
          .datacamp.com.
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>4. Probability theory, eb.posibnyky.vntu.edu.ua/fitki/4tichinska_teoriya_jmovirnostej/65.htm.</mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Kuzmin</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bublyk</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>Economic evaluation and government regulation of technogenic (man-made) damage in the national economy</article-title>
          .
          <source>In: Computer sciences and information technologies. Proceedings of the XIth International Scientific and Technical Conference (CSIT</source>
          <year>2016</year>
          ),
          <fpage>37</fpage>
          -
          <lpage>39</lpage>
          . (
          <year>2016</year>
          ). DOI: https://doi.org/10.1109/STC-CSIT.
          <year>2016</year>
          .7589863
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <surname>Matseliukh</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vysotska</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bublyk</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>Intelligent system of visual simulation of passenger flows</article-title>
          .
          <source>In: CEUR Workshop Proceedings</source>
          ,
          <volume>2604</volume>
          ,
          <fpage>906</fpage>
          . (
          <year>2020</year>
          ) http://ceur-ws.org/Vol2604/paper60.pdf
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <surname>Bublyk</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Matseliukh</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Motorniuk</surname>
            ,
            <given-names>U.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Terebukh</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>Intelligent system of passenger transportation by autopiloted electric buses in Smart City</article-title>
          .
          <source>In: CEUR Workshop Proceedings</source>
          ,
          <volume>2604</volume>
          ,
          <fpage>1280</fpage>
          . (
          <year>2020</year>
          ) http://ceur-ws.
          <source>org/</source>
          Vol-
          <volume>2604</volume>
          /paper81.pdf
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <surname>Maslak</surname>
            ,
            <given-names>O.I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Moroz</surname>
            ,
            <given-names>O.V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Moroz</surname>
            ,
            <given-names>M.M.:</given-names>
          </string-name>
          <article-title>Specific features of city public transport financing (Kremenchuk case study)</article-title>
          .
          <source>Actual Problems of Economics</source>
          (
          <year>2014</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <surname>Krislata</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Katrenko</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lytvyn</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vysotska</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Burov</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          :
          <article-title>Traffic flows system development for smart city</article-title>
          .
          <source>In: CEUR Workshop Proceedings</source>
          , Vol-
          <volume>2565</volume>
          ,
          <fpage>280</fpage>
          -
          <lpage>294</lpage>
          . (
          <year>2020</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>Katrenko</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Krislata</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Veres</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Oborska</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Basyuk</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vasyliuk</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rishnyak</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Demyanovskyi</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Meh</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          :
          <article-title>Development of Traffic Flows and Smart Parking System for Smart City</article-title>
          .
          <source>In: Computational Linguistics and Intelligent Systems, COLINS, CEUR workshop proceedings</source>
          , Vol-
          <volume>2604</volume>
          ,
          <fpage>730</fpage>
          -
          <lpage>745</lpage>
          . (
          <year>2020</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>Peleshko</surname>
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rak</surname>
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lytvyn</surname>
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vysotska</surname>
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Noennig</surname>
            <given-names>J</given-names>
          </string-name>
          .:
          <article-title>Drone monitoring system DROMOS of urban environmental dynamics</article-title>
          .
          <source>In: CEUR Workshop Proceedings, Vol2565</source>
          ,
          <fpage>178</fpage>
          -
          <lpage>19</lpage>
          . (
          <year>2020</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>Lytvyn</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kowalska-Styczen</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Peleshko</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rak</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Voloshyn</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Noennig</surname>
            ,
            <given-names>J. R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vysotska</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Nykolyshyn</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Pryshchepa</surname>
          </string-name>
          , H.:
          <article-title>Aviation Aircraft Planning System Project Development</article-title>
          .
          <source>In: Advances in Intelligent Systems and Computing IV</source>
          , Springer, Cham,
          <volume>1080</volume>
          ,
          <fpage>315</fpage>
          -
          <lpage>348</lpage>
          . (
          <year>2020</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <string-name>
            <surname>Lytvyn</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dmytriv</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Berko</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Alieksieiev</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Basyuk</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Noennig</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Peleshko</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rak</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Voloshyn</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          :
          <article-title>Conceptual Model of Information System for Drone Monitoring of Trees' Condition</article-title>
          .
          <source>In: Computational Linguistics and Intelligent Systems, COLINS, CEUR workshop proceedings</source>
          , Vol-
          <volume>2604</volume>
          ,
          <fpage>695</fpage>
          -
          <lpage>714</lpage>
          . (
          <year>2020</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          14.
          <string-name>
            <surname>Alieksieiev</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Markovych</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          :
          <article-title>Implementation of UAV for environment monitoring of a Smart City with an airspace regulation by AIXM-format data streaming</article-title>
          .
          <source>In: Industry 4</source>
          .0”
          <string-name>
            <surname>-</surname>
          </string-name>
          Scientific-Technical
          <source>Union of Mechanical Engineering “Industry</source>
          <volume>4</volume>
          .0”, Sofia, Bulgaria,
          <volume>5</volume>
          (
          <issue>2</issue>
          /
          <year>2020</year>
          ),
          <fpage>90</fpage>
          -
          <lpage>93</lpage>
          . (
          <year>2020</year>
          ), https://stumejournals.com/journals/i4/
          <year>2020</year>
          /2/90
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          15.
          <string-name>
            <surname>Kunanets</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Matsiuk</surname>
          </string-name>
          , H.:
          <article-title>Use of the Smart City Ontology for Relevant Information Retrieval</article-title>
          .
          <source>In: CEUR Workshop Proceedings</source>
          , Vol-
          <volume>2362</volume>
          ,
          <fpage>322</fpage>
          -
          <lpage>333</lpage>
          . (
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          16.
          <string-name>
            <surname>Batiuk</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vysotska</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lytvyn</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          :
          <article-title>Intelligent System for Socialization by Personal Interests on the Basis of SEO-Technologies and Methods of Machine Learning</article-title>
          .
          <source>In: CEUR workshop proceedings</source>
          , Vol-
          <volume>2604</volume>
          ,
          <fpage>1237</fpage>
          -
          <lpage>1250</lpage>
          . (
          <year>2020</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          17.
          <string-name>
            <surname>Kravets</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lytvyn</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vysotska</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Burov</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          :
          <article-title>Promoting training of multi-agent systems</article-title>
          .
          <source>In: CEUR Workshop Proceedings</source>
          , Vol-
          <volume>2608</volume>
          ,
          <fpage>364</fpage>
          -
          <lpage>378</lpage>
          . (
          <year>2020</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          18.
          <string-name>
            <surname>Lytvyn</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vysotska</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Osypov</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Slyusarchuk</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Slyusarchuk</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          :
          <article-title>Development of intellectual system for data de-duplication and distribution in cloud storage</article-title>
          .
          <source>In: Webology</source>
          ,
          <volume>16</volume>
          (
          <issue>2</issue>
          ), pp.
          <fpage>1</fpage>
          -
          <lpage>42</lpage>
          . (
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          19.
          <string-name>
            <surname>Vysotsky</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lytvyn</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vysotska</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dosyn</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lyudkevych</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Antonyuk</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Naum</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vysotskyi</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chyrun</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Slyusarchuk</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          :
          <article-title>Online Tourism System for Proposals Formation to User Based on Data Integration from Various Sources</article-title>
          .
          <source>In: Proceedings of the International Conference on Computer Sciences and Information Technologies</source>
          , CSIT,
          <fpage>92</fpage>
          -
          <lpage>97</lpage>
          . (
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          20.
          <string-name>
            <surname>Lytvyn</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vysotska</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Veres</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rishnyak</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rishnyak</surname>
          </string-name>
          , H.:
          <article-title>The Risk Management Modelling in Multi Project Environment.</article-title>
          .
          <source>In: Proceedings of the International Conference on Computer Sciences and Information Technologies</source>
          , CSIT,
          <fpage>32</fpage>
          -
          <lpage>35</lpage>
          . (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          21.
          <string-name>
            <surname>Su</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sachenko</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lytvyn</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vysotska</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dosyn</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          :
          <article-title>Model of Touristic Information Resources Integration According to User Needs</article-title>
          .
          <source>In: Proceedings of the International Conference on Computer Sciences and Information Technologies</source>
          , CSIT,
          <fpage>113</fpage>
          -
          <lpage>116</lpage>
          . (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          22.
          <string-name>
            <surname>Lytvyn</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vysotska</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Burov</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Demchuk</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          :
          <article-title>Architectural ontology designed for intellectual analysis of e-tourism resources</article-title>
          .
          <source>In: Proceedings of the International Conference on Computer Sciences and Information Technologies</source>
          , CSIT,
          <fpage>335</fpage>
          -
          <lpage>338</lpage>
          . (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          23.
          <string-name>
            <surname>Antonyuk</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vysotsky</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vysotska</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lytvyn</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Burov</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Demchuk</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lyudkevych</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chyrun</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chyrun</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          , Bobyk, І.:
          <article-title>Consolidated Information Web Resource for Online Tourism Based on Data Integration and Geolocation</article-title>
          .
          <source>In: Proceedings of the International Conference on Computer Sciences and Information Technologies</source>
          , CSIT,
          <fpage>15</fpage>
          -
          <lpage>20</lpage>
          . (
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          24.
          <string-name>
            <surname>Artemenko</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Pasichnyk</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kunanets</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Shunevych</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          :
          <article-title>Using sentiment text analysis of user reviews in social media for e-tourism mobile recommender systems</article-title>
          .
          <source>In: Computational Linguistics and Intelligent Systems, COLINS, CEUR workshop proceedings, Vol2604</source>
          ,
          <fpage>259</fpage>
          -
          <lpage>271</lpage>
          . (
          <year>2020</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref25">
        <mixed-citation>
          25.
          <string-name>
            <surname>Shakhovska</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Shakhovska</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Fedushko</surname>
            ,
            <given-names>S.:</given-names>
          </string-name>
          <article-title>Some Aspects of the Method for Tourist Route Creation</article-title>
          .
          <source>In: Advances in Artificial Systems for Medicine and Education II</source>
          ,
          <volume>902</volume>
          ,
          <fpage>527</fpage>
          -
          <lpage>537</lpage>
          . (
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref26">
        <mixed-citation>
          26.
          <string-name>
            <surname>Antonyuk</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Medykovskyy</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chyrun</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dverii</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Oborska</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Krylyshyn</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vysotsky</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Tsiura</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Naum</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          :
          <article-title>Online Tourism System Development for Searching and Planning Trips with User's Requirements</article-title>
          .
          <source>In: Advances in Intelligent Systems and Computing IV, Springer Nature Switzerland AG</source>
          <year>2020</year>
          ,
          <volume>1080</volume>
          ,
          <fpage>831</fpage>
          -
          <lpage>863</lpage>
          . (
          <year>2020</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref27">
        <mixed-citation>
          27.
          <string-name>
            <surname>Lozynska</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Savchuk</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Pasichnyk</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          :
          <article-title>Individual Sign Translator Component of Tourist Information System</article-title>
          .
          <source>In: Advances in Intelligent Systems and Computing IV, Springer Nature Switzerland AG 2020</source>
          , Springer, Cham,
          <volume>1080</volume>
          ,
          <fpage>593</fpage>
          -
          <lpage>601</lpage>
          . (
          <year>2020</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref28">
        <mixed-citation>
          28.
          <string-name>
            <surname>Savchuk</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lozynska</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Pasichnyk</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          :
          <article-title>Architecture of the Subsystem of the Tourist Profile Formation</article-title>
          .
          <source>In: Advances in Intelligent Systems and Computing</source>
          ,
          <volume>871</volume>
          ,
          <fpage>561</fpage>
          -
          <lpage>570</lpage>
          . (
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref29">
        <mixed-citation>
          29.
          <string-name>
            <surname>Stoyanova-Doycheva</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ivanova</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Glushkova</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Stoyanov</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          , &amp;
          <string-name>
            <surname>Radeva</surname>
          </string-name>
          , I.:
          <article-title>dynamic generation of cultural routes in a tourist guide</article-title>
          .
          <source>International Journal of Computing</source>
          ,
          <volume>19</volume>
          (
          <issue>1</issue>
          ),
          <fpage>39</fpage>
          -
          <lpage>48</lpage>
          . (
          <year>2020</year>
          ). http://computingonline.net/computing/article/view/1691
        </mixed-citation>
      </ref>
      <ref id="ref30">
        <mixed-citation>
          30.
          <string-name>
            <surname>Berko</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Alieksieiev</surname>
          </string-name>
          , V.:
          <article-title>A Method to Solve Uncertainty Problem for Big Data Sources</article-title>
          .
          <source>In: International Conference on Data Stream Mining and Processing</source>
          , DSMP,
          <fpage>32</fpage>
          -
          <lpage>37</lpage>
          . (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref31">
        <mixed-citation>
          31.
          <string-name>
            <surname>Berko</surname>
            ,
            <given-names>A.Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Aliekseyeva</surname>
            ,
            <given-names>K.A.</given-names>
          </string-name>
          :
          <article-title>Quality evaluation of information resources in webprojects</article-title>
          . In: Actual Problems of Economics,
          <volume>136</volume>
          (
          <issue>10</issue>
          ),
          <fpage>226</fpage>
          -
          <lpage>234</lpage>
          . (
          <year>2012</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref32">
        <mixed-citation>
          32.
          <string-name>
            <surname>Berko</surname>
          </string-name>
          , A.Y.:
          <article-title>Models of data integration in open information systems</article-title>
          . In: Actual Problems of Economics, (
          <volume>10</volume>
          ),
          <fpage>147</fpage>
          -
          <lpage>152</lpage>
          . (
          <year>2010</year>
          )
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>