<!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>Deriving place graphs from spatial databases</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Ehsan Hamzei</string-name>
          <email>ehamzei@student.unimelb.edu.au</email>
          <email>ehamzei@student.unimelb.edu.au Hua Hua Research School of Computer Science Australian National University hua.hua@anu.edu.au Martin Tomko Dept. Infrastructure Engineering University of Melbourne tomkom@unimelb.edu.au</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Hao Chen</string-name>
          <email>hchen@student.unimelb.edu.au</email>
          <email>hchen@student.unimelb.edu.au Maria Vasardani Dept. Infrastructure Engineering University of Melbourne maria.vasardani@unimelb.edu.au Stephan Winter Dept. Infrastructure Engineering University of Melbourne winter@unimelb.edu.au</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Dept. Infrastructure Engineering, University of Melbourne</institution>
        </aff>
      </contrib-group>
      <fpage>25</fpage>
      <lpage>32</lpage>
      <abstract>
        <p>A place graph is an abstract representation of human place knowledge, which models spatial references. A place graph can be used for various tasks that rely on reasoning and querying of the stored knowledge. In related work, place graphs were constructed from parsing natural language place descriptions using language processing techniques. In this research, we present an innovative approach to derive place graphs from information stored in spatial databases, with a demonstration using OpenStreetMap data. The approach provides a complementary way to generating place graphs from natural language descriptions.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>Introduction</title>
      <p>descriptions can be di cult to collect for all desired environments, we seek alternative ways to generate place
graphs.</p>
      <p>As shown in Figure 2, a GIS, a place description, and a place graph are alternative representations of place
knowledge. Most current approaches derive place graphs from NL descriptions and link places in the graphs to a
GIS through georeferencing, as indicated by the three solid arrows. This research focuses on one of the missing
links, as shown by the dashed arrows i.e., deriving place graphs from GIS. In the future, this can be combined
with techniques to generate NL place descriptions from place graphs, thus resolving generating place descriptions
from GIS. Completing the circle can smooth and simplify human-computer interaction in terms of translating
place knowledge among di erent representations.</p>
      <p>This research will investigate methods to derive place graphs from spatial databases (e.g., a GIS), where places
are represented by features with either point, polyline, or polygon geometry. Accordingly, the hypothesis of this
paper is that place graphs can be generated from information stored in spatial databases. The task is not trivial
although computing qualitative spatial relationships (in the approach below, topological and directional ones) is
straight-forward; the real challenge is to derive place graphs in a way that is similar to how people cognitively
represent and communicate about place and their spatial relationships.</p>
      <p>The rest of this paper is structured as follows: In Section 2 we review related work. In Section 3 our approach
for deriving place graphs from spatial databases is presented. Section 4 explains the implementation and a case
study using OpenStreetMap data, as well as a discussion of the obtained results. Section 5 concludes this work.
2</p>
    </sec>
    <sec id="sec-2">
      <title>Related Work</title>
      <p>
        Place based research is an emerging eld in GIScience, and its importance has been widely acknowledged
        <xref ref-type="bibr" rid="ref11 ref12 ref13 ref20 ref7 ref8">(Goodchild, 2007, 2011; Winter et al., 2016)</xref>
        . The goal is to facilitate human-computer interactions through modeling
and utilizing place-related information. For example, Egenhofer and Mark (1995) suggested the term Nave
Geography to capture and re ect the way that non-expert think and reason about space and time.
      </p>
      <p>
        Vasardani et al. (2013) focus on locative expressions | parts of NL descriptions that provide location
information of a place reference using a spatial relation to another place as landmark, e.g., \the lawn is in front
of the library". Each locative expression can be modeled by a triplet, and triplets can be extracted automatically
from place descriptions using existing NL parsers
        <xref ref-type="bibr" rid="ref15">(Liu et al., 2014)</xref>
        . Place graphs can then be constructed from
