Enroute Flight Navigation
A navigation app for VFR pilots
FileFormats::MBTILES Class Reference

Utility class for databases in MBTILES format. More...

#include <MBTILES.h>

Inheritance diagram for FileFormats::MBTILES:
FileFormats::DataFileAbstract

Public Types

enum  Format : quint8 { Unknown , Vector , Raster }
 Format of data tiles. More...
 

Public Member Functions

 MBTILES ()
 Standard constructor.
 
 MBTILES (const QString &fileName)
 Standard constructor.
 
 ~MBTILES ()
 Standard destructor.
 
QString attribution ()
 Attribution of MBTILES file.
 
FileFormats::MBTILES::Format format ()
 Determine type of data contained in an MBTILES file.
 
QString info ()
 Information about an MBTILES file.
 
QByteArray tile (int zoom, int x, int y)
 Retrieve tile from an MBTILES file.
 
QMap< QString, QString > metaData () const
 Retrieve metadata of the MBTILES file.
 
QString fileName () const
 Retrieve name of the MBTILES file.
 
- Public Member Functions inherited from FileFormats::DataFileAbstract
bool isValid () const
 Validity check.
 
QString error () const
 Error string.
 
QStringList warnings () const
 Warnings.
 

Additional Inherited Members

- Static Public Member Functions inherited from FileFormats::DataFileAbstract
static QSharedPointer< QFile > openFileURL (const QString &fileName)
 Open file, file URL or Android content URL.
 

Detailed Description

Utility class for databases in MBTILES format.

MBTILES contain tiled map data. Internally, MBTILES are SQLite databases whose schema is specified here: https://github.com/mapbox/mbtiles-spec This class handles MBTILES and allows easy access to the data.

Definition at line 41 of file MBTILES.h.

Member Enumeration Documentation

◆ Format

Format of data tiles.

Enumerator
Unknown 

Unknown format.

Vector 

Vector data in PBF format.

Raster 

Raster data in JPG, PNG or WEBP format.

Definition at line 46 of file MBTILES.h.

Constructor & Destructor Documentation

◆ MBTILES() [1/2]

FileFormats::MBTILES::MBTILES ( )

Standard constructor.

Constructs an invalid object. The method tile() will return empty QByteArrays for this object.

◆ MBTILES() [2/2]

FileFormats::MBTILES::MBTILES ( const QString & fileName)

Standard constructor.

Constructs an object from an MBTILES file. The file is supposed to exist and remain intact throughout the existence of this class instance.

Parameters
fileNameName of the MBTILES file

Member Function Documentation

◆ attribution()

QString FileFormats::MBTILES::attribution ( )
nodiscard

Attribution of MBTILES file.

Returns
A human-readable HTML-String with attribution, or an empty string on error.

◆ fileName()

QString FileFormats::MBTILES::fileName ( ) const
inlinenodiscard

Retrieve name of the MBTILES file.

Returns
Filename, as given in the constructor

Definition at line 126 of file MBTILES.h.

◆ format()

FileFormats::MBTILES::Format FileFormats::MBTILES::format ( )
nodiscard

Determine type of data contained in an MBTILES file.

Returns
Type of data, or Unknown on error.

◆ info()

QString FileFormats::MBTILES::info ( )
nodiscard

Information about an MBTILES file.

Returns
A human-readable HTML-String with information about the MBTILES file, or an empty string on error.

◆ metaData()

QMap< QString, QString > FileFormats::MBTILES::metaData ( ) const
inlinenodiscard

Retrieve metadata of the MBTILES file.

MBTILES files contain metadata, in the form of a list of key/value pairs.

Returns
A QMap containing the metadata, or an empty QMap on error.

Definition at line 117 of file MBTILES.h.

◆ tile()

QByteArray FileFormats::MBTILES::tile ( int zoom,
int x,
int y )
nodiscard

Retrieve tile from an MBTILES file.

Parameters
zoomZoom level of the tile
xx-Coordinate of the tile
yy-Coordinate of the tile
Returns
A QByteArray with the tile data, or an empty QByteArray on error.

The documentation for this class was generated from the following file: