Skip to content

sites

Syntax

sites = <sites.csv>

Parameters

<sites.csv>
A filepath to a CSV file containing site information.

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. The columns of the CSV are as follows: <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 exists in the working directory and contains the following:

0, 40.451164, -79.999803
0, 40.626449, -79.723195

This process is equivalent to defining the sites using the site property multiple times like so:

place MyPlace {
    site = 0, 40.451164, -79.999803
    site = 0, 40.626449, -79.723195
}

See Also