such triplets automatically
        <xref ref-type="bibr" rid="ref11 ref12 ref13">(Kim et al., 2016a)</xref>
        . Each triplet is stored by two nodes in a place graph, one each
for the locatum and the relatum, and an edge for the spatial relation. A place graph can be constructed from
multiple descriptions, in which case place references identi ed for the same place are stored in one node (merged)
        <xref ref-type="bibr" rid="ref11 ref12 ref13">(Kim et al., 2016c)</xref>
        . Thus, the place graph can be considered as a model of collective human place knowledge
extracted from NL descriptions
        <xref ref-type="bibr" rid="ref11 ref12 ref13">(Kim et al., 2016b)</xref>
        . Compared to the object- (e.g., in a gazetteer) and
eldbased models (e.g.,
        <xref ref-type="bibr" rid="ref10">(Jones et al., 2008)</xref>
        ) of places, the place graph additionally captures the network dimension
        <xref ref-type="bibr" rid="ref14">(Kuhn, 2012)</xref>
        of place information. Place graphs have been used for various tasks such as georeferencing
        <xref ref-type="bibr" rid="ref2">(Chen
et al., 2017)</xref>
        , or landmark extraction
        <xref ref-type="bibr" rid="ref11 ref12 ref13">(Kim et al., 2016b)</xref>
        in previous studies.
      </p>
      <p>
        This research is informed by human reasoning and communication about places and spatial relationships.
Richter et al. (2013) collected and analyzed NL place descriptions and found that people tend to describe places
in a hierarchical manner | a property that has also been observed in the organization of cognitive maps
        <xref ref-type="bibr" rid="ref9">(Hirtle
and Jonides, 1985)</xref>
        . We capture such hierarchical structures using containment relationships between places.
Our approach also considers directional relationships, another type of qualitative spatial relationships widely
studied in spatial cognition and AI (e.g., Freksa (1992); Frank (1992)). Miller (1956) convincingly argued that
human short-term memory capacity is limited and approximately bounded to seven plus/minus two units of
information. Hence, in this study, this limitation is used as a threshold for grouping places before investigating
their qualitative spatial relationships.
3
      </p>
    </sec>
    <sec id="sec-3">
      <title>Approach</title>
      <p>Figure 3 shows the sequence of processing for creating place graphs from data stored in spatial databases. The
proposed approach consists of three steps: (1) the extraction of a hierarchical structure based on containment
relationships, (2) updating the hierarchy using a quad-tree strategy, and (3) the extraction of qualitative spatial
relationships from quantitative data. Up till now, place graphs were the result of processed NL descriptions.
The method suggested here is built upon cognitive studies in order to produce place graphs that resemble those
from people's descriptions, i.e., not necessarily complete, but with relatively few, salient relationships between
places. Compared to a complete, fully connected graph, the produced place graph is smaller in storage size (thus
allowing for faster querying) and better captures the way people tend to describe places in a given environment.
It is worth noting that using qualitative spatial reasoning non-stored relationships can be inferred.
The rst step generates a hierarchical structure, represented by containment relationships between places. The
hierarchy is created in two sequential steps using Algorithm 1. First, the containment relationships between each
pair of polygons are checked, to form a containment network. Then, the containment network is pruned into a
hierarchical structure.
3.2</p>
      <sec id="sec-3-1">
        <title>Updating the hierarchy using a quad-tree strategy</title>
        <p>
          After creating the hierarchical structure, a quad-tree strategy is applied to update the hierarchy by creating
