<?xml version="1.0" encoding="UTF-8"?>
<TEI xml:space="preserve" xmlns="http://www.tei-c.org/ns/1.0" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://www.tei-c.org/ns/1.0 https://raw.githubusercontent.com/kermitt2/grobid/master/grobid-home/schemas/xsd/Grobid.xsd"
 xmlns:xlink="http://www.w3.org/1999/xlink">
	<teiHeader xml:lang="en">
		<fileDesc>
			<titleStmt>
				<title level="a" type="main">Cloud-based software tools for the rapid development of web GIS</title>
			</titleStmt>
			<publicationStmt>
				<publisher/>
				<availability status="unknown"><licence/></availability>
			</publicationStmt>
			<sourceDesc>
				<biblStruct>
					<analytic>
						<author>
							<persName><forename type="first">Maxim</forename><forename type="middle">I</forename><surname>Malimonov</surname></persName>
							<affiliation key="aff0">
								<orgName type="department">Federal Research Center Krasnoyarsk Science Center SB RAS</orgName>
								<address>
									<settlement>Krasnoyarsk</settlement>
									<country key="RU">Russia</country>
								</address>
							</affiliation>
						</author>
						<author>
							<persName><forename type="first">Oleg</forename><forename type="middle">E</forename><surname>Yakubailik</surname></persName>
							<affiliation key="aff1">
								<orgName type="department">Institute of Computational Modelling SB RAS</orgName>
								<address>
									<settlement>Krasnoyarsk</settlement>
									<country key="RU">Russia</country>
								</address>
							</affiliation>
						</author>
						<title level="a" type="main">Cloud-based software tools for the rapid development of web GIS</title>
					</analytic>
					<monogr>
						<idno type="ISSN">1613-0073</idno>
					</monogr>
					<idno type="MD5">091B9F48CDD9E912722379A183CCF789</idno>
				</biblStruct>
			</sourceDesc>
		</fileDesc>
		<encodingDesc>
			<appInfo>
				<application version="0.7.2" ident="GROBID" when="2023-03-23T21:25+0000">
					<desc>GROBID - A machine learning software for extracting information from scholarly documents</desc>
					<ref target="https://github.com/kermitt2/grobid"/>
				</application>
			</appInfo>
		</encodingDesc>
		<profileDesc>
			<textClass>
				<keywords>
					<term>JavaScript</term>
					<term>JSON</term>
					<term>vue.js</term>
					<term>Web GIS</term>
					<term>geospatial data</term>
					<term>web mapping</term>
					<term>thematic layer</term>
					<term>geoportal</term>
				</keywords>
			</textClass>
			<abstract>
