kandy 0.8.0 Help

USA States Map With CONUS Albers Projection

val usaStates = GeoDataFrame.readGeoJson("https://raw.githubusercontent.com/AndreiKingsley/datasets/refs/heads/main/USA.json") val usaAlbers = usaStates .modify { filter { "name"<String>() !in listOf("Alaska", "Hawaii", "Puerto Rico") } } .applyCrs(CRS.decode("EPSG:5070", true)) usaAlbers.plot { geoPolygon() layout.title = "US With CONUS Albers Projection" }
usa_conus_albers
Last modified: 10 February 2025