intermediate nodes. The idea behind these intermediate nodes is cognitively motivated, based on the limited
human short-term memory span. As mentioned earlier, Miller (1956) argues that human capacity for processing
information is limited to approximately seven plus/minus two elements. Hence, if a node contains more than a
xed number of nodes ( ve in this research), the polygon associated with the node is divided into four polygons
based on its centroid, using a quad-tree. These polygons are linked to intermediate nodes that are placed between
a node and its contained nodes in the updated hierarchical structure. Then, the containment relationships
between the contained nodes and intermediate nodes are checked. Finally, the relationships will be pruned to
maintain the hierarchical structure. This process iteratively updates the hierarchy to a new version until each
node, including intermediate nodes, has no more than ve contained child nodes in the hierarchy. Algorithm 2
shows how the quad-tree strategy is used in updating the hierarchy.
Algorithm 1 generating the hierarchical structure
In this step, the updated hierarchical structure is used for further populating topological and directional
relationships. For each pair of sibling nodes in the hierarchy, their cardinal direction relationship, e.g., `north' or `east',
and topological relationship, e.g., `overlap' or `meet'
          <xref ref-type="bibr" rid="ref3">(Egenhofer and Franzosa, 1991)</xref>
          , are determined, based on
their geometries. Finally, a place graph is created with nodes from the hierarchy and the derived relationships.
Algorithm 3 shows the process from the hierarchical structure to the place graph.
4
4.1
        </p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>Experimental Results</title>
      <sec id="sec-4-1">
        <title>Implementation</title>
        <p>The proposed approach is implemented as a toolbox for creating place graphs using OpenStreetMap (OSM)
data. Figure 4 shows the work ow of creating place graphs from OSM maps. First, by de ning the target area
and using OSM API, the input data is gathered in XML format. Then, by parsing the XML le, polygons are
extracted for further analysis. Next, the previously described approach is used to generate a place graph from
the extracted polygons (in this research we do not consider places with polyline or point geometries). Finally,
the results are stored in a graph-based place database. In this study, Neo4j Community version and Gephi are
used as the graph-based database and graph visualizer, respectively.
4.2</p>
      </sec>
      <sec id="sec-4-2">
        <title>Experiments</title>
        <p>Three experiments are designed to test the approach for creating place graphs in di erent map scales.
Neighborhoods of Melbourne Cricket Ground, neighborhoods of Melbourne CBD, and the Greater Melbourne area
are considered as geographic areas of interest. These experiments are conducted to show the e ectiveness of
Algorithm 3 generating place graph
the proposed approach for generating place graphs at di erent scales. The extracted polygons are processed to
produce the place graphs. The geographic areas and the produced place graphs are shown in Figure 5.</p>
        <p>
          The approach is compared to a baseline method that creates fully connected graphs. In a fully connected
graph, every pair of nodes is connected with two di erent edges, one for cardinal direction and the other for
topological relationships. Equation 1 allows to determine the number of edges in a fully connected graph. The
number of edges depends on how the graph is stored. Hence, equation 1 is held when topological and directional
relationships are stored separately. Figure 6 shows the number of edges and nodes for the proposed approach
and the fully connected graph method. The number of nodes in our method is slightly higher than the fully
connected graph due to the intermediate nodes resulting from the quad-tree strategy. However, the number
of edges is much lower in the proposed approach compared to the fully connected graph method. Hence, the
graphs resulting from our approach require comparatively less storage. It is worth noting that there is not any
information loss in the extracted place graph compared to the fully connected graph. This is because every
relationship in the fully connected graph either also exists in the extracted place graph, or can be inferred using
qualitative spatial reasoning. Moreover, the proposed method is based on cognitive constraints | the limitation
of short-term memory
          <xref ref-type="bibr" rid="ref16">(Miller, 1956)</xref>
          and the hierarchical structure of places in human cognitive maps
          <xref ref-type="bibr" rid="ref9">(Hirtle
and Jonides, 1985)</xref>
          .
        </p>
        <p>
          numberOf Edges = numberOf N odes
(numberOf N odes
1)
(1)
This paper proposes an innovative approach to generate place graphs from spatial databases. In the place
graphs generated, containment relations are represented in a hierarchical structure, with topological and cardinal
direction relations captured between sibling nodes. The approach considers various cognitive factors of how
people think about and describe places, as well as their spatial relationships. It also considers the limitation
of human short-term memory and the hierarchical structure of places in human cognitive maps. It is the rst
attempt to derive place graphs from spatial databases. In future work, we plan to consider deriving qualitative
distance relationships, e.g., `near', from spatial databases, for example based on contrast set theory
          <xref ref-type="bibr" rid="ref19">(Winter and
Freksa, 2012)</xref>
          ; as well as to derive relative direction relationships, e.g., `in front of' or `left of', by considering the
