QField - What is the best raster format?
I'm doing some tests with QField at the request of the company I work for. I was wondering what is the best (most efficient and practical) raster format with regard to the fluidity and the loading speed while using the app on-the-field ?
raster qfield
New contributor
ryssuqecug-2301 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
I'm doing some tests with QField at the request of the company I work for. I was wondering what is the best (most efficient and practical) raster format with regard to the fluidity and the loading speed while using the app on-the-field ?
raster qfield
New contributor
ryssuqecug-2301 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
I'm doing some tests with QField at the request of the company I work for. I was wondering what is the best (most efficient and practical) raster format with regard to the fluidity and the loading speed while using the app on-the-field ?
raster qfield
New contributor
ryssuqecug-2301 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
I'm doing some tests with QField at the request of the company I work for. I was wondering what is the best (most efficient and practical) raster format with regard to the fluidity and the loading speed while using the app on-the-field ?
raster qfield
raster qfield
New contributor
ryssuqecug-2301 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
ryssuqecug-2301 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited 1 hour ago
Vince
14.4k32747
14.4k32747
New contributor
ryssuqecug-2301 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 4 hours ago
ryssuqecug-2301ryssuqecug-2301
285
285
New contributor
ryssuqecug-2301 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
ryssuqecug-2301 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
ryssuqecug-2301 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
The QField documentation recommends using GeoPackage raster for this purpose.
Other sources (citation needed) recommend mbtiles format.
Whatever you choose, here are a couple of things to consider:
Tiling tiled data sources allow for loading only parts of the data and not always reading the whole dataset while rendering.
Pyramids if pyramids are built, it's possible to render raster images much more efficient at small scale (zoomed out) because aggregated information is already available pre-calculated.
Compression to make files small enough to fit on a handheld device, consider turning on some sort of compression. Raster data, like any non-random imagery, can normally be compressed very well (jpeg, png, ...) and for visual purpose like you have here, there's not even a need for a loss-less compression.
Have a look at the above link that provide some hints how to prepare the data using gdal commands (many of them are also available as QGIS processing algorithms)
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "79"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
ryssuqecug-2301 is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f309379%2fqfield-what-is-the-best-raster-format%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The QField documentation recommends using GeoPackage raster for this purpose.
Other sources (citation needed) recommend mbtiles format.
Whatever you choose, here are a couple of things to consider:
Tiling tiled data sources allow for loading only parts of the data and not always reading the whole dataset while rendering.
Pyramids if pyramids are built, it's possible to render raster images much more efficient at small scale (zoomed out) because aggregated information is already available pre-calculated.
Compression to make files small enough to fit on a handheld device, consider turning on some sort of compression. Raster data, like any non-random imagery, can normally be compressed very well (jpeg, png, ...) and for visual purpose like you have here, there's not even a need for a loss-less compression.
Have a look at the above link that provide some hints how to prepare the data using gdal commands (many of them are also available as QGIS processing algorithms)
add a comment |
The QField documentation recommends using GeoPackage raster for this purpose.
Other sources (citation needed) recommend mbtiles format.
Whatever you choose, here are a couple of things to consider:
Tiling tiled data sources allow for loading only parts of the data and not always reading the whole dataset while rendering.
Pyramids if pyramids are built, it's possible to render raster images much more efficient at small scale (zoomed out) because aggregated information is already available pre-calculated.
Compression to make files small enough to fit on a handheld device, consider turning on some sort of compression. Raster data, like any non-random imagery, can normally be compressed very well (jpeg, png, ...) and for visual purpose like you have here, there's not even a need for a loss-less compression.
Have a look at the above link that provide some hints how to prepare the data using gdal commands (many of them are also available as QGIS processing algorithms)
add a comment |
The QField documentation recommends using GeoPackage raster for this purpose.
Other sources (citation needed) recommend mbtiles format.
Whatever you choose, here are a couple of things to consider:
Tiling tiled data sources allow for loading only parts of the data and not always reading the whole dataset while rendering.
Pyramids if pyramids are built, it's possible to render raster images much more efficient at small scale (zoomed out) because aggregated information is already available pre-calculated.
Compression to make files small enough to fit on a handheld device, consider turning on some sort of compression. Raster data, like any non-random imagery, can normally be compressed very well (jpeg, png, ...) and for visual purpose like you have here, there's not even a need for a loss-less compression.
Have a look at the above link that provide some hints how to prepare the data using gdal commands (many of them are also available as QGIS processing algorithms)
The QField documentation recommends using GeoPackage raster for this purpose.
Other sources (citation needed) recommend mbtiles format.
Whatever you choose, here are a couple of things to consider:
Tiling tiled data sources allow for loading only parts of the data and not always reading the whole dataset while rendering.
Pyramids if pyramids are built, it's possible to render raster images much more efficient at small scale (zoomed out) because aggregated information is already available pre-calculated.
Compression to make files small enough to fit on a handheld device, consider turning on some sort of compression. Raster data, like any non-random imagery, can normally be compressed very well (jpeg, png, ...) and for visual purpose like you have here, there's not even a need for a loss-less compression.
Have a look at the above link that provide some hints how to prepare the data using gdal commands (many of them are also available as QGIS processing algorithms)
answered 2 hours ago
Matthias KuhnMatthias Kuhn
18.6k14789
18.6k14789
add a comment |
add a comment |
ryssuqecug-2301 is a new contributor. Be nice, and check out our Code of Conduct.
ryssuqecug-2301 is a new contributor. Be nice, and check out our Code of Conduct.
ryssuqecug-2301 is a new contributor. Be nice, and check out our Code of Conduct.
ryssuqecug-2301 is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Geographic Information Systems Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f309379%2fqfield-what-is-the-best-raster-format%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown