Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 11 additions & 6 deletions docs/Understanding-FLINT/data-preparation/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,12 @@ through:
Raster
~~~~~~

Rasters are a format of spatial files where data is divided evenly into
individual pixels. For the FLINT the raster files must be able to be
Rasters are a format of spatial files, and are composed of square pixels
of equal size. Each pixel is assigned a value. Some raster file formats
are JPEG, JPG, TIFF etc. GeoTIFFs, commonly used in GIS,
are TIFF files that contain spatial reference information.
To represent continuous features like elevation, temperature etc, rasters are preferred.
For the FLINT the raster files must be able to be
queried through two means – through specific coordinates as well as
through an index.

Expand All @@ -102,10 +106,11 @@ without compromising the processing capacity.

Vector
~~~~~~

Vectors are also a format of spatial files for GIS, however, unlike
rasters, the information relates to points, lines or polygons, rather
than pixels. For the FLINT, as a minimum, vector files must…..[TBC]
Vectors are another format of spatial files for GIS. They are composed of
points, lines and polygons which are generated by a set of commands or
mathematical statements. The Shapefile format is a popular geospatial vector data format.
To represent discrete features like a river, road, building etc,
vectors are preferred.

SQL Database (Relational) Structured Query Language (SQL) database is a
relational database, meaning that the data is in tabular format, where
Expand Down