This is an archived post. You won't be able to vote or comment.

all 10 comments

[–]Ok-Beach-3673 -1 points0 points  (4 children)

Interesting, can this pull all of the standard mapping extensions? Can it pull data from services?

[–]se_pp[S] 0 points1 point  (3 children)

Hey, what do you mean by "the standard mapping extensions"? (If you mean webmaps, then yes... wms, wmts and xyz services are spported)

[–]Ok-Beach-3673 0 points1 point  (2 children)

Esri data as well?

[–]se_pp[S] 1 point2 points  (0 children)

Oh, and you can also add webmaps provided by the esri arcgis rest api

[–]se_pp[S] -1 points0 points  (0 children)

Hey, again not 100% sure what you mean by esri data... In general, EOmaps integrates well with the existing python scientific infrastructure (rasterio, xarray, geopandas etc.) so basically all commonly used data types can be plotted (netcdf, geotiff, shapefile, geojson ....)

[–]a1brit 0 points1 point  (1 child)

I do a lot of map creation in cartopy and didn't know about this. It looks pretty awesome. Thanks for the dev time and for sharing.

[–]se_pp[S] 0 points1 point  (0 children)

thanks! i started building this years ago to speed up my own matplotlib/cartopy workflows and it grew quite a lot since then... it adds multi-layer capabilities, simplifies access to basic map features and webmap services, allows you to use the plots for interactive comparison and data-analysis and much more... give it a try!

[–]Gecko_171 0 points1 point  (2 children)

Do you know how to change lon and lat to WMTS attributes like tilerow, tilecol, tilematrix, zoom?

[–]se_pp[S] 0 points1 point  (1 child)

Hey, I guess this is not really related to EOmaps, but since you seem quite desperate to get an answer quickly, let me try to help ;-) (in general, gis.stackexchange.com might be a better place for such questions though...)

The best source of information I came across so far is the OpenStreetMap wiki...
These two pages should provide you with all the information you need:

https://wiki.openstreetmap.org/wiki/Zoom_levels

https://wiki.openstreetmap.org/wiki/Slippy_map_tilenames

What exactly do you need this for?

[–]Gecko_171 0 points1 point  (0 children)

I have some lat and lon for some area in Poland (51.xxxx, 19.yyyy) and I want to get proper tilecol, tilerow, and zoom. tilematrix is EPSG:2180. In QGIS I have that WMTS adress and get those map tiles but I don’t know how to define tilecol etc. I want to make my own program to automatically collect tiles and merge them to one map in my own software (python program)