This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# contents of bbc_update_urls.csv | |
# show,episode_url,episode_date | |
# radio2_folk_show,https://www.bbc.co.uk/sounds/play/m001v4yp,2024-01-17 | |
# radio6_new_music,https://www.bbc.co.uk/sounds/play/m001v50p,2024-01-19 | |
# radio3_music_planet,https://www.bbc.co.uk/sounds/play/m001v3yn,2024-01-13 | |
# radio1_best_new_pop,https://www.bbc.co.uk/sounds/play/m001v4rp,2024-01-19 | |
# radio1_rock_show,https://www.bbc.co.uk/sounds/play/m001v2mp,2024-01-15 | |
# radio6_the_morning_after_mix,https://www.bbc.co.uk/sounds/play/m001v4jv,2024-01-14 | |
# radio1_the_chillest_show,https://www.bbc.co.uk/sounds/play/m001v2r0,2024-01-14 | |
# radio6_gilles_peterson_show,https://www.bbc.co.uk/sounds/play/m001v4hp,2024-01-13 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
authority_level | local_body_name | district | rise_in_2pm_temp | |
---|---|---|---|---|
municipality | Erattupetta | Kottayam | 1.7 | |
municipality | Thrikkakara | Ernakulam | 1.6 | |
municipality | Thodupuzha | Idukki | 1.6 | |
municipality | Muvattupuzha | Ernakulam | 1.5 | |
municipality | Perumbavoor | Ernakulam | 1.4 | |
municipality | Pala | Kottayam | 1.4 | |
municipality | Ettumanoor | Kottayam | 1.4 | |
municipality | Paravur | Ernakulam | 1.4 | |
municipal_corporation | Kollam | Kollam | 1.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# the lulc class codes will be in the 'class_new' band. What those codes represent can be seen in the url below | |
# https://bhuvan-vec2.nrsc.gov.in/bhuvan/wms?REQUEST=GetLegendGraphic&VERSION=1.0.0&FORMAT=application/json&WIDTH=20&HEIGHT=20&LAYER=lulc:KL_LULC50K_1112 | |
# use the 'red_new', 'green_new' and 'blue_new' bands to visualise the data | |
# Be aware there will be a bhuvan watermark, usually bottom-right, tried to encode it as white (255,255,255) | |
# and lulc class code 99 | |
from rasterio.io import MemoryFile | |
import requests | |
import json | |
import rioxarray |