Coder Social home page Coder Social logo

Comments (2)

giswqs avatar giswqs commented on June 28, 2024

@cboettig Thank you for reporting. The add_data method uses the mapclassify package to reclassify column values. The default classification scheme is Quantiles. Somehow it does not reclassify the categorical values properly. I am not sure why. Changing the classification scheme to NaturalBreaks solves the issue. The opacity of the layer can be controlled by the style_function.

import geopandas as gpd
import leafmap.foliumap as leafmap
sf_url = "/vsicurl/https://dsl.richmond.edu/panorama/redlining/static/citiesData/CASanFrancisco1937/geojson.json"
sf = gpd.read_file(sf_url)
sf = sf[sf.residential]
m = leafmap.Map(draw_control=False, measure_control=False, center=[37.75, -122.45], zoom=13)

style_function = lambda feat: {
                # "stroke": False,
                # "color": "#ff0000",
                "weight": 1,
                "opacity": 1,
                # "fill": True,
                # "fillColor": "#ffffff",
                "fillOpacity": 0.5,
                # "dashArray": "9"
                # "clickable": True,
                "fillColor": feat["properties"]["color"],
            }

m.add_data(sf, 
           column="grade",
           layer_name = "Grade", 
           colors = ["green", "blue", "orange", "red"],
           scheme="NaturalBreaks",
           k=4,
           style_function=style_function)
m

image

from leafmap.

cboettig avatar cboettig commented on June 28, 2024

🎉 wow, perfect! Many thanks.

from leafmap.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.