<div xmlns="http://www.tei-c.org/ns/1.0"><p>The article discusses methods for building geospatial web applications based on the ICM SB RAS geoportal resources. The sources of information for them are two types of data: web-service-based cartographic layers and data from the operational monitoring sub-system. The developed instrumental software allows you to select data on the geoportal, form, and configure the user interface. The modular structure and functional capabilities of the developed system are considered.</p></div>
			</abstract>
		</profileDesc>
	</teiHeader>
	<text xml:lang="en">
		<body>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="1.">Introduction</head><p>With the development of web technologies, ordinary users can work with various information, using programs and web applications as tools for analysis and viewing. Basically, such an application is a web browser, which allows you to use information systems without pre-installation. The web environment serves as an excellent basis for development, having many software tools in its field that allow you to create user interfaces, components, and applications.</p><p>Despite the variety, there are few solutions for the rapid development of geoinformation web systems. One of them is the ArcGIS Web AppBuilder, which allows you to download various resources, interact with them using a wide library of tools, configure the user interface, change the layer's attribute information, etc. It should also be noted NASA products, for example, Worldview or TerriaJS from Terria and many other geoportals <ref type="bibr" target="#b0">[1,</ref><ref type="bibr" target="#b1">2,</ref><ref type="bibr" target="#b2">3]</ref>. These websites allow you to view the available ready-made resources, but, unfortunately, they can only be viewed and cannot be affected or changed in any way. In this regard, there is a need to develop a tool for deploying applied web GIS. This article demonstrates a system for building GIS-oriented applications in a web environment with a flexibly customizable user interface and providing various functionality: creating and editing projects, uploading and editing various resources, connecting customizable components for interacting with data.</p><p>Currently, the possibilities for visualization and analysis of operational environmental monitoring of air in the city of Krasnoyarsk using the developed software components have been </p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2.">Software structure</head><p>The developed software consists of several modules. A module is a complete functional fragment of a program. It is designed as a separate file with the source code or a continuous part. A module consists of a single file containing its own logic, imported libraries, files or components, and blocks for defining HTML, CSS, and JavaScript.</p><p>There are three large modules in the system, which are divided into smaller parts. The first module is "Personal Account". It is responsible for the user's login and for editing user data. The second block is "Project Manager". It allows the user to view existing projects, create new ones and edit information about their projects. The third module is the "Workspace". It allows you to display various available resources from the ICM SB RAS geoportal on the map, change their display style, set different classes with the style and display conditions, etc. All modules are connected to two databases: the ICM SB RAS and the project repository.</p><p>Each parent module has several children. For all child modules, there are single layouts for display, depending on the parent module. There are static and dynamic parts, which are then displayed as a page. The "Personal Account" has its own layout, in which all child elements are already displayed, and the "Project Manager" also has its own layout. When changing the selected child module, the necessary data is transferred from the parent to the child, and the module is selected in the dynamic part of the layout. Figure <ref type="figure" target="#fig_0">1</ref> shows the process of forming a daughter module from dependent components.</p><p>The navigation menu is displayed in the static part of the layout. When you select a menu item, the dynamic part changes. The child module of the selected menu item is merged in it. Figure <ref type="figure" target="#fig_1">2</ref> shows the process of forming a page based on child modules for display.</p><p>There are two databases that the system communicates with. The first one is the database of the system itself. This database stores the created projects and copies the users who are part of  the ICM SB RAS geoportal to not create separate users for the geoportal and the application building system. The second is the database of the ICM SB RAS geoportal. It is a huge dataset, including data from the environmental monitoring network of the Krasnoyarsk Scientific Center. All interactions are carried out using the REST-based geoportal API <ref type="bibr" target="#b3">[4]</ref>. Figure <ref type="figure" target="#fig_2">3</ref> shows the system's modular structure, the communication of the three functional modules with each other, and how they communicate between the two databases.</p><p>The MongoDB database is used to store system information for deploying application applications. MongoDB is a documented database management system that uses the JSON format for storing data. Two data collections have been created in the developed database. The first collection is responsible for storing information about users; the second one is for storing projects. The author's name is used to link users to their projects. It searches for owned projects and opens access to editing them.</p><p>The system works using Node, Vue, and the MongoDB database. Node is a software platform based on the V8 engine that allows you to use the JavaScript programming language as a general-purpose language. This means that JavaScript can be used to build web pages and interact with them and implement a server <ref type="bibr" target="#b4">[5]</ref>. The web application itself cannot access the database and process various requests from the user. To do this, a server is used, to which various requests and user actions are transmitted from the web application.</p><p>Figure <ref type="figure" target="#fig_3">4</ref> shows the interaction of these three components. As shown in the figure, the web  application sends requests from the user to the server (Download the project, Save the project, Get project metadata, Get user data, etc.), then the server processes the requests and forms a request to the database. The response is returned along the chain to the user. Requests from the user are formed according to the architectural style of interaction between REST components that use HTTP requests.</p><p>The server can process the following requests and perform certain actions:</p><p>• Request for registration. The same login and password are used to access the geoportal of the ICM SB RAS and the system. If the login was successful, but you were not previously registered in the system, the system will notify you about this and create a new user record and a place in the database for storing projects. Then you will be redirected to a page where you will need to fill in information about the user. • Login request. If the login is successful, and you have previously logged in, then you will be immediately redirected to the page with all the projects. • Request for projects. The result of the request is a list of projects from the database. • Save request. As a result of this request, the project is saved from the "Workspace" or from the "Project Manager".</p><p>The user interface is built on a JavaScript framework Vue.js. Inside this framework, all work and communication between components are carried out according to the MVVM template. This template allows you to separate the model and views to change them separately from each other. The MVVM template is divided into three parts:</p><p>• Model describes the data used in the application and may also contain various logic associated with this data. It is the foundation for the necessary operation of the application. • View is a graphical interface. The view can be subscribed to data update events, property changes, etc. If the property has changed, this is reported to all subscribers, and the View requests the updated values from the Model. • View Mode contains the Model converted to the View and commands that the View can use to influence the Model.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3.">Developed software functionality</head><p>The system allows you to request various cartographic resources available on the ICM SB RAS geoportal. This includes resources related to administrative borders, water systems, operational monitoring, etc. There is a separate database of the ICM SB RAS, which stores operational environmental monitoring data. Various data from monitoring posts: wind speed and direction, temperature, humidity, pressure, PM2.5, AQI, MPC fractions, etc. Based on these data, we will consider the operation of the system. Working with the system begins with the "Personal Account" module, where you need to enter your username and password. After logging in and receiving a key from the server to access various remote resources, the transfer is made to the "Project Manager" module. This module requests the database with projects through the server; the server returns a list of all available projects to the user. As mentioned earlier, now, there are only four child modules of the "Project Manager", three of which are displayed as a page, and the user can interact with them -this is the display of existing projects, editing, and creating projects. The fourth module works only if the user clicked "go" on the project card, and this module executes a request to get the project structure and transmits data to the "Workspace". At the moment, the module "Creating a project" is of interest. "Creating a project" -is a page with the initial parameters of the project:</p><formula xml:id="formula_0">• project name; • project Description; • initial substrate;</formula><p>• camera coordinates;</p><p>• zoom in on the camera; • project coordinate system.</p><p>After filling out the form, the user opens the "Workspace" module. This module is a page with two menu panels and a map. The first panel, attached at the top, displays the project name and a button to return to all projects. The second one, attached to the left, displays the active layers of the project and tools. When you click on "Layers", a submenu opens with the ability to add various cartographic resources from the ICM SB RAS geoportal.</p><p>It should be noted that today there are many tools and ready-made systems that offer visualization services and analytical processing of operational monitoring data <ref type="bibr" target="#b5">[6,</ref><ref type="bibr" target="#b6">7,</ref><ref type="bibr" target="#b7">8,</ref><ref type="bibr" target="#b8">9,</ref><ref type="bibr" target="#b9">10]</ref>. The features of the proposed implementation will be discussed below.</p><p>Let's consider the cartographic resources from the "Operational monitoring data" database and build a small project to display data from monitoring posts included in operational monitoring. For example, we will display temperature data for a month. In the beginning, you need to click on the "Layers" panel and click on the "+ Add layer" button. In the menu that appears, please select the posts that interest us and close the add menu. In this example, the monitoring posts "Peschanka", "Pokrovka", "Sverdlovsky", "Svetly", "Solontsy" will be used.</p><p>In the "Layers" menu, the selected monitoring posts will appear as separate layers, and when you click on such a layer, the settings menu will open. You can configure the layer's behavior in this menu, the display style (marker color, rotation angle, offset, etc.), classes, projection, etc. Let's look at the operation of the system using the example of temperature data. There is a tab "Data" in which all available data of the layer's monitoring post or tabular data is displayed. Select the item "Temperature". Such systems use coloring depending on the temperature. This coloring can be configured in the "Classes" menu in the settings and set the conditions for which values this class will be triggered.</p><p>Let's take the temperature range from −30 degrees to +30 and set the step to 10 degrees. You will need only 8 classes with their own coloring. Two classes will be responsible for temperatures outside this range. One class corresponds to a temperature that is less than −30. The other class corresponds to a temperature that is greater than +30. Let's call the classes names that will reflect the ranges. Figure <ref type="figure" target="#fig_4">5</ref> shows the class menu. After adding all the classes, you need to configure the display style of each class and set the trigger conditions. Clicking on the class opens a menu with display settings. In this menu, there are settings for different types of layers. Since we are currently working with monitoring posts, the settings for them are the same as for points. There is a small marker constructor that allows you to create composite markers. You can specify the fill and stroke color. Rotation angle, X and Y offset, shape type (circle, square, star, etc.), and text settings. If necessary, you can add several types of shapes to one marker. The interface for setting parameters is shown in the same Figure <ref type="figure" target="#fig_4">5</ref>.</p><p>The next step is to download data from monitoring posts for a certain period. To do this, there is a "Tools" menu where you can select the "Calendar" tool. In the calendar, you need to set the download range and time step. Take, for example, the month of March in one-day increments. The data will be automatically loaded based on the added posts, and will be stored in the system until the page is reloaded. Now you need to add a timeline from the "Tools" menu, which will allow you to switch the selected days and update the information on the map. By moving through the timeline, the layer calculation event is triggered. This event calls the calculation function, in which each layer is taken, and each class in the layer is viewed. All conditions in all classes are checked and compared with previously loaded values. After all this, the selected layers are converted to GeoJSON format, which the OpenLayers library can recognize, and passed to the "Resource Mapping" module. In this module, layers are iterated, and the main style class is applied to them, and the layer is displayed on the map (Figure <ref type="figure" target="#fig_5">6</ref>).</p><p>In order to display all the classes of the layer, without opening the settings each time, there is a "Legend" element, which is added through the menu of the elements. </p></div><figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_0"><head>Figure 1 :</head><label>1</label><figDesc>Figure 1: The scheme of formation of the child module "Editing the display style".</figDesc><graphic coords="2,183.05,515.01,229.16,127.65" type="bitmap" /></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_1"><head>Figure 2 :</head><label>2</label><figDesc>Figure 2: The scheme of forming the layout for displaying.</figDesc><graphic coords="3,183.05,84.19,229.18,279.35" type="bitmap" /></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_2"><head>Figure 3 :</head><label>3</label><figDesc>Figure 3: General system architecture.</figDesc><graphic coords="4,89.29,84.19,416.69,305.09" type="bitmap" /></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_3"><head>Figure 4 :</head><label>4</label><figDesc>Figure 4: The scheme of the system's work with the server and the database for storing the project.</figDesc><graphic coords="4,130.96,428.70,333.35,69.82" type="bitmap" /></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_4"><head>Figure 5 :</head><label>5</label><figDesc>Figure 5: The menu of the layer display classes and the settings of their display parameters.</figDesc><graphic coords="7,89.29,84.19,416.69,249.85" type="bitmap" /></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_5"><head>Figure 6 :</head><label>6</label><figDesc>Figure 6: Thematic map with temperature data at monitoring posts for March 1, 2 and 3.</figDesc><graphic coords="7,89.29,509.73,134.58,111.97" type="bitmap" /></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_0"><head></head><label></label><figDesc>This system is developed using the Node software platform.js, based on the V8 engine, an open source JavaScript framework Vue.js, MongoDB databases.The sources of information are the resources of the geoportal of the Institute of Computational Modeling, Siberian Branch of Russian Academy of Sciences (ICM SB RAS) (http://gis.krasn.ru).</figDesc><table /><note>SDM-2021: All-Russian conference, August 24-27, 2021, Novosibirsk, Russia malimonov.mi@ksc.krasn.ru (M. I. Malimonov); oleg@icm.krasn.ru (O. E. Yakubailik) 0000-0002-2668-4776 (O. E. Yakubailik)implemented.</note></figure>
		</body>
		<back>
			<div type="references">

				<listBibl>

