Replies: 1 comment
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I am serving some US Census Block Group polygons from martin. I downloaded the zip file from Census and transformed them into pmtiles, I also populate a PostGIS table with the same data:
I can serve them in martin and achieve the same result. However, I am really curious about the pros and cons of each method. I knew that pmtiles are nothing but a simple SQLITE file, which is passive and notorious for low performance when handling large data query. PostgreSQL, on the other hand, is an active backend and scales well with large amount of data. When we talk about performance of SQLITE vs PostgreSQL, we normally think that PostgreSQL is better.
But right now, Martin is also a player here and I am told pmtile's MVT is optimized for web tiles, PostGIS is more complex as it provides other querying capabilities. I am not so sure which should I use for best performance. Is there any professional suggestion here? Could you help me understand why one should be chosen vs another?
Beta Was this translation helpful? Give feedback.
All reactions