sites
Place property that sets multiple instances of the place type via a csv file.
Synopsis
sites = <sites.csv>
Description
A place property that sets multiple instances of the place type via a csv file. Each row of the file must match the format for individual definitions of a site, i.e. <site_id>
,``<latitude>``,``<longitude>``,``<elevation>``.
Examples
Two sites can be defined for the place, MyPlace
, with the following:
place MyPlace {
sites = sites.csv
}
where sites.csv
contains the following:
0, 40.451164, -79.999803, 230.1
0, 40.626449, -79.723195, 240.5
This process is equivalent to defining the sites using the site
property multiple times:
place MyPlace {
site = 0, 40.451164, -79.999803, 230.1
site = 0, 40.626449, -79.723195, 240.5
}