Skip to content

Releases: banesullivan/localtileserver

Folium Tile Layers

26 Nov 22:40
Compare
Choose a tag to compare

Now you can easily create tile layers for viewing with Folium!

from localtileserver import get_folium_tile_layer
from localtileserver import TileClient
from folium import Map

# First, create a tile server from local raster file
tile_client = TileClient('~/Desktop/TC_NG_SFBay_US_Geo.tif')

# Create folium tile layer from that server
t = get_folium_tile_layer(tile_client)

m = Map(location=tile_client.center())
m.add_child(t)
m
folium.mov

Renamed to localtileserver

25 Nov 19:13
Compare
Choose a tag to compare

I decided to rename the package to localtileserver to simplify installation and have a name consistent with the scope of package.

ipyleaflet ROI extraction

24 Nov 20:58
Compare
Choose a tag to compare

Now included are some prebaked UI controls for ipyleaflet that let you easily extract ROIs. Take a look at the example in the README.

ipyleaflet-roi.mov

CesiumJS Web Viewer

24 Nov 05:12
Compare
Choose a tag to compare

The default viewer in the included web app now uses CesiumJS!

Screen.Recording.2021-11-23.at.10.08.43.PM.mov