- Degree of Difficulty: *
- Goal: find those blocks and neighbourhoods with the number of Airbnb houses/rooms.
- Features Highlighted:
- Data edition and filter:
- SQL console.
- Dynamic filtering by widgets.
- Layer selector.
- Data Visualization:
- Change basemap.
- Blending methods.
- Style
marker-fill
by value (choropleth). - Custom legends.
- Geospatial analysis:
- Intersect second layer.
- Data edition and filter:
- Datasests needed:
- Barcelona Airbnb data:
airbnb_barcelona
. You can download it from here. - Barcelona building footprint and neighborhoods:
barcelona_building_footprint
andbarris_barcelona
can be found in CARTO Data Library.
- Barcelona Airbnb data:
Barcelona Airbnb dataset was downloaded from the Inside Airbnb website. In order to download them to your local machines, you are using CARTO SQL API behind the scenes.
- Create a map with
airbnb_barcelona
(from your local machine), andbarcelona_building_footprint
andbarris_barcelona
datasets (from the Data Library). - Change the map title and layer names.
- Change basemap: click on "Positron" and then select "Dark Matter (Lite)".
- Go to
Map Options
(the slider kind of button at the blue left sidebar), activateLAYER SELECTOR
. - Go back to the main menu.
- Style "Airbnb" layer. Set
marker-width
to 2, removeSTROKE
and set aBLENDING
method such asmultiply
. - Apply the following SQL query to the "Airbnb" layer in order to get the prize as a numeric field:
SELECT
*,
substring(price FROM '[0-9]+')::numeric as price_num
FROM
listings_barcelona
- Add some widgets from "Airbnb" layer (
price_num
,property_type
andnumber_of_reviews
, for example). We will add widgets from the other two layers later. Edit them. - Add a
Intersect and aggregate
analysis to the "Blocks" layer, and "Neighborhoods". Set "Airbnb" asTARGET LAYER
andCOUNT
asOPERATION
.
- Add widgets for
n_distri
andn_barri
columns in "Neighborhoods" layer. Try different aggregations and see how it affects the ordering in the widget. - Add
ref_cadast
widget from "Blocks" layer. UseCOUNT
as aggregation operation. - Style "Blocks" and "Neighborhoods" as a choropleth. For each layer, go to the
STYLE
tab. Secondly, click on thepolygon-fill
FILL color and selectBY VALUE
. Selectcount_vals_density
. Set the number ofbuckets
, color scheme (but invert the colors! Lighter colors should show higher values in contrast to the dark basemap) and classification method as you wish.
We have selected
count_vals_density
instead ofcount_vals
, because when we make a choropleth map with polygon layers we need to use data which is normalized, in this case by the area.
- Edit the "Blocks" and "Neighborhoods" legends.
- Add a custom legend for "Airbnb" layer. Go to
LEGEND
tab, then click onCUSTOM
and type "House/room".
- Disable "Airbnb" and "Blocks" layers view.
- Publish the map: https://team.carto.com/u/builder-demo/builder/f014ea60-030f-11e7-b3bb-0e3ebc282e83/embed