<biblStruct xml:id="b0">
	<analytic>
		<title level="a" type="main">Web GIS in practice VIII: HTML5 and the canvas element for interactive online mapping</title>
		<author>
			<persName><forename type="first">M</forename><surname>Boulos</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Warren</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Gong</surname></persName>
		</author>
		<author>
			<persName><forename type="first">P</forename><surname>Yue</surname></persName>
		</author>
		<idno type="DOI">10.1186/1476-072X-9-14</idno>
	</analytic>
	<monogr>
		<title level="j">International Journal of Health Geographics</title>
		<imprint>
			<biblScope unit="volume">9</biblScope>
			<date type="published" when="2010">2010</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b1">
	<analytic>
		<title level="a" type="main">Open community-based crowdsourcing geoportal for earth observation products: A model design and prototype implementation</title>
		<author>
			<persName><forename type="first">M</forename><surname>Vahidnia</surname></persName>
		</author>
		<author>
			<persName><forename type="first">H</forename><surname>Vahidi</surname></persName>
		</author>
		<idno type="DOI">10.3390/ijgi10010024</idno>
	</analytic>
	<monogr>
		<title level="j">ISPRS International Journal of Geo-Information</title>
		<imprint>
			<biblScope unit="volume">10</biblScope>
			<date type="published" when="2021">2021</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b2">
	<analytic>
		<title level="a" type="main">Integration of knowledge, visualization and dissemination of spatio-temporal data through geoportal systems</title>
		<author>
			<persName><forename type="first">S</forename><surname>Yamashkin</surname></persName>
		</author>
		<author>
			<persName><forename type="first">E</forename><surname>Yamashkina</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Yamashkin</surname></persName>
		</author>
		<idno type="DOI">10.1051/e3sconf/202125803001</idno>
	</analytic>
	<monogr>
		<title level="m">Ural Environmental Science Forum on Sustainable Development of Industrial Region, UESF 2021</title>
				<meeting><address><addrLine>Chelyabinsk</addrLine></address></meeting>
		<imprint>
			<date type="published" when="2021">2021. 2021</date>
			<biblScope unit="volume">258</biblScope>
			<biblScope unit="page">3001</biblScope>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b3">
	<analytic>
		<title level="a" type="main">WEB Geographic Information System and the Hardware and Software Ensuring Rapid Assessment of Air Pollution, Optoelectronics</title>
		<author>
			<persName><forename type="first">O</forename><surname>Yakubailik</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Kadochnikov</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Tokarev</surname></persName>
		</author>
		<idno type="DOI">10.3103/S8756699018030056</idno>
	</analytic>
	<monogr>
		<title level="j">Instrumentation and Data Processing</title>
		<imprint>
			<biblScope unit="volume">54</biblScope>
			<biblScope unit="page" from="243" to="249" />
			<date type="published" when="2018">2018</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b4">
	<analytic>
		<title level="a" type="main">Design and implementation of a wireless sensor network for seismic monitoring of buildings</title>
		<author>
			<persName><forename type="first">J</forename><surname>Jornet-Monteverde</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Galiana-Merino</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Soler-Llorens</surname></persName>
		</author>
		<idno type="DOI">10.3390/s21113875</idno>
	</analytic>
	<monogr>
		<title level="j">Sensors</title>
		<imprint>
			<biblScope unit="volume">21</biblScope>
			<date type="published" when="2021">2021</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b5">
	<analytic>
		<title level="a" type="main">Design and prototype of an interoperable online air quality information system</title>
		<author>
			<persName><forename type="first">S</forename><surname>Wiemann</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Brauner</surname></persName>
		</author>
		<author>
			<persName><forename type="first">P</forename><surname>Karrasch</surname></persName>
		</author>
		<author>
			<persName><forename type="first">D</forename><surname>Henzen</surname></persName>
		</author>
		<author>
			<persName><forename type="first">L</forename><surname>Bernard</surname></persName>
		</author>
		<idno type="DOI">10.1016/j.envsoft.2015.10.028</idno>
	</analytic>
	<monogr>
		<title level="j">Environmental Modelling and Software</title>
		<imprint>
			<biblScope unit="volume">79</biblScope>
			<biblScope unit="page" from="354" to="366" />
			<date type="published" when="2016">2016</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b6">
	<analytic>
		<title level="a" type="main">An interactive web app for retrieval, visualization, and analysis of hydrologic and meteorological time series data</title>
		<author>
			<persName><forename type="first">C</forename><surname>Brendel</surname></persName>
		</author>
		<author>
			<persName><forename type="first">R</forename><surname>Dymond</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Aguilar</surname></persName>
		</author>
		<idno type="DOI">10.1016/j.envsoft.2019.03.003</idno>
	</analytic>
	<monogr>
		<title level="j">Environmental Modelling and Software</title>
		<imprint>
			<biblScope unit="volume">117</biblScope>
			<biblScope unit="page" from="14" to="28" />
			<date type="published" when="2019">2019</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b7">
	<analytic>
		<title level="a" type="main">Design and development of a Web based GIS platform for zero energy settlements monitoring</title>
		<author>
			<persName><forename type="first">K</forename><surname>Gobakis</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Mavrigiannaki</surname></persName>
		</author>
		<author>
			<persName><forename type="first">K</forename><surname>Kalaitzakis</surname></persName>
		</author>
		<author>
			<persName><forename type="first">D.-D</forename><surname>Kolokotsa</surname></persName>
		</author>
		<idno type="DOI">10.1016/j.egypro.2017.09.598</idno>
	</analytic>
	<monogr>
		<title level="m">9th International Conference on Sustainability and Energy in Buildings, SEB 2017</title>
				<meeting><address><addrLine>Chania, Crete</addrLine></address></meeting>
		<imprint>
			<date type="published" when="2017">2017</date>
			<biblScope unit="volume">134</biblScope>
			<biblScope unit="page" from="48" to="60" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b8">
	<analytic>
		<title level="a" type="main">Implementation of a near-real time cross-border web-mapping platform on airborne particulate matter (PM) concentration with opensource software</title>
		<author>
			<persName><forename type="first">A</forename><surname>Knörchen</surname></persName>
		</author>
		<author>
			<persName><forename type="first">G</forename><surname>Ketzler</surname></persName>
		</author>
		<author>
			<persName><forename type="first">C</forename><surname>Schneider</surname></persName>
		</author>
		<idno type="DOI">10.1016/j.cageo.2014.10.003</idno>
	</analytic>
	<monogr>
		<title level="j">Computers and Geosciences</title>
		<imprint>
			<biblScope unit="volume">74</biblScope>
			<biblScope unit="page" from="13" to="26" />
			<date type="published" when="2015">2015</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b9">
	<analytic>
		<title level="a" type="main">Rivervis: A tool for visualising river ecosystems</title>
		<author>
			<persName><forename type="first">F</forename><surname>Mao</surname></persName>
		</author>
		<author>
			<persName><forename type="first">K</forename><surname>Richards</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Toland</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Y</forename><surname>Shi</surname></persName>
		</author>
		<author>
			<persName><forename type="first">D</forename><surname>Hannah</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Krause</surname></persName>
		</author>
		<idno type="DOI">10.1016/j.cageo.2018.11.007</idno>
	</analytic>
	<monogr>
		<title level="j">Computers and Geosciences</title>
		<imprint>
			<biblScope unit="volume">123</biblScope>
			<biblScope unit="page" from="59" to="64" />
			<date type="published" when="2019">2019</date>
		</imprint>
	</monogr>
</biblStruct>

				</listBibl>
			</div>
		</back>
	</text>
</TEI>