di erent frames of reference and points of view used in place descriptions. In addition, testing the closeness of
the extracted place graphs from di erent sources, NL place descriptions and spatial databases, can be another
future work of this study.
        </p>
      </sec>
      <sec id="sec-4-3">
        <title>Acknowledgements</title>
        <p>The support by the Australian Research Council grant DP170100109 is acknowledged.</p>
      </sec>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          <string-name>
            <given-names>Hao</given-names>
            <surname>Chen</surname>
          </string-name>
          , Maria. Vasardani, and
          <string-name>
            <given-names>Stephan</given-names>
            <surname>Winter</surname>
          </string-name>
          .
          <article-title>Maintaining relational consistency in a graph-based place database</article-title>
          .
          <source>In Proceedings of Research@Locate 15. Locate15</source>
          ,
          <year>2015</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          <string-name>
            <given-names>Hao</given-names>
            <surname>Chen</surname>
          </string-name>
          , Maria Vasardani, and
          <string-name>
            <given-names>Stephan</given-names>
            <surname>Winter</surname>
          </string-name>
          .
          <article-title>Geo-referencing place from everyday natural language descriptions</article-title>
          .
          <source>arXiv preprint arXiv:1710.03346</source>
          ,
          <year>2017</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          <string-name>
            <given-names>Max J.</given-names>
            <surname>Egenhofer</surname>
          </string-name>
          and
          <string-name>
            <given-names>Robert D.</given-names>
            <surname>Franzosa</surname>
          </string-name>
          .
          <article-title>Point-set topological spatial relations</article-title>
          .
          <source>International Journal of Geographical Information Systems</source>
          ,
          <volume>5</volume>
          (
          <issue>2</issue>
          ):
          <volume>161</volume>
          {
          <fpage>174</fpage>
          ,
          <year>1991</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          <string-name>
            <surname>Max J Egenhofer and David M Mark.</surname>
          </string-name>
          <article-title>Naive geography</article-title>
          .
          <source>In International Conference on Spatial Information Theory</source>
          , pages
          <fpage>1</fpage>
          <lpage>{</lpage>
          15. Springer,
          <year>1995</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          <string-name>
            <surname>Andrew U Frank</surname>
          </string-name>
          .
          <article-title>Qualitative spatial reasoning about distances and directions in geographic space</article-title>
          .
          <source>Journal of Visual Languages &amp; Computing</source>
          ,
          <volume>3</volume>
          (
          <issue>4</issue>
          ):
          <volume>343</volume>
          {
          <fpage>371</fpage>
          ,
          <year>1992</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          <string-name>
            <given-names>Christian</given-names>
            <surname>Freksa</surname>
          </string-name>
          .
          <article-title>Using orientation information for qualitative spatial reasoning</article-title>
          . In Andrew U. Frank, Irene Campari, and Ubaldo Formentini, editors,
          <source>Theories and Methods of Spatio-Temporal Reasoning in Geographic Space</source>
          , volume
          <volume>639</volume>
          of Lecture Notes in Computer Science, pages
          <volume>162</volume>
          {
          <fpage>178</fpage>
          . Springer,
          <year>1992</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          <string-name>
            <given-names>Michael F.</given-names>
            <surname>Goodchild</surname>
          </string-name>
          .
          <article-title>Citizens as sensors: The world of volunteered geography</article-title>
          .
          <source>GeoJournal</source>
          ,
          <volume>69</volume>
          (
          <issue>4</issue>
          ):
          <volume>211</volume>
          {
          <fpage>221</fpage>
          ,
          <year>2007</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          <string-name>
            <given-names>Michael F.</given-names>
            <surname>Goodchild</surname>
          </string-name>
          .
          <article-title>Formalizing place in geographical information systems</article-title>
          . In L. M.
          <string-name>
            <surname>Burton</surname>
            ,
            <given-names>S. P.</given-names>
          </string-name>
          <string-name>
            <surname>Kemp</surname>
          </string-name>
          ,
          <string-name>
            <surname>M.- C. Leung</surname>
            ,
            <given-names>S. A.</given-names>
          </string-name>
          <string-name>
            <surname>Matthews</surname>
          </string-name>
          , and D. T. Takeuchi, editors,
          <source>Communities, Neighborhoods, and Health: Expanding the Boundaries of Place</source>
          , pages
          <volume>21</volume>
          {
          <fpage>35</fpage>
          , New York,
          <year>2011</year>
          . Springer.
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          <string-name>
            <surname>Stephen C Hirtle and John Jonides</surname>
          </string-name>
          .
          <article-title>Evidence of hierarchies in cognitive maps</article-title>
          .
          <source>Memory &amp; Cognition</source>
          ,
          <volume>13</volume>
          (
          <issue>3</issue>
          ):
          <volume>208</volume>
          {
          <fpage>217</fpage>
          ,
          <year>1985</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          <string-name>
            <surname>Christopher B Jones</surname>
          </string-name>
          ,
          <string-name>
            <surname>Ross S Purves</surname>
            ,
            <given-names>Paul D</given-names>
          </string-name>
          <string-name>
            <surname>Clough</surname>
            , and
            <given-names>Hideo</given-names>
          </string-name>
          <string-name>
            <surname>Joho</surname>
          </string-name>
          .
          <article-title>Modelling vague places with knowledge from the web</article-title>
          .
          <source>International Journal of Geographical Information Science</source>
          ,
          <volume>22</volume>
          (
          <issue>10</issue>
          ):
          <volume>1045</volume>
          {
          <fpage>1065</fpage>
          ,
          <year>2008</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          <string-name>
            <given-names>Junchul</given-names>
            <surname>Kim</surname>
          </string-name>
          , Maria Vasardani, and
          <string-name>
            <given-names>Stephan</given-names>
            <surname>Winter</surname>
          </string-name>
          .
          <article-title>From descriptions to depictions: A dynamic sketch map drawing strategy</article-title>
          .
          <source>Spatial Cognition &amp; Computation</source>
          ,
          <volume>16</volume>
          (
          <issue>1</issue>
          ):
          <volume>29</volume>
          {
          <fpage>53</fpage>
          ,
          <year>2016a</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          <string-name>
            <given-names>Junchul</given-names>
            <surname>Kim</surname>
          </string-name>
          , Maria Vasardani, and
          <string-name>
            <given-names>Stephan</given-names>
            <surname>Winter</surname>
          </string-name>
          .
          <article-title>Landmark extraction from web-harvested place descriptions</article-title>
          .
          <source>KI-Kunstliche Intelligenz</source>
          ,
          <volume>2</volume>
          (
          <issue>31</issue>
          ):
          <volume>151</volume>
          {
          <fpage>159</fpage>
          ,
          <year>2016b</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          <string-name>
            <given-names>Junchul</given-names>
            <surname>Kim</surname>
          </string-name>
          , Maria Vasardani, and
          <string-name>
            <given-names>Stephan</given-names>
            <surname>Winter</surname>
          </string-name>
          .
          <article-title>Similarity matching for integrating spatial information extracted from place descriptions</article-title>
          .
          <source>International Journal of Geographical Information Science</source>
          ,
          <volume>1</volume>
          :1{
          <fpage>25</fpage>
          ,
          <year>2016c</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          <string-name>
            <given-names>Werner</given-names>
            <surname>Kuhn</surname>
          </string-name>
          .
          <article-title>Core concepts of spatial information for transdisciplinary research</article-title>
          .
          <source>International Journal of Geographical Information Science</source>
          ,
          <volume>26</volume>
          (
          <issue>12</issue>
          ):
          <volume>2267</volume>
          {
          <fpage>2276</fpage>
          ,
          <year>2012</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          <string-name>
            <given-names>Fei</given-names>
            <surname>Liu</surname>
          </string-name>
          , Maria Vasardani, and
          <string-name>
            <given-names>Timothy</given-names>
            <surname>Baldwin</surname>
          </string-name>
          .
          <article-title>Automatic identi cation of locative expressions from social media text: A comparative analysis</article-title>
          .
          <source>In Dirk Ahlers</source>
          , Erik Wilde, and Bruno Martins, editors,
          <source>4th International Workshop on Location and the Web</source>
          , pages
          <volume>9</volume>
          {
          <fpage>16</fpage>
          . ACM,
          <year>2014</year>
          . ISBN 978-1-
          <fpage>4503</fpage>
          -1459-6.
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          <string-name>
            <given-names>George A</given-names>
            <surname>Miller.</surname>
          </string-name>
          <article-title>The magical number seven, plus or minus two: some limits on our capacity for processing information</article-title>
          .
          <source>Psychological Review</source>
          ,
          <volume>63</volume>
          (
          <issue>2</issue>
          ):
          <fpage>81</fpage>
          ,
          <year>1956</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          <string-name>
            <given-names>Daniela</given-names>
            <surname>Richter</surname>
          </string-name>
          , Stephan Winter,
          <string-name>
            <surname>Kai-Florian Richter</surname>
            , and
            <given-names>Lesley</given-names>
          </string-name>
          <string-name>
            <surname>Stirling</surname>
          </string-name>
          .
          <article-title>Granularity of locations referred to by place descriptions</article-title>
          .
          <source>Computers, Environment and Urban Systems</source>
          ,
          <volume>41</volume>
          :
          <fpage>88</fpage>
          {
          <fpage>99</fpage>
          ,
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          <string-name>
            <given-names>Maria</given-names>
            <surname>Vasardani</surname>
          </string-name>
          , Sabine Timpf, Stephan Winter, and
          <string-name>
            <given-names>Martin</given-names>
            <surname>Tomko</surname>
          </string-name>
          .
          <article-title>From descriptions to depictions: A conceptual framework</article-title>
          .
          <source>In Thora Tenbrink</source>
          , John G. Stell, Antony Galton, and Zena Wood, editors,
          <source>Spatial Information Theory</source>
          , volume
          <volume>8116</volume>
          of Lecture Notes in Computer Science, pages
          <volume>299</volume>
          {
          <fpage>319</fpage>
          . Springer,
          <year>2013</year>
          . ISBN 978-3-
          <fpage>319</fpage>
          -01789-1.
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          <string-name>
            <given-names>Stephan</given-names>
            <surname>Winter</surname>
          </string-name>
          and
          <string-name>
            <given-names>Christian</given-names>
            <surname>Freksa</surname>
          </string-name>
          .
          <article-title>Approaching the notion of place by contrast</article-title>
          .
          <source>Journal of Spatial Information Science</source>
          ,
          <volume>5</volume>
          (
          <issue>1</issue>
          ):
          <volume>31</volume>
          {
          <fpage>50</fpage>
          ,
          <year>2012</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          <string-name>
            <given-names>Stephan</given-names>
            <surname>Winter</surname>
          </string-name>
          , Timothy Baldwin, Jochen Renz,
          <string-name>
            <given-names>Martin</given-names>
            <surname>Tomko</surname>
          </string-name>
          , and
          <string-name>
            <given-names>Werner</given-names>
            <surname>Kuhn</surname>
          </string-name>
          .
          <article-title>Place knowledge as a trans-disciplinary research challenge for geographic information science</article-title>
          . In Jeremy Mennis, editor,
          <source>UCGIS Symposium</source>
          ,
          <year>2016</year>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>