Is there a good way to display map tiles dynamic and real time?
up vote
0
down vote
favorite
Ⅰ using python-mapnik(linux)+postgis
I've tried using mapnik to show big data(aboult more than 600,0000 polygon features with much points in postgis),I display it real time from python service without cache. but i meet the problem:
1.At the beginning,load table from database lost much time
2.when I zoom to 12level,map tile will loading slowly
Ⅱ using python(flask)+postgis(MVT)+mapbox-gl
1.display 100,0000 features(simple polygon) so fast,but display big data(aboult more than 600,0000 polygon features with much points in postgis),i find selet query need much time. it's slowly than mapnik
Now I don't know how to complete my research about displaying big vector tiles fast and realtime!!
Is there a persion like me who are interested in quickly displaying data??Any help or suggestion would be appreciated!
At last ,forgive my poor English descrption.
some information about vector tiles I've found,maybe is useful to somebody like me:
- Vector tiles, PostGIS and OpenLayers
- An update on MVT encoders
- Aggregating data for faster map tiles
- PostGIS Performance Profiling
- MVT generation: Mapnik vs PostGIS
- awesome-vector-tiles
bigdata postgis mapnik cartodb vector-tiles
add a comment |
up vote
0
down vote
favorite
Ⅰ using python-mapnik(linux)+postgis
I've tried using mapnik to show big data(aboult more than 600,0000 polygon features with much points in postgis),I display it real time from python service without cache. but i meet the problem:
1.At the beginning,load table from database lost much time
2.when I zoom to 12level,map tile will loading slowly
Ⅱ using python(flask)+postgis(MVT)+mapbox-gl
1.display 100,0000 features(simple polygon) so fast,but display big data(aboult more than 600,0000 polygon features with much points in postgis),i find selet query need much time. it's slowly than mapnik
Now I don't know how to complete my research about displaying big vector tiles fast and realtime!!
Is there a persion like me who are interested in quickly displaying data??Any help or suggestion would be appreciated!
At last ,forgive my poor English descrption.
some information about vector tiles I've found,maybe is useful to somebody like me:
- Vector tiles, PostGIS and OpenLayers
- An update on MVT encoders
- Aggregating data for faster map tiles
- PostGIS Performance Profiling
- MVT generation: Mapnik vs PostGIS
- awesome-vector-tiles
bigdata postgis mapnik cartodb vector-tiles
carto.com/blog/inside/An-update-on-MVT-encoders/…
– Happy Young
Nov 14 at 6:19
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
Ⅰ using python-mapnik(linux)+postgis
I've tried using mapnik to show big data(aboult more than 600,0000 polygon features with much points in postgis),I display it real time from python service without cache. but i meet the problem:
1.At the beginning,load table from database lost much time
2.when I zoom to 12level,map tile will loading slowly
Ⅱ using python(flask)+postgis(MVT)+mapbox-gl
1.display 100,0000 features(simple polygon) so fast,but display big data(aboult more than 600,0000 polygon features with much points in postgis),i find selet query need much time. it's slowly than mapnik
Now I don't know how to complete my research about displaying big vector tiles fast and realtime!!
Is there a persion like me who are interested in quickly displaying data??Any help or suggestion would be appreciated!
At last ,forgive my poor English descrption.
some information about vector tiles I've found,maybe is useful to somebody like me:
- Vector tiles, PostGIS and OpenLayers
- An update on MVT encoders
- Aggregating data for faster map tiles
- PostGIS Performance Profiling
- MVT generation: Mapnik vs PostGIS
- awesome-vector-tiles
bigdata postgis mapnik cartodb vector-tiles
Ⅰ using python-mapnik(linux)+postgis
I've tried using mapnik to show big data(aboult more than 600,0000 polygon features with much points in postgis),I display it real time from python service without cache. but i meet the problem:
1.At the beginning,load table from database lost much time
2.when I zoom to 12level,map tile will loading slowly
Ⅱ using python(flask)+postgis(MVT)+mapbox-gl
1.display 100,0000 features(simple polygon) so fast,but display big data(aboult more than 600,0000 polygon features with much points in postgis),i find selet query need much time. it's slowly than mapnik
Now I don't know how to complete my research about displaying big vector tiles fast and realtime!!
Is there a persion like me who are interested in quickly displaying data??Any help or suggestion would be appreciated!
At last ,forgive my poor English descrption.
some information about vector tiles I've found,maybe is useful to somebody like me:
- Vector tiles, PostGIS and OpenLayers
- An update on MVT encoders
- Aggregating data for faster map tiles
- PostGIS Performance Profiling
- MVT generation: Mapnik vs PostGIS
- awesome-vector-tiles
bigdata postgis mapnik cartodb vector-tiles
bigdata postgis mapnik cartodb vector-tiles
edited Nov 15 at 9:03
asked Nov 14 at 2:09
Happy Young
32
32
carto.com/blog/inside/An-update-on-MVT-encoders/…
– Happy Young
Nov 14 at 6:19
add a comment |
carto.com/blog/inside/An-update-on-MVT-encoders/…
– Happy Young
Nov 14 at 6:19
carto.com/blog/inside/An-update-on-MVT-encoders/…
– Happy Young
Nov 14 at 6:19
carto.com/blog/inside/An-update-on-MVT-encoders/…
– Happy Young
Nov 14 at 6:19
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
accepted
You may want to reduce as much as possible the amount of data being transferred from your database to your rendering engine.
This blog post from CARTO may give you some ideas even it's focused in point data.
For polygon datasets, in order to reduce the amount of data moved to the renderer you may want to create simplified versions to use based on the zoom level. Mapshaper is a nice tool to simplify polygons but still retain their topology. And in any case, always combine ST_RemoveRepeatedPoints
with ST_SnapToGrid
to be sure you are not wasting rendering CPU with wasted pixels.
Thans for answering! As I know,postgis provides ST_SimplifyPreserveTopology to simplify polygons,I want to calculate tolerance according to different scale. (tolerances = [6378137 * 2 * pi / (2 ** (zoom + 8)) for zoom in range(20)]) and I‘ll try it like you say. Thanks again
– Happy Young
Nov 15 at 1:28
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
accepted
You may want to reduce as much as possible the amount of data being transferred from your database to your rendering engine.
This blog post from CARTO may give you some ideas even it's focused in point data.
For polygon datasets, in order to reduce the amount of data moved to the renderer you may want to create simplified versions to use based on the zoom level. Mapshaper is a nice tool to simplify polygons but still retain their topology. And in any case, always combine ST_RemoveRepeatedPoints
with ST_SnapToGrid
to be sure you are not wasting rendering CPU with wasted pixels.
Thans for answering! As I know,postgis provides ST_SimplifyPreserveTopology to simplify polygons,I want to calculate tolerance according to different scale. (tolerances = [6378137 * 2 * pi / (2 ** (zoom + 8)) for zoom in range(20)]) and I‘ll try it like you say. Thanks again
– Happy Young
Nov 15 at 1:28
add a comment |
up vote
0
down vote
accepted
You may want to reduce as much as possible the amount of data being transferred from your database to your rendering engine.
This blog post from CARTO may give you some ideas even it's focused in point data.
For polygon datasets, in order to reduce the amount of data moved to the renderer you may want to create simplified versions to use based on the zoom level. Mapshaper is a nice tool to simplify polygons but still retain their topology. And in any case, always combine ST_RemoveRepeatedPoints
with ST_SnapToGrid
to be sure you are not wasting rendering CPU with wasted pixels.
Thans for answering! As I know,postgis provides ST_SimplifyPreserveTopology to simplify polygons,I want to calculate tolerance according to different scale. (tolerances = [6378137 * 2 * pi / (2 ** (zoom + 8)) for zoom in range(20)]) and I‘ll try it like you say. Thanks again
– Happy Young
Nov 15 at 1:28
add a comment |
up vote
0
down vote
accepted
up vote
0
down vote
accepted
You may want to reduce as much as possible the amount of data being transferred from your database to your rendering engine.
This blog post from CARTO may give you some ideas even it's focused in point data.
For polygon datasets, in order to reduce the amount of data moved to the renderer you may want to create simplified versions to use based on the zoom level. Mapshaper is a nice tool to simplify polygons but still retain their topology. And in any case, always combine ST_RemoveRepeatedPoints
with ST_SnapToGrid
to be sure you are not wasting rendering CPU with wasted pixels.
You may want to reduce as much as possible the amount of data being transferred from your database to your rendering engine.
This blog post from CARTO may give you some ideas even it's focused in point data.
For polygon datasets, in order to reduce the amount of data moved to the renderer you may want to create simplified versions to use based on the zoom level. Mapshaper is a nice tool to simplify polygons but still retain their topology. And in any case, always combine ST_RemoveRepeatedPoints
with ST_SnapToGrid
to be sure you are not wasting rendering CPU with wasted pixels.
answered Nov 14 at 9:51
Jorge Sanz
24124
24124
Thans for answering! As I know,postgis provides ST_SimplifyPreserveTopology to simplify polygons,I want to calculate tolerance according to different scale. (tolerances = [6378137 * 2 * pi / (2 ** (zoom + 8)) for zoom in range(20)]) and I‘ll try it like you say. Thanks again
– Happy Young
Nov 15 at 1:28
add a comment |
Thans for answering! As I know,postgis provides ST_SimplifyPreserveTopology to simplify polygons,I want to calculate tolerance according to different scale. (tolerances = [6378137 * 2 * pi / (2 ** (zoom + 8)) for zoom in range(20)]) and I‘ll try it like you say. Thanks again
– Happy Young
Nov 15 at 1:28
Thans for answering! As I know,postgis provides ST_SimplifyPreserveTopology to simplify polygons,I want to calculate tolerance according to different scale. (tolerances = [6378137 * 2 * pi / (2 ** (zoom + 8)) for zoom in range(20)]) and I‘ll try it like you say. Thanks again
– Happy Young
Nov 15 at 1:28
Thans for answering! As I know,postgis provides ST_SimplifyPreserveTopology to simplify polygons,I want to calculate tolerance according to different scale. (tolerances = [6378137 * 2 * pi / (2 ** (zoom + 8)) for zoom in range(20)]) and I‘ll try it like you say. Thanks again
– Happy Young
Nov 15 at 1:28
add a comment |
Thanks for contributing an answer to Stack Overflow!
- 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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2fstackoverflow.com%2fquestions%2f53292198%2fis-there-a-good-way-to-display-map-tiles-dynamic-and-real-time%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
carto.com/blog/inside/An-update-on-MVT-encoders/…
– Happy Young
Nov 14 at 6:19