From 6bc716057d9c677c7ec8b44255b67d3f6188474f Mon Sep 17 00:00:00 2001 From: srbh001 <22B3905@iitb.ac.in> Date: Mon, 31 Jul 2023 14:55:27 +0530 Subject: [PATCH 1/4] Add : New Locations and Fixed the some minor issues --- backend/settings.py | 2 + locations/management/commands/mapnav.py | 1364 ++++++++++++----------- locations/views.py | 6 +- 3 files changed, 706 insertions(+), 666 deletions(-) diff --git a/backend/settings.py b/backend/settings.py index 112e267c..3b3816f3 100644 --- a/backend/settings.py +++ b/backend/settings.py @@ -13,6 +13,8 @@ DEBUG = True ALLOWED_HOSTS = ['*'] +CORS_ORIGIN_WHITELIST = ['https://www.insti.app', 'https://api.insti.app', 'https://gymkhana.iitb.ac.in', 'http://10.105.177.175', 'http://localhost:4200', 'http://10.198.49.175'] +CORS_ALLOW_CREDENTIALS = True # SSO Config SSO_TOKEN_URL = 'https://gymkhana.iitb.ac.in/sso/oauth/token/' diff --git a/locations/management/commands/mapnav.py b/locations/management/commands/mapnav.py index 9c08cd6d..5e46daac 100644 --- a/locations/management/commands/mapnav.py +++ b/locations/management/commands/mapnav.py @@ -4,7 +4,7 @@ import sys from locations.serializers import LocationSerializerMin from locations.models import Location - +import json # class ProfileFetcher(): # """Helper to get dictionary of profiles efficiently.""" @@ -275,131 +275,149 @@ def __init__(self): [3525, 2741], [3436, 2777], [3329, 2750], [2741, 445]] + """ + Adding New Locations to the adj_list dictionary: + + 1. Add the new location to the adj_list dictionary. + 2. open manage.py shell and run the following commands: + from locations.management.commands.mapnav import handle_entry + h= handle_entry().update() + print(h.adj_list) + 3. It updates the database with the new location and gives the updated adj_list dictionary. + """ + + + self.adj_list = { - 0: { - "Hostel 12 Crown of the Campus": 6.425, - "Hostel 14 Silicon Ship": 3.338, - "H13 Night Canteen": 29.933, - "Hostel 13 House of Titans": 29.933, - "Mess for hostels 12 | 13 | 14": 2.378, - 1: 9.685, - "Amul Parlour": 3.338, - }, - "Amul Parlour": {0: 3.338}, - "Hostel 12 Crown of the Campus": {0: 6.425}, - "Hostel 14 Silicon Ship": {0: 3.338}, - "Hostel 13 House of Titans": {0: 29.933}, - "H13 Night Canteen": {0: 29.933}, - "Mess for hostels 12 | 13 | 14": {0: 2.378}, - 1: {0: 9.685, 2: 6.481}, - 2: {1: 6.481, 3: 4.293, 255: 325.184}, - "Security Check Point": {255: 2.125, 245: 15.101}, - 3: {2: 4.293, 4: 25.717000000000002, 5: 10.333}, - 4: {3: 25.717000000000002, "Hostel 06 Vikings": 5.569, "Type1 - 22": 9.125}, - "Type1 - 22": {4: 9.125}, - "Hostel 06 Vikings": {4: 5.569}, - 5: {3: 10.333, 6: 6.977}, - 6: { - 5: 6.977, - 7: 4.8340000000000005, - "ATM - Canara Bank near H6": 1.9080000000000001, - }, - "ATM - Canara Bank near H6": {6: 1.9080000000000001}, - 7: {6: 4.8340000000000005, 8: 4.141}, - 8: {7: 4.141, 9: 1.405, "Hostel 09 Nawaabon Ki Basti": 13.001}, - "Hostel 09 Nawaabon Ki Basti": {8: 13.001}, - 9: {8: 1.405, 10: 13.474, 12: 7.993}, - 10: {9: 13.474, 11: 21.8}, - 11: {10: 21.8, "Hostel 18": 16.613}, - "Hostel 18": {11: 16.613}, - 12: {9: 7.993, 13: 14.321, "Hostel 17": 5.994}, - "Hostel 17": {12: 5.994}, - 13: {12: 14.321, 14: 3.098, 102: 11.584}, - 14: {13: 3.098, 15: 32.53, "Chaayos Cafe": 1.458}, - "Chaayos Cafe": {14: 1.458}, - 15: {14: 32.53, 16: 7.688, 17: 12.674}, - 16: {15: 7.688, "Hostel 05 Penthouse": 18.549}, - "Hostel 05 Penthouse": {16: 18.549}, - 17: { - 15: 12.674, - 18: 7.1290000000000004, - "Tansa House King of campus (Proj. Staff Boys)": 11.425, - "ATM - State Bank near Tansa": 9.316, - }, - "ATM - State Bank near Tansa": {17: 9.316}, - "Tansa House King of campus (Proj. Staff Boys)": {17: 11.425}, - 18: {17: 7.1290000000000004, 19: 5.78}, - 19: {18: 5.78, 20: 4.293}, - 20: { - 21: 40.441, - 19: 4.293, - "Outdoor Sports Facility": 1.514, - "Hostel 03 Vitruvians": 15.860000000000001, - }, - "Outdoor Sports Facility": {20: 1.514}, - "Hostel 03 Vitruvians": {20: 15.860000000000001}, - 21: { - 20: 40.441, - 22: 9.146, - "Hostel 02 The Wild Ones": 25.09, - "Indoor Stadium": 2.509, - "Badminton Court": 2.509, - }, - "Badminton Court": {21: 2.509}, - "Hostel 02 The Wild Ones": {21: 25.09}, - "Indoor Stadium": {21: 2.509}, - 22: {21: 9.146, "Swimming Pool (new)": 5.345, 23: 5.365}, + 0: { + "Hostel 12 Crown of the Campus": 6.425, + "Hostel 14 Silicon Ship": 3.338, + "H13 Night Canteen": 29.933, + "Hostel 13 House of Titans": 29.933, + "Mess for hostels 12 | 13 | 14": 2.378, + 1: 9.685, + "Amul Parlour": 3.338, + }, + "Amul Parlour": {0: 3.338}, + "Hostel 12 Crown of the Campus": {0: 6.425}, + "Hostel 14 Silicon Ship": {0: 3.338}, + "Hostel 13 House of Titans": {0: 29.933}, + "H13 Night Canteen": {0: 29.933}, + "Mess for hostels 12 | 13 | 14": {0: 2.378}, + 1: {0: 9.685, 2: 6.481}, + 2: {1: 6.481, 3: 4.293, 255: 325.184}, + "Security Check Point": {255: 2.125, 245: 15.101}, + 3: {2: 4.293, 4: 25.717000000000002, 5: 10.333}, + 4: {3: 25.717000000000002, "Hostel 06 Vikings": 5.569, "Type1 - 22": 9.125}, + "Type1 - 22": {4: 9.125}, + "Hostel 06 Vikings": {4: 5.569}, + 5: {3: 10.333, 6: 6.977}, + 6: { + 5: 6.977, + 7: 4.8340000000000005, + "ATM - Canara Bank near H6": 1.9080000000000001, + }, + "ATM - Canara Bank near H6": {6: 1.9080000000000001}, + 7: {6: 4.8340000000000005, 8: 4.141}, + 8: {7: 4.141, 9: 1.405, "Hostel 09 Nawaabon Ki Basti": 13.001}, + "Hostel 09 Nawaabon Ki Basti": {8: 13.001}, + 9: {8: 1.405, 10: 13.474, 12: 7.993}, + 10: {9: 13.474, 11: 21.8}, + 11: {10: 21.8, "Hostel 18": 16.613}, + "Hostel 18": {11: 16.613}, + 12: {9: 7.993, 13: 14.321, "Hostel 17": 5.994}, + "Hostel 17": {12: 5.994}, + 13: {12: 14.321, 14: 3.098, 102: 11.584}, + 14: {13: 3.098, 15: 32.53, "Chaayos Cafe": 1.458}, + "Chaayos Cafe": {14: 1.458}, + 15: {14: 32.53, 16: 7.688, 17: 12.674}, + 16: {15: 7.688, "Hostel 05 Penthouse": 18.549}, + "Hostel 05 Penthouse": {16: 18.549}, + 17: { + 15: 12.674, + 18: 7.1290000000000004, + "Tansa House King of campus (Proj. Staff Boys)": 11.425, + "ATM - State Bank near Tansa": 9.316, + }, + "ATM - State Bank near Tansa": {17: 9.316}, + "Tansa House King of campus (Proj. Staff Boys)": {17: 11.425}, + 18: {17: 7.1290000000000004, 19: 5.78}, + 19: {18: 5.78, 20: 4.293}, + 20: { + 21: 40.441, + 19: 4.293, + "Outdoor Sports Facility": 1.514, + "Hostel 03 Vitruvians": 15.860000000000001, + }, + "Outdoor Sports Facility": {20: 1.514}, + "Hostel 03 Vitruvians": {20: 15.860000000000001}, + 21: { + 20: 40.441, + 22: 9.146, + "Hostel 02 The Wild Ones": 25.09, + "Indoor Stadium": 2.509, + "Badminton Court": 2.509, + }, + "Badminton Court": {21: 2.509}, + "Hostel 02 The Wild Ones": {21: 25.09}, + "Indoor Stadium": {21: 2.509}, + 22: {21: 9.146, "Swimming Pool (new)": 5.345, 23: 5.365}, "Swimming Pool (new)": {22: 5.345}, - 23: {22: 5.365, 24: 12.52, 25: 10.333}, - 24: { + 23: {22: 5.365, 24: 12.52, 25: 10.333}, + 24: { 23: 12.52, "Students Activity Centre": 3.625, "New Yoga Room, SAC": 3.625, "Open Air Theatre": 3.625, "Film Room, SAC": 3.625, - }, - "Film Room, SAC": {24: 3.625, 26: 7.621}, - "Open Air Theatre": {24: 3.625, 26: 7.621}, - "New Yoga Room, SAC": {24: 3.625, 26: 7.621}, - "Students Activity Centre": {24: 3.625, 26: 7.621}, - 25: {23: 10.333, 26: 14.645, 27: 6.481}, - 26: { + }, + "Film Room, SAC": {24: 3.625, 26: 7.621}, + "Open Air Theatre": {24: 3.625, 26: 7.621}, + "New Yoga Room, SAC": {24: 3.625, 26: 7.621}, + "Students Activity Centre": {24: 3.625, 26: 7.621}, + 25: {23: 10.333, 26: 14.645, 27: 6.481}, + 26: { 25: 14.645, "Students Activity Centre": 7.621, "New Yoga Room, SAC": 7.621, "Open Air Theatre": 7.621, "Film Room, SAC": 7.621, - }, - 27: {25: 6.481, 28: 7.696, "Hostel 01 Queen of the campus": 4.8340000000000005}, - "Hostel 01 Queen of the campus": {27: 4.8340000000000005}, - 28: {27: 7.696, "Domino's outlet": 4.034, 29: 2.612}, - "Domino's outlet": {28: 4.034, 34: 2.089}, - 29: {28: 2.612, 30: 32.321, 34: 10.837}, - 30: {29: 32.321, 31: 9.857, "Defence Research & Development Organization": 4.625}, - "Defence Research & Development Organization": {30: 4.625}, - 31: {30: 9.857, 32: 16.354, 192: 13.573}, - 32: { + }, + 27: { + 25: 6.481, + 28: 7.696, + "Hostel 01 Queen of the campus": 4.8340000000000005, + "Aromas Canteen": 2.669, + }, + "Hostel 01 Queen of the campus": {27: 4.8340000000000005, "Aromas Canteen": 13.973}, + 28: {27: 7.696, "Domino's outlet": 4.034, 29: 2.612, "Aromas Canteen": 8.845}, + "Domino's outlet": {28: 4.034, 34: 2.089, "Aromas Canteen": 2.041}, + 29: {28: 2.612, 30: 32.321, 34: 10.837}, + 30: {29: 32.321, 31: 9.857, "Defence Research & Development Organization": 4.625}, + "Defence Research & Development Organization": {30: 4.625}, + 31: {30: 9.857, 32: 16.354, 192: 13.573}, + 32: { 31: 16.354, "Hostel 15 Trident": 36.297000000000004, 33: 28.409, "Hostel 15 Mess": 17992.225000000002, - }, - "Hostel 15 Mess": {32: 17992.225000000002}, - "Hostel 15 Trident": {32: 36.297000000000004}, - 33: {32: 28.409, "Hostel 16 Olympus": 19.721, "Hostel 16 Mess": 16594.448}, - "Hostel 16 Mess": {33: 16594.448}, - "Hostel 16 Olympus": {33: 19.721}, - 34: {35: 3.133, 29: 10.837, "Domino's outlet": 2.089}, - 35: {34: 3.133, 36: 5.14, 37: 0.2, 214: 0.388}, - 36: {35: 5.14, "State Bank of India Branch": 1.682, 94: 21.533}, - "State Bank of India Branch": {36: 1.682}, - 37: {35: 0.2, 38: 37.885, 95: 128.321}, - 38: {37: 37.885, 39: 9.928, "Central Library": 1.217}, - "Central Library": {38: 1.217, 40: 7.625}, - 39: {38: 9.928, 40: 12.962, 89: 28.409, 90: 5.994}, - 40: {39: 12.962, 41: 1.0, "Central Library": 7.625}, - 41: {40: 1.0, 42: 1.296, 180: 5.184}, - 42: { + }, + "Hostel 15 Mess": {32: 17992.225000000002}, + "Hostel 15 Trident": {32: 36.297000000000004}, + 33: {32: 28.409, "Hostel 16 Olympus": 19.721, "Hostel 16 Mess": 16594.448}, + "Hostel 16 Mess": {33: 16594.448}, + "Hostel 16 Olympus": {33: 19.721}, + 34: {35: 3.133, 29: 10.837, "Domino's outlet": 2.089}, + 35: {34: 3.133, 36: 5.14, 37: 49.652, 214: 0.388}, + 36: {35: 5.14, "State Bank of India Branch": 1.682, 94: 21.533}, + "State Bank of India Branch": {36: 1.682}, + 37: {35: 49.652, 38: 37.885, 95: 128.321}, + 38: {37: 37.885, 39: 9.928, "Central Library": 1.217}, + "Central Library": {38: 1.217, 40: 7.625}, + 39: {38: 9.928, 40: 12.962, 89: 28.409, 90: 5.994}, + 40: {39: 12.962, 41: 1.0, "Central Library": 7.625}, + 41: {40: 1.0, 42: 1.296, 180: 5.184}, + 42: { 41: 1.296, 43: 5.365, "Mathematics Department": 5.93, @@ -407,99 +425,99 @@ def __init__(self): "Inter-disciplinary Programme in Educational Technology": 5.93, "Centre for Formal Design and Verification of Software": 5.93, "Centre for Distance Engineering Education Programme": 5.93, - }, - "Centre for Distance Engineering Education Programme": {42: 5.93}, - "Centre for Formal Design and Verification of Software": {42: 5.93}, - "Inter-disciplinary Programme in Educational Technology": {42: 5.93}, - "Mathematics Department": {42: 5.93}, - "Old Software Lab": {42: 5.93}, - 43: { + }, + "Centre for Distance Engineering Education Programme": {42: 5.93}, + "Centre for Formal Design and Verification of Software": {42: 5.93}, + "Inter-disciplinary Programme in Educational Technology": {42: 5.93}, + "Mathematics Department": {42: 5.93}, + "Old Software Lab": {42: 5.93}, + 43: { 42: 5.365, 44: 4.168, "Old Computer Science Engineering Department": 3.4, "New Software Lab": 3.4, "Centre for Technology Alternatives for Rural Areas": 3.4, - }, - "Centre for Technology Alternatives for Rural Areas": {43: 3.4}, - "New Software Lab": {43: 3.4}, - "Old Computer Science Engineering Department": {43: 3.4}, - 44: {43: 4.168, 45: 1.377, 89: 16.004}, - 45: {44: 1.377, 46: 6.724, 47: 9.685, "Fluid Mechanics and Fluid Power Lab": 0.389}, - "Fluid Mechanics and Fluid Power Lab": {45: 0.389}, - 46: {45: 6.724, 47: 1.053, 48: 4.133, "ENELEK Power Sine": 0.9}, - "ENELEK Power Sine": {46: 0.9}, - 47: {45: 9.685, 46: 1.053}, - 48: { + }, + "Centre for Technology Alternatives for Rural Areas": {43: 3.4}, + "New Software Lab": {43: 3.4}, + "Old Computer Science Engineering Department": {43: 3.4}, + 44: {43: 4.168, 45: 1.377, 89: 16.004}, + 45: {44: 1.377, 46: 6.724, 47: 9.685, "Fluid Mechanics and Fluid Power Lab": 0.389}, + "Fluid Mechanics and Fluid Power Lab": {45: 0.389}, + 46: {45: 6.724, 47: 1.053, 48: 4.133, "ENELEK Power Sine": 0.9}, + "ENELEK Power Sine": {46: 0.9}, + 47: {45: 9.685, 46: 1.053}, + 48: { 46: 4.133, 49: 4.698, "Tinkerers Lab": 1.1380000000000001, "Refrigeration, A/C and Cryogenics Lab": 1.1380000000000001, "Treelabs": 1.1380000000000001, "N3 Bay": 28.288, - }, - "Treelabs": {48: 1.1380000000000001}, - "Refrigeration, A/C and Cryogenics Lab": {48: 1.1380000000000001}, - "Tinkerers Lab": {48: 1.1380000000000001}, - 49: { + }, + "Treelabs": {48: 1.1380000000000001}, + "Refrigeration, A/C and Cryogenics Lab": {48: 1.1380000000000001}, + "Tinkerers Lab": {48: 1.1380000000000001}, + 49: { 48: 4.698, 50: 11.441, "Mechanical Engineering Department": 27.361, "Industrial Engineering and Operations Research": 27.361, - }, - "Industrial Engineering and Operations Research": {49: 27.361}, - "Mechanical Engineering Department": {49: 27.361}, - 50: {49: 11.441, 51: 2.997, 52: 1.549}, - 51: { + }, + "Industrial Engineering and Operations Research": {49: 27.361}, + "Mechanical Engineering Department": {49: 27.361}, + 50: {49: 11.441, 51: 2.997, 52: 1.549}, + 51: { 50: 2.997, 76: 23.297, "Industrial Design Centre": 5.002, "IDC Canteen": 5.002, "IDC Shakti": 5.002, - }, - "IDC Shakti": {51: 5.002}, - "IDC Canteen": {51: 5.002}, - "Industrial Design Centre": {51: 5.002}, - 52: {50: 1.549, 53: 5.869, 76: 49.213, 178: 82.57600000000001}, - 53: { + }, + "IDC Shakti": {51: 5.002}, + "IDC Canteen": {51: 5.002}, + "Industrial Design Centre": {51: 5.002}, + 52: {50: 1.549, 53: 5.869, 76: 49.213, 178: 82.57600000000001}, + 53: { 52: 5.869, 54: 21.053, "Civil Engineering Department": 21.361, "Victor Menezes Convention Centre": 9.385, "Centre for Urban Science and Engineering (inside civil)": 21.361, "Inter-disciplinary Programme in Climate Studies": 21.361, - }, - "Inter-disciplinary Programme in Climate Studies": {53: 21.361}, - "Centre for Urban Science and Engineering (inside civil)": {53: 21.361}, - "Civil Engineering Department": {53: 21.361}, - "Victor Menezes Convention Centre": {53: 9.385}, - 54: { + }, + "Inter-disciplinary Programme in Climate Studies": {53: 21.361}, + "Centre for Urban Science and Engineering (inside civil)": {53: 21.361}, + "Civil Engineering Department": {53: 21.361}, + "Victor Menezes Convention Centre": {53: 9.385}, + 54: { 53: 21.053, 55: 3.872, "Electrical Engineering Department": 22.985, "Electrical Engineering Annexe Building": 1.156, - }, - "Electrical Engineering Department": {54: 22.985, 176: 18.761, 56: 4.453}, - "Electrical Engineering Annexe Building": {54: 1.156, 56: 35.746}, - 55: {54: 3.872, 56: 18.434, 57: 4.212}, - 56: { + }, + "Electrical Engineering Department": {54: 22.985, 176: 18.761, 56: 4.453}, + "Electrical Engineering Annexe Building": {54: 1.156, 56: 35.746}, + 55: {54: 3.872, 56: 18.434, 57: 4.212}, + 56: { 55: 18.434, "Girish Gaitonde Building": 6.682, "Electrical Engineering Department": 4.453, "Electrical Engineering Annexe Building": 35.746, - }, - "Girish Gaitonde Building": {175: 6.597, 56: 6.682}, - 57: { + }, + "Girish Gaitonde Building": {175: 6.597, 56: 6.682}, + 57: { 174: 90.82900000000001, 55: 4.212, 58: 4.745, "Seminar Hall": 3.536, "Rock Powdering Lab": 8.125, "Rock Cutting Lab": 8.125, - }, - "Seminar Hall": {57: 3.536}, - "Rock Cutting Lab": {57: 8.125}, - "Rock Powdering Lab": {57: 8.125}, - 58: { + }, + "Seminar Hall": {57: 3.536}, + "Rock Cutting Lab": {57: 8.125}, + "Rock Powdering Lab": {57: 8.125}, + 58: { 57: 4.745, 59: 15.842, "Metallurgical Engineering and Material Science Department": 31.397000000000002, @@ -509,21 +527,21 @@ def __init__(self): "Aerospace Engineering Annexe": 16.97, "Inter-disciplinary Programme in Corrosion Science & Engineering": 31.397000000000002, "Aqueous Corrosion Lab": 31.397000000000002, - }, - "Aqueous Corrosion Lab": {58: 31.397000000000002, 173: 20.2}, - "Inter-disciplinary Programme in Corrosion Science & Engineering": { + }, + "Aqueous Corrosion Lab": {58: 31.397000000000002, 173: 20.2}, + "Inter-disciplinary Programme in Corrosion Science & Engineering": { 58: 31.397000000000002, 173: 20.2, - }, - "Metallurgical Engineering and Material Science Department": { + }, + "Metallurgical Engineering and Material Science Department": { 58: 31.397000000000002, 173: 20.2, - }, - "Corrosion Lab 1": {58: 31.397000000000002, 173: 20.2}, - "Corrosion Science Paint Lab": {58: 31.397000000000002, 173: 20.2}, - "Humanities and Social Sciences Department": {58: 16.97}, - "Aerospace Engineering Annexe": {58: 16.97}, - 59: { + }, + "Corrosion Lab 1": {58: 31.397000000000002, 173: 20.2}, + "Corrosion Science Paint Lab": {58: 31.397000000000002, 173: 20.2}, + "Humanities and Social Sciences Department": {58: 16.97}, + "Aerospace Engineering Annexe": {58: 16.97}, + 59: { 58: 15.842, 60: 14.482000000000001, "Lecture Hall Complex - 1 & 2": 20.714000000000002, @@ -570,93 +588,93 @@ def __init__(self): "Lecture Hall Complex - 3": 5.945, "WRCBB Wadhwani Research Centre in Biosciences and Bioengineering ": 54.517, "Biosciences and Bioengineering Department": 54.517, - }, - "Biosciences and Bioengineering Department": {59: 54.517}, - "WRCBB Wadhwani Research Centre in Biosciences and Bioengineering ": {59: 54.517}, - "LH 302": {59: 20.714000000000002, 172: 26.177}, - "LH 301": {59: 20.714000000000002, 172: 26.177}, - "LH 102": {59: 20.714000000000002, 172: 26.177}, - "LH 101": {59: 20.714000000000002, 172: 26.177}, - "LC 302": {59: 20.714000000000002, 172: 26.177}, - "LC 301": {59: 20.714000000000002, 172: 26.177}, - "LC 202": {59: 20.714000000000002, 172: 26.177}, - "LC 201": {59: 20.714000000000002, 172: 26.177}, - "LC 102": {59: 20.714000000000002, 172: 26.177}, - "LC 101": {59: 20.714000000000002, 172: 26.177}, - "LC 002": {59: 20.714000000000002, 172: 26.177}, - "LC 001": {59: 20.714000000000002, 172: 26.177}, - "LT 001": {59: 20.714000000000002, 172: 26.177}, - "LT 306": {59: 20.714000000000002, 172: 26.177}, - "LT 305": {59: 20.714000000000002, 172: 26.177}, - "LT 304": {59: 20.714000000000002, 172: 26.177}, - "LT 303": {59: 20.714000000000002, 172: 26.177}, - "LT 302": {59: 20.714000000000002, 172: 26.177}, - "LT 301": {59: 20.714000000000002, 172: 26.177}, - "LT 206": {59: 20.714000000000002, 172: 26.177}, - "LT 205": {59: 20.714000000000002, 172: 26.177}, - "LT 204": {59: 20.714000000000002, 172: 26.177}, - "LT 203": {59: 20.714000000000002, 172: 26.177}, - "LT 202": {59: 20.714000000000002, 172: 26.177}, - "LT 201": {59: 20.714000000000002, 172: 26.177}, - "LT 106": {59: 20.714000000000002, 172: 26.177}, - "LT 105": {59: 20.714000000000002, 172: 26.177}, - "LT 104": {59: 20.714000000000002, 172: 26.177}, - "LT 103": {59: 20.714000000000002, 172: 26.177}, - "LT 102": {59: 20.714000000000002, 172: 26.177}, - "LT 101": {59: 20.714000000000002, 172: 26.177}, - "LT 006": {59: 20.714000000000002, 172: 26.177}, - "LT 005": {59: 20.714000000000002, 172: 26.177}, - "LT 004": {59: 20.714000000000002, 172: 26.177}, - "LT 003": {59: 20.714000000000002, 172: 26.177}, - "LT 002": {59: 20.714000000000002, 172: 26.177}, - "Lecture Hall Complex - 1 & 2": {59: 20.714000000000002, 172: 26.177}, - "LA 202": {59: 5.945}, - "LA 201": {59: 5.945}, - "LA 002": {59: 5.945}, - "LA 001": {59: 5.945}, - "Lecture Hall Complex - 3": {59: 5.945}, - 60: { + }, + "Biosciences and Bioengineering Department": {59: 54.517}, + "WRCBB Wadhwani Research Centre in Biosciences and Bioengineering ": {59: 54.517}, + "LH 302": {59: 20.714000000000002, 172: 26.177}, + "LH 301": {59: 20.714000000000002, 172: 26.177}, + "LH 102": {59: 20.714000000000002, 172: 26.177}, + "LH 101": {59: 20.714000000000002, 172: 26.177}, + "LC 302": {59: 20.714000000000002, 172: 26.177}, + "LC 301": {59: 20.714000000000002, 172: 26.177}, + "LC 202": {59: 20.714000000000002, 172: 26.177}, + "LC 201": {59: 20.714000000000002, 172: 26.177}, + "LC 102": {59: 20.714000000000002, 172: 26.177}, + "LC 101": {59: 20.714000000000002, 172: 26.177}, + "LC 002": {59: 20.714000000000002, 172: 26.177}, + "LC 001": {59: 20.714000000000002, 172: 26.177}, + "LT 001": {59: 20.714000000000002, 172: 26.177}, + "LT 306": {59: 20.714000000000002, 172: 26.177}, + "LT 305": {59: 20.714000000000002, 172: 26.177}, + "LT 304": {59: 20.714000000000002, 172: 26.177}, + "LT 303": {59: 20.714000000000002, 172: 26.177}, + "LT 302": {59: 20.714000000000002, 172: 26.177}, + "LT 301": {59: 20.714000000000002, 172: 26.177}, + "LT 206": {59: 20.714000000000002, 172: 26.177}, + "LT 205": {59: 20.714000000000002, 172: 26.177}, + "LT 204": {59: 20.714000000000002, 172: 26.177}, + "LT 203": {59: 20.714000000000002, 172: 26.177}, + "LT 202": {59: 20.714000000000002, 172: 26.177}, + "LT 201": {59: 20.714000000000002, 172: 26.177}, + "LT 106": {59: 20.714000000000002, 172: 26.177}, + "LT 105": {59: 20.714000000000002, 172: 26.177}, + "LT 104": {59: 20.714000000000002, 172: 26.177}, + "LT 103": {59: 20.714000000000002, 172: 26.177}, + "LT 102": {59: 20.714000000000002, 172: 26.177}, + "LT 101": {59: 20.714000000000002, 172: 26.177}, + "LT 006": {59: 20.714000000000002, 172: 26.177}, + "LT 005": {59: 20.714000000000002, 172: 26.177}, + "LT 004": {59: 20.714000000000002, 172: 26.177}, + "LT 003": {59: 20.714000000000002, 172: 26.177}, + "LT 002": {59: 20.714000000000002, 172: 26.177}, + "Lecture Hall Complex - 1 & 2": {59: 20.714000000000002, 172: 26.177}, + "LA 202": {59: 5.945}, + "LA 201": {59: 5.945}, + "LA 002": {59: 5.945}, + "LA 001": {59: 5.945}, + "Lecture Hall Complex - 3": {59: 5.945}, + 60: { 59: 14.482000000000001, 61: 4.141, "Physics Department": 22.85, "Chemical Engineering Department": 30.472, "Chemistry Department": 30.472, - }, - "Physics Department": {60: 22.85, 171: 22.669}, - "Chemistry Department": {60: 30.472, 67: 79.88}, - "Chemical Engineering Department": {60: 30.472, 67: 79.88}, - 61: {60: 4.141, 62: 3.872, 161: 6.481}, - 62: {61: 3.872, 63: 2.809}, - 63: {62: 2.809, 64: 174.113, 160: 40.01}, - 64: {63: 174.113, 65: 6.6530000000000005, 181: 25.61}, - 65: { + }, + "Physics Department": {60: 22.85, 171: 22.669}, + "Chemistry Department": {60: 30.472, 67: 79.88}, + "Chemical Engineering Department": {60: 30.472, 67: 79.88}, + 61: {60: 4.141, 62: 3.872, 161: 6.481}, + 62: {61: 3.872, 63: 2.809}, + 63: {62: 2.809, 64: 174.113, 160: 40.01}, + 64: {63: 174.113, 65: 6.6530000000000005, 181: 25.61}, + 65: { 64: 6.6530000000000005, 66: 4.212, "DESE & CESE New Building": 13.13, "Cafe Coffee Day": 14.152000000000001, "Energy Science and Engineering (New Building)": 13.13, - }, - "Energy Science and Engineering (New Building)": {65: 13.13}, - "DESE & CESE New Building": {65: 13.13}, - "Cafe Coffee Day": {65: 14.152000000000001}, - 66: {65: 4.212, 67: 4.168, 70: 165.841}, - 67: { + }, + "Energy Science and Engineering (New Building)": {65: 13.13}, + "DESE & CESE New Building": {65: 13.13}, + "Cafe Coffee Day": {65: 14.152000000000001}, + 66: {65: 4.212, 67: 4.168, 70: 165.841}, + 67: { 66: 4.168, 68: 60.826, "Chemical Engineering Department": 79.88, "Chemistry Department": 79.88, - }, - 68: { + }, + 68: { 67: 60.826, 69: 19.856, "Aerospace Engineering Department": 2.448, "Centre for Aerospace Systems Design and Engineering": 2.448, - }, - "Centre for Aerospace Systems Design and Engineering": {68: 2.448}, - "Aerospace Engineering Department": {68: 2.448}, - 69: {68: 19.856, "ONGC Research Centre": 2.498, 71: 5.994}, - "ONGC Research Centre": {69: 2.498}, - 70: { + }, + "Centre for Aerospace Systems Design and Engineering": {68: 2.448}, + "Aerospace Engineering Department": {68: 2.448}, + 69: {68: 19.856, "ONGC Research Centre": 2.498, 71: 5.994}, + "ONGC Research Centre": {69: 2.498}, + 70: { 66: 165.841, 71: 2.089, "Proposed Building for Tata Centre for Technology": 10.585, @@ -664,61 +682,61 @@ def __init__(self): "Proposed Bio Mechanical Department": 10.585, "Proposed D.S Foundation": 10.585, "Proposed Press ": 10.585, - }, - "Proposed Press ": {70: 10.585}, - "Proposed D.S Foundation": {70: 10.585}, - "Proposed Bio Mechanical Department": {70: 10.585}, - "Proposed NCAIR": {70: 10.585}, - "Proposed Building for Tata Centre for Technology": {70: 10.585}, - 71: {70: 2.089, 72: 21.674, 69: 5.994}, - 72: {71: 21.674, 73: 3.133, "Energy Science and Engineering": 2.813}, - "Energy Science and Engineering": {72: 2.813}, - 73: {72: 3.133, 74: 0.81, "Earth Science Department": 17.876}, - "Earth Science Department": {73: 17.876}, - 74: { + }, + "Proposed Press ": {70: 10.585}, + "Proposed D.S Foundation": {70: 10.585}, + "Proposed Bio Mechanical Department": {70: 10.585}, + "Proposed NCAIR": {70: 10.585}, + "Proposed Building for Tata Centre for Technology": {70: 10.585}, + 71: {70: 2.089, 72: 21.674, 69: 5.994}, + 72: {71: 21.674, 73: 3.133, "Energy Science and Engineering": 2.813}, + "Energy Science and Engineering": {72: 2.813}, + 73: {72: 3.133, 74: 0.81, "Earth Science Department": 17.876}, + "Earth Science Department": {73: 17.876}, + 74: { 73: 0.81, 75: 8.885, "Centre of Studies in Resources Engineering": 4.45, "Society for Innovation and Entrepreneurship": 4.45, - }, - "Society for Innovation and Entrepreneurship": {74: 4.45}, - "Centre of Studies in Resources Engineering": {74: 4.45}, - 75: { + }, + "Society for Innovation and Entrepreneurship": {74: 4.45}, + "Centre of Studies in Resources Engineering": {74: 4.45}, + 75: { 74: 8.885, 76: 10.73, "Centre for Environmental Science and Engineering": 15.937000000000001, - }, - "Centre for Environmental Science and Engineering": {75: 15.937000000000001}, - 76: { + }, + "Centre for Environmental Science and Engineering": {75: 15.937000000000001}, + 76: { 75: 10.73, 51: 23.297, 52: 49.213, 77: 4.8340000000000005, "Non- Academic Staff Association": 4.212, "Printing Press": 4.212, - }, - "Printing Press": {76: 4.212}, - "Non- Academic Staff Association": {76: 4.212}, - 77: { + }, + "Printing Press": {76: 4.212}, + "Non- Academic Staff Association": {76: 4.212}, + 77: { 76: 4.8340000000000005, 78: 24.026, "Structural integrity Testing and Analysis Centre": 4.6930000000000005, "S3 Bay": 7.633, - }, - "S3 Bay": {77: 7.633}, - "Structural integrity Testing and Analysis Centre": { + }, + "S3 Bay": {77: 7.633}, + "Structural integrity Testing and Analysis Centre": { 77: 4.6930000000000005, 82: 44.285000000000004, - }, - 78: { + }, + 78: { 77: 24.026, 79: 19.37, "Electrical Maintenence": 5.92, "Machine Tool Lab": 13.768, - }, - "Machine Tool Lab": {79: 21.634, 78: 13.768}, - "Electrical Maintenence": {78: 5.92}, - 79: { + }, + "Machine Tool Lab": {79: 21.634, 78: 13.768}, + "Electrical Maintenence": {78: 5.92}, + 79: { 78: 19.37, 80: 11.765, "Machine Tool Lab": 21.634, @@ -731,65 +749,65 @@ def __init__(self): "S2 Bay": 21.634, "UG Lab / S2 Bay": 21.634, "Fuel Cell Research Facility": 4.049, - }, - "Fuel Cell Research Facility": {79: 4.049, 80: 9.992, 82: 4.905}, - "UG Lab / S2 Bay": {79: 21.634}, - "S2 Bay": {79: 21.634}, - "Supercritical fluid Processing facility (Chemical Engg.)": {79: 5.114}, - "N1 Bay": {79: 4.049}, - "S1 Bay": {79: 5.114}, - "RM Lab (Rapid manufacturing)": {79: 9.133000000000001}, - "OrthoCad Lab": {79: 8.593}, - "Micro Fluidics Lab": {79: 6.273}, - 80: { + }, + "Fuel Cell Research Facility": {79: 4.049, 80: 9.992, 82: 4.905}, + "UG Lab / S2 Bay": {79: 21.634}, + "S2 Bay": {79: 21.634}, + "Supercritical fluid Processing facility (Chemical Engg.)": {79: 5.114}, + "N1 Bay": {79: 4.049}, + "S1 Bay": {79: 5.114}, + "RM Lab (Rapid manufacturing)": {79: 9.133000000000001}, + "OrthoCad Lab": {79: 8.593}, + "Micro Fluidics Lab": {79: 6.273}, + 80: { 79: 11.765, 81: 5.7170000000000005, 82: 12.461, "Fuel Cell Research Facility": 9.992, - }, - 81: { + }, + 81: { 185: 7.688, 80: 5.7170000000000005, "Physics Lab (Ist Years)": 1.289, "UG Lab (1st years)": 1.289, "Power House": 6.309, - }, - "UG Lab (1st years)": {81: 1.289, 82: 10.225}, - "Physics Lab (Ist Years)": {81: 1.289, 82: 10.225}, - "Power House": {81: 6.309}, - 82: { + }, + "UG Lab (1st years)": {81: 1.289, 82: 10.225}, + "Physics Lab (Ist Years)": {81: 1.289, 82: 10.225}, + "Power House": {81: 6.309}, + 82: { 80: 12.461, 83: 11.773, "UG Lab (1st years)": 10.225, "Physics Lab (Ist Years)": 10.225, "Structural integrity Testing and Analysis Centre": 44.285000000000004, "Fuel Cell Research Facility": 4.905, - }, - 83: { + }, + 83: { 82: 11.773, 84: 3.321, "SMAmL Suman Mashruwala Advanced Microengineering Lab": 1.109, "Thermal Hydraulic Test Facility": 6.498, "N2 Bay": 7.297, "N3 Bay": 4.82, - }, - "N3 Bay": {48: 28.288, 83: 4.82}, - "N2 Bay": {83: 7.297}, - "SMAmL Suman Mashruwala Advanced Microengineering Lab": {83: 1.109}, - "Thermal Hydraulic Test Facility": {83: 6.498}, - 84: { + }, + "N3 Bay": {48: 28.288, 83: 4.82}, + "N2 Bay": {83: 7.297}, + "SMAmL Suman Mashruwala Advanced Microengineering Lab": {83: 1.109}, + "Thermal Hydraulic Test Facility": {83: 6.498}, + 84: { 83: 3.321, 85: 18.914, "Cummins Engine Research facility": 0.65, "Heat Transfer and Thermodynamic Lab": 0.89, "Steam Power Lab": 1.186, "IC Engine and Combustion Lab": 4.525, - }, - "IC Engine and Combustion Lab": {84: 4.525, 85: 6.793}, - "Steam Power Lab": {84: 1.186}, - "Cummins Engine Research facility": {84: 0.65}, - "Heat Transfer and Thermodynamic Lab": {84: 0.89}, - 85: { + }, + "IC Engine and Combustion Lab": {84: 4.525, 85: 6.793}, + "Steam Power Lab": {84: 1.186}, + "Cummins Engine Research facility": {84: 0.65}, + "Heat Transfer and Thermodynamic Lab": {84: 0.89}, + 85: { 84: 18.914, 88: 6.724, 86: 11.765, @@ -800,30 +818,30 @@ def __init__(self): "Hydraulics Lab": 1.193, "Concrete Technology Lab": 11.133000000000001, "IC Engine and Combustion Lab": 6.793, - }, - "Concrete Technology Lab": {85: 11.133000000000001}, - "Hydraulics Lab": {85: 1.193, 88: 4.6850000000000005}, - "Heavy Structure Lab": {85: 11.133000000000001}, - "Structural Evaluation & Material Technologies Lab": {85: 2.848}, - "Old ONGC Lab": {85: 3.298}, - 86: { + }, + "Concrete Technology Lab": {85: 11.133000000000001}, + "Hydraulics Lab": {85: 1.193, 88: 4.6850000000000005}, + "Heavy Structure Lab": {85: 11.133000000000001}, + "Structural Evaluation & Material Technologies Lab": {85: 2.848}, + "Old ONGC Lab": {85: 3.298}, + 86: { 85: 11.765, 87: 5.041, "Geotechnical Engg. Lab": 0.164, "Metal Forming Lab": 1.369, - }, - "Metal Forming Lab": {86: 1.369, 85: 6.548}, - "Geotechnical Engg. Lab": {86: 0.164}, - 87: { + }, + "Metal Forming Lab": {86: 1.369, 85: 6.548}, + "Geotechnical Engg. Lab": {86: 0.164}, + 87: { 86: 5.041, "National Geotechnical Centrifuge Facility": 1.5250000000000001, "Vihar House": 38.825, "GMFL Lab / Geophysical and multiphase Flows Lab": 31.265, - }, - "GMFL Lab / Geophysical and multiphase Flows Lab": {87: 31.265}, - "Vihar House": {87: 38.825}, - "National Geotechnical Centrifuge Facility": {87: 1.5250000000000001}, - 88: { + }, + "GMFL Lab / Geophysical and multiphase Flows Lab": {87: 31.265}, + "Vihar House": {87: 38.825}, + "National Geotechnical Centrifuge Facility": {87: 1.5250000000000001}, + 88: { 85: 6.724, "Solar Lab": 11.485, 89: 2.997, @@ -831,190 +849,190 @@ def __init__(self): "Hydraulics Lab Workshop": 3.94, "Hydraulics Lab": 4.6850000000000005, "Hydraulics Lab (New)": 1.885, - }, - "Hydraulics Lab (New)": {88: 1.885, 89: 1.156}, - "Hydraulics Lab Workshop": {88: 3.94}, - "Solar Lab": {88: 11.485}, - "Heat Pump Lab": {88: 1.25}, - 89: {44: 16.004, 88: 2.997, 39: 28.409, "Hydraulics Lab (New)": 1.156}, - 90: { + }, + "Hydraulics Lab (New)": {88: 1.885, 89: 1.156}, + "Hydraulics Lab Workshop": {88: 3.94}, + "Solar Lab": {88: 11.485}, + "Heat Pump Lab": {88: 1.25}, + 89: {44: 16.004, 88: 2.997, 39: 28.409, "Hydraulics Lab (New)": 1.156}, + 90: { 91: 7.8500000000000005, 39: 5.994, "Inter-disciplinary Programme in Systems and Control Engineering": 2.048, - }, - "Inter-disciplinary Programme in Systems and Control Engineering": {90: 2.048}, - 91: { + }, + "Inter-disciplinary Programme in Systems and Control Engineering": {90: 2.048}, + 91: { 90: 7.8500000000000005, 92: 3.5380000000000003, "NanoTech. & Science Research Centre": 3.697, "Advanced Centre for Research in Electronics": 3.697, "Sophisticated Analytical Instruments Facility": 3.697, - }, - "Sophisticated Analytical Instruments Facility": {91: 3.697}, - "Advanced Centre for Research in Electronics": {91: 3.697}, - "NanoTech. & Science Research Centre": {91: 3.697}, - 92: {91: 3.5380000000000003, 93: 9.146, 211: 1.549, 213: 9.857, 212: 1.018}, - 93: {92: 9.146, 94: 2.916, 213: 0.081}, - 94: {93: 2.916, 213: 2.997, 214: 3.133, 36: 21.533}, - 95: {96: 5.994, 169: 17.525000000000002, 37: 128.321}, - 96: {95: 5.994, "NCC Office": 18.866, 97: 21.146, "Squash Court": 22.802}, - "Squash Court": {96: 22.802, 97: 9.040000000000001}, - "NCC Office": {96: 18.866}, - 97: { + }, + "Sophisticated Analytical Instruments Facility": {91: 3.697}, + "Advanced Centre for Research in Electronics": {91: 3.697}, + "NanoTech. & Science Research Centre": {91: 3.697}, + 92: {91: 3.5380000000000003, 93: 9.146, 211: 1.549, 213: 9.857, 212: 1.018}, + 93: {92: 9.146, 94: 2.916, 213: 0.081}, + 94: {93: 2.916, 213: 2.997, 214: 3.133, 36: 21.533}, + 95: {96: 5.994, 169: 17.525000000000002, 37: 128.321}, + 96: {95: 5.994, "NCC Office": 18.866, 97: 21.146, "Squash Court": 22.802}, + "Squash Court": {96: 22.802, 97: 9.040000000000001}, + "NCC Office": {96: 18.866}, + 97: { 96: 21.146, 98: 11.441, "Staff Hostel": 83.46600000000001, "Squash Court": 9.040000000000001, - }, - "Staff Hostel": {97: 83.46600000000001}, - 98: { + }, + "Staff Hostel": {97: 83.46600000000001}, + 98: { 97: 11.441, 99: 3.133, 101: 6.885, "Hostel 11 Athena (Girls Hostel)": 8.82, "Printing and photocopying H11": 8.82, - }, - "Printing and photocopying H11": {98: 8.82}, - "Hostel 11 Athena (Girls Hostel)": {98: 8.82}, - 99: {98: 3.133, 100: 6.977, "Basketball Court": 2.269}, - "Basketball Court": {99: 2.269}, - 100: {99: 6.977, "Hockey Ground": 22.48, "Gymkhana Grounds": 9.901}, - "Hockey Ground": {100: 22.48}, - "Gymkhana Grounds": {100: 9.901}, - 101: {98: 6.885, 102: 28.925, "Gymkhana Building": 3.725, "Brewberrys Cafe": 1.682}, - "Gymkhana Building": {101: 3.725}, - "Brewberrys Cafe": {101: 1.682}, - 102: {101: 28.925, 13: 11.584, 103: 53.573}, - 103: {102: 53.573, 104: 3.872}, - 104: {103: 3.872, 105: 2.997}, - 105: {104: 2.997, 106: 51.872}, - 106: {105: 51.872, 107: 2.873}, - 107: {106: 2.873, 108: 2.314}, - 108: {107: 2.314, 109: 3.592}, - 109: {108: 3.592, 110: 12.745000000000001}, - 110: {109: 12.745000000000001, 111: 2.225}, - 111: {110: 2.225, 112: 12.674, 115: 1.549}, - 112: {111: 12.674, 113: 11.449}, - 113: {112: 11.449, 114: 42.754}, - 114: {113: 42.754, "Boat House": 23.722}, - "Boat House": {114: 23.722}, - 115: {111: 1.549, 116: 4.168}, - 116: {115: 4.168, 117: 2.025}, - 117: {116: 2.025, 118: 1.377}, - 118: {117: 1.377, 119: 21.658}, - 119: {118: 21.658, 120: 1.0}, - 120: {119: 1.0, 121: 1.377}, - 121: {120: 1.377, 122: 1.053, "National Centre for Mathematics": 2.164}, - 122: {121: 1.053, 123: 267.125, "Guest House/Padmavihar": 11484.925000000001}, - "Guest House/Padmavihar": {122: 11484.925000000001}, - "National Centre for Mathematics": {121: 2.164}, - 123: { + }, + "Printing and photocopying H11": {98: 8.82}, + "Hostel 11 Athena (Girls Hostel)": {98: 8.82}, + 99: {98: 3.133, 100: 6.977, "Basketball Court": 2.269}, + "Basketball Court": {99: 2.269}, + 100: {99: 6.977, "Hockey Ground": 22.48, "Gymkhana Grounds": 9.901}, + "Hockey Ground": {100: 22.48}, + "Gymkhana Grounds": {100: 9.901}, + 101: {98: 6.885, 102: 28.925, "Gymkhana Building": 3.725, "Brewberrys Cafe": 1.682}, + "Gymkhana Building": {101: 3.725}, + "Brewberrys Cafe": {101: 1.682}, + 102: {101: 28.925, 13: 11.584, 103: 53.573}, + 103: {102: 53.573, 104: 3.872}, + 104: {103: 3.872, 105: 2.997}, + 105: {104: 2.997, 106: 51.872}, + 106: {105: 51.872, 107: 2.873}, + 107: {106: 2.873, 108: 2.314}, + 108: {107: 2.314, 109: 3.592}, + 109: {108: 3.592, 110: 12.745000000000001}, + 110: {109: 12.745000000000001, 111: 2.225}, + 111: {110: 2.225, 112: 12.674, 115: 1.549}, + 112: {111: 12.674, 113: 11.449}, + 113: {112: 11.449, 114: 42.754}, + 114: {113: 42.754, "Boat House": 23.722}, + "Boat House": {114: 23.722}, + 115: {111: 1.549, 116: 4.168}, + 116: {115: 4.168, 117: 2.025}, + 117: {116: 2.025, 118: 1.377}, + 118: {117: 1.377, 119: 21.658}, + 119: {118: 21.658, 120: 1.0}, + 120: {119: 1.0, 121: 1.377}, + 121: {120: 1.377, 122: 1.053, "National Centre for Mathematics": 2.164}, + 122: {121: 1.053, 123: 267.125, "Guest House/Padmavihar": 11484.925000000001}, + "Guest House/Padmavihar": {122: 11484.925000000001}, + "National Centre for Mathematics": {121: 2.164}, + 123: { 122: 267.125, 124: 3.133, 138: 20.417, "Type B-14": 7.2250000000000005, "Guest House / Jalvihar": 38.484, - }, - "Guest House / Jalvihar": {123: 38.484}, - "Type B-14": {123: 7.2250000000000005}, - 124: {123: 3.133, 125: 19.981}, - 125: {124: 19.981, 126: 20.417}, - 126: {125: 20.417, 127: 241.26500000000001, 135: 29.138, "Type B-13": 12.785}, - "Type B-13": {126: 12.785}, - 127: {126: 241.26500000000001, 128: 32.405, "Proposed TypeA Building": 20.89}, - "Proposed TypeA Building": {127: 20.89}, - 128: {127: 32.405, 129: 13.549}, - 129: { + }, + "Guest House / Jalvihar": {123: 38.484}, + "Type B-14": {123: 7.2250000000000005}, + 124: {123: 3.133, 125: 19.981}, + 125: {124: 19.981, 126: 20.417}, + 126: {125: 20.417, 127: 241.26500000000001, 135: 29.138, "Type B-13": 12.785}, + "Type B-13": {126: 12.785}, + 127: {126: 241.26500000000001, 128: 32.405, "Proposed TypeA Building": 20.89}, + "Proposed TypeA Building": {127: 20.89}, + 128: {127: 32.405, 129: 13.549}, + 129: { 128: 13.549, 130: 62.965, 193: 32.869, "B 19 Old Multistoried Building- Residence ": 22.024, - }, - "B 19 Old Multistoried Building- Residence ": {129: 22.024}, - 130: {129: 62.965, 131: 1.972, "White House": 30.445}, - "White House": {130: 30.445}, - 131: {130: 1.972, 132: 17.849, "CTR 20": 4.001}, - "CTR 20": {131: 4.001}, - 132: {131: 17.849, 133: 94.357, "CTR 19": 4.165, "Bungalow A10 ": 16.66}, - "Bungalow A10 ": {132: 16.66, 133: 44.181}, - "CTR 19": {132: 4.165}, - 133: { + }, + "B 19 Old Multistoried Building- Residence ": {129: 22.024}, + 130: {129: 62.965, 131: 1.972, "White House": 30.445}, + "White House": {130: 30.445}, + 131: {130: 1.972, 132: 17.849, "CTR 20": 4.001}, + "CTR 20": {131: 4.001}, + 132: {131: 17.849, 133: 94.357, "CTR 19": 4.165, "Bungalow A10 ": 16.66}, + "Bungalow A10 ": {132: 16.66, 133: 44.181}, + "CTR 19": {132: 4.165}, + 133: { 132: 94.357, 134: 2.225, "Bungalow A11 ": 12.308, "Bungalow A10 ": 44.181, "Bungalow A8 ": 39.22, - }, - "Bungalow A8 ": {133: 39.22, 153: 114.781}, - 134: { + }, + "Bungalow A8 ": {133: 39.22, 153: 114.781}, + 134: { 133: 2.225, 135: 132.31300000000002, 153: 53.888, "Shishu Vihar": 18.405, "Bungalow A5 ": 18.925, "Bungalow A11 ": 13.289, - }, - "Bungalow A11 ": {133: 12.308, 134: 13.289}, - "Bungalow A5 ": {134: 18.925, 153: 13.213000000000001}, - "Shishu Vihar": {134: 18.405, 153: 13.109}, - 135: { + }, + "Bungalow A11 ": {133: 12.308, 134: 13.289}, + "Bungalow A5 ": {134: 18.925, 153: 13.213000000000001}, + "Shishu Vihar": {134: 18.405, 153: 13.109}, + 135: { 134: 132.31300000000002, 136: 95.849, 126: 29.138, "A1 Director Bungalow": 54.92, - }, - "A1 Director Bungalow": { + }, + "A1 Director Bungalow": { 135: 54.92, 136: 14.357000000000001, 155: 28.746000000000002, 154: 26.249, - }, - 136: { + }, + 136: { 135: 95.849, 137: 5.365, 155: 29.201, "Type B-1": 5.248, "Bungalow A13 ": 5.188, "A1 Director Bungalow": 14.357000000000001, - }, - "Bungalow A13 ": {136: 5.188}, - "Type B-1": {136: 5.248}, - 137: {136: 5.365, 138: 1.62}, - 138: {137: 1.62, 139: 38.138, 123: 20.417}, - 139: {138: 38.138, 140: 2.809}, - 140: {139: 2.809, 141: 23.258}, - 141: {140: 23.258, 142: 48.401, 157: 10.837, "Guest House/Vanvihar": 13240.298}, - "Guest House/Vanvihar": {141: 13240.298}, - 142: { + }, + "Bungalow A13 ": {136: 5.188}, + "Type B-1": {136: 5.248}, + 137: {136: 5.365, 138: 1.62}, + 138: {137: 1.62, 139: 38.138, 123: 20.417}, + 139: {138: 38.138, 140: 2.809}, + 140: {139: 2.809, 141: 23.258}, + 141: {140: 23.258, 142: 48.401, 157: 10.837, "Guest House/Vanvihar": 13240.298}, + "Guest House/Vanvihar": {141: 13240.298}, + 142: { 141: 48.401, 143: 15.842, 162: 13.385, "Gulmohar Garden Cafetaria": 5.6450000000000005, "Staff Club": 15.725, - }, - "Staff Club": {142: 15.725}, - 143: {142: 15.842, 144: 33.314, "Hospital": 17.876}, - "Hospital": {143: 17.876}, - 144: {143: 33.314, 145: 0.729, 166: 12.178}, - 145: {144: 0.729, 146: 2.017}, - 146: {145: 2.017, 147: 30.586000000000002, 152: 11.441}, - 147: {146: 30.586000000000002, 148: 4.168, "Kshitij Udyan": 23.490000000000002}, - "Kshitij Udyan": {147: 23.490000000000002}, - 148: {147: 4.168, 149: 5.122}, - 149: {148: 5.122, 150: 7.1290000000000004, "Tennis Court (new)": 56.45}, - "Tennis Court (new)": {149: 56.45}, - 150: {149: 7.1290000000000004, 151: 4.168}, - 151: {152: 2.106, 150: 4.168, 169: 5.905}, - 152: { + }, + "Staff Club": {142: 15.725}, + 143: {142: 15.842, 144: 33.314, "Hospital": 17.876}, + "Hospital": {143: 17.876}, + 144: {143: 33.314, 145: 0.729, 166: 12.178}, + 145: {144: 0.729, 146: 2.017}, + 146: {145: 2.017, 147: 30.586000000000002, 152: 11.441}, + 147: {146: 30.586000000000002, 148: 4.168, "Kshitij Udyan": 23.490000000000002}, + "Kshitij Udyan": {147: 23.490000000000002}, + 148: {147: 4.168, 149: 5.122}, + 149: {148: 5.122, 150: 7.1290000000000004, "Tennis Court (new)": 56.45}, + "Tennis Court (new)": {149: 56.45}, + 150: {149: 7.1290000000000004, 151: 4.168}, + 151: {152: 2.106, 150: 4.168, 169: 5.905}, + 152: { 151: 2.106, 168: 4.698, 146: 11.441, "Convocation Hall": 11.93, "Institute Music Room": 11.93, - }, - "Institute Music Room": {152: 11.93}, - "Convocation Hall": {152: 11.93}, - 153: { + }, + "Institute Music Room": {152: 11.93}, + "Convocation Hall": {152: 11.93}, + 153: { 134: 53.888, 154: 79.69, "Main Gate no. 2": 139.14000000000001, @@ -1022,26 +1040,26 @@ def __init__(self): "Bungalow A5 ": 13.213000000000001, "ATM - State Bank Main Gate": 172.32500000000002, "Bungalow A8 ": 114.781, - }, - "ATM - State Bank Main Gate": {153: 172.32500000000002}, - "Main Gate no. 2": {153: 139.14000000000001}, - 154: {153: 79.69, 155: 80.441, "A1 Director Bungalow": 26.249}, - 155: { + }, + "ATM - State Bank Main Gate": {153: 172.32500000000002}, + "Main Gate no. 2": {153: 139.14000000000001}, + 154: {153: 79.69, 155: 80.441, "A1 Director Bungalow": 26.249}, + 155: { 136: 29.201, 154: 80.441, 156: 48.725, "Hostel 10 Annexe (Girls Hostel)": 16.145, "A1 Director Bungalow": 28.746000000000002, - }, - "Hostel 10 Annexe (Girls Hostel)": {155: 16.145}, - 156: { + }, + "Hostel 10 Annexe (Girls Hostel)": {155: 16.145}, + 156: { 155: 48.725, 157: 5.7250000000000005, "Hostel 10 Phoenix (Girls Hostel)": 6.713, - }, - "Hostel 10 Phoenix (Girls Hostel)": {156: 6.713}, - 157: {156: 5.7250000000000005, 158: 2.521, 141: 10.837}, - 158: { + }, + "Hostel 10 Phoenix (Girls Hostel)": {156: 6.713}, + 157: {156: 5.7250000000000005, 158: 2.521, 141: 10.837}, + 158: { 157: 2.521, 162: 36.074, 159: 153.389, @@ -1049,53 +1067,53 @@ def __init__(self): "Gulmohar Garden Cafetaria": 9.554, "ATM - Canara Bank near Gulmohar": 5.825, "Gulmohar Restaurant": 5.825, - }, - "Gulmohar Restaurant": {158: 5.825}, - "ATM - Canara Bank near Gulmohar": {158: 5.825}, - "Gulmohar Garden Cafetaria": {162: 15.3, 142: 5.6450000000000005, 158: 9.554}, - "Gulmohar Building": {158: 5.825}, - 159: {158: 153.389, 160: 3.9250000000000003, 171: 20.498}, - 160: {159: 3.9250000000000003, 161: 5.194, 63: 40.01, 253: 160.865}, - 161: {160: 5.194, 61: 6.481}, - 162: {142: 13.385, 158: 36.074, 163: 14.321, "Gulmohar Garden Cafetaria": 15.3}, - 163: { + }, + "Gulmohar Restaurant": {158: 5.825}, + "ATM - Canara Bank near Gulmohar": {158: 5.825}, + "Gulmohar Garden Cafetaria": {162: 15.3, 142: 5.6450000000000005, 158: 9.554}, + "Gulmohar Building": {158: 5.825}, + 159: {158: 153.389, 160: 3.9250000000000003, 171: 20.498}, + 160: {159: 3.9250000000000003, 161: 5.194, 63: 40.01, 253: 160.865}, + 161: {160: 5.194, 61: 6.481}, + 162: {142: 13.385, 158: 36.074, 163: 14.321, "Gulmohar Garden Cafetaria": 15.3}, + 163: { 162: 14.321, 164: 5.78, "Faqir Chand Kohli Auditorium": 12.746, "Kanwal Rekhi School of Information Technology": 12.746, "KReSIT Canteen": 12.746, - }, - "KReSIT Canteen": {163: 12.746, 172: 12.564}, - "Kanwal Rekhi School of Information Technology": {163: 12.746, 172: 12.564}, - "Faqir Chand Kohli Auditorium": {163: 12.746, 172: 12.564}, - "Computer Centre": {164: 397.8, 173: 197.93}, - 164: {163: 5.78, 165: 7.813, "Computer Centre": 397.8}, - 165: {164: 7.813, 166: 1.549, 174: 38.938}, - 166: { + }, + "KReSIT Canteen": {163: 12.746, 172: 12.564}, + "Kanwal Rekhi School of Information Technology": {163: 12.746, 172: 12.564}, + "Faqir Chand Kohli Auditorium": {163: 12.746, 172: 12.564}, + "Computer Centre": {164: 397.8, 173: 197.93}, + 164: {163: 5.78, 165: 7.813, "Computer Centre": 397.8}, + 165: {164: 7.813, 166: 1.549, 174: 38.938}, + 166: { 165: 1.549, 167: 3.24, 144: 12.178, "School of Management": 15.133000000000001, "Industrial Research & Consultancy Centre": 15.133000000000001, - }, - "Industrial Research & Consultancy Centre": {175: 10.82, 166: 15.133000000000001}, - "School of Management": {175: 10.82, 166: 15.133000000000001}, - 167: {166: 3.24, 168: 16.105}, - 168: {167: 16.105, 152: 4.698, 169: 3.9250000000000003, 170: 8.002}, - 169: {168: 3.9250000000000003, 95: 17.525000000000002, 151: 5.905}, - 170: { + }, + "Industrial Research & Consultancy Centre": {175: 10.82, 166: 15.133000000000001}, + "School of Management": {175: 10.82, 166: 15.133000000000001}, + 167: {166: 3.24, 168: 16.105}, + 168: {167: 16.105, 152: 4.698, 169: 3.9250000000000003, 170: 8.002}, + 169: {168: 3.9250000000000003, 95: 17.525000000000002, 151: 5.905}, + 170: { 168: 8.002, "Main Building": 14.308, "Joint Admission Test for M.Sc. Office": 14.308, "Printing and photocopying Main Building": 14.308, "Hostel Coordinating Unit": 14.308, - }, - "Hostel Coordinating Unit": {170: 14.308, 179: 2.61}, - "Printing and photocopying Main Building": {170: 14.308, 179: 2.61}, - "Joint Admission Test for M.Sc. Office": {170: 14.308, 179: 2.61}, - "Main Building": {170: 14.308, 179: 2.61}, - 171: {172: 16.004, 159: 20.498, "Physics Department": 22.669}, - 172: { + }, + "Hostel Coordinating Unit": {170: 14.308, 179: 2.61}, + "Printing and photocopying Main Building": {170: 14.308, 179: 2.61}, + "Joint Admission Test for M.Sc. Office": {170: 14.308, 179: 2.61}, + "Main Building": {170: 14.308, 179: 2.61}, + 171: {172: 16.004, 159: 20.498, "Physics Department": 22.669}, + 172: { 171: 16.004, 173: 16.004, "Kanwal Rekhi School of Information Technology": 12.564, @@ -1138,8 +1156,8 @@ def __init__(self): "LH 102": 26.177, "LH 301": 26.177, "LH 302": 26.177, - }, - 173: { + }, + 173: { 172: 16.004, 174: 8.885, "Computer Centre": 197.93, @@ -1148,215 +1166,233 @@ def __init__(self): "Corrosion Lab 1": 20.2, "Inter-disciplinary Programme in Corrosion Science & Engineering": 20.2, "Aqueous Corrosion Lab": 20.2, - }, - 174: {173: 8.885, 175: 2.592, 165: 38.938, 57: 90.82900000000001}, - 175: { + }, + 174: {173: 8.885, 175: 2.592, 165: 38.938, 57: 90.82900000000001}, + 175: { 174: 2.592, 176: 8.885, "Girish Gaitonde Building": 6.597, "School of Management": 10.82, "Industrial Research & Consultancy Centre": 10.82, - }, - 176: { + }, + 176: { 175: 8.885, 177: 4.941, "Electrical Engineering Department": 18.761, "Cafe 92": 2.521, - }, - "Cafe 92": {176: 2.521}, - 177: { + }, + "Cafe 92": {176: 2.521}, + 177: { 176: 4.941, 178: 15.809000000000001, "PC Saxena Auditorium / Lecture Theatre": 3.65, - }, - "PC Saxena Auditorium / Lecture Theatre": {177: 3.65}, - 178: {179: 15.481, 177: 15.809000000000001, 52: 82.57600000000001, 180: 11.765}, - 179: { + }, + "PC Saxena Auditorium / Lecture Theatre": {177: 3.65}, + 178: {179: 15.481, 177: 15.809000000000001, 52: 82.57600000000001, 180: 11.765}, + 179: { 178: 15.481, "Main Building": 2.61, "Joint Admission Test for M.Sc. Office": 2.61, "Printing and photocopying Main Building": 2.61, "Hostel Coordinating Unit": 2.61, - }, - 180: {41: 5.184, 178: 11.765}, - 181: {64: 25.61, 182: 4.212, "Kendriya Vidyalaya ": 2.682}, - "Kendriya Vidyalaya ": {181: 2.682}, - 182: {181: 4.212, 183: 9.209, "Medical Store": 11.365, "Uphar": 25.16}, - "Medical Store": {182: 11.365}, - "Uphar": {182: 25.16}, - 183: {184: 5.869, 182: 9.209, "Post Office": 5.45}, - "Post Office": {183: 5.45}, - 184: {183: 5.869, "Market Gate, Y point Gate no. 3": 3.65, 249: 32.405}, - "Market Gate, Y point Gate no. 3": {184: 3.65}, - 185: {81: 7.688, 186: 36.074, "Hostel 10A QIP (Girls Hostel)": 7.946}, - "Hostel 10A QIP (Girls Hostel)": {185: 7.946}, - 186: {185: 36.074, 187: 16.004, 201: 0.0}, - 187: {186: 16.004, 226: 0.757, 225: 0.405, "QIP 2": 3.217}, - "QIP 2": {225: 1.768, 187: 3.217}, - 188: {189: 38.138, "K-Yantra Lab (CSE Dept.)": 5.057, 231: 0.081, 228: 5.869}, - "K-Yantra Lab (CSE Dept.)": {231: 6.29, 188: 5.057}, - 189: {188: 38.138, 190: 2.106, 232: 17.849, "Tulsi B": 2.336, "B 22 Ananta": 19.54}, - "B 22 Ananta": {189: 19.54}, - "Tulsi B": {189: 2.336}, - 190: {189: 2.106, 191: 2.89, "Tulsi A": 1.413, "Sameer Hill": 146.605}, - "Sameer Hill": {190: 146.605}, - "Tulsi A": {190: 1.413}, - 191: { + }, + 180: {41: 5.184, 178: 11.765}, + 181: {64: 25.61, 182: 4.212, "Kendriya Vidyalaya ": 2.682}, + "Kendriya Vidyalaya ": {181: 2.682}, + 182: {181: 4.212, 183: 9.209, "Medical Store": 11.365, "Uphar": 25.16}, + "Medical Store": {182: 11.365}, + "Uphar": {182: 25.16}, + 183: {184: 5.869, 182: 9.209, "Post Office": 5.45}, + "Post Office": {183: 5.45}, + 184: {183: 5.869, "Market Gate, Y point Gate no. 3": 3.65, 249: 32.405}, + "Market Gate, Y point Gate no. 3": {184: 3.65}, + 185: {81: 7.688, 186: 36.074, "Hostel 10A QIP (Girls Hostel)": 7.946}, + "Hostel 10A QIP (Girls Hostel)": {185: 7.946}, + 186: {185: 36.074, 187: 16.004, 201: 0.0}, + 187: {186: 16.004, 226: 0.757, 225: 0.405, "QIP 2": 3.217}, + "QIP 2": {225: 1.768, 187: 3.217}, + 188: {189: 38.138, "K-Yantra Lab (CSE Dept.)": 5.057, 231: 0.081, 228: 5.869}, + "K-Yantra Lab (CSE Dept.)": {231: 6.29, 188: 5.057}, + 189: {188: 38.138, 190: 2.106, 232: 17.849, "Tulsi B": 2.336, "B 22 Ananta": 19.54}, + "B 22 Ananta": {189: 19.54}, + "Tulsi B": {189: 2.336}, + 190: {189: 2.106, 191: 2.89, "Tulsi A": 1.413, "Sameer Hill": 146.605}, + "Sameer Hill": {190: 146.605}, + "Tulsi A": {190: 1.413}, + 191: { 190: 2.89, 192: 29.444, "B 23 Aravali": 6.449, "Society for Applied Microwave Electronics Engineering & Research": 13.085, - }, - "Society for Applied Microwave Electronics Engineering & Research": {191: 13.085}, - "B 23 Aravali": {234: 23.725, 191: 6.449}, - 192: {191: 29.444, 31: 13.573, 247: 35.528}, - 193: {129: 32.869, 194: 32.0}, - 194: {193: 32.0, 195: 6.4}, - 195: {194: 6.4, 196: 44.816}, - 196: {195: 44.816, 197: 33.602000000000004, "Lake Side Gate no. 1": 59.714}, - "Lake Side Gate no. 1": {196: 59.714}, - 197: {196: 33.602000000000004, 198: 12.674}, - 198: {197: 12.674, 199: 5.913}, - 199: {198: 5.913, 200: 220.228}, - 200: {199: 220.228, "Padmavati Devi Temple": 208.834}, - "Padmavati Devi Temple": {200: 208.834}, - 201: {"QIP 1": 2.536, 202: 9.146, 225: 11.441, 204: 49.64, 203: 31.37, 186: 0.0}, - "QIP 1": {201: 2.536}, - 202: {215: 3.25, 203: 6.724, 204: 16.354, "Type1 - 6": 1.985, 201: 9.146}, - "Type1 - 6": {202: 1.985}, - 203: { + }, + "Society for Applied Microwave Electronics Engineering & Research": {191: 13.085}, + "B 23 Aravali": {234: 23.725, 191: 6.449}, + 192: {191: 29.444, 31: 13.573, 247: 35.528}, + 193: {129: 32.869, 194: 32.0}, + 194: {193: 32.0, 195: 6.4}, + 195: {194: 6.4, 196: 44.816}, + 196: {195: 44.816, 197: 33.602000000000004, "Lake Side Gate no. 1": 59.714}, + "Lake Side Gate no. 1": {196: 59.714}, + 197: {196: 33.602000000000004, 198: 12.674}, + 198: {197: 12.674, 199: 5.913}, + 199: {198: 5.913, 200: 220.228}, + 200: {199: 220.228, "Padmavati Devi Temple": 208.834}, + "Padmavati Devi Temple": {200: 208.834}, + 201: {"QIP 1": 2.536, 202: 9.146, 225: 11.441, 204: 49.64, 203: 31.37, 186: 0.0}, + "QIP 1": {201: 2.536}, + 202: {215: 3.25, 203: 6.724, 204: 16.354, "Type1 - 6": 1.985, 201: 9.146}, + "Type1 - 6": {202: 1.985}, + 203: { "Type1 - 7": 1.2770000000000001, 204: 2.106, 239: 14.321, 202: 6.724, 201: 31.37, - }, - "Type1 - 7": {204: 3.005, 203: 1.2770000000000001}, - 204: { + }, + "Type1 - 7": {204: 3.005, 203: 1.2770000000000001}, + 204: { "Type1 - 7": 3.005, 201: 49.64, 203: 2.106, 202: 16.354, 220: 11.765, 205: 3.133, - }, - 205: {240: 3.321, 206: 2.997, 204: 3.133}, - 206: {224: 1.0, 223: 7.957, 207: 3.9250000000000003, 205: 2.997}, - 207: {208: 2.314, 241: 3.321, 206: 3.9250000000000003}, - 208: {208: 2.314, 243: 1.352, 209: 5.7700000000000005, "Type 2B 23": 5.7940000000000005}, - "Type 2B 23": {208: 5.7940000000000005}, - 209: {208: 5.7700000000000005, 235: 17.849, 210: 5.365, "CSRE C": 1.721}, - "CSRE C": {209: 1.721}, - 210: {209: 5.365, 211: 13.537}, - 211: {210: 13.537, 212: 5.069, 238: 8.425, 92: 1.549, "Bungalow A16 ": 0.81}, - "Bungalow A16 ": {211: 0.81}, - 212: {213: 4.573, "Bungalow A15 ": 1.066, 211: 5.069, 92: 1.018}, - "Bungalow A15 ": {212: 1.066}, - 213: {93: 0.081, 92: 9.857, 94: 2.997, "Bungalow A14 ": 1.076, 212: 4.573}, - "Bungalow A14 ": {213: 1.076}, - 214: {94: 3.133, 35: 0.388}, - 215: {202: 3.25, 216: 2.521, "Type 2B 22": 1.85}, - "Type 2B 22": {215: 1.85}, - 216: {215: 2.521, 217: 2.592, 226: 8.002, "Type1 - 18": 1.717, "Type1 - 16": 2.41}, - "Type1 - 18": {216: 1.717}, - "Type1 - 16": {216: 2.41}, - 217: { + }, + 205: {240: 3.321, 206: 2.997, 204: 3.133}, + 206: {224: 1.0, 223: 7.957, 207: 3.9250000000000003, 205: 2.997}, + 207: {208: 2.314, 241: 3.321, 206: 3.9250000000000003}, + 208: { + 208: 0.0, + 243: 1.352, + 209: 5.7700000000000005, + "Type 2B 23": 5.7940000000000005, + }, + "Type 2B 23": {208: 5.7940000000000005}, + 209: {208: 5.7700000000000005, 235: 17.849, 210: 5.365, "CSRE C": 1.721}, + "CSRE C": {209: 1.721}, + 210: {209: 5.365, 211: 13.537}, + 211: {210: 13.537, 212: 5.069, 238: 8.425, 92: 1.549, "Bungalow A16 ": 0.81}, + "Bungalow A16 ": {211: 0.81}, + 212: {213: 4.573, "Bungalow A15 ": 1.066, 211: 5.069, 92: 1.018}, + "Bungalow A15 ": {212: 1.066}, + 213: {93: 0.081, 92: 9.857, 94: 2.997, "Bungalow A14 ": 1.076, 212: 4.573}, + "Bungalow A14 ": {213: 1.076}, + 214: {94: 3.133, 35: 0.388}, + 215: {202: 3.25, 216: 2.521, "Type 2B 22": 1.85}, + "Type 2B 22": {215: 1.85}, + 216: {215: 2.521, 217: 2.592, 226: 8.002, "Type1 - 18": 1.717, "Type1 - 16": 2.41}, + "Type1 - 18": {216: 1.717}, + "Type1 - 16": {216: 2.41}, + 217: { 216: 2.592, 239: 1.306, 218: 1.972, 227: 7.1290000000000004, "Proposed Type H1 Building": 47.765, - }, - "Proposed Type H1 Building": {226: 11.273, 217: 47.765}, - 218: {217: 1.972, 219: 1.405, "Type1 - 14": 1.125, "Type H1 - 12": 2.309}, - "Type1 - 14": {218: 1.125}, - "Type H1 - 12": {218: 2.309}, - 219: {218: 1.405, 220: 5.869, 228: 9.685}, - 220: {204: 11.765, 239: 4.05, 219: 5.869, "Type1 - 13": 0.405, 222: 8.002}, - "Type1 - 13": {220: 0.405}, - 221: {222: 2.665, "Type H1 - 5": 0.245}, - "Type H1 - 5": {221: 0.245}, - 222: {221: 2.665, 223: 0.676, 220: 8.002}, - 223: {224: 3.321, 222: 0.676, "Type H1 - 6": 2.466}, - "Type H1 - 6": {223: 2.466}, - 224: {223: 3.321, 206: 1.0, "Type H1 - 8": 1.481}, - "Type H1 - 8": {224: 1.481}, - 225: {201: 11.441, 226: 1.936, "QIP 2": 1.768, 187: 0.405}, - 226: {226: 1.936, 216: 8.002, 227: 4.941, 187: 0.757, "Proposed Type H1 Building": 11.273}, - 227: {226: 4.941, 217: 7.1290000000000004, 228: 3.161}, - 228: {219: 9.685, 227: 3.161, 230: 5.365, 229: 11.773, 188: 5.869}, - 229: {228: 11.773, "Vidya Niwas": 1.45}, - "Vidya Niwas": {229: 1.45}, - 230: {228: 5.365, 231: 2.225, "C22, B wing, Vindya": 3.3160000000000003}, - "C22, B wing, Vindya": {230: 3.3160000000000003}, - 231: { + }, + "Proposed Type H1 Building": {226: 11.273, 217: 47.765}, + 218: {217: 1.972, 219: 1.405, "Type1 - 14": 1.125, "Type H1 - 12": 2.309}, + "Type1 - 14": {218: 1.125}, + "Type H1 - 12": {218: 2.309}, + 219: {218: 1.405, 220: 5.869, 228: 9.685}, + 220: {204: 11.765, 239: 4.05, 219: 5.869, "Type1 - 13": 0.405, 222: 8.002}, + "Type1 - 13": {220: 0.405}, + 221: {222: 2.665, "Type H1 - 5": 0.245}, + "Type H1 - 5": {221: 0.245}, + 222: {221: 2.665, 223: 0.676, 220: 8.002}, + 223: {224: 3.321, 222: 0.676, "Type H1 - 6": 2.466}, + "Type H1 - 6": {223: 2.466}, + 224: {223: 3.321, 206: 1.0, "Type H1 - 8": 1.481}, + "Type H1 - 8": {224: 1.481}, + 225: {201: 11.441, 226: 1.936, "QIP 2": 1.768, 187: 0.405}, + 226: { + 226: 0.0, + 216: 8.002, + 227: 4.941, + 187: 0.757, + "Proposed Type H1 Building": 11.273, + }, + 227: {226: 4.941, 217: 7.1290000000000004, 228: 3.161}, + 228: {219: 9.685, 227: 3.161, 230: 5.365, 229: 11.773, 188: 5.869}, + 229: {228: 11.773, "Vidya Niwas": 1.45}, + "Vidya Niwas": {229: 1.45}, + 230: {228: 5.365, 231: 2.225, "C22, B wing, Vindya": 3.3160000000000003}, + "C22, B wing, Vindya": {230: 3.3160000000000003}, + 231: { 230: 2.225, "C22, A wing, Sahyadri": 2.017, "K-Yantra Lab (CSE Dept.)": 6.29, 232: 3.232, 188: 0.081, - }, - "C22, A wing, Sahyadri": {231: 2.017}, - 232: {244: 2.754, 231: 3.232, 189: 17.849}, - 233: {244: 9.928, 234: 7.1290000000000004}, - 234: {"B 23 Aravali": 23.725, 233: 7.1290000000000004, 235: 7.688}, - 235: {234: 7.688, 209: 17.849}, - 236: {237: 4.573, "Bungalow A19 ": 0.9410000000000001, "CSRE D": 1.168}, - "Bungalow A19 ": {236: 0.9410000000000001}, - "CSRE D": {236: 1.168}, - 237: { + }, + "C22, A wing, Sahyadri": {231: 2.017}, + 232: {244: 2.754, 231: 3.232, 189: 17.849}, + 233: {244: 9.928, 234: 7.1290000000000004}, + 234: {"B 23 Aravali": 23.725, 233: 7.1290000000000004, 235: 7.688}, + 235: {234: 7.688, 209: 17.849}, + 236: {237: 4.573, "Bungalow A19 ": 0.9410000000000001, "CSRE D": 1.168}, + "Bungalow A19 ": {236: 0.9410000000000001}, + "CSRE D": {236: 1.168}, + 237: { 236: 4.573, 238: 3.592, "Bungalow A18 ": 0.64, "CSRE A": 3.0340000000000003, "CSRE B": 0.6980000000000001, - }, - "Bungalow A18 ": {237: 0.64}, - "CSRE A": {237: 3.0340000000000003}, - "CSRE B": {237: 0.6980000000000001}, - 238: {237: 3.592, 211: 8.425, "Bungalow A17 ": 0.65}, - "Bungalow A17 ": {238: 0.65}, - 239: {203: 14.321, 220: 4.05, 217: 1.306, 203: 14.321}, - 240: {"Type H2 - 18": 0.901, 205: 3.321}, - "Type H2 - 18": {240: 0.901}, - 241: {242: 0.405, "Type H2 - 19": 0.4, 207: 3.321}, - "Type H2 - 19": {241: 0.4}, - 242: {241: 0.405, "Type H2 - 20": 2.25}, - "Type H2 - 20": {242: 2.25}, - 243: {"Type H2 - 21": 0.925, 208: 1.352}, - "Type H2 - 21": {243: 0.925}, - 244: {233: 9.928, 232: 2.754, "Tulsi C": 2.557}, - "Tulsi C": {244: 2.557}, - 245: {246: 19.37, "Security Check Point": 15.101, 255: 23.06}, - 246: {245: 19.37, "Paspoli Gate no. 4 ": 85.45700000000001}, - "Paspoli Gate no. 4 ": {246: 85.45700000000001}, - 247: {192: 35.528, 248: 18.245}, - 248: {247: 18.245, "MW Quarters 1": 3.38}, - "MW Quarters 1": {248: 3.38}, - 249: {184: 32.405, 250: 29.444, 251: 5.14, "Kendriya Vidyalay Quarters 1": 3.121}, - "Kendriya Vidyalay Quarters 1": {249: 3.121, 251: 6.109}, - 250: { + }, + "Bungalow A18 ": {237: 0.64}, + "CSRE A": {237: 3.0340000000000003}, + "CSRE B": {237: 0.6980000000000001}, + 238: {237: 3.592, 211: 8.425, "Bungalow A17 ": 0.65}, + "Bungalow A17 ": {238: 0.65}, + 239: {203: 14.321, 220: 4.05, 217: 1.306}, + 240: {"Type H2 - 18": 0.901, 205: 3.321}, + "Type H2 - 18": {240: 0.901}, + 241: {242: 0.405, "Type H2 - 19": 0.4, 207: 3.321}, + "Type H2 - 19": {241: 0.4}, + 242: {241: 0.405, "Type H2 - 20": 2.25}, + "Type H2 - 20": {242: 2.25}, + 243: {"Type H2 - 21": 0.925, 208: 1.352}, + "Type H2 - 21": {243: 0.925}, + 244: {233: 9.928, 232: 2.754, "Tulsi C": 2.557}, + "Tulsi C": {244: 2.557}, + 245: {246: 19.37, "Security Check Point": 15.101, 255: 23.06}, + 246: {245: 19.37, "Paspoli Gate no. 4 ": 85.45700000000001}, + "Paspoli Gate no. 4 ": {246: 85.45700000000001}, + 247: {192: 35.528, 248: 18.245}, + 248: {247: 18.245, "MW Quarters 1": 3.38}, + "MW Quarters 1": {248: 3.38}, + 249: {184: 32.405, 250: 29.444, 251: 5.14, "Kendriya Vidyalay Quarters 1": 3.121}, + "Kendriya Vidyalay Quarters 1": {249: 3.121, 251: 6.109}, + 250: { 249: 29.444, "Campus School": 22.516000000000002, "Kindergarten School": 22.516000000000002, - }, - "Kindergarten School": {250: 22.516000000000002, 253: 18.769000000000002}, - "Campus School": {250: 22.516000000000002, 253: 18.769000000000002}, - 251: {249: 5.14, "Kendriya Vidyalay Quarters 1": 6.109, 252: 23.080000000000002}, - 252: {251: 23.080000000000002, 253: 9.217}, - 253: { + }, + "Kindergarten School": {250: 22.516000000000002, 253: 18.769000000000002}, + "Campus School": {250: 22.516000000000002, 253: 18.769000000000002}, + 251: {249: 5.14, "Kendriya Vidyalay Quarters 1": 6.109, 252: 23.080000000000002}, + 252: {251: 23.080000000000002, 253: 9.217}, + 253: { 252: 9.217, 254: 12.178, 160: 160.865, "Campus School": 18.769000000000002, "Type C-7": 0.116, "Kindergarten School": 18.769000000000002, - }, - "Type C-7": {253: 0.116}, - 254: {253: 12.178, "Shivalik C 23 (187-240)": 59.044000000000004}, - "Shivalik C 23 (187-240)": {254: 59.044000000000004}, - 255: {2: 325.184, "Security Check Point": 2.125, 245: 23.06}, - } + }, + "Type C-7": {253: 0.116}, + 254: {253: 12.178, "Shivalik C 23 (187-240)": 59.044000000000004}, + "Shivalik C 23 (187-240)": {254: 59.044000000000004}, + 255: {2: 325.184, "Security Check Point": 2.125, 245: 23.06}, + "Aromas Canteen": { + 27: 2.669, + 28: 8.845, + "Hostel 01 Queen of the campus": 13.973, + "Domino's outlet": 2.041, + }, +} + '''Caution: Avoid executing the update function during active requests as it may cause significant delays (~20s). If any modifications need to be made to the adj_list, it is essential to ensure that the @@ -1368,8 +1404,8 @@ def update(self): if type(x) != str: for y in self.adj_list[x]: if type(y) != str: - self.adj_list[x][y] = abs(0.001 * ((self.coordinates[x][0] - (self.coordinates[y][0]))**2 - + (self.coordinates[x][1] - (self.coordinates[y][1]))**2)) + self.adj_list[x][y] = abs(0.001 * ((self.coordinates[x][0] - self.coordinates[y][0])**2 + + (self.coordinates[x][1] - self.coordinates[y][1])**2)) else: try: x_cor = Location.objects.filter(name=y)[0].pixel_x @@ -1381,8 +1417,8 @@ def update(self): x_cor = 0 y_cor = 0 - self.adj_list[x][y] = abs(0.001 * ((self.coordinates[x][0] - x_cor))**2 - + (self.coordinates[x][1] - y_cor)**2) + self.adj_list[x][y] = abs(0.001 * ((self.coordinates[x][0] - x_cor)**2 + + (self.coordinates[x][1] - y_cor)**2)) else: try: @@ -1413,7 +1449,7 @@ def update(self): x_pix = 0 y_pix = 0 - self.adj_list[x][y] = abs(0.001 * ((x_cor - x_pix))**2 + (y_cor - y_pix)**2) + self.adj_list[x][y] = abs(0.001 * ((x_cor - x_pix)**2 + (y_cor - y_pix)**2)) # Need to run this once to update the database with given new or updated node points. i = 0 loc_list = [] @@ -1424,36 +1460,40 @@ def update(self): '''Gets the nearest Node near a location on the map.''' + import sys + def get_nearest(self, loc): if "Node" in loc: k = int(loc.replace("Node", "")) return k + min_dist = sys.maxsize - nearest_loc = "" - sts = self.adj_list + nearest_loc = None + try: - sets = sts[loc] - sts = self.adj_list - sets = sts[loc] + sets = self.adj_list[loc] for i in sets: - if type(sets[i]) != str: + if isinstance(i, int): if sets[i] <= min_dist: min_dist = sets[i] nearest_loc = i except KeyError: - print(f"This Location : {loc} does not exist in adj_list") + print(f"This Location: {loc} does not exist in adj_list") + return nearest_loc - '''Returns the adj_list which contains only the node points and nothing else.''' - def graph(self): + '''Returns the adj_list which contains only the node points containing the endpoint and the start point''' + + def graph(self, end, start): new_adjoint_list = {} for i in self.adj_list: - if type(i) != str: + if isinstance(i, int) or i == start or i == end: new_adjoint_list[i] = {} for j in self.adj_list[i]: - if type(j) != str: + if isinstance(j, int) or j == start or j == end: new_adjoint_list[i][j] = self.adj_list[i][j] + return new_adjoint_list @@ -1485,7 +1525,7 @@ def dijkstra(graph, start, goal): track_path.insert(0, currentNode) currentNode = track_pred[currentNode] except KeyError: - print(f"Path is not reachable start : {start}, end:{goal}") + print(f"Path is not reachable start : {start}, end: {goal}") return None track_path.insert(0, start) diff --git a/locations/views.py b/locations/views.py index dc929700..406a8f1a 100644 --- a/locations/views.py +++ b/locations/views.py @@ -90,15 +90,13 @@ def get_shortest_path(request): "ycor": str(start_y)} request2 = HttpRequest() request2.data2 = data2 - start = fn_nearest_points(request2)[0]["name"] + # start = fn_nearest_points(request2)[0]["name"] end = request.data['destination'] dest = end object = handle_entry() # object.update() strt = start - start = object.get_nearest(start) - end = object.get_nearest(end) - graph = object.graph() + graph = object.graph(end, start) if start is not None and end is not None: try: start = int(start) From 8f0ad20553db519c47aa17343f0006873518b727 Mon Sep 17 00:00:00 2001 From: Krishna-Baldwa Date: Mon, 31 Jul 2023 15:55:56 +0530 Subject: [PATCH 2/4] Chaayos near SOM added in list --- locations/management/commands/mapnav.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/locations/management/commands/mapnav.py b/locations/management/commands/mapnav.py index 5e46daac..44a0535b 100644 --- a/locations/management/commands/mapnav.py +++ b/locations/management/commands/mapnav.py @@ -1098,8 +1098,9 @@ def __init__(self): }, "Industrial Research & Consultancy Centre": {175: 10.82, 166: 15.133000000000001}, "School of Management": {175: 10.82, 166: 15.133000000000001}, - 167: {166: 3.24, 168: 16.105}, - 168: {167: 16.105, 152: 4.698, 169: 3.9250000000000003, 170: 8.002}, + 167: {166: 3.24, 168: 16.105,"Chaayos Near SOM": 3.5}, + 168: {167: 16.105, 152: 4.698, 169: 3.9250000000000003, 170: 8.002,"Chaayos Near SOM": 8}, + "Chaayos Near SOM": {167: 3.5, 168: 8}, 169: {168: 3.9250000000000003, 95: 17.525000000000002, 151: 5.905}, 170: { 168: 8.002, From 029bfa7553e17e7f2ef2fe00db34a479968611f6 Mon Sep 17 00:00:00 2001 From: Krishna-Baldwa Date: Tue, 1 Aug 2023 15:53:32 +0530 Subject: [PATCH 3/4] Remove locations.json --- locations.json | 30159 ----------------------------------------------- 1 file changed, 30159 deletions(-) delete mode 100644 locations.json diff --git a/locations.json b/locations.json deleted file mode 100644 index 90047621..00000000 --- a/locations.json +++ /dev/null @@ -1,30159 +0,0 @@ -<<<<<<< HEAD -[{"model": "locations.location", "pk": "00337ebe-da3e-407b-978c-561084575ab5", "fields": {"str_id": "18-type1", "time_of_creation": "2018-06-24T19:50:19.451Z", "name": "Type1 - 18", "short_name": "18-Type1", "description": "Type 1 Quarters Flat nos. 209 - 224", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4801, "pixel_y": 1269, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "003cf4f5-b64c-46ac-8ffa-4bb73e2b2db3", "fields": {"str_id": "httpsmeetgooglecomyzy-avxo-zpk", "time_of_creation": "2021-03-18T19:38:40.254Z", "name": "https://meet.google.com/yzy-avxo-zpk", "short_name": "https://meet.google.com/yzy-avxo-zpk", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "0073afdf-3641-4791-9448-1efedb5d63f3", "fields": {"str_id": "bb-h2", "time_of_creation": "2018-06-24T19:50:19.377Z", "name": "Type H2 - BB", "short_name": "BB-H2", "description": "H2 BB Type Quarters Flat nos. 1 - 18", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 840, "pixel_y": 2180, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "0104ab1a-60ef-4a4f-a246-6a31272f16af", "fields": {"str_id": "h15-mess", "time_of_creation": "2018-09-30T19:16:42.003Z", "name": "Hostel 15 Mess", "short_name": "H15 Mess", "description": "", "parent": "d9155381-e668-43ab-965d-80f4d626fef2", "parent_relation": "Ground Floor", "group_id": 8, "pixel_x": 0, "pixel_y": 0, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "01405842-52b6-437d-b8b1-608a8230273d", "fields": {"str_id": "b-21", "time_of_creation": "2018-06-24T19:50:18.880Z", "name": "B 21 Satpura", "short_name": "B 21", "description": "", "parent": null, "parent_relation": null, "group_id": 3, "pixel_x": 3332, "pixel_y": 2602, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "0183abd1-a46d-4134-9b42-2a55ef9e2b04", "fields": {"str_id": "conference-hall-civil-department", "time_of_creation": "2019-01-30T07:08:24.947Z", "name": "Conference Hall, Civil Department ", "short_name": "Conference Hall, Civil Department ", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "01de8231-9254-49ba-a66a-69f58f509b20", "fields": {"str_id": "12-13-14-mess", "time_of_creation": "2018-06-24T19:50:19.502Z", "name": "Mess for hostels 12 | 13 | 14", "short_name": "12-13-14 Mess", "description": "", "parent": null, "parent_relation": null, "group_id": 5, "pixel_x": 2044, "pixel_y": 734, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "0308d18d-03a2-40bb-8efd-b222b7f84001", "fields": {"str_id": "main-building", "time_of_creation": "2018-06-24T19:50:18.265Z", "name": "Main Building", "short_name": "Main Building", "description": "", "parent": null, "parent_relation": null, "group_id": 1, "pixel_x": 3628, "pixel_y": 1640, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "03caa589-1b26-4794-bfbe-85266a4b2309", "fields": {"str_id": "baskey-court", "time_of_creation": "2018-06-24T19:50:19.575Z", "name": "Basketball Court", "short_name": "Baskey Court", "description": "", "parent": null, "parent_relation": "", "group_id": 8, "pixel_x": 3161, "pixel_y": 1338, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "03f4680c-e404-40ed-89c4-69033b70b1cc", "fields": {"str_id": "httpsmeetgooglecombju-ypps-muahs122authuser2", "time_of_creation": "2020-09-04T05:00:30.551Z", "name": "https://meet.google.com/bju-ypps-mua?hs=122&authuser=2", "short_name": "https://meet.google.com/bju-ypps-mua?hs=122&authuser=2", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "04084246-b9b0-4784-bbdf-576cd7db863b", "fields": {"str_id": "centrifugal-lab", "time_of_creation": "2018-06-24T19:50:18.459Z", "name": "Centrifugal Lab", "short_name": "Centrifugal Lab", "description": "", "parent": "07adc7db-e51f-45df-b4bf-12c44746b0ba", "parent_relation": "Near", "group_id": 12, "pixel_x": 4370, "pixel_y": 1395, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "04abaf8d-a117-43cc-b774-9679c6afb92e", "fields": {"str_id": "conference-room-old-sac", "time_of_creation": "2018-10-28T06:52:46.256Z", "name": "Conference room, Old SAC", "short_name": "Conference room, Old SAC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "04d2e020-0846-480e-8be4-637c48e1b88d", "fields": {"str_id": "github", "time_of_creation": "2020-12-20T09:57:02.493Z", "name": "Github", "short_name": "Github", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "04d719e4-8862-4bbe-b35b-e3b4a7031860", "fields": {"str_id": "5-h2", "time_of_creation": "2018-06-24T19:50:19.286Z", "name": "Type H2 - 5", "short_name": "5-H2", "description": "H2 Type Quarters Flat nos. 33 - 40", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 1302, "pixel_y": 2738, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "04e60ea6-22b8-421a-bb6b-054adfd17444", "fields": {"str_id": "greenhouse-lab", "time_of_creation": "2018-06-24T19:50:18.493Z", "name": "Greenhouse Lab", "short_name": "Greenhouse Lab", "description": "", "parent": "12228198-b261-4c02-bea0-7eb5c80a7096", "parent_relation": "Inside", "group_id": 12, "pixel_x": 4790, "pixel_y": 1055, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "061d5c92-e544-4bce-90c3-ba0b9ce5d708", "fields": {"str_id": "yoga-room-new-sac", "time_of_creation": "2019-01-14T06:10:05.832Z", "name": "Yoga Room, New SAC", "short_name": "Yoga Room, New SAC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "06bbc544-2477-4bf6-9758-a3cd394cb60b", "fields": {"str_id": "kv-2", "time_of_creation": "2018-06-24T19:50:19.384Z", "name": "Kendriya Vidyalay Quarters 2", "short_name": "KV 2", "description": "KV Quarters 6 - 11", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 3498, "pixel_y": 2854, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "06f63a9a-3b83-4faa-b84a-0d9fc41c3b35", "fields": {"str_id": "yoga-room-3rd-floor-new-sac", "time_of_creation": "2020-03-05T19:16:10.162Z", "name": "Yoga Room, 3rd Floor, New SAC", "short_name": "Yoga Room, 3rd Floor, New SAC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "077e9c80-d3fb-4797-a1c0-cc9d6464b9f0", "fields": {"str_id": "old-swimming-pool", "time_of_creation": "2022-04-01T21:08:34.508Z", "name": "Old Swimming Pool", "short_name": "Old Swimming Pool", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "07adc7db-e51f-45df-b4bf-12c44746b0ba", "fields": {"str_id": "geotech-centrifuge", "time_of_creation": "2018-06-24T19:50:18.552Z", "name": "National Geotechnical Centrifuge Facility", "short_name": "GeoTech Centrifuge", "description": "", "parent": null, "parent_relation": "", "group_id": 1, "pixel_x": 4370, "pixel_y": 1395, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "0800d0cd-9ea8-427a-8c6c-3474a4370f49", "fields": {"str_id": "outdoor-sports", "time_of_creation": "2018-06-24T19:50:19.568Z", "name": "Outdoor Sports Facility", "short_name": "Outdoor Sports", "description": "", "parent": null, "parent_relation": "", "group_id": 8, "pixel_x": 3294, "pixel_y": 1031, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "0829c9a2-3dd9-4c11-963c-183d7cce2e0e", "fields": {"str_id": "7-h1", "time_of_creation": "2018-06-24T19:50:19.236Z", "name": "Type H1 - 7", "short_name": "7-H1", "description": "H1 Type Quarters Flat nos. 73 - 84", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4542, "pixel_y": 1238, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "0846e7e1-7ad4-45e2-ad10-70c357bcac72", "fields": {"str_id": "2b-5", "time_of_creation": "2018-06-24T19:50:18.925Z", "name": "Type 2B 5", "short_name": "2B 5", "description": "2B-Type Quarters, Flat nos 25 - 30", "parent": null, "parent_relation": null, "group_id": 3, "pixel_x": 4196, "pixel_y": 2455, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "088ba891-7667-4581-8418-89ec6f53f769", "fields": {"str_id": "gate-off", "time_of_creation": "2018-06-24T19:50:18.422Z", "name": "Graduate apptitude test in engineering Office", "short_name": "GATE Off.", "description": "Tel: +91222576 2924", "parent": "0308d18d-03a2-40bb-8efd-b222b7f84001", "parent_relation": "Inside", "group_id": 1, "pixel_x": 3628, "pixel_y": 1640, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "088ecfc0-baae-4f83-9817-37ca1a2dbee6", "fields": {"str_id": "httpwebexcomkakshajphpmtidm785583590104d3f1dea1aa7a7a11c1c6", "time_of_creation": "2021-12-31T18:37:32.599Z", "name": "http://webex.com/kaksha/j.php?MTID=m785583590104d3f1dea1aa7a7a11c1c6", "short_name": "http://webex.com/kaksha/j.php?MTID=m785583590104d3f1dea1aa7a7a11c1c6", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "09520a24-683f-4655-9e0c-3788722596a2", "fields": {"str_id": "lt-002", "time_of_creation": "2018-06-24T19:50:18.687Z", "name": "LT 002", "short_name": "LT 002", "description": "", "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", "parent_relation": "Ground floor", "group_id": 4, "pixel_x": 3570, "pixel_y": 2152, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "095c90f9-4c8a-408b-9f24-69fdb81c85b6", "fields": {"str_id": "tennis-court-old", "time_of_creation": "2018-06-24T19:50:18.394Z", "name": "Tennis Court (old)", "short_name": "Tennis Court (old)", "description": "", "parent": null, "parent_relation": "", "group_id": 8, "pixel_x": 3177, "pixel_y": 1624, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "0972ce1c-0226-4ed0-a49f-f3cb4b78f8e5", "fields": {"str_id": "solar-lab", "time_of_creation": "2018-06-24T19:50:18.601Z", "name": "Solar Lab", "short_name": "Solar Lab", "description": "Comes under Chemistry Department +912225764887 SOLAR LAB (308) Phone: +912225764173 ", "parent": "60ef3a78-0cd0-467d-9343-ec8d5048adff", "parent_relation": "", "group_id": 12, "pixel_x": 4230, "pixel_y": 1435, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "09a1f1e0-61cc-486a-ad50-471d27729e3b", "fields": {"str_id": "a9", "time_of_creation": "2018-06-24T19:50:19.032Z", "name": "Bungalow A9 ", "short_name": "A9", "description": "A-Type Bungalow", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 1888, "pixel_y": 2960, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "09fdc045-bc1a-424b-b458-a89aa63dec46", "fields": {"str_id": "new-cese", "time_of_creation": "2018-06-24T19:50:19.553Z", "name": "Centre for Environmental Science and Engineering (New Building)", "short_name": "New CESE", "description": "http://www.cese.iitb.ac.in\r\nTel +912225767851\r\nFax +912225764650\r\n\r\nThe Centre offers M.Tech. and Ph.D. programmes, which are interdisciplinary in nature and consists of course work followed by a research project. The duration of the Ph.D. programme varies depending upon the background of the candidate.", "parent": "866dde4e-4667-446f-969e-ee4035b766a5", "parent_relation": "inside", "group_id": 9, "pixel_x": 3979, "pixel_y": 2467, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "0a425d6a-1366-40c6-abae-28440ba43b23", "fields": {"str_id": "rock-cutting-lab", "time_of_creation": "2018-06-24T19:50:18.574Z", "name": "Rock Cutting Lab", "short_name": "Rock Cutting Lab", "description": "", "parent": "99ea94a1-0b72-4467-a5f1-ef95e24f3bf8", "parent_relation": "Near", "group_id": 12, "pixel_x": 3921, "pixel_y": 2095, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "0a46881d-39c0-48fc-aa54-f8354b8c7933", "fields": {"str_id": "jee-off", "time_of_creation": "2018-06-24T19:50:18.430Z", "name": "Joint Entrance Examination Office", "short_name": "JEE Off.", "description": "Tel: +91222576 4063", "parent": "0308d18d-03a2-40bb-8efd-b222b7f84001", "parent_relation": "Inside", "group_id": 1, "pixel_x": 3628, "pixel_y": 1640, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "0b4c86dc-7248-4ccd-903c-1c3c31c7b3d9", "fields": {"str_id": "theatre-room-sac", "time_of_creation": "2019-03-08T18:19:07.718Z", "name": "Theatre room, SAC", "short_name": "Theatre room, SAC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "0b61dd10-ff14-4071-a8a3-350ddb4a3636", "fields": {"str_id": "lh-foyer", "time_of_creation": "2019-01-11T17:24:07.716Z", "name": "LH Foyer", "short_name": "LH Foyer", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "0ba7057b-b9db-4876-8655-8725cfcbdf3e", "fields": {"str_id": "auditorium", "time_of_creation": "2019-02-12T14:28:44.494Z", "name": "Auditorium", "short_name": "Auditorium", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "0c0a5022-c439-4d30-bebd-1fe6a20e9343", "fields": {"str_id": "gg-conference-room--electrical-department", "time_of_creation": "2022-09-28T13:03:44.777Z", "name": "GG Conference Room , Electrical department", "short_name": "GG Conference Room , Electrical department", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "0c320f01-cb8d-45a5-a4f4-bafdf881109e", "fields": {"str_id": "fc-kohli", "time_of_creation": "2018-06-24T19:50:19.491Z", "name": "Faqir Chand Kohli Auditorium", "short_name": "F.C Kohli", "description": "Named after Faqir Chand Kohli, who is often reffered as Father of Indian Software Industry", "parent": "f3fbfd2b-36a0-46f2-9cb1-0bad97e60c28", "parent_relation": "First floor", "group_id": 4, "pixel_x": 3301, "pixel_y": 2106, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "0c4c1638-6d99-4d9f-9995-9c1b10092e15", "fields": {"str_id": "teams-code-pc5mf1o", "time_of_creation": "2022-05-16T03:20:59.937Z", "name": "Teams code: pc5mf1o", "short_name": "Teams code: pc5mf1o", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "0c4c56dc-a5e3-4a32-af3c-8f3f3472dd6d", "fields": {"str_id": "elec-engg", "time_of_creation": "2018-06-24T19:50:18.125Z", "name": "Electrical Engineering Department", "short_name": "Elec engg", "description": "http://www.ee.iitb.ac.in\r\nMain office is inside GG Building on second floor\r\n\r\nContact persons:\r\nMadhumati Shetty +912225767401\r\nVaishali Deshpande +912225767402\r\nSantosh S. Kharat +912225767402\r\nTanvi D. Shelatkar +912225767402\r\n\r\nB Tech, B Tech Honors, Dual Degree Program (B Tech + M Tech), M Tech (Full time 2 yrs, Part time 3yrs with specializations such as Communications, Engineering (termed as EE1), Control and Computing (EE2), Power Electronics and Power System (EE3), Microelectronics and VLSI (EE4), Electronic Systems (EE5)) and Ph D", "parent": null, "parent_relation": null, "group_id": 1, "pixel_x": 3780, "pixel_y": 1900, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "0c87b881-7733-4e51-9b5b-1323b75ad283", "fields": {"str_id": "3-h2", "time_of_creation": "2018-06-24T19:50:19.278Z", "name": "Type H2 - 3", "short_name": "3-H2", "description": "H2 Type Quarters Flat nos. 17 - 24", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 1417, "pixel_y": 2797, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "0ca148f8-da44-481f-ac31-27e1a79d7814", "fields": {"str_id": "lh-302", "time_of_creation": "2018-06-24T19:50:18.812Z", "name": "LH 302", "short_name": "LH 302", "description": "", "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", "parent_relation": "Third floor", "group_id": 4, "pixel_x": 3570, "pixel_y": 2152, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "0cb56461-a98d-44ff-8fdf-6f13f400263c", "fields": {"str_id": "power-house", "time_of_creation": "2018-06-24T19:50:18.339Z", "name": "Power House", "short_name": "Power House", "description": "", "parent": null, "parent_relation": "", "group_id": 9, "pixel_x": 4671, "pixel_y": 1590, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "0d5be149-30a2-44e5-b4b1-68f61ad33e20", "fields": {"str_id": "kv", "time_of_creation": "2018-06-24T19:50:18.241Z", "name": "Kendriya Vidyalaya ", "short_name": "KV", "description": "Tel: +912225768983", "parent": null, "parent_relation": "", "group_id": 7, "pixel_x": 3883, "pixel_y": 2714, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "0d64123d-9704-4f3c-bf78-c7b2172e8705", "fields": {"str_id": "nso-guitar-room-new-sac", "time_of_creation": "2018-09-28T14:16:49.969Z", "name": "NSO Guitar Room New SAC", "short_name": "NSO Guitar Room New SAC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "0e2c2a32-5356-48d8-94ef-b06bff458064", "fields": {"str_id": "h8", "time_of_creation": "2018-06-24T19:50:18.212Z", "name": "Hostel 08 Woodland", "short_name": "H8", "description": "Hostel security: +912225762608 Hall Manager:+912225762708 G. Sec: Mayur Kalambe +919920147585", "parent": null, "parent_relation": "", "group_id": 2, "pixel_x": 2834, "pixel_y": 1257, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "0e79535d-f1a6-478b-9799-663d0dd54d9a", "fields": {"str_id": "h16", "time_of_creation": "2018-06-24T19:50:18.186Z", "name": "Hostel 16 Olympus", "short_name": "H16", "description": "Hostel security: +91222576 2716 Hall Manager: 022-2576 G. Sec:", "parent": null, "parent_relation": null, "group_id": 2, "pixel_x": 3972, "pixel_y": 849, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "0fbdb6d4-ea59-4673-9e30-41137599f944", "fields": {"str_id": "theatre-room-old-sac", "time_of_creation": "2018-09-30T09:31:20.864Z", "name": "Theatre Room, Old SAC ", "short_name": "Theatre Room, Old SAC ", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "1007b63e-4c44-485d-a4c8-c8d89c3603c6", "fields": {"str_id": "convocation-hall", "time_of_creation": "2018-06-24T19:50:18.099Z", "name": "Convocation Hall", "short_name": "Convocation Hall", "description": "Tel: +912225762781", "parent": null, "parent_relation": null, "group_id": 4, "pixel_x": 3255, "pixel_y": 1711, "lat": "19.131973", "lng": "72.914285", "reusable": true}}, {"model": "locations.location", "pk": "10134e84-1f85-4212-8f3d-a6de70004604", "fields": {"str_id": "lc-102", "time_of_creation": "2018-08-31T15:13:35.198Z", "name": "LC 102 ", "short_name": "LC 102 ", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "10543381-7bb4-4d8e-812a-3574c0a39298", "fields": {"str_id": "yoga-room-3rd-floor-new-sac-opposite-to-hostel-11", "time_of_creation": "2019-05-26T10:30:48.072Z", "name": "Yoga room, 3rd floor, New SAC, Opposite to hostel 11", "short_name": "Yoga room, 3rd floor, New SAC, Opposite to hostel 11", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "10e47646-da66-43e8-bf51-05f93aedee22", "fields": {"str_id": "science-park", "time_of_creation": "2018-06-24T19:50:19.520Z", "name": "Proposed Science Park", "short_name": "Science Park", "description": "", "parent": null, "parent_relation": "", "group_id": 9, "pixel_x": 2140, "pixel_y": 259, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "11688c98-ba18-43a6-ab63-a699e7cc6e0a", "fields": {"str_id": "type-h1", "time_of_creation": "2018-06-24T19:50:19.524Z", "name": "Proposed Type H1 Building", "short_name": "Type H1", "description": "", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4943, "pixel_y": 1193, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "1172c3c0-0d9a-4849-81ab-93609dc3153b", "fields": {"str_id": "la-201", "time_of_creation": "2018-06-24T19:50:18.675Z", "name": "LA 201", "short_name": "LA 201", "description": "The classroom has 4 entrance doors, two on second floor and two in third floor.", "parent": "be8afcf1-c7f7-4d71-aaf5-0154081974dd", "parent_relation": "Second and Third floors", "group_id": 4, "pixel_x": 3779, "pixel_y": 2220, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "11fd6f6d-6b87-4d51-9923-c28318d97fc8", "fields": {"str_id": "sarcs-facebook-page", "time_of_creation": "2021-10-24T06:36:29.756Z", "name": "SARC's Facebook Page ", "short_name": "SARC's Facebook Page ", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "12228198-b261-4c02-bea0-7eb5c80a7096", "fields": {"str_id": "k-yantra", "time_of_creation": "2018-06-24T19:50:18.521Z", "name": "K-Yantra Lab (CSE Dept.)", "short_name": "K-Yantra", "description": "ERTS Lab First Floor, KReSIT Building, CSE Department IIT Bombay - Powai, Mumbai 400076 helpdesk@e-yantra.org", "parent": null, "parent_relation": "", "group_id": 1, "pixel_x": 4790, "pixel_y": 1055, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "12b7133f-4631-4bdb-b599-7f63e682c4d7", "fields": {"str_id": "football-field-hostel-5", "time_of_creation": "2019-04-09T17:17:00.049Z", "name": "Football Field, Hostel 5", "short_name": "Football Field, Hostel 5", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "12c0c3f6-8e0d-430f-accc-c876986cf622", "fields": {"str_id": "h13-night-cant", "time_of_creation": "2018-06-24T19:50:18.664Z", "name": "H13 Night Canteen", "short_name": "H13 Night Cant.", "description": "Open till 3 am, recomended for night-outs!", "parent": "a5bd85a4-a281-44cb-925f-49a50f8a7070", "parent_relation": "Inside", "group_id": 5, "pixel_x": 1918, "pixel_y": 745, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "1347e755-c11b-4ad8-8568-4fca554dc66f", "fields": {"str_id": "pg-cult-fb-live", "time_of_creation": "2021-07-30T05:15:40.832Z", "name": "PG Cult Fb live", "short_name": "PG Cult Fb live", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "13b2d533-53d5-4050-bd1f-16989a0f770e", "fields": {"str_id": "qip-2", "time_of_creation": "2018-06-24T19:50:19.475Z", "name": "QIP 2", "short_name": "QIP 2", "description": "QIP Quarters Flat nos. 17 - 35", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4869, "pixel_y": 1328, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "13d12d75-c5b3-4fb6-b1c1-98d2079ad1a4", "fields": {"str_id": "2b-19", "time_of_creation": "2018-06-24T19:50:18.983Z", "name": "Type 2B 19", "short_name": "2B 19", "description": "2B-Type Quarters, Flat nos 109 - 114", "parent": null, "parent_relation": null, "group_id": 3, "pixel_x": 2573, "pixel_y": 2468, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "13e7b7a4-1b28-4ba7-86fb-e360ffde6990", "fields": {"str_id": "seminar-hall-civil-department", "time_of_creation": "2019-02-02T16:17:54.878Z", "name": "Seminar Hall, Civil department ", "short_name": "Seminar Hall, Civil department ", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "1408d43c-7774-4031-b490-08f66e850cce", "fields": {"str_id": "enelek", "time_of_creation": "2018-06-24T19:50:18.470Z", "name": "ENELEK Power Sine", "short_name": "ENELEK", "description": "Enelek is a technology driven company, dedicated to delivery to quality and affordability through state-of-the art solar thermal & solar power products, systems and providing technology solutions & services. Address: CM-06, SINE Office 3rd Floor, CSRE Building IIT Bombay Powai, Mumbai - 400076 Contact No. - +919167939941 | info@enelek.com Careers Enquiry - career@enelek.com", "parent": "f5303dcd-b456-4147-a414-88a89815d826", "parent_relation": "Beside", "group_id": 9, "pixel_x": 4160, "pixel_y": 1620, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "14bb96e1-47f1-46ec-907b-aefc07ccca0f", "fields": {"str_id": "metal-forming-lab", "time_of_creation": "2018-06-24T19:50:18.532Z", "name": "Metal Forming Lab", "short_name": "Metal Forming Lab", "description": "Comes under Mechanical Engineering Department +912225764561", "parent": "58bea0b3-733b-45bf-a87b-4785b8e0d9e1", "parent_relation": "Near", "group_id": 12, "pixel_x": 4290, "pixel_y": 1470, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "1512ba5c-6311-4ae2-87d3-ec9ede65c1b2", "fields": {"str_id": "khodad-pune", "time_of_creation": "2019-01-22T17:08:03.970Z", "name": "Khodad, Pune", "short_name": "Khodad, Pune", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "1518d3d0-29fe-4409-9352-d283401c2016", "fields": {"str_id": "14-h2", "time_of_creation": "2018-06-24T19:50:19.319Z", "name": "Type H2 - 14", "short_name": "14-H2", "description": "H2 Type Quarters Flat nos. 105 - 112", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 717, "pixel_y": 2510, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "15649951-36e4-4acb-bd98-8a018385f5de", "fields": {"str_id": "httpssarcasmsarc-iitborglogin", "time_of_creation": "2022-01-21T17:04:38.239Z", "name": "https://sarcasm.sarc-iitb.org/login", "short_name": "https://sarcasm.sarc-iitb.org/login", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "15ceb9e8-81af-475e-a00c-5fe5970e3b4d", "fields": {"str_id": "5-h1", "time_of_creation": "2018-06-24T19:50:19.228Z", "name": "Type H1 - 5", "short_name": "5-H1", "description": "H1 Type Quarters Flat nos. 49 - 60", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4552, "pixel_y": 1173, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "15dac3ab-da84-470a-a3bd-d691c1edfd0c", "fields": {"str_id": "13-type1", "time_of_creation": "2018-06-24T19:50:19.433Z", "name": "Type1 - 13", "short_name": "13-Type1", "description": "Type 1 Quarters Flat nos. 145 - 156", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4637, "pixel_y": 1237, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "15fca3e0-8c45-43fb-a5b0-568bc8f517ad", "fields": {"str_id": "b10", "time_of_creation": "2018-06-24T19:50:19.104Z", "name": "Type B-10", "short_name": "B10", "description": "B-Type Quarters Flat nos. 39 - 42", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 2726, "pixel_y": 2634, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "16a39766-682b-4d7f-9fcc-3fca038a5cdd", "fields": {"str_id": "sameer-hill", "time_of_creation": "2018-06-24T19:50:18.873Z", "name": "Sameer Hill", "short_name": "Sameer Hill", "description": "", "parent": null, "parent_relation": "", "group_id": 9, "pixel_x": 4830, "pixel_y": 675, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "16c65ffa-589d-4313-87ee-c8be1bb898bc", "fields": {"str_id": "chemistry", "time_of_creation": "2018-06-24T19:50:18.092Z", "name": "Chemistry Department", "short_name": "Chemistry", "description": "http://www.chem.iitb.ac.in\r\nPhone: +912225767151\r\nFax: +912225723480, +912225767152\r\n\r\nThe department offers academic programs for M.Sc, Ph.D, (M.Sc + Ph.D) Dual Degree Courses, 4 year BS degree course (From 2014, the 5 year Integrated M.Sc course has been replaced by the 4 year B.S course).", "parent": "c2a8f379-1a40-4357-9015-423e3702483e", "parent_relation": null, "group_id": 1, "pixel_x": 3788, "pixel_y": 2350, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "16ebb030-2c57-4602-80bb-fe0c2a6949fa", "fields": {"str_id": "vidya-niwas", "time_of_creation": "2018-06-24T19:50:18.402Z", "name": "Vidya Niwas", "short_name": "Vidya Niwas", "description": "", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4911, "pixel_y": 1111, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "1881e054-e7df-431d-ad92-52d4208dc192", "fields": {"str_id": "b-nag-auditorium-iit-bombay", "time_of_creation": "2018-09-18T18:22:32.448Z", "name": "B. Nag auditorium, IIT Bombay", "short_name": "B. Nag auditorium, IIT Bombay", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "18f66d29-d67e-4d95-873c-1c4cdd963423", "fields": {"str_id": "wel-lab-electrical-department", "time_of_creation": "2019-01-11T09:13:48.798Z", "name": "WEL lab, Electrical department", "short_name": "WEL lab, Electrical department", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "1994fc34-8cca-4038-9e42-d4343fa65ead", "fields": {"str_id": "som", "time_of_creation": "2019-02-07T15:34:57.032Z", "name": "SOM ", "short_name": "SOM ", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "19fbe27e-d38a-487b-a581-3b45a9a01161", "fields": {"str_id": "check-point", "time_of_creation": "2018-06-24T19:50:19.517Z", "name": "Security Check Point", "short_name": "Check Point", "description": "", "parent": null, "parent_relation": "", "group_id": 10, "pixel_x": 2744, "pixel_y": 399, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "1a047777-10a4-45d0-bffc-da4096539ac8", "fields": {"str_id": "lc-201", "time_of_creation": "2018-06-24T19:50:18.784Z", "name": "LC 201", "short_name": "LC 201", "description": "", "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", "parent_relation": "Second floor", "group_id": 4, "pixel_x": 3570, "pixel_y": 2152, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "1a09f9d8-7ed1-4ad7-b2e5-0553c64448c4", "fields": {"str_id": "cisco-webex", "time_of_creation": "2020-09-05T13:25:20.518Z", "name": "Cisco WebEX", "short_name": "Cisco WebEX", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "1a373a3f-d335-47d8-9c4a-32bfb575e1b1", "fields": {"str_id": "seminar-hall-civil-department", "time_of_creation": "2018-11-12T14:50:24.628Z", "name": "Seminar Hall Civil Department ", "short_name": "Seminar Hall Civil Department ", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "1a465e27-cf97-42c6-9d55-f0855f067124", "fields": {"str_id": "tf-room", "time_of_creation": "2019-02-12T09:30:17.264Z", "name": "TF Room", "short_name": "TF Room", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "1ae34315-a0d7-43f6-9a07-a3e734abca79", "fields": {"str_id": "literati-discord-server", "time_of_creation": "2020-10-28T15:06:14.843Z", "name": "Literati Discord Server", "short_name": "Literati Discord Server", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "1b47aa07-a1de-4883-bd25-ba2a1fbe865f", "fields": {"str_id": "httpwwwabhyudayiitborgfest", "time_of_creation": "2021-01-22T17:45:36.543Z", "name": "http://www.abhyudayiitb.org/fest", "short_name": "http://www.abhyudayiitb.org/fest", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "1b76a9fd-24b6-4ddb-bea4-681744cf93c5", "fields": {"str_id": "28-h2", "time_of_creation": "2018-06-24T19:50:19.373Z", "name": "Type H2 - 29", "short_name": "28-H2", "description": "H2 Type Quarters Flat nos. 233 - 248", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 691, "pixel_y": 2410, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "1c4c094f-502b-4a5b-962d-1d4768e7b04f", "fields": {"str_id": "staff-hostel", "time_of_creation": "2018-06-24T19:50:19.527Z", "name": "Proposed Hostel for Project Staff", "short_name": "Staff Hostel", "description": "", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4935, "pixel_y": 1391, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "1d1edac2-ec2b-423b-905f-0d0fa9582956", "fields": {"str_id": "ms-teams---join-team-at-httpscuttlygjbdnks", "time_of_creation": "2021-01-15T07:05:35.853Z", "name": "MS Teams - join team at https://cutt.ly/GjbdNKs", "short_name": "MS Teams - join team at https://cutt.ly/GjbdNKs", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "1d25cff6-8bdd-42a5-9d30-9af61382ccec", "fields": {"str_id": "6--h1", "time_of_creation": "2018-06-24T19:50:19.232Z", "name": "Type H1 - 6", "short_name": "6- H1", "description": "H1 Type Quarters Flat nos. 61 - 72", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4468, "pixel_y": 1189, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "1dd8b968-3692-4f2a-8e24-d76b46b4305c", "fields": {"str_id": "wadhwani-electronics-lab-3rd-floor-ee-dept", "time_of_creation": "2020-02-07T14:04:58.279Z", "name": "Wadhwani Electronics Lab, 3rd Floor, EE Dept.", "short_name": "Wadhwani Electronics Lab, 3rd Floor, EE Dept.", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "1e9de2de-1377-4765-8599-4402301a3c03", "fields": {"str_id": "9-h1", "time_of_creation": "2018-06-24T19:50:19.243Z", "name": "Type H1 - 9", "short_name": "9-H1", "description": "H1 Type Quarters Flat nos. 97 - 108", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 640, "pixel_y": 2329, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "1ec0a30a-a8cd-402d-a574-9870729a3f7f", "fields": {"str_id": "lch-foyer", "time_of_creation": "2019-03-06T15:59:10.375Z", "name": "LCH Foyer", "short_name": "LCH Foyer", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "1f6d5d3d-9db0-44a4-92c4-33edf93a8a4d", "fields": {"str_id": "lt-006", "time_of_creation": "2018-06-24T19:50:18.698Z", "name": "LT 006", "short_name": "LT 006", "description": "", "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", "parent_relation": "Ground floor", "group_id": 4, "pixel_x": 3570, "pixel_y": 2152, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "1f86f053-dbc7-4508-b9d0-962fa1ccb2b6", "fields": {"str_id": "h15-front-lawn", "time_of_creation": "2019-09-29T11:26:26.752Z", "name": "H15 Front Lawn", "short_name": "H15 Front Lawn", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "20064b97-6626-4242-913b-ed391b6033b8", "fields": {"str_id": "powai-udyaan", "time_of_creation": "2019-10-30T09:56:59.626Z", "name": "Powai Udyaan", "short_name": "Powai Udyaan", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "20b9b8e3-2228-4921-8d6b-2d4ebee1d29b", "fields": {"str_id": "ncair", "time_of_creation": "2018-06-24T19:50:19.539Z", "name": "Proposed NCAIR", "short_name": "NCAIR", "description": "", "parent": "e6eb8827-5107-4536-ab97-d7e367f3955f", "parent_relation": "inside", "group_id": 9, "pixel_x": 4451, "pixel_y": 2173, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "21542ae2-16b1-4681-90a0-511d70c6f07a", "fields": {"str_id": "b3", "time_of_creation": "2018-06-24T19:50:19.078Z", "name": "Type B-3", "short_name": "B3", "description": "B-Type Quarters Flat nos. 11 - 14", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 2797, "pixel_y": 2820, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "216c4173-c28e-42b3-8cdd-01ead6d3b59d", "fields": {"str_id": "8-h2", "time_of_creation": "2018-06-24T19:50:19.297Z", "name": "Type H2 - 8", "short_name": "8-H2", "description": "H2 Type Quarters Flat nos. 57 - 64", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 1059, "pixel_y": 2719, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "21d97341-d00b-4fb7-a88b-329b395273f5", "fields": {"str_id": "mach-tool-lab", "time_of_creation": "2018-06-24T19:50:18.529Z", "name": "Machine Tool Lab", "short_name": "Mach. Tool Lab", "description": "Comes under Mechanical Engineering Department +912225764518 / +912225764537", "parent": "c3545b3d-e33d-4c14-b04d-c369146391ec", "parent_relation": "Near", "group_id": 12, "pixel_x": 4410, "pixel_y": 1740, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "22ab9241-3799-4c1b-a5c8-f291723b8932", "fields": {"str_id": "old-sac", "time_of_creation": "2019-10-11T19:05:58.819Z", "name": "OLD SAC", "short_name": "OLD SAC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "22b1efaa-f129-43bc-ad0a-fcd37b394546", "fields": {"str_id": "brews-and-bites", "time_of_creation": "2018-09-18T18:36:00.480Z", "name": "Brews and Bites", "short_name": "Brews and Bites", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "23396793-3425-4f33-811b-d09f803a7b6c", "fields": {"str_id": "h2-tv-room", "time_of_creation": "2019-08-12T12:27:27.659Z", "name": "H2 TV Room", "short_name": "H2 TV Room", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "24586039-1f7f-4c97-b4ce-c11c8bf72db4", "fields": {"str_id": "19-h2", "time_of_creation": "2018-06-24T19:50:19.338Z", "name": "Type H2 - 19", "short_name": "19-H2", "description": "H2 Type Quarters Flat nos. 145 - 152", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4377, "pixel_y": 1329, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "25c09a2e-710b-4fb0-8bef-eec45e885f6e", "fields": {"str_id": "indoor-badminton-court", "time_of_creation": "2019-07-29T17:57:16.664Z", "name": "Indoor Badminton Court", "short_name": "Indoor Badminton Court", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "2614d321-16c5-41a9-a78d-eb6d8a8ca2b3", "fields": {"str_id": "prints", "time_of_creation": "2018-06-24T19:50:18.644Z", "name": "Printing and photocopying Main Building", "short_name": "Prints", "description": "", "parent": "0308d18d-03a2-40bb-8efd-b222b7f84001", "parent_relation": "Inside", "group_id": 11, "pixel_x": 3628, "pixel_y": 1640, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "26716cc2-3afc-4114-908a-3aa2e75376e6", "fields": {"str_id": "table-tennis-hallnew-sac", "time_of_creation": "2018-08-26T13:51:16.641Z", "name": "Table Tennis hall,New SAC", "short_name": "Table Tennis hall,New SAC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "2709f7ec-8068-4c57-b08a-3adb76412128", "fields": {"str_id": "estate-office", "time_of_creation": "2018-06-24T19:50:19.487Z", "name": "Estate office", "short_name": "Estate office", "description": "Estate office tel: +9122257617991 1 Complaint registration by the occupants of the existing buildings at IIT Bombay and the rectification of the same. 2 Accommodation Allotment to the various staff at IIT Bombay. 3 Property registration. 4 Property Tax.", "parent": null, "parent_relation": "", "group_id": 9, "pixel_x": 0, "pixel_y": 0, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "273f8f72-e6a7-400c-9967-81a6738a2795", "fields": {"str_id": "2b-9", "time_of_creation": "2018-06-24T19:50:18.939Z", "name": "Type 2B 9", "short_name": "2B 9", "description": "2B-Type Quarters, Flat nos 49 - 54", "parent": null, "parent_relation": null, "group_id": 3, "pixel_x": 4384, "pixel_y": 2192, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "278bc921-86c1-44e3-aa3d-26ef8eee5682", "fields": {"str_id": "hostel-5-cricket-ground", "time_of_creation": "2019-08-23T12:29:09.736Z", "name": "Hostel 5 Cricket Ground", "short_name": "Hostel 5 Cricket Ground", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "27f6011a-58bf-4490-ad55-90c99164992f", "fields": {"str_id": "seminar-hall-physics-department", "time_of_creation": "2020-01-18T16:30:56.235Z", "name": "Seminar Hall, Physics Department", "short_name": "Seminar Hall, Physics Department", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "281089d4-70fc-45fb-b920-117dcea73d8c", "fields": {"str_id": "shishu-vihar", "time_of_creation": "2018-06-24T19:50:18.356Z", "name": "Shishu Vihar", "short_name": "Shishu Vihar", "description": "Shishu Vihar is temporarily located at A5 Tel: +912225764978", "parent": null, "parent_relation": "", "group_id": 9, "pixel_x": 2318, "pixel_y": 2851, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "28738cfb-5f0d-43e5-9916-9fb1202ec22e", "fields": {"str_id": "b14", "time_of_creation": "2018-06-24T19:50:19.119Z", "name": "Type B-14", "short_name": "B14", "description": "B-Type Quarters Flat nos. 55 - 58", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 2470, "pixel_y": 2291, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "294cb883-a836-412c-a9b4-6214c8738df9", "fields": {"str_id": "seminar-room-202-physics-department", "time_of_creation": "2019-02-05T18:56:10.901Z", "name": " Seminar Room (202), Physics Department", "short_name": " Seminar Room (202), Physics Department", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "2a2361a4-9b8e-49da-b1ab-00fa6b14d49b", "fields": {"str_id": "idc-auditorium", "time_of_creation": "2018-10-04T20:06:48.121Z", "name": "IDC Auditorium", "short_name": "IDC Auditorium", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "2a286324-ebe3-4698-930b-48216c0e868f", "fields": {"str_id": "fc-kohli-auditorium-kresit-buiding", "time_of_creation": "2019-08-22T05:34:56.909Z", "name": "F.C Kohli Auditorium, Kresit Buiding", "short_name": "F.C Kohli Auditorium, Kresit Buiding", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "2ac54284-3038-44c4-9c00-e3a57ad5180a", "fields": {"str_id": "httpstinyurlcomy5zrp7ka", "time_of_creation": "2020-09-04T08:13:25.101Z", "name": "https://tinyurl.com/y5zrp7ka", "short_name": "https://tinyurl.com/y5zrp7ka", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "2b7faf98-2bd4-4cb6-93ba-bf40bc293966", "fields": {"str_id": "lt-101", "time_of_creation": "2018-06-24T19:50:18.702Z", "name": "LT 101", "short_name": "LT 101", "description": "", "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", "parent_relation": "First floor", "group_id": 4, "pixel_x": 3570, "pixel_y": 2152, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "2c37e321-ffc2-4a95-ae5a-ba09be829295", "fields": {"str_id": "mlr-convention-center-brigade-millenium-campus-jp-nagar", "time_of_creation": "2018-07-16T16:38:52.379Z", "name": "MLR Convention Center, Brigade Millenium Campus, JP Nagar", "short_name": "MLR Convention Center, Brigade Millenium Campus, JP Nagar", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "2c5d22c3-6d85-4cc9-8f15-34f675872731", "fields": {"str_id": "sbi", "time_of_creation": "2018-06-24T19:50:18.377Z", "name": "State Bank of India, IIT Powai branch", "short_name": "SBI", "description": "Phone +912225722894 / +912225721103 work hours: 10:30 am to 4:30 pm", "parent": null, "parent_relation": "", "group_id": 6, "pixel_x": 2164, "pixel_y": 3227, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "2ca48d1f-6eb3-4619-8a0a-921519c32671", "fields": {"str_id": "4-h2", "time_of_creation": "2018-06-24T19:50:19.282Z", "name": "Type H2 - 4", "short_name": "4-H2", "description": "H2 Type Quarters Flat nos. 25 - 32", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 1187, "pixel_y": 2785, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "2d3faa59-99de-4794-b339-ae975b462395", "fields": {"str_id": "zoom", "time_of_creation": "2020-12-19T02:52:56.708Z", "name": "zoom", "short_name": "zoom", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "2d493a03-2705-434d-ac04-fcdd5b97a453", "fields": {"str_id": "multipurpose-hall-3rd-floor-new-sac", "time_of_creation": "2019-02-27T11:41:06.220Z", "name": "Multipurpose Hall, 3rd floor, New SAC", "short_name": "Multipurpose Hall, 3rd floor, New SAC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "2db87902-ea0a-4c4e-a9bc-e08941732c10", "fields": {"str_id": "ms-teams-code-3z121l1", "time_of_creation": "2021-01-21T17:46:55.959Z", "name": "MS Teams code: 3z121l1", "short_name": "MS Teams code: 3z121l1", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "2dc3dabb-d84d-42a3-8a66-d136be5f10bf", "fields": {"str_id": "25-h2", "time_of_creation": "2018-06-24T19:50:19.361Z", "name": "Type H2 - 26", "short_name": "25-H2", "description": "H2 Type Quarters Flat nos. 201 - 208", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 746, "pixel_y": 2246, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "2dc6e675-10b6-4507-9b90-a1a46adb01c8", "fields": {"str_id": "zoom-meet", "time_of_creation": "2020-07-19T08:38:46.529Z", "name": "Zoom Meet", "short_name": "Zoom Meet", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "2debcdcc-72e9-4385-8552-a3f394d8a568", "fields": {"str_id": "room-118-chemical-engineering-department", "time_of_creation": "2018-10-31T00:02:35.971Z", "name": "Room 118, Chemical Engineering Department", "short_name": "Room 118, Chemical Engineering Department", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "2e327725-7313-42f6-a7db-024af83b021a", "fields": {"str_id": "symphony-instagram-page", "time_of_creation": "2020-08-08T10:25:54.645Z", "name": "Symphony Instagram Page", "short_name": "Symphony Instagram Page", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "2e932a48-0f97-4b1a-9398-a43f482a4f17", "fields": {"str_id": "som-ic-2", "time_of_creation": "2022-09-22T19:17:49.459Z", "name": "SOM IC 2", "short_name": "SOM IC 2", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "2f04f408-6ec8-447c-b898-df0b58035a6b", "fields": {"str_id": "fluid-mech-lab", "time_of_creation": "2018-06-24T19:50:18.478Z", "name": "Fluid Mechanics and Fluid Power Lab", "short_name": "Fluid Mech Lab", "description": "Comes under Mechanical Engineering Department\nFluid Mechanics Lab Tel: +912225764232\nFluid Power Lab Tel: +912225764532 / +912225764549", "parent": null, "parent_relation": "", "group_id": 12, "pixel_x": 4060, "pixel_y": 1585, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "2f25652d-2444-4123-a58d-02018b31debc", "fields": {"str_id": "microsoft-teams", "time_of_creation": "2020-12-14T11:32:19.206Z", "name": "MICROSOFT TEAMS", "short_name": "MICROSOFT TEAMS", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "2fb1c97a-67ff-41fa-920c-3e8e024140c3", "fields": {"str_id": "theatre-room-old-sac", "time_of_creation": "2018-08-25T18:57:50.106Z", "name": "Theatre Room, old SAC", "short_name": "Theatre Room, old SAC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "2fb57b39-9ce1-43c7-83e0-e183f3991b7a", "fields": {"str_id": "ic1-sj-som", "time_of_creation": "2019-10-15T17:46:05.637Z", "name": "IC1 SJ-SOM", "short_name": "IC1 SJ-SOM", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "317c7a1d-1a39-499e-bb35-e5f7c3e0dbda", "fields": {"str_id": "12-h1", "time_of_creation": "2018-06-24T19:50:19.255Z", "name": "Type H1 - 12", "short_name": "12-H1", "description": "H1 Type Quarters Flat nos. 135 - 151", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4747, "pixel_y": 1173, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "31c16085-02ce-4fdf-9d19-1870b86cd464", "fields": {"str_id": "rm-lab", "time_of_creation": "2018-06-24T19:50:18.570Z", "name": "RM Lab (Rapid manufacturing)", "short_name": "RM Lab", "description": "", "parent": "cb002ce4-621b-46ac-ace8-1cf94229f725", "parent_relation": "Near", "group_id": 12, "pixel_x": 4650, "pixel_y": 1757, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "31d2a62d-8863-4982-b6fc-09a74a5b8b62", "fields": {"str_id": "httpstinyurlcomcsec-intro", "time_of_creation": "2021-03-06T06:00:29.211Z", "name": "https://tinyurl.com/csec-intro", "short_name": "https://tinyurl.com/csec-intro", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "31fb5103-3fef-4a57-8461-10bf89b49bae", "fields": {"str_id": "lt-305", "time_of_creation": "2018-06-24T19:50:18.761Z", "name": "LT 305", "short_name": "LT 305", "description": "", "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", "parent_relation": "Third floor", "group_id": 4, "pixel_x": 3570, "pixel_y": 2152, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "3211f744-12f6-4017-8a32-6fd9e6e7a51e", "fields": {"str_id": "hybrid", "time_of_creation": "2022-08-26T15:29:28.028Z", "name": "Hybrid", "short_name": "Hybrid", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "3232fb80-8d2d-4956-9b0d-2ee759b0c6e3", "fields": {"str_id": "lt", "time_of_creation": "2019-01-11T19:32:57.060Z", "name": "LT", "short_name": "LT", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "32829c3d-871e-4665-a26b-fab62ab9555f", "fields": {"str_id": "ltpcsa", "time_of_creation": "2018-08-18T12:26:10.638Z", "name": "LTPCSA", "short_name": "LTPCSA", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "32d1ed61-da25-4b73-8178-34521b16b1c9", "fields": {"str_id": "versova-beach", "time_of_creation": "2019-10-01T11:12:09.307Z", "name": "Versova Beach", "short_name": "Versova Beach", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "330c7fdc-9d51-4054-afcf-f9fe29439cc8", "fields": {"str_id": "a6", "time_of_creation": "2018-06-24T19:50:19.021Z", "name": "Bungalow A6 ", "short_name": "A6", "description": "A-Type Bungalow", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 2254, "pixel_y": 2963, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "332cbdab-6419-4753-a4d7-ab726996a414", "fields": {"str_id": "volleyball-court", "time_of_creation": "2020-03-12T21:20:11.508Z", "name": "Volleyball Court", "short_name": "Volleyball Court", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "333a7032-4c95-45b3-895a-eb4f840757d1", "fields": {"str_id": "httpsairmeetcomee643dbc0-cbfe-11ea-ba2b-4175708878ce", "time_of_creation": "2020-07-22T17:02:19.482Z", "name": "https://airmeet.com/e/e643dbc0-cbfe-11ea-ba2b-4175708878ce", "short_name": "https://airmeet.com/e/e643dbc0-cbfe-11ea-ba2b-4175708878ce", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "34052436-a815-4c37-90ee-4cde0b9ddf73", "fields": {"str_id": "seminar-room-202-physics-department", "time_of_creation": "2019-02-03T08:09:46.902Z", "name": "Seminar Room (202), Physics Department", "short_name": "Seminar Room (202), Physics Department", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "342b40d7-708e-4889-af4e-4f1a3aea2324", "fields": {"str_id": "h2-lounge", "time_of_creation": "2019-10-02T15:33:36.723Z", "name": "H2 lounge", "short_name": "H2 lounge", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "34513a0d-1b20-4350-8d76-57c0883f10fe", "fields": {"str_id": "adv-microengg-lab", "time_of_creation": "2018-06-24T19:50:18.609Z", "name": "SMAmL Suman Mashruwala Advanced Microengineering Lab", "short_name": "Adv. MicroEngg Lab", "description": "Phone: +912225767519 / +912225764534\nFax:-+912225726875\nE-mail: gandhi@me.iitb.ac.in", "parent": null, "parent_relation": "", "group_id": 12, "pixel_x": 4431, "pixel_y": 1615, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "347f9552-59d0-42ba-8418-d962cd5283e7", "fields": {"str_id": "3rd-floorscreening-hall-new-sac", "time_of_creation": "2019-05-02T18:15:41.577Z", "name": "3rd floor,Screening Hall, New SAC", "short_name": "3rd floor,Screening Hall, New SAC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "34dc44d9-f7f4-473f-929e-7bc7b551551f", "fields": {"str_id": "photography-and-fine-arts-studio-old-sac", "time_of_creation": "2018-10-08T14:48:56.861Z", "name": "Photography and Fine Arts Studio, Old SAC", "short_name": "Photography and Fine Arts Studio, Old SAC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "354d2964-3b44-4087-a751-05c66db5b1a2", "fields": {"str_id": "lc-101", "time_of_creation": "2018-06-24T19:50:18.777Z", "name": "LC 101", "short_name": "LC 101", "description": "", "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", "parent_relation": "First floor", "group_id": 4, "pixel_x": 3570, "pixel_y": 2152, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "359d55fe-85db-469c-8fce-5098a457ec95", "fields": {"str_id": "aero-annx", "time_of_creation": "2018-06-24T19:50:18.831Z", "name": "Aerospace Engineering Annexe", "short_name": "Aero Annx", "description": "http://www.aero.iitb.ac.in Phone No.: +912225764111 Fax No.: +912225722602. Email: office@aero.iitb.ac.in The department offers academic programs for B. Tech, M. Tech, Ph. D. Specialization are offered: Aerodynamics, Control and Guidance, Propulsion, Structures, and Systems Engineering", "parent": "44cb782e-b6f0-4e65-b35a-9c0b907fc9d0", "parent_relation": "Inside", "group_id": 1, "pixel_x": 3911, "pixel_y": 2171, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "3627e488-7960-40d4-b394-de8d40e86a9f", "fields": {"str_id": "2b-24", "time_of_creation": "2018-06-24T19:50:19.001Z", "name": "Type 2B 24", "short_name": "2B 24", "description": "2B-Type Quarters, Flat nos 193 - 220", "parent": null, "parent_relation": null, "group_id": 3, "pixel_x": 4124, "pixel_y": 1238, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "36392e9a-cec2-47a7-ba8d-6053f4c46b7a", "fields": {"str_id": "sac", "time_of_creation": "2018-06-24T19:50:18.345Z", "name": "Students Activity Centre", "short_name": "SAC", "description": "Tel: +912225768968", "parent": null, "parent_relation": "", "group_id": 8, "pixel_x": 3599, "pixel_y": 1225, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "366a0ebe-77df-46d4-ac51-cedb5036b09c", "fields": {"str_id": "c-use", "time_of_creation": "2018-06-24T19:50:18.437Z", "name": "Centre for Urban Science and Engineering (inside civil)", "short_name": "C-USE", "description": "http://cuse.iitb.ac.in Tel: +912225769301 Ph. D program. Research areas include Planning and Design (Housing, Land use policies, Public Spaces, Risk Management) Policy and Governance (Housing Economics, Health, Education, Employment, Environment) Infrastructure (Buildings,Transportation & Land use, Urban water, Waste Management, Smart Energy); Informatics (Citizen Science, Cyber-Physical Systems, Urban Knowledge, Geo-Spatial Technologies)", "parent": "39c0b4e7-ec49-45db-8f9e-3a64b500aa1f", "parent_relation": "Inside", "group_id": 1, "pixel_x": 3879, "pixel_y": 1804, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "36dbd8df-3126-451b-bdbc-0f662de367ee", "fields": {"str_id": "ms-teams", "time_of_creation": "2020-09-18T04:05:38.317Z", "name": "MS teams", "short_name": "MS teams", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "36f8b6f7-3f2c-4950-b485-a7690ed781f0", "fields": {"str_id": "idp-climate-studies", "time_of_creation": "2018-06-24T19:50:18.842Z", "name": "Inter-disciplinary Programme in Climate Studies", "short_name": "IDP Climate Studies", "description": "http://www.climate.iitb.ac.in Office inside Civil Engineering building Tel:+912225767301 Fax:+912225767302 Ph.D. is offered in this programme. Research areas include Climate science and technology, Technology evaluation and assessment, Impacts, Vulnerability and Adaptation", "parent": "39c0b4e7-ec49-45db-8f9e-3a64b500aa1f", "parent_relation": "Inside", "group_id": 1, "pixel_x": 3879, "pixel_y": 1804, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "37262f63-e4b3-4003-bdd2-06b690107b64", "fields": {"str_id": "new-yoga-room-sac", "time_of_creation": "2018-07-29T18:27:45.642Z", "name": "New Yoga Room, SAC", "short_name": "New Yoga Room, SAC", "description": "", "parent": "36392e9a-cec2-47a7-ba8d-6053f4c46b7a", "parent_relation": "Inside", "group_id": 8, "pixel_x": 3599, "pixel_y": 1225, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "37a846e3-aa3c-4164-b2da-f01afb801955", "fields": {"str_id": "httpszoomusj98787912153pwdbjhgv1vfn1fqmzduuzfjwwtcvuh6dz09", "time_of_creation": "2020-08-12T15:16:59.654Z", "name": " https://zoom.us/j/98787912153?pwd=bjhGV1VFN1FQMzdUUzFJWWtCVUh6dz09", "short_name": " https://zoom.us/j/98787912153?pwd=bjhGV1VFN1FQMzdUUzFJWWtCVUh6dz09", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "37ae5e60-97a5-49ca-acbc-584665d49d2f", "fields": {"str_id": "h3", "time_of_creation": "2018-06-24T19:50:18.194Z", "name": "Hostel 03 Vitruvians", "short_name": "H3", "description": "Hostel security: +912225762603 Hall Manager: +912225762703 G. Sec: Arvind Jangid +919820525369", "parent": null, "parent_relation": "", "group_id": 2, "pixel_x": 3435, "pixel_y": 946, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "37d27973-3f1a-48d2-a8c2-4b92aedbff1b", "fields": {"str_id": "a4", "time_of_creation": "2018-06-24T19:50:19.013Z", "name": "Bungalow A4 ", "short_name": "A4", "description": "A-Type Bungalow", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 2373, "pixel_y": 2767, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "380c1d4a-602b-41c4-9572-f0e44c277742", "fields": {"str_id": "report-to-h15-mess", "time_of_creation": "2022-02-25T13:59:37.399Z", "name": "Report to H15 Mess", "short_name": "Report to H15 Mess", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "39c0b4e7-ec49-45db-8f9e-3a64b500aa1f", "fields": {"str_id": "civil", "time_of_creation": "2018-06-24T19:50:18.095Z", "name": "Civil Engineering Department", "short_name": "Civil", "description": "http://www.civil.iitb.ac.in\nTel:+912225767301\nFax:+912225767302\n\nThe department offers academic programs for B Tech, Dual Degree (B Tech + M Tech), M Tech, MS and Ph.D across different divisions such as Building Technology and Construction Management (BTCM) Environmental and Water Resources Engineering (EWRE) Geotechnical Engineering (GT) Structural Engineering (ST) Transportation Engineering (TR)", "parent": null, "parent_relation": "", "group_id": 1, "pixel_x": 3879, "pixel_y": 1804, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "3a69d7f4-95d1-479d-bfee-a362547a5cca", "fields": {"str_id": "jayantia-b-19", "time_of_creation": "2018-06-24T19:50:18.058Z", "name": "Jayantia B-19", "short_name": "Jayantia B-19", "description": "", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 1413, "pixel_y": 2885, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "3af710e8-ac44-4c1e-8129-5cc7247684fb", "fields": {"str_id": "zoom---httpszoomusj98440561173pwdctfsqlfqsfdmaklauvhvthv4ehexqt09", "time_of_creation": "2021-04-12T11:46:36.765Z", "name": "Zoom - https://zoom.us/j/98440561173?pwd=cTFSQlFqSFdmaklaUVhVTHV4eHExQT09", "short_name": "Zoom - https://zoom.us/j/98440561173?pwd=cTFSQlFqSFdmaklaUVhVTHV4eHExQT09", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "3b946b1b-c39e-42fe-8a85-521e92f95890", "fields": {"str_id": "ongc-research-centre", "time_of_creation": "2018-06-24T19:50:18.316Z", "name": "ONGC Research Centre", "short_name": "ONGC Research Centre", "description": "Currently, the centre is working on a project titled \"Physical and Numerical Models for Un-conventional Flood Patterns\". The project relates to increasing country's currrent oil production by means of Enhanced Oil Recovery (EOR) processes. ", "parent": null, "parent_relation": "", "group_id": 1, "pixel_x": 4234, "pixel_y": 2162, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "3bb76da4-dc16-4a2d-bd2b-1c82d553b9d4", "fields": {"str_id": "osl", "time_of_creation": "2018-06-24T19:50:18.821Z", "name": "Old Software Lab", "short_name": "OSL", "description": "", "parent": "8fcf8049-5a13-4e60-b5b1-993a4a554526", "parent_relation": "Ground floor", "group_id": 12, "pixel_x": 3928, "pixel_y": 1496, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "3c1475fe-1959-47b6-93e9-47b7a2768891", "fields": {"str_id": "virtual", "time_of_creation": "2021-12-26T09:36:47.044Z", "name": "Virtual", "short_name": "Virtual", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "3c24c1aa-9a2e-430c-b195-83d774dff2ce", "fields": {"str_id": "corro-sci-paint-lab", "time_of_creation": "2018-06-24T19:50:18.862Z", "name": "Corrosion Science Paint Lab", "short_name": "Corro Sci Paint Lab", "description": "Tel: +912225764606", "parent": "aa4fa9f4-40fa-4d99-bba8-bd985d11f67e", "parent_relation": "Inside", "group_id": 12, "pixel_x": 3631, "pixel_y": 2044, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "3c3af8a6-6aff-4d4d-8fac-f0f406a2700d", "fields": {"str_id": "convo-foyer", "time_of_creation": "2019-01-11T16:56:52.443Z", "name": "Convo foyer", "short_name": "Convo foyer", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "3c3bd610-1e39-49e1-ae05-26f5cba62f52", "fields": {"str_id": "imagica", "time_of_creation": "2018-09-30T15:24:52.032Z", "name": "Imagica", "short_name": "Imagica", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "3c3ef77f-ed33-4f42-a003-3550eec21c7a", "fields": {"str_id": "vihar-house", "time_of_creation": "2018-06-24T19:50:18.405Z", "name": "Vihar House", "short_name": "Vihar House", "description": "", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4558, "pixel_y": 1429, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "3db68372-6bd9-4772-8c1d-855725a35f50", "fields": {"str_id": "new-seminar-hall-mems-dept", "time_of_creation": "2020-01-31T07:43:28.425Z", "name": "New Seminar Hall, MEMS Dept.", "short_name": "New Seminar Hall, MEMS Dept.", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "3dd9599f-1228-4b23-b1c5-1268a93c9bef", "fields": {"str_id": "lt-104", "time_of_creation": "2018-06-24T19:50:18.713Z", "name": "LT 104", "short_name": "LT 104", "description": "", "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", "parent_relation": "First floor", "group_id": 4, "pixel_x": 3570, "pixel_y": 2152, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "3deff9aa-7ff2-49fa-928a-49b76ab402ed", "fields": {"str_id": "la-202", "time_of_creation": "2018-06-24T19:50:18.679Z", "name": "LA 202", "short_name": "LA 202", "description": "The classroom has 4 entrance doors, two on second floor and two in third floor.", "parent": "be8afcf1-c7f7-4d71-aaf5-0154081974dd", "parent_relation": "Second and Third floors", "group_id": 4, "pixel_x": 3779, "pixel_y": 2220, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "3e59233d-66ed-42f5-83d2-16a5e3ef4d16", "fields": {"str_id": "orthocad-lab", "time_of_creation": "2018-06-24T19:50:18.555Z", "name": "OrthoCad Lab", "short_name": "OrthoCad Lab", "description": "Comes under Mechanical Engineering Department +912225764399", "parent": null, "parent_relation": "", "group_id": 12, "pixel_x": 4683, "pixel_y": 1702, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "3e8998f8-b534-437b-93d2-3e38d1f25511", "fields": {"str_id": "tennis-court-new", "time_of_creation": "2018-06-24T19:50:18.391Z", "name": "Tennis Court (new)", "short_name": "Tennis Court (new)", "description": "", "parent": null, "parent_relation": "", "group_id": 8, "pixel_x": 3046, "pixel_y": 1513, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "3ec0add2-d8bf-4237-852d-798499bbdab5", "fields": {"str_id": "fc-kohli-auditorium-old-cse-building", "time_of_creation": "2022-08-10T13:24:20.536Z", "name": "F.C Kohli Auditorium Old CSE Building ", "short_name": "F.C Kohli Auditorium Old CSE Building ", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "3eeba406-f5ac-45ae-9870-32f6f58de138", "fields": {"str_id": "hostel-5-mess", "time_of_creation": "2018-10-04T11:07:57.525Z", "name": "Hostel-5 mess", "short_name": "Hostel-5 mess", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "3f3fb2f8-caae-4f7b-8f2b-0c4cb37b2f92", "fields": {"str_id": "cummins", "time_of_creation": "2018-06-24T19:50:18.466Z", "name": "Cummins Engine Research facility", "short_name": "Cummins", "description": "Incharge: Prof. Anuradda Ganesh\nTel: +912225764506", "parent": null, "parent_relation": "", "group_id": 1, "pixel_x": 4350, "pixel_y": 1580, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "3f4859fd-f908-4cb8-8889-8e29c0166c86", "fields": {"str_id": "h15--h16-mess", "time_of_creation": "2018-09-25T17:51:46.156Z", "name": "H15 & H16 Mess", "short_name": "H15 & H16 Mess", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "4054be4f-ebfb-49fa-8a0c-29c46b02c1b2", "fields": {"str_id": "11-type1", "time_of_creation": "2018-06-24T19:50:19.429Z", "name": "Type1 - 11", "short_name": "11-Type1", "description": "Type 1 Quarters Flat nos. 121 - 132", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 3389, "pixel_y": 803, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "40a0335c-cbd5-4849-bb18-87ef976824ed", "fields": {"str_id": "2b-1", "time_of_creation": "2018-06-24T19:50:18.910Z", "name": "Type 2B 1", "short_name": "2B 1", "description": "2B-Type Quarters, Flat nos 1 - 6", "parent": null, "parent_relation": null, "group_id": 3, "pixel_x": 4421, "pixel_y": 2264, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "412d646b-2aa6-4120-9d28-15316e0d365e", "fields": {"str_id": "youtube-live", "time_of_creation": "2020-12-18T16:12:57.044Z", "name": "Youtube Live", "short_name": "Youtube Live", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "41762068-4df9-467d-ad0f-d0caf711b980", "fields": {"str_id": "squash-court-new-sac", "time_of_creation": "2019-08-26T21:04:49.306Z", "name": "Squash Court, New SAC", "short_name": "Squash Court, New SAC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "41b4d43a-0a49-4fd7-b441-ea41004a2369", "fields": {"str_id": "math-centre", "time_of_creation": "2018-06-24T19:50:19.564Z", "name": "National Centre for Mathematics", "short_name": "Math Centre", "description": "", "parent": null, "parent_relation": "", "group_id": 9, "pixel_x": 2890, "pixel_y": 1880, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "41d26c27-1a92-411c-a16a-7ae4f4f54aac", "fields": {"str_id": "tghh", "time_of_creation": "2021-08-28T07:57:05.799Z", "name": "Tghh", "short_name": "Tghh", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "42422033-0fb0-4a62-aa55-133f1691997d", "fields": {"str_id": "old-cse", "time_of_creation": "2018-06-24T19:50:18.309Z", "name": "Old Computer Science Engineering Department", "short_name": "Old CSE", "description": "http://www.cse.iitb.ac.in\r\nTel: +912225767701 / +912225767702 / +912225762771\r\n\r\nThe department offers academic programs for B. Tech, Dual degree (B Tech + M Tech), Dual Degree PG (M. Tech + Ph. D) and Ph. D. Research areas include algorithms, programming languages and Compilers, database and information systems, artificial intelligence and natural language processing, software engineering, formal methods, distributed systems, computer networks, data mining, computer graphics, computer vision and image understanding, real-time and embedded systems, formal languages and bio-inspired computing", "parent": null, "parent_relation": null, "group_id": 1, "pixel_x": 4002, "pixel_y": 1545, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "425d9456-6ba4-4970-9f32-039dabafc899", "fields": {"str_id": "lt-201", "time_of_creation": "2018-06-24T19:50:18.723Z", "name": "LT 201", "short_name": "LT 201", "description": "", "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", "parent_relation": "Second floor", "group_id": 4, "pixel_x": 3570, "pixel_y": 2152, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "42664559-5ea0-4670-b0c8-299f6d3eff81", "fields": {"str_id": "jam-off", "time_of_creation": "2018-06-24T19:50:18.426Z", "name": "Joint Admission Test for M.Sc. Office", "short_name": "JAM Off.", "description": "Tel: +91222576 2924", "parent": "0308d18d-03a2-40bb-8efd-b222b7f84001", "parent_relation": "Inside", "group_id": 1, "pixel_x": 3628, "pixel_y": 1640, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "42cce33d-1c9c-4491-836d-c5052c31f283", "fields": {"str_id": "lakeside-gate", "time_of_creation": "2018-06-24T19:50:18.245Z", "name": "Lake Side Gate no. 1", "short_name": "Lakeside Gate", "description": "Tel: +912225761124", "parent": null, "parent_relation": "", "group_id": 10, "pixel_x": 792, "pixel_y": 2777, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "42eb7098-9876-4609-9241-67a3b345572d", "fields": {"str_id": "httpsbitly3iejyxrin", "time_of_creation": "2020-09-19T09:09:24.059Z", "name": "https://bit.ly/3iEjYxrin", "short_name": "https://bit.ly/3iEjYxrin", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "431b487b-1db7-4cc0-ae63-af19ad96dca9", "fields": {"str_id": "sitac", "time_of_creation": "2018-06-24T19:50:18.597Z", "name": "Structural integrity Testing and Analysis Centre", "short_name": "SITAC", "description": "Comes under Mechanical Engineering Department +912225764528", "parent": null, "parent_relation": "", "group_id": 1, "pixel_x": 4355, "pixel_y": 1750, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "434c029b-8c7e-4a7d-b892-7a55282b22e3", "fields": {"str_id": "3-type1", "time_of_creation": "2018-06-24T19:50:19.403Z", "name": "Type1 - 3", "short_name": "3-Type1", "description": "Type 1 Quarters Flat nos. 25 - 36", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4177, "pixel_y": 2652, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "434cd6e5-4dcd-4254-8796-c216845efb84", "fields": {"str_id": "kampus-app", "time_of_creation": "2020-09-23T14:22:25.265Z", "name": "Kampus App", "short_name": "Kampus App", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "4370f94f-aa75-457c-b3b2-b377d4678067", "fields": {"str_id": "vmcc", "time_of_creation": "2018-06-24T19:50:18.398Z", "name": "Victor Menezes Convention Centre", "short_name": "VMCC", "description": "Tel: +912225761125", "parent": null, "parent_relation": "", "group_id": 4, "pixel_x": 4110, "pixel_y": 1847, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "4374fe70-8cf3-48dd-ab7a-c1a468fe79cf", "fields": {"str_id": "cisco-webex", "time_of_creation": "2020-08-15T07:41:30.406Z", "name": "Cisco WebEx", "short_name": "Cisco WebEx", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "438250f8-6e59-4aee-8550-b1d83115d6b3", "fields": {"str_id": "iit-bombay", "time_of_creation": "2018-06-24T21:51:24.848Z", "name": "IIT Bombay", "short_name": "IIT Bombay", "description": "On the IIT Bombay Campus", "parent": null, "parent_relation": null, "group_id": 0, "pixel_x": 0, "pixel_y": 0, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "44244dbc-9c3e-4090-87fc-cdc144b488a7", "fields": {"str_id": "fb-live-styleupiitb", "time_of_creation": "2021-08-03T17:24:46.963Z", "name": "FB Live @styleup.iitb ", "short_name": "FB Live @styleup.iitb ", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "44b8543a-5713-4ce6-b7ce-810712bd94d4", "fields": {"str_id": "lt-302", "time_of_creation": "2018-06-24T19:50:18.749Z", "name": "LT 302", "short_name": "LT 302", "description": "", "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", "parent_relation": "Third floor", "group_id": 4, "pixel_x": 3570, "pixel_y": 2152, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "44cb782e-b6f0-4e65-b35a-9c0b907fc9d0", "fields": {"str_id": "hss", "time_of_creation": "2018-06-24T19:50:18.220Z", "name": "Humanities and Social Sciences Department", "short_name": "HSS", "description": "http://www.hss.iitb.ac.in\r\n+912225767351 / +91222576 7351 / +912225767352\r\n\r\nThe department offers academic programs for B. Tech, M. Phil, Ph. D. Research areas include Economics, English, Philosophy, Psychology, Sociology", "parent": null, "parent_relation": null, "group_id": 1, "pixel_x": 3911, "pixel_y": 2171, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "44d85bf9-5dac-4ef5-8767-d9f3c7779a0e", "fields": {"str_id": "refrigeration-ac-and-cryogenics-lab", "time_of_creation": "2018-06-24T19:50:18.566Z", "name": "Refrigeration, A/C and Cryogenics Lab", "short_name": "Refrigeration, A/C and Cryogenics Lab", "description": "Comes under Mechanical Engineering Department +912225764587", "parent": "f5303dcd-b456-4147-a414-88a89815d826", "parent_relation": "Near", "group_id": 12, "pixel_x": 4225, "pixel_y": 1630, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "45116f0d-804d-4436-b081-45138dfe6ebd", "fields": {"str_id": "facebook-live", "time_of_creation": "2021-02-07T07:40:00.371Z", "name": "Facebook Live", "short_name": "Facebook Live", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "452bf863-2dfe-4bb4-a040-5e6018de34e8", "fields": {"str_id": "youtube-live", "time_of_creation": "2020-08-06T19:50:34.732Z", "name": "YouTube Live ", "short_name": "YouTube Live ", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "45316648-6642-424e-97e8-72096999f268", "fields": {"str_id": "hydraulics-lab-workshop", "time_of_creation": "2018-06-24T19:50:18.514Z", "name": "Hydraulics Lab Workshop", "short_name": "Hydraulics Lab Workshop", "description": "", "parent": "fa6f024a-87ae-4d06-903a-f77e05de7a27", "parent_relation": "Near", "group_id": 12, "pixel_x": 4180, "pixel_y": 1450, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "4561c2f3-0629-4837-8047-10899dcdebe6", "fields": {"str_id": "ic3-som", "time_of_creation": "2019-09-30T04:51:03.433Z", "name": "IC3 SOM", "short_name": "IC3 SOM", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "45c7dfb0-ed3a-4683-8699-65d3b5ad0f06", "fields": {"str_id": "c2", "time_of_creation": "2018-06-24T19:50:19.142Z", "name": "Type C-2", "short_name": "C2", "description": "C-Type Quarters Flat nos. 13 - 18", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 3108, "pixel_y": 2552, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "462bdb2e-deb7-4c1c-9896-1226d68b6ce4", "fields": {"str_id": "screening-room-new-sac", "time_of_creation": "2019-02-18T21:09:54.583Z", "name": "Screening Room, New SAC", "short_name": "Screening Room, New SAC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "463177f9-45bc-4841-a956-53e69955ade0", "fields": {"str_id": "sjm-som-bus-stand", "time_of_creation": "2018-09-18T18:36:00.475Z", "name": "SJM SOM bus stand", "short_name": "SJM SOM bus stand", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "464f1cf2-4be4-4b67-8a57-3c186e5f020e", "fields": {"str_id": "lc-202", "time_of_creation": "2018-06-24T19:50:18.788Z", "name": "LC 202", "short_name": "LC 202", "description": "", "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", "parent_relation": "Second floor", "group_id": 4, "pixel_x": 3570, "pixel_y": 2152, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "47281aa0-b813-48e4-bc09-6c4c3de6caaa", "fields": {"str_id": "vmcc--seminar-hall-2", "time_of_creation": "2019-10-19T08:24:45.638Z", "name": "VMCC- Seminar Hall 2", "short_name": "VMCC- Seminar Hall 2", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "47650bad-bd75-4212-ba34-4b4f739e8935", "fields": {"str_id": "hostel-5", "time_of_creation": "2020-03-01T08:29:40.932Z", "name": "Hostel 5", "short_name": "Hostel 5", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "476931a1-d95e-4c0d-bb70-a4aade0d7eff", "fields": {"str_id": "zoom", "time_of_creation": "2020-08-14T16:16:37.211Z", "name": "Zoom", "short_name": "Zoom", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "47858e97-f358-4fbd-b3f8-a70def5301bb", "fields": {"str_id": "white-house", "time_of_creation": "2018-06-24T19:50:18.410Z", "name": "White House", "short_name": "White House", "description": "B- 20, A wing Tel: +912225762885, Flat nos. 99-110 B- 20, B wing Tel: +912225762840, Flat nos.111-122", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 1909, "pixel_y": 2799, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "48454e2b-f5ba-478d-bfb1-bb532bdf5f0e", "fields": {"str_id": "hostel-9-common-room", "time_of_creation": "2019-08-20T13:01:12.296Z", "name": "Hostel 9 common room", "short_name": "Hostel 9 common room", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "4866ce7e-0ba0-499e-9123-917cc74111ec", "fields": {"str_id": "sbi", "time_of_creation": "2018-06-24T19:50:18.384Z", "name": "State Bank of India Branch", "short_name": "SBI", "description": "", "parent": null, "parent_relation": null, "group_id": 8, "pixel_x": 3742, "pixel_y": 1229, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "48edd123-38d8-46cc-94fe-24aae94ab106", "fields": {"str_id": "football-deadlands-", "time_of_creation": "2019-11-06T11:13:20.073Z", "name": "Football Deadlands ?", "short_name": "Football Deadlands ?", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "498e08e9-3143-4a71-ae5f-eda296317e3e", "fields": {"str_id": "2b-10", "time_of_creation": "2018-06-24T19:50:19.498Z", "name": "Type 2B 10", "short_name": "2B 10", "description": "", "parent": null, "parent_relation": null, "group_id": 3, "pixel_x": 737, "pixel_y": 2651, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "4a3043d5-7b9c-4a95-9496-f5655d714ad9", "fields": {"str_id": "theatre-room-sac", "time_of_creation": "2018-07-29T07:34:11.367Z", "name": "Theatre Room, SAC", "short_name": "Theatre Room, SAC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "4a690796-6b41-4a1e-841d-2ae4d7b0a465", "fields": {"str_id": "gymkhana-grounds", "time_of_creation": "2018-06-24T22:05:36.609Z", "name": "Gymkhana Grounds", "short_name": "Gymkhana Grounds", "description": "The Gymkhana Grounds consist of a football field, a cricket field, basketball courts and more.", "parent": null, "parent_relation": null, "group_id": 8, "pixel_x": 3185, "pixel_y": 1165, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "4acc75dd-1361-4c36-bc17-97a39bdfea24", "fields": {"str_id": "httpfacebookcomhostel9iitb", "time_of_creation": "2021-01-25T03:02:53.633Z", "name": "http://facebook.com/Hostel9.IITB", "short_name": "http://facebook.com/Hostel9.IITB", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "4bc5da47-899e-42ae-a234-bf49678d4b66", "fields": {"str_id": "yoga-room--3rd-floor-new-sac-opposite-to-hostel-11", "time_of_creation": "2019-05-20T06:53:51.667Z", "name": " Yoga Room, , 3rd floor, New SAC, opposite to hostel 11", "short_name": " Yoga Room, , 3rd floor, New SAC, opposite to hostel 11", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "4c6a2554-9431-466a-8545-79c0d3b6a1de", "fields": {"str_id": "oat-old-sac", "time_of_creation": "2020-03-04T21:20:14.117Z", "name": "OAT, Old SAC", "short_name": "OAT, Old SAC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "4c7b4b94-4953-4d6f-98fd-c57e197f8232", "fields": {"str_id": "jhabua-madhya-pradesh", "time_of_creation": "2018-11-18T17:04:49.058Z", "name": "Jhabua, Madhya Pradesh ", "short_name": "Jhabua, Madhya Pradesh ", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "4c955153-fef0-4033-8e29-8351d3893b61", "fields": {"str_id": "ncc-t-point-road-near-convocation-hall", "time_of_creation": "2020-03-03T06:44:36.924Z", "name": "NCC T point road, near convocation hall", "short_name": "NCC T point road, near convocation hall", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "4c9d289f-b133-41ec-adb4-6337e6cd7b6d", "fields": {"str_id": "a19", "time_of_creation": "2018-06-24T19:50:19.068Z", "name": "Bungalow A19 ", "short_name": "A19", "description": "A-Type Bungalow", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4280, "pixel_y": 1110, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "4d379d25-f7e1-4d32-8834-620e22afe6ac", "fields": {"str_id": "nss-iitb-youtube-live", "time_of_creation": "2020-08-25T12:33:23.864Z", "name": "NSS IITB YouTube Live", "short_name": "NSS IITB YouTube Live", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "4d786674-1d9d-4c03-89f2-e2a42c02f0a3", "fields": {"str_id": "c8", "time_of_creation": "2018-06-24T19:50:19.157Z", "name": "Type C-8", "short_name": "C8", "description": "C-Type Quarters Flat nos. 49 - 54", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 3078, "pixel_y": 2878, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "4ea5ddad-4d8f-4b96-94ee-efc2df04dbc6", "fields": {"str_id": "uphar", "time_of_creation": "2018-06-24T19:50:18.889Z", "name": "Uphar", "short_name": "Uphar", "description": "Upkar food joint Breakfast: 6:30 am to 12 pm Lunch: 12pm to 3 pm Evening snacks: 4 pm to 7:30 pm", "parent": null, "parent_relation": "", "group_id": 5, "pixel_x": 4052, "pixel_y": 2815, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "4ff83bf6-82e3-4647-ae6d-3c59ec0f23d9", "fields": {"str_id": "canara-atm", "time_of_creation": "2018-06-24T19:50:18.051Z", "name": "ATM - Canara Bank near H6", "short_name": "Canara ATM", "description": "", "parent": null, "parent_relation": "", "group_id": 6, "pixel_x": 2543, "pixel_y": 842, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "502f034a-7860-437d-a37f-7562f1d5340b", "fields": {"str_id": "zoom-meeting", "time_of_creation": "2021-01-22T19:49:54.549Z", "name": "Zoom meeting", "short_name": "Zoom meeting", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "50e2e836-3974-4be9-b35d-3cb0de879652", "fields": {"str_id": "conference-room-sac", "time_of_creation": "2019-01-14T15:49:20.570Z", "name": "Conference room SAC", "short_name": "Conference room SAC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "51839c0e-324f-413b-8edf-510df2927fb7", "fields": {"str_id": "s1-bay", "time_of_creation": "2018-06-24T19:50:18.582Z", "name": "S1 Bay", "short_name": "S1 Bay", "description": "", "parent": "431b487b-1db7-4cc0-ae63-af19ad96dca9", "parent_relation": "Near", "group_id": 1, "pixel_x": 4490, "pixel_y": 1760, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "51c16b38-18d3-4920-97fa-7c17ec7697ad", "fields": {"str_id": "zoom", "time_of_creation": "2020-07-03T10:04:07.168Z", "name": "Zoom ", "short_name": "Zoom ", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "51d75d87-16f4-481b-93e4-bf38a0207c2c", "fields": {"str_id": "a13", "time_of_creation": "2018-06-24T19:50:19.046Z", "name": "Bungalow A13 ", "short_name": "A13", "description": "A-Type Bungalow", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 2536, "pixel_y": 2374, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "523d7fb8-d910-4ca0-bf97-320f23e95943", "fields": {"str_id": "vanvihar", "time_of_creation": "2018-06-24T19:50:18.141Z", "name": "Guest House / Vanvihar", "short_name": "Vanvihar", "description": "Tel: +912225761200 / +912225768945", "parent": null, "parent_relation": null, "group_id": 3, "pixel_x": 2881, "pixel_y": 2106, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "523ff44f-9f1e-48c6-aa62-6f804ff1bb2d", "fields": {"str_id": "c11", "time_of_creation": "2018-06-24T19:50:19.169Z", "name": "Type C-11", "short_name": "C11", "description": "C-Type Quarters Flat nos. 67 - 72", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 2832, "pixel_y": 3131, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "527a69c6-ec29-4d28-b496-b6c66d5fb587", "fields": {"str_id": "la-la-land", "time_of_creation": "2019-02-11T19:29:27.248Z", "name": "La La Land", "short_name": "La La Land", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "52a2ab10-829b-49b3-a352-9bc730e935b8", "fields": {"str_id": "kshitij-udyan", "time_of_creation": "2018-06-24T19:50:18.238Z", "name": "Kshitij Udyan", "short_name": "Kshitij Udyan", "description": "", "parent": null, "parent_relation": "", "group_id": 9, "pixel_x": 2971, "pixel_y": 1744, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "52d7624e-4fc1-41f1-a497-6b53f64e504d", "fields": {"str_id": "amul-parlour", "time_of_creation": "2018-06-24T19:50:19.494Z", "name": "Amul Parlour", "short_name": "Amul Parlour", "description": "Desserts and drinks", "parent": "803f4611-9e9c-4120-b236-78cfbcd3f4b2", "parent_relation": "Outside", "group_id": 5, "pixel_x": 2114, "pixel_y": 800, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "52eaea20-818f-4c28-9132-e85a96a9b8be", "fields": {"str_id": "all-stationary-shops", "time_of_creation": "2018-09-02T17:46:50.040Z", "name": "All stationary shops", "short_name": "All stationary shops", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "536c4c4c-52b2-4b4e-b3ce-2c6d2c92d036", "fields": {"str_id": "btr-a--b", "time_of_creation": "2018-06-24T19:50:19.139Z", "name": "BTR Building - A & B", "short_name": "BTR A & B", "description": "A new Type B building is proposed here.", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 2002, "pixel_y": 3087, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "538d1fd9-a1c7-431c-a8b8-0215d2941d12", "fields": {"str_id": "room-350-2nd-floor-department-of-chemistry", "time_of_creation": "2019-02-07T18:14:51.838Z", "name": " Room 350, 2nd Floor, Department of Chemistry", "short_name": " Room 350, 2nd Floor, Department of Chemistry", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "53e2d1e1-4865-4c3f-b550-49028c595c43", "fields": {"str_id": "drdo", "time_of_creation": "2018-06-24T19:50:18.114Z", "name": "Defence Research & Development Organization", "short_name": "DRDO", "description": "Flat nos. 101 - 404", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4125, "pixel_y": 1048, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "541dd2be-2621-49b5-bdd8-3a0797e82b4f", "fields": {"str_id": "16-type1", "time_of_creation": "2018-06-24T19:50:19.444Z", "name": "Type1 - 16", "short_name": "16-Type1", "description": "Type 1 Quarters Flat nos. 181 - 192", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4713, "pixel_y": 1252, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "54512d14-5fad-4831-8327-0ca9ad35a961", "fields": {"str_id": "na", "time_of_creation": "2021-03-12T14:41:28.423Z", "name": "N/A", "short_name": "N/A", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "54992188-e27a-4d05-9697-b880fe1bfcd4", "fields": {"str_id": "ircc", "time_of_creation": "2018-06-24T19:50:18.231Z", "name": "Industrial Research & Consultancy Centre", "short_name": "IRCC", "description": "Tel: +912225767030, +912225767039 www.ircc.iitb.ac.in The Industrial Research and Consultancy Centre (IRCC) co-ordinates and facilitates all research and development activities at the Institute.", "parent": "c3a14998-23cb-4cbe-a6fa-70accc7069a1", "parent_relation": "Level 2", "group_id": 1, "pixel_x": 3505, "pixel_y": 1867, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "54b1610b-17b6-4fdf-be41-a246ae3f9148", "fields": {"str_id": "tinkerers-lab", "time_of_creation": "2018-09-18T15:45:57.918Z", "name": "Tinkerers Lab", "short_name": "Tinkerers Lab", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "54c353ce-1f9a-4a29-9719-46ee7249d3ed", "fields": {"str_id": "room-no-109-01st-floor-new-csecc-building", "time_of_creation": "2019-02-07T12:31:48.148Z", "name": "Room No. 109, 01st Floor, New CSE/CC Building ", "short_name": "Room No. 109, 01st Floor, New CSE/CC Building ", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "54ce35bf-c391-44ed-8085-fc090377bba4", "fields": {"str_id": "facebook-live-culturalsiitb", "time_of_creation": "2021-04-14T12:23:49.298Z", "name": "Facebook Live @Culturalsiitb", "short_name": "Facebook Live @Culturalsiitb", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "551bedf6-5d7e-42eb-a50a-6653a69752a8", "fields": {"str_id": "httpsformsgle4rhqprh8vtttapt6a", "time_of_creation": "2020-09-24T10:03:40.735Z", "name": "https://forms.gle/4rHQPrH8VtttaPt6A", "short_name": "https://forms.gle/4rHQPrH8VtttaPt6A", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "55d59037-db62-4294-b68f-af105b470d35", "fields": {"str_id": "old-ongc-lab", "time_of_creation": "2018-06-24T19:50:18.559Z", "name": "Old ONGC Lab", "short_name": "Old ONGC Lab", "description": "", "parent": "d483545a-95ba-438d-a218-20a8ee2946a1", "parent_relation": "Near", "group_id": 12, "pixel_x": 4275, "pixel_y": 1555, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "55fa58e9-ce44-41a6-9fff-3107038f0b7d", "fields": {"str_id": "padmavati-devi-temple", "time_of_creation": "2018-06-24T19:50:18.323Z", "name": "Padmavati Devi Temple", "short_name": "Padmavati Devi Temple", "description": "The word Powai is thought to have possibly been derived from the word Poumw, a corrupted form of Pouma which means Padma in Sanskrit. This is due to the fact that the Padmavati Devi Temple, dedicated to Goddess Padmavati and situated on the bank of the Powai lake inside IIT Bombay, dates back to the 10th century AD as per the Archeological Survey of India. http://www.iitbdevitemple.org", "parent": null, "parent_relation": "", "group_id": 9, "pixel_x": 946, "pixel_y": 2178, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "56142045-7395-41d4-a58c-8f34c54425d1", "fields": {"str_id": "cl-118-chemical-engineering-department", "time_of_creation": "2019-02-13T04:30:17.499Z", "name": "CL-118, Chemical Engineering DEPARTMENT", "short_name": "CL-118, Chemical Engineering DEPARTMENT", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "5682fdde-a1ba-4200-87e1-1ffd5a56397f", "fields": {"str_id": "2b-4", "time_of_creation": "2018-06-24T19:50:18.921Z", "name": "Type 2B 4", "short_name": "2B 4", "description": "2B-Type Quarters, Flat nos 19 - 24", "parent": null, "parent_relation": null, "group_id": 3, "pixel_x": 4284, "pixel_y": 2462, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "56f2219c-2eb7-455b-83f0-19ad5a1f7bd0", "fields": {"str_id": "n2-bay", "time_of_creation": "2018-06-24T19:50:18.544Z", "name": "N2 Bay", "short_name": "N2 Bay", "description": "", "parent": "34513a0d-1b20-4350-8d76-57c0883f10fe", "parent_relation": "Near", "group_id": 1, "pixel_x": 4445, "pixel_y": 1669, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "571b762e-b756-4def-a968-ee114f28964b", "fields": {"str_id": "n1-bay", "time_of_creation": "2018-06-24T19:50:18.539Z", "name": "N1 Bay", "short_name": "N1 Bay", "description": "Comes under Chemical Engineering Department +912225764211", "parent": "34513a0d-1b20-4350-8d76-57c0883f10fe", "parent_relation": "Near", "group_id": 1, "pixel_x": 4525, "pixel_y": 1680, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "57b11e17-cb16-4cb3-b0bb-345a838e5902", "fields": {"str_id": "seminar-hall-second-floor-vmcc", "time_of_creation": "2019-10-31T17:02:29.832Z", "name": "Seminar Hall, Second Floor, VMCC", "short_name": "Seminar Hall, Second Floor, VMCC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "57be98ca-7e19-47c7-a249-64140e246f2b", "fields": {"str_id": "mech", "time_of_creation": "2018-06-24T19:50:18.279Z", "name": "Mechanical Engineering Department", "short_name": "Mech", "description": "http://www.me.iitb.ac.in\r\nTel: +912225762545\r\nExt. 7500, 7501, 2576 7500, 2576 7501.\r\n\r\nThe department offers academic programs for B. Tech, Dual degree, M. Tech and Ph. D. Research areas include design enggineering, manufacturing enggineering, thermal and fluid enggineering", "parent": null, "parent_relation": null, "group_id": 1, "pixel_x": 4009, "pixel_y": 1645, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "57edc27d-fd06-4fcf-afff-5f2c6bdbdd75", "fields": {"str_id": "h2-lounge", "time_of_creation": "2018-10-25T05:32:47.047Z", "name": "H2 Lounge", "short_name": "H2 Lounge", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "57f10642-0ec7-44db-8fd1-6d02f48fb79b", "fields": {"str_id": "ic-1-som", "time_of_creation": "2019-01-11T17:10:53.487Z", "name": "IC-1 (SOM)", "short_name": "IC-1 (SOM)", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "581e6771-9841-4ed5-92dd-9f0e8dc44044", "fields": {"str_id": "ic1--som", "time_of_creation": "2018-10-05T07:48:31.954Z", "name": "IC1 | SOM", "short_name": "IC1 | SOM", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "58889e47-a539-4193-8a30-1c5d0bcfb492", "fields": {"str_id": "lecture-hall", "time_of_creation": "2019-09-12T05:19:25.364Z", "name": "Lecture Hall", "short_name": "Lecture Hall", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "58b0643c-a2cb-48be-bf5a-a9166fce6c35", "fields": {"str_id": "httpscuttlyqipn0xt", "time_of_creation": "2022-01-22T14:36:20.496Z", "name": "https://cutt.ly/QIPn0Xt", "short_name": "https://cutt.ly/QIPn0Xt", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "58bea0b3-733b-45bf-a87b-4785b8e0d9e1", "fields": {"str_id": "semt-lab", "time_of_creation": "2018-06-24T19:50:18.593Z", "name": "Structural Evaluation & Material Technologies Lab", "short_name": "SEMT Lab", "description": "Comes under Civil Engineering Department +912225764318", "parent": "fa6f024a-87ae-4d06-903a-f77e05de7a27", "parent_relation": "Near", "group_id": 12, "pixel_x": 4280, "pixel_y": 1510, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "5923e800-1e00-4f06-bd32-19c92c719567", "fields": {"str_id": "13-h2", "time_of_creation": "2018-06-24T19:50:19.316Z", "name": "Type H2 - 13", "short_name": "13-H2", "description": "H2 Type Quarters Flat nos. 97 - 104", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 753, "pixel_y": 2520, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "5943e508-829b-414b-a236-4526263e3ec5", "fields": {"str_id": "tinkerers-lab", "time_of_creation": "2018-06-24T19:50:18.620Z", "name": "Tinkerers Lab", "short_name": "Tinkerers Lab", "description": "", "parent": "f5303dcd-b456-4147-a414-88a89815d826", "parent_relation": null, "group_id": 12, "pixel_x": 4225, "pixel_y": 1630, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "598d1ab6-cc6d-4409-8363-f0e9a1fc81c6", "fields": {"str_id": "h11", "time_of_creation": "2018-06-24T19:50:18.168Z", "name": "Hostel 11 Athena (Girls Hostel)", "short_name": "H11", "description": "Hostel security: +912225762611 Hall Manager: +912225762711", "parent": null, "parent_relation": "", "group_id": 2, "pixel_x": 2987, "pixel_y": 1368, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "5a1dbfec-f31e-44a3-ab64-5a5ea49a09b3", "fields": {"str_id": "microsoft-teams", "time_of_creation": "2020-12-14T12:11:21.247Z", "name": "Microsoft teams", "short_name": "Microsoft teams", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "5a25b8e7-2572-497f-adff-38e7f24acf1d", "fields": {"str_id": "23-h2", "time_of_creation": "2018-06-24T19:50:19.353Z", "name": "Type H2 - 24", "short_name": "23-H2", "description": "H2 Type Quarters Flat nos. 185 - 192", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 522, "pixel_y": 2424, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "5a673ce7-a18e-4929-824d-d6244a6f797d", "fields": {"str_id": "wadhwani-research-centre-bb", "time_of_creation": "2018-06-24T19:50:18.828Z", "name": "WRCBB Wadhwani Research Centre in Biosciences and Bioengineering ", "short_name": "Wadhwani Research Centre BB", "description": "", "parent": "91091770-c141-486d-bfce-08247cc7286c", "parent_relation": "Inside", "group_id": 1, "pixel_x": 3934, "pixel_y": 2241, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "5aadf3a8-5e66-4d7e-be91-92658e22b2d7", "fields": {"str_id": "a14", "time_of_creation": "2018-06-24T19:50:19.049Z", "name": "Bungalow A14 ", "short_name": "A14", "description": "A-Type Bungalow", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 3950, "pixel_y": 1273, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "5b3c851c-a1c6-4a19-807e-8323f846ec79", "fields": {"str_id": "22-type1", "time_of_creation": "2018-06-24T19:50:19.468Z", "name": "Type1 - 22", "short_name": "22-Type1", "description": "Type 1 Quarters Flat nos. 310 - 321 Hostel for married PhD students", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 2565, "pixel_y": 680, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "5c185f66-558b-486e-9e39-1ab1ff2dc1b6", "fields": {"str_id": "airmeet", "time_of_creation": "2020-07-10T13:53:30.251Z", "name": "Airmeet", "short_name": "Airmeet", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "5c6dff34-18f7-46f4-881d-c62e34463537", "fields": {"str_id": "hydraulic-test", "time_of_creation": "2018-06-24T19:50:18.616Z", "name": "Thermal Hydraulic Test Facility", "short_name": "Hydraulic Test", "description": "Comes under Mechanical Engineering Department +912225762545 Ext. 7500, 7501, 2576 7500, 2576 7501.", "parent": null, "parent_relation": "", "group_id": 1, "pixel_x": 4463, "pixel_y": 1536, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "5c74e39e-5878-4b08-859a-6b7a97aac3de", "fields": {"str_id": "httpsmonashzoomusj88641311179pwdcehvs2izszfrbxngmhbev", "time_of_creation": "2022-01-22T04:46:26.406Z", "name": "https://monash.zoom.us/j/88641311179?pwd=cEhvS2IzSzFRbXNGMHBEV", "short_name": "https://monash.zoom.us/j/88641311179?pwd=cEhvS2IzSzFRbXNGMHBEV", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "5c88a59d-b3aa-4928-94a8-20a9f52e4f71", "fields": {"str_id": "stationery-shops", "time_of_creation": "2019-10-15T05:53:20.122Z", "name": "Stationery Shops", "short_name": "Stationery Shops", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "5cb0bd89-416d-4c8a-978c-5eb919ba143d", "fields": {"str_id": "kresit-canteen", "time_of_creation": "2018-06-24T19:50:18.652Z", "name": "KReSIT Canteen", "short_name": "KReSIT Canteen", "description": "From 10 to 8. Samosas run out by 5:30ish though!", "parent": "f3fbfd2b-36a0-46f2-9cb1-0bad97e60c28", "parent_relation": "Inside", "group_id": 5, "pixel_x": 3301, "pixel_y": 2106, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "5ce808c0-1085-405c-bce3-c1830c72082d", "fields": {"str_id": "campus-school", "time_of_creation": "2018-06-24T19:50:18.080Z", "name": "Campus School", "short_name": "Campus School", "description": "Principal: MS.BHAGWAT A.S +912225768992 Campus School began as a primary school on 29 June 1976. V to X standard was added by 1986 with 100% results in X std in 1986, 1987 and 1988. The junior college classes FYJC or XI Std and SYJC or XII Std were started in science stream under Principal Chandra Rao in 1989. The Primary to JC complex has about 400 students on its roll, 35 teachers and 20 non-teaching staff. Admission to all classes is restricted to children of IIT employees with some seats made available to the children of NITIE and SAMEER employees.", "parent": null, "parent_relation": "", "group_id": 7, "pixel_x": 3331, "pixel_y": 2865, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "5d7d2bba-e553-4733-9515-c991ff9e0f37", "fields": {"str_id": "gulmohar", "time_of_creation": "2018-06-24T22:13:45.814Z", "name": "Gulmohar Building", "short_name": "Gulmohar", "description": "", "parent": null, "parent_relation": null, "group_id": 6, "pixel_x": 2989, "pixel_y": 2154, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "5e039e21-27e7-44c0-96e6-436ec09c004a", "fields": {"str_id": "orthocad-lab", "time_of_creation": "2018-06-24T19:50:18.320Z", "name": "OrthoCad Lab", "short_name": "OrthoCad Lab", "description": "The OrthoCAD Network Research Cell was established in 2007 to jump-start indigenous research and development activities in orthopaedic reconstruction systems. The OrthoCAD Network addresses a critical need for mega-prostheses to reconstruct massive gaps or loss of bone from osteo-sarcoma (cancer), congenital (birth) defects or trauma (accidents).", "parent": null, "parent_relation": "", "group_id": 12, "pixel_x": 4644, "pixel_y": 1767, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "5f4dccdd-dbd0-426c-a697-1d77ca5bca45", "fields": {"str_id": "seminar-room-2nd-floor-physics-department", "time_of_creation": "2019-10-20T05:33:56.496Z", "name": "Seminar Room, 2nd Floor, Physics Department", "short_name": "Seminar Room, 2nd Floor, Physics Department", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "5f71fb4e-8138-4277-b7bb-dda501bd1df5", "fields": {"str_id": "17-type1", "time_of_creation": "2018-06-24T19:50:19.448Z", "name": "Type1 - 17", "short_name": "17-Type1", "description": "Type 1 Quarters Flat nos. 193 - 208", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4785, "pixel_y": 1290, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "5fa0a841-42d5-42f4-ad6c-2a27052a00f7", "fields": {"str_id": "20-type1", "time_of_creation": "2018-06-24T19:50:19.460Z", "name": "Type1 - 20", "short_name": "20-Type1", "description": "Type 1 Quarters Flat nos. 260 - 289", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4328, "pixel_y": 871, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "5ff031a1-04e7-455b-9cd4-205d1e6b85ff", "fields": {"str_id": "fc-kohli-auditorium", "time_of_creation": "2019-01-03T15:46:12.367Z", "name": "F.C Kohli Auditorium", "short_name": "F.C Kohli Auditorium", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "5ff83777-7d46-43b3-aad2-584b99afa008", "fields": {"str_id": "gymkhana-ground-new-sac-entrance-only", "time_of_creation": "2019-10-29T15:01:30.218Z", "name": "Gymkhana Ground, New SAC Entrance only", "short_name": "Gymkhana Ground, New SAC Entrance only", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "6027a7d7-f10a-4b8e-8d30-454331f2b1e9", "fields": {"str_id": "httpsecell-concordhubilocomcommunity", "time_of_creation": "2020-08-26T20:37:37.828Z", "name": "https://ecell-concord.hubilo.com/community", "short_name": "https://ecell-concord.hubilo.com/community", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "605f62d2-0f3e-425f-beb2-87327cf53d96", "fields": {"str_id": "tulsi-c", "time_of_creation": "2018-06-24T19:50:18.907Z", "name": "Tulsi C", "short_name": "Tulsi C", "description": "PS Quarters", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4607, "pixel_y": 1031, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "60af6853-3b1f-4cf4-bf84-f7752a95d615", "fields": {"str_id": "ms-teams", "time_of_creation": "2020-09-30T13:26:51.801Z", "name": "MS Teams", "short_name": "MS Teams", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "60af899b-8ef7-4d23-9e00-9067a2542071", "fields": {"str_id": "new-yoga-room-old-sac", "time_of_creation": "2018-08-07T07:38:28.503Z", "name": "New Yoga Room, Old SAC", "short_name": "New Yoga Room, Old SAC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "60d10900-67a0-4263-9a19-d3a04da4e8db", "fields": {"str_id": "zoom-meet", "time_of_creation": "2020-07-03T12:53:38.411Z", "name": "Zoom meet", "short_name": "Zoom meet", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "60ef3a78-0cd0-467d-9343-ec8d5048adff", "fields": {"str_id": "enrgy-sys-lab", "time_of_creation": "2018-06-24T19:50:18.475Z", "name": "Energy Systems Lab", "short_name": "Enrgy Sys Lab", "description": "Comes under Energy Systems Engineering Department http://www.ese.iitb.ac.in +912225767890 The department offers academic programs in Dual degree (B Tech + M Tech), M Tech, M.Sc.-Ph.D and Ph.D. Research areas include Energy Efficiency and Conservation, Solar PV and Thermal, Battery and Storage Engineering, Hydrogen and Fuel Cells, Smart microgrids, Biomass and Bio-Fuels, Wind Energy, Nuclear", "parent": "85c8b696-c6d6-40cc-bd20-e2fb4dd281c8", "parent_relation": "Near", "group_id": 12, "pixel_x": 4230, "pixel_y": 1435, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "611a3142-7f08-46aa-a0dc-3675fc9ead8a", "fields": {"str_id": "new-yoga-room", "time_of_creation": "2018-08-13T20:50:23.106Z", "name": "New Yoga Room", "short_name": "New Yoga Room", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "612b6b84-0407-4f4e-9712-5684141f32ef", "fields": {"str_id": "frisbee-field", "time_of_creation": "2019-02-21T23:18:13.112Z", "name": "Frisbee field", "short_name": "Frisbee field", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "61e53f4b-7b77-45f4-8cf4-ac1b90711071", "fields": {"str_id": "cisco-webex", "time_of_creation": "2020-08-28T14:24:09.476Z", "name": "Cisco Webex ", "short_name": "Cisco Webex ", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "62b1e1a7-54cf-43b1-bdab-d5615a8cb69c", "fields": {"str_id": "2b-6", "time_of_creation": "2018-06-24T19:50:18.928Z", "name": "Type 2B 6", "short_name": "2B 6", "description": "2B-Type Quarters, Flat nos 31 - 36", "parent": null, "parent_relation": null, "group_id": 3, "pixel_x": 4243, "pixel_y": 2391, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "62b79587-d11c-4034-9fba-79b4399b3deb", "fields": {"str_id": "2b-16", "time_of_creation": "2018-06-24T19:50:18.972Z", "name": "Type 2B 16", "short_name": "2B 16", "description": "2B-Type Quarters, Flat nos 91 - 96", "parent": null, "parent_relation": null, "group_id": 3, "pixel_x": 908, "pixel_y": 2798, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "62bddefc-0dec-4f93-9675-f67ce4adae32", "fields": {"str_id": "yoga-room-new-sac", "time_of_creation": "2018-12-11T17:13:47.194Z", "name": "Yoga Room, New SAC", "short_name": "Yoga Room, New SAC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "62c16545-faab-4d36-bb7a-ab1259d6e2e9", "fields": {"str_id": "vmcc-auditorium", "time_of_creation": "2018-10-26T05:21:47.087Z", "name": "VMCC Auditorium ", "short_name": "VMCC Auditorium ", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "62d4a775-6b1d-47db-8a63-d382cd8b60d7", "fields": {"str_id": "cc109-1st-floor-new-cse-building", "time_of_creation": "2022-06-15T19:29:25.364Z", "name": "CC109 1st floor new CSE building", "short_name": "CC109 1st floor new CSE building", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "62e7cc57-c904-45b2-a8a2-c17184e58b88", "fields": {"str_id": "c9", "time_of_creation": "2018-06-24T19:50:19.161Z", "name": "Type C-9", "short_name": "C9", "description": "C-Type Quarters Flat nos. 55 - 60", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 2904, "pixel_y": 2910, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "634713f0-0767-4ae7-a132-8cdb090e75ff", "fields": {"str_id": "roots-room-old-sac", "time_of_creation": "2021-12-28T05:56:56.228Z", "name": "Roots Room, Old SAC", "short_name": "Roots Room, Old SAC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "634d937d-ceaa-40b2-a307-74978e64e7c9", "fields": {"str_id": "lc102", "time_of_creation": "2018-08-30T13:46:57.825Z", "name": "LC102", "short_name": "LC102", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "63cfa355-26a3-4c3c-a223-b1be8024b508", "fields": {"str_id": "sustain--ts", "time_of_creation": "2020-10-31T13:31:57.916Z", "name": "Sustain- TS", "short_name": "Sustain- TS", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "63d07e15-51a3-4f24-9eaa-5d526e635b64", "fields": {"str_id": "staff-hostel", "time_of_creation": "2018-06-24T19:50:18.374Z", "name": "Staff Hostel", "short_name": "Staff Hostel", "description": "Tel: +912225761113", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 2872, "pixel_y": 1472, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "644b277a-2ab2-4fa3-938b-d5139f6306ef", "fields": {"str_id": "s-pool-new", "time_of_creation": "2018-06-24T19:50:18.381Z", "name": "Swimming Pool (new)", "short_name": "S. Pool new", "description": "Tel: +912225762755", "parent": null, "parent_relation": "", "group_id": 8, "pixel_x": 3558, "pixel_y": 1141, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "649d84d2-3fe1-4055-ad9d-0d5520c65afc", "fields": {"str_id": "ug-lab-1st-years", "time_of_creation": "2018-06-24T19:50:18.631Z", "name": "UG Lab (1st years)", "short_name": "UG Lab (1st years)", "description": "", "parent": "a2fb1bdc-3df2-4e88-af3a-2a5a8ccc6236", "parent_relation": null, "group_id": 12, "pixel_x": 4585, "pixel_y": 1540, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "64bc8b79-7ff1-4c77-97b3-f9c158b63b4b", "fields": {"str_id": "staff-cant", "time_of_creation": "2018-06-24T19:50:18.367Z", "name": "Staff Canteen", "short_name": "Staff Cant.", "description": "Tel: +912225768952", "parent": null, "parent_relation": "", "group_id": 5, "pixel_x": 3622, "pixel_y": 1547, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "64e4e7f2-4b09-447f-8bc6-c35877577e36", "fields": {"str_id": "wadhwai-electronics-lab-ee-department", "time_of_creation": "2020-02-07T13:59:08.313Z", "name": "Wadhwai Electronics Lab, EE Department", "short_name": "Wadhwai Electronics Lab, EE Department", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "654b8054-8887-48a7-890b-46a3a3bd71e6", "fields": {"str_id": "online-event", "time_of_creation": "2020-10-13T11:37:51.216Z", "name": "Online Event", "short_name": "Online Event", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "655401fd-ea1b-4dcb-b005-57c56d9e6005", "fields": {"str_id": "hostels", "time_of_creation": "2022-10-12T10:53:37.040Z", "name": "Hostels", "short_name": "Hostels", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "655900f8-2907-40be-a43d-44964e54a024", "fields": {"str_id": "b8", "time_of_creation": "2018-06-24T19:50:19.097Z", "name": "Type B-8", "short_name": "B8", "description": "B-Type Quarters Flat nos. 31 - 34", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 2600, "pixel_y": 2867, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "656c89dd-4b0b-4588-8221-482bdd9066cd", "fields": {"str_id": "2b-8", "time_of_creation": "2018-06-24T19:50:18.936Z", "name": "Type 2B 8", "short_name": "2B 8", "description": "2B-Type Quarters, Flat nos 43 - 48", "parent": null, "parent_relation": null, "group_id": 3, "pixel_x": 4348, "pixel_y": 2247, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "657968c8-d6c2-427f-8d74-e2e6cd7cbdf8", "fields": {"str_id": "room-no-109-new-csecc-building", "time_of_creation": "2018-10-18T00:19:20.495Z", "name": "Room No. 109, New CSE/CC Building", "short_name": "Room No. 109, New CSE/CC Building", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "65f64c6e-98f0-457c-b951-98e04087a51a", "fields": {"str_id": "zoom", "time_of_creation": "2020-08-01T23:41:16.773Z", "name": "ZOOM", "short_name": "ZOOM", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "6621f825-6486-4e1b-b04c-6778da0f2ef6", "fields": {"str_id": "15-h2", "time_of_creation": "2018-06-24T19:50:19.323Z", "name": "Type H2 - 15", "short_name": "15-H2", "description": "H2 Type Quarters Flat nos. 113 - 120", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 695, "pixel_y": 2461, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "669f1e7d-a04b-47db-a478-9b4aacb402e2", "fields": {"str_id": "mw-2", "time_of_creation": "2018-06-24T19:50:19.392Z", "name": "MW Quarters 2", "short_name": "MW 2", "description": "MW Quarters 33 - 68", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4124, "pixel_y": 780, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "66c6b870-1606-4572-99be-c75994061e1b", "fields": {"str_id": "cs-101---lc201-bb101---lc202", "time_of_creation": "2018-11-09T06:58:14.536Z", "name": "Cs 101 - LC201. BB101 - LC202", "short_name": "Cs 101 - LC201. BB101 - LC202", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "677ea31f-11b9-47ae-95f1-94752238a82d", "fields": {"str_id": "fb-live", "time_of_creation": "2021-03-20T08:12:37.662Z", "name": "FB Live", "short_name": "FB Live", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "67c5ce8a-3564-4e62-9480-b9e32bbfe380", "fields": {"str_id": "bio-mech", "time_of_creation": "2018-06-24T19:50:19.535Z", "name": "Proposed Bio Mechanical Department", "short_name": "Bio Mech", "description": "", "parent": "e6eb8827-5107-4536-ab97-d7e367f3955f", "parent_relation": "inside", "group_id": 1, "pixel_x": 4451, "pixel_y": 2173, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "6846d57d-d3a5-40e9-9408-7b3ee5ec5391", "fields": {"str_id": "swc", "time_of_creation": "2020-03-12T12:50:28.478Z", "name": "Student Wellness Center", "short_name": "SWC", "description": "", "parent": null, "parent_relation": null, "group_id": 1, "pixel_x": 3628, "pixel_y": 1640, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "6886b357-c1c5-4688-b72b-8058894229e0", "fields": {"str_id": "abhyuday-instagram-page", "time_of_creation": "2020-07-24T06:02:58.602Z", "name": "Abhyuday Instagram page", "short_name": "Abhyuday Instagram page", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "6893ed2e-0923-4ec9-97aa-3e158c0c96a4", "fields": {"str_id": "lt-205", "time_of_creation": "2018-06-24T19:50:18.738Z", "name": "LT 205", "short_name": "LT 205", "description": "", "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", "parent_relation": "Second floor", "group_id": 4, "pixel_x": 3570, "pixel_y": 2152, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "68a04d23-523f-473c-89ef-c6dd3263d4fd", "fields": {"str_id": "idp-edu-tech", "time_of_creation": "2018-06-24T19:50:18.839Z", "name": "Inter-disciplinary Programme in Educational Technology", "short_name": "IDP Edu Tech", "description": "http://www.et.iitb.ac.in Main Office: Mathematics Building, Near Central Library. Tel:+912225764820 Fax: +912225764812 Ph.D. is offered in this programme. Research areas include Pan-Domain Cognitive Abilities, Teacher Use of Educational Technology Tools and Strategies, Educational Technology Tools.", "parent": "8fcf8049-5a13-4e60-b5b1-993a4a554526", "parent_relation": "Inside", "group_id": 1, "pixel_x": 3928, "pixel_y": 1496, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "6948d3b5-42dd-4971-afa3-4b6d92dc8e2c", "fields": {"str_id": "6-h2", "time_of_creation": "2018-06-24T19:50:19.289Z", "name": "Type H2 - 6", "short_name": "6-H2", "description": "H2 Type Quarters Flat nos. 41 - 48", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 1101, "pixel_y": 2774, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "698a338e-d973-4b80-87f8-2bb04f5909f4", "fields": {"str_id": "8--h1", "time_of_creation": "2018-06-24T19:50:19.240Z", "name": "Type H1 - 8", "short_name": "8- H1", "description": "H1 Type Quarters Flat nos. 85 - 96", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4442, "pixel_y": 1239, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "69c64c8b-a03a-4cbb-a6d9-dafdca17aa0d", "fields": {"str_id": "youtube", "time_of_creation": "2020-10-29T13:40:36.365Z", "name": "YouTube", "short_name": "YouTube", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "69cf5c42-0800-4bee-a0b9-3a943392c047", "fields": {"str_id": "lt-pcsa-iit-bombay", "time_of_creation": "2019-10-16T17:00:21.019Z", "name": "LT PCSA IIT Bombay", "short_name": "LT PCSA IIT Bombay", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "69cf91ae-9594-4e4c-8d99-dbd69b20db29", "fields": {"str_id": "theatre-room", "time_of_creation": "2019-08-04T09:54:20.767Z", "name": "Theatre Room", "short_name": "Theatre Room", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "6a206606-0059-4750-8391-ac207ec30af3", "fields": {"str_id": "c15", "time_of_creation": "2018-06-24T19:50:19.184Z", "name": "Type C-15", "short_name": "C15", "description": "C-Type Quarters Flat nos. 91 - 96", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 3360, "pixel_y": 3033, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "6a6966e9-4d2d-4449-ad1e-d945c690c5f6", "fields": {"str_id": "yoga-room-3rd-floor-new-sac", "time_of_creation": "2019-11-02T07:01:51.472Z", "name": "Yoga room, 3rd Floor, New SAC", "short_name": "Yoga room, 3rd Floor, New SAC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "6b24d130-92af-45b5-8f99-bc94081571a3", "fields": {"str_id": "mach-lab", "time_of_creation": "2018-06-24T19:50:18.525Z", "name": "Machine Lab", "short_name": "Mach. Lab", "description": "Comes under Electrical Engineering Department +912225764422", "parent": "56f2219c-2eb7-455b-83f0-19ad5a1f7bd0", "parent_relation": "Near", "group_id": 12, "pixel_x": 1445, "pixel_y": 1669, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "6b7f20f2-b5ba-4912-af83-0ea7a788ef58", "fields": {"str_id": "a2", "time_of_creation": "2018-06-24T19:50:19.005Z", "name": "Bungalow A2 ", "short_name": "A2", "description": "A-Type Bungalow", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 2491, "pixel_y": 2581, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "6ba7c4d5-680e-40a5-87c6-26cde1de7ce3", "fields": {"str_id": "hostel-5-to-lake-side", "time_of_creation": "2019-09-08T10:57:10.820Z", "name": "Hostel 5 to Lake side", "short_name": "Hostel 5 to Lake side", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "6ce8ce78-9db0-4c0e-bc22-29fd3d8e087b", "fields": {"str_id": "b9", "time_of_creation": "2018-06-24T19:50:19.100Z", "name": "Type B-9", "short_name": "B9", "description": "B-Type Quarters Flat nos. 35 - 38", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 2653, "pixel_y": 2748, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "6d579c21-e2e5-4503-9831-bb4d3815a295", "fields": {"str_id": "lecture-hall-no-21-vmcc", "time_of_creation": "2019-08-03T19:25:15.514Z", "name": "Lecture Hall no. 21, VMCC", "short_name": "Lecture Hall no. 21, VMCC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "6d68ad04-9838-4561-9f2d-1e1069851ea2", "fields": {"str_id": "httpsmeetgooglecomfcr-wiue-ejh", "time_of_creation": "2020-06-25T10:11:53.469Z", "name": "https://meet.google.com/fcr-wiue-ejh", "short_name": "https://meet.google.com/fcr-wiue-ejh", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "6e6b7ed1-a638-4137-bc90-af40a625d127", "fields": {"str_id": "som-well", "time_of_creation": "2018-08-08T14:54:28.674Z", "name": "SOM Well", "short_name": "SOM Well", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "6f28f861-6d47-4847-b378-8c0673760b7a", "fields": {"str_id": "boat-house", "time_of_creation": "2018-06-24T19:50:18.072Z", "name": "Boat House", "short_name": "Boat House", "description": "Timings: 6 am to 6 pm", "parent": null, "parent_relation": null, "group_id": 9, "pixel_x": 1960, "pixel_y": 1757, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "6fc18c7b-70da-4640-b71f-bc461a41eb3d", "fields": {"str_id": "24-h2", "time_of_creation": "2018-06-24T19:50:19.357Z", "name": "Type H2 - 25", "short_name": "24-H2", "description": "H2 Type Quarters Flat nos. 193 - 200", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 568, "pixel_y": 2377, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "7070c6ed-cef8-42bc-9c66-7c67c891c79f", "fields": {"str_id": "all-hostel-stationery-shops-or-mess", "time_of_creation": "2019-02-16T14:10:35.973Z", "name": "All hostel stationery shops or mess", "short_name": "All hostel stationery shops or mess", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "709b1b78-92ec-486b-b2cc-a69c59b3fff7", "fields": {"str_id": "2-h2", "time_of_creation": "2018-06-24T19:50:19.275Z", "name": "Type H2 - 2", "short_name": "2-H2", "description": "H2 Type Quarters Flat nos. 9 - 16", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 1344, "pixel_y": 2832, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "7103ffb2-3c7f-4bf0-b49c-bc1302d1246f", "fields": {"str_id": "tba", "time_of_creation": "2018-10-04T10:10:26.266Z", "name": "TBA", "short_name": "TBA", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "71f57e95-b13a-45ce-8189-ce8e4cb37249", "fields": {"str_id": "room-no-109-new-csecc-building", "time_of_creation": "2018-10-18T00:31:13.784Z", "name": "Room no. 109, New CSE/CC Building", "short_name": "Room no. 109, New CSE/CC Building", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "720ea241-9446-4545-9c14-6978009dad05", "fields": {"str_id": "instagram-live", "time_of_creation": "2020-07-12T07:52:49.096Z", "name": "Instagram Live", "short_name": "Instagram Live", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "731f8958-3d76-4b29-9ad4-7d5cbf0b4035", "fields": {"str_id": "lh", "time_of_creation": "2020-01-11T09:26:10.316Z", "name": "LH", "short_name": "LH", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "732096da-1360-4653-8b26-bc7f9824f9c9", "fields": {"str_id": "lt-202", "time_of_creation": "2018-06-24T19:50:18.727Z", "name": "LT 202", "short_name": "LT 202", "description": "", "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", "parent_relation": "Second floor", "group_id": 4, "pixel_x": 3570, "pixel_y": 2152, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "73565672-4da0-4731-a217-fece8c5b03c3", "fields": {"str_id": "c16", "time_of_creation": "2018-06-24T19:50:19.188Z", "name": "Type C-16", "short_name": "C16", "description": "C-Type Quarters Flat nos. 97 - 102", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 3162, "pixel_y": 2991, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "73744250-30b9-4b64-9221-12ccfefe635f", "fields": {"str_id": "b17", "time_of_creation": "2018-06-24T19:50:19.130Z", "name": "Type B-17", "short_name": "B17", "description": "B-Type Quarters Flat nos. 67 - 72", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 3040, "pixel_y": 2461, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "74c9dcd4-d35e-410d-bba1-b28937480d5c", "fields": {"str_id": "lt-105", "time_of_creation": "2018-06-24T19:50:18.716Z", "name": "LT 105", "short_name": "LT 105", "description": "", "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", "parent_relation": "First floor", "group_id": 4, "pixel_x": 3570, "pixel_y": 2152, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "74d42757-f194-4b61-b6bd-12c8c7a83152", "fields": {"str_id": "acre", "time_of_creation": "2018-06-24T19:50:18.032Z", "name": "Advanced Centre for Research in Electronics", "short_name": "ACRE", "description": "", "parent": "c186690e-6970-49a3-b944-d73aae2cb6bd", "parent_relation": "Inside", "group_id": 1, "pixel_x": 4081, "pixel_y": 1344, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "74d6ce65-132e-48c7-8845-120e9b814c06", "fields": {"str_id": "steam-power-lab", "time_of_creation": "2018-06-24T19:50:18.605Z", "name": "Steam Power Lab", "short_name": "Steam Power Lab", "description": "Comes under Mechanical Engineering Department +912225764584", "parent": "bba75c4c-0ad7-4d4b-bcdd-a3d1c9d1ea3e", "parent_relation": "", "group_id": 12, "pixel_x": 4376, "pixel_y": 1526, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "75dac40d-7456-4a65-9cc4-de46a423c0f1", "fields": {"str_id": "msteams", "time_of_creation": "2021-08-27T13:54:53.414Z", "name": "MSTeams", "short_name": "MSTeams", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "760fcf99-9e17-4ca1-a180-d7bc53cb0fef", "fields": {"str_id": "18-h2", "time_of_creation": "2018-06-24T19:50:19.334Z", "name": "Type H2 - 18", "short_name": "18-H2", "description": "H2 Type Quarters Flat nos. 137 - 144", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4451, "pixel_y": 1320, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "7615dcab-ff81-45b9-92f5-499f2092f91e", "fields": {"str_id": "a3", "time_of_creation": "2018-06-24T19:50:19.008Z", "name": "Bungalow A3 ", "short_name": "A3", "description": "A-Type Bungalow", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 2415, "pixel_y": 2682, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "76289056-7c8d-4ede-a3e5-0a8d3157c9dd", "fields": {"str_id": "la-foyer", "time_of_creation": "2019-07-27T15:30:57.924Z", "name": "LA Foyer", "short_name": "LA Foyer", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "7652f65e-fa81-475e-a838-456d675763b1", "fields": {"str_id": "csre-c", "time_of_creation": "2018-06-24T19:50:19.482Z", "name": "CSRE C", "short_name": "CSRE C", "description": "CSRE Quarters D1, D2, D3, D4, D5, D6, D7, D8, D9, D10, D11, D12", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4270, "pixel_y": 1188, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "76b6943b-ad8c-4377-aeb2-8b7a040b1ae2", "fields": {"str_id": "lc-302", "time_of_creation": "2018-06-24T19:50:18.796Z", "name": "LC 302", "short_name": "LC 302", "description": "", "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", "parent_relation": "Third floor", "group_id": 4, "pixel_x": 3570, "pixel_y": 2152, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "77607fc9-3f4d-4702-b412-2486f634d434", "fields": {"str_id": "bio-diesel-lab", "time_of_creation": "2018-06-24T19:50:18.065Z", "name": "Bio-diesel Lab", "short_name": "Bio-diesel Lab", "description": "www.che.iitb.ac.in/chea/biosynth/be-a-part.phpcontact@biosynthiitb.orgProject Biosynth is an initiative by the students of the Department of Chemical Engineering, IIT Bombay to install a Biodiesel plant. This student-managed initiative was started in 2008. The R & D activities at the plant include:the adaptation of the standard biodiesel production process to the available waste vegetable oil, the quality control for the biodiesel produced, allied issues pertaining to design and planning and research projects.", "parent": "f5303dcd-b456-4147-a414-88a89815d826", "parent_relation": "Backside", "group_id": 12, "pixel_x": 4220, "pixel_y": 1558, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "78556ec8-306d-4203-9710-61fe662a7bcc", "fields": {"str_id": "football-field-new-sac", "time_of_creation": "2019-04-04T17:50:26.938Z", "name": "Football Field, New SAC", "short_name": "Football Field, New SAC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "788f52ea-e769-4ba7-aa63-9d995bf7d428", "fields": {"str_id": "idc-cant", "time_of_creation": "2018-06-24T19:50:18.656Z", "name": "IDC Canteen", "short_name": "IDC Cant.", "description": "Santosh bhaiya's Canteen +918652423193 9am to 5:30 pm, weekdays only Menu: Tea, Coffee, Upma, Poha, Idli Chutney, Meduwada, Samosa, manchurian roll, paneer roll, chicken roll, Vada Paav, biscuits, Maggi, Tropicana, cold drinks", "parent": "d467330f-a3a7-484b-8eca-b23815a0a3a7", "parent_relation": "Inside", "group_id": 5, "pixel_x": 4207, "pixel_y": 1732, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "795a7316-4330-4623-8766-fec23baf7c5c", "fields": {"str_id": "webex-meet", "time_of_creation": "2020-10-22T03:19:03.645Z", "name": "Webex Meet", "short_name": "Webex Meet", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "7965606a-46f6-4c41-8830-366da25a5dfe", "fields": {"str_id": "fc-kohli-auditorium-kresit-building", "time_of_creation": "2019-06-05T06:51:16.164Z", "name": "FC Kohli Auditorium, KResit Building", "short_name": "FC Kohli Auditorium, KResit Building", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "7991b800-8c8b-426c-9cee-928c896df843", "fields": {"str_id": "3-h1", "time_of_creation": "2018-06-24T19:50:19.221Z", "name": "Type H1 - 3", "short_name": "3-H1", "description": "H1 Type Quarters Flat nos. 25 - 36", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 867, "pixel_y": 2575, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "799683c1-4f68-46d1-9465-05c3cac77a49", "fields": {"str_id": "bb-h1", "time_of_creation": "2018-06-24T19:50:19.267Z", "name": "Type H1 - BB", "short_name": "BB-H1", "description": "H1 BB Type Quarters Flat nos. 1 - 26", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 921, "pixel_y": 2122, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "79c489b9-cb9a-4f14-b9aa-700de5f52705", "fields": {"str_id": "s3-bay", "time_of_creation": "2018-06-24T19:50:18.590Z", "name": "S3 Bay", "short_name": "S3 Bay", "description": "", "parent": "431b487b-1db7-4cc0-ae63-af19ad96dca9", "parent_relation": "Near", "group_id": 1, "pixel_x": 4325, "pixel_y": 1720, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "79f29d0c-f8f0-4f24-984d-0fc5506267e2", "fields": {"str_id": "room-201-idc", "time_of_creation": "2020-01-15T13:34:11.580Z", "name": "Room 201, IDC", "short_name": "Room 201, IDC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "7aa2ce2d-888c-4891-84c1-449698f044b4", "fields": {"str_id": "gulmohar-cafetaria", "time_of_creation": "2018-06-24T22:16:29.695Z", "name": "Gulmohar Garden Cafetaria", "short_name": "Gulmohar Cafetaria", "description": "", "parent": "5d7d2bba-e553-4733-9515-c991ff9e0f37", "parent_relation": "Outside", "group_id": 5, "pixel_x": 3040, "pixel_y": 2130, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "7ac88c8b-84fa-415a-9bad-fa930879e314", "fields": {"str_id": "2b-14", "time_of_creation": "2018-06-24T19:50:18.959Z", "name": "Type 2B 14", "short_name": "2B 14", "description": "2B-Type Quarters, Flat nos 79 - 84", "parent": null, "parent_relation": null, "group_id": 3, "pixel_x": 1144, "pixel_y": 2866, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "7bf5e2c3-e013-4e6c-b890-3fa85c696d8b", "fields": {"str_id": "11-h2", "time_of_creation": "2018-06-24T19:50:19.308Z", "name": "Type H2 - 11", "short_name": "11-H2", "description": "H2 Type Quarters Flat nos. 81 - 88", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 1049, "pixel_y": 2666, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "7c041ab0-69f6-4ac4-971e-99e884de3f35", "fields": {"str_id": "register-asap", "time_of_creation": "2020-09-03T09:43:36.196Z", "name": "Register ASAP!", "short_name": "Register ASAP!", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "7c20f22f-112e-4080-a765-fe7ddffcc952", "fields": {"str_id": "ic-1--som", "time_of_creation": "2018-10-05T07:44:58.060Z", "name": "IC 1 | SOM", "short_name": "IC 1 | SOM", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "7cc15811-3c3e-455a-8c83-c312586cdcfe", "fields": {"str_id": "corro-lab-1", "time_of_creation": "2018-06-24T19:50:18.859Z", "name": "Corrosion Lab 1", "short_name": "Corro Lab 1", "description": "Tel: +912225764618", "parent": "aa4fa9f4-40fa-4d99-bba8-bd985d11f67e", "parent_relation": "Inside", "group_id": 12, "pixel_x": 3631, "pixel_y": 2044, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "7cc9bc0c-764c-4b98-a670-87372c859849", "fields": {"str_id": "yoga-room-sac", "time_of_creation": "2018-08-01T07:57:39.680Z", "name": "Yoga Room, SAC", "short_name": "Yoga Room, SAC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "7cdfee1f-3561-4ef1-af10-2300f07b672e", "fields": {"str_id": "physics", "time_of_creation": "2018-06-24T19:50:18.331Z", "name": "Physics Department", "short_name": "Physics", "description": "The department offers academic programs for B.Tech Engineering Physics (through JEE), Dual degree B.Tech + M.Tech in Engineering Physics with specialisation in Nanoscience (through JEE), MSc Physics 2 Years programme (through JAM), Dual degree programme of MSc and PhD in physics (through JAM). Research areas include Condensed Matter Physics, Photonics and Optics, Nuclear Physics, High Energy Physics, Statistical Physics", "parent": null, "parent_relation": "", "group_id": 1, "pixel_x": 3479, "pixel_y": 2247, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "7dbd1ceb-802b-4763-92c9-9a5c93b08faf", "fields": {"str_id": "20-h2", "time_of_creation": "2018-06-24T19:50:19.341Z", "name": "Type H2 - 20", "short_name": "20-H2", "description": "H2 Type Quarters Flat nos. 153 - 160", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4307, "pixel_y": 1320, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "8010e8d1-8155-4f89-9b4e-a74c3c53c734", "fields": {"str_id": "typea", "time_of_creation": "2018-06-24T19:50:19.557Z", "name": "Proposed TypeA Building", "short_name": "TypeA", "description": "", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 1942, "pixel_y": 2646, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "803f4611-9e9c-4120-b236-78cfbcd3f4b2", "fields": {"str_id": "h14", "time_of_creation": "2018-06-24T19:50:18.179Z", "name": "Hostel 14 Silicon Ship", "short_name": "H14", "description": "Hostel security: +912225762614 Hall Manager: 022-25762714 G. Sec: Mayuresh Pant +919730694513", "parent": null, "parent_relation": null, "group_id": 2, "pixel_x": 2114, "pixel_y": 800, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "806a19fe-db5d-4c3c-9ccf-dc5b3a34db8e", "fields": {"str_id": "httpszoomusj97679784047pwdztrpvvbmnlzwk1zlbne4as82dk5lqt09", "time_of_creation": "2020-07-09T04:17:35.520Z", "name": "https://zoom.us/j/97679784047?pwd=ZTRpVVBmNlZwK1ZLbnE4aS82dk5LQT09", "short_name": "https://zoom.us/j/97679784047?pwd=ZTRpVVBmNlZwK1ZLbnE4aS82dk5LQT09", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "80ccb7f2-435f-4236-a2fa-a4639f35037f", "fields": {"str_id": "google-meets", "time_of_creation": "2021-01-14T10:48:53.282Z", "name": "Google Meets ", "short_name": "Google Meets ", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "816d66e3-b4a8-4c4b-acec-642790175b78", "fields": {"str_id": "official-fb-page-iitbpgsports", "time_of_creation": "2020-05-19T03:24:38.936Z", "name": "Official fb page @iitbpgsports", "short_name": "Official fb page @iitbpgsports", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "81979aec-598d-408e-9042-606a50432ee7", "fields": {"str_id": "press", "time_of_creation": "2018-06-24T19:50:18.342Z", "name": "Printing Press", "short_name": "Press", "description": "Tel: +912225768961", "parent": "dca613da-2467-4e9f-b238-601a122df5dd", "parent_relation": "Inside", "group_id": 9, "pixel_x": 4326, "pixel_y": 1896, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "81fa5c67-9ba1-4335-91ab-abf1c88166c8", "fields": {"str_id": "homi-bhabha-auditorium-colaba", "time_of_creation": "2018-10-13T06:20:57.926Z", "name": "Homi Bhabha Auditorium, Colaba", "short_name": "Homi Bhabha Auditorium, Colaba", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "8207f41c-d619-49c5-b7e7-43a455155c9e", "fields": {"str_id": "lt-304", "time_of_creation": "2018-06-24T19:50:18.757Z", "name": "LT 304", "short_name": "LT 304", "description": "", "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", "parent_relation": "Third floor", "group_id": 4, "pixel_x": 3570, "pixel_y": 2152, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "8256a888-0a56-4891-9250-cb20cd08a93a", "fields": {"str_id": "hostel-3-lounge", "time_of_creation": "2018-08-16T18:44:25.700Z", "name": "Hostel 3 Lounge", "short_name": "Hostel 3 Lounge", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "82a023d6-147d-45cf-b7a5-e60621172733", "fields": {"str_id": "vmcc-hall-22", "time_of_creation": "2019-09-03T13:09:21.570Z", "name": "VMCC Hall 22", "short_name": "VMCC Hall 22", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "82a36e07-1644-42be-878d-43357312b332", "fields": {"str_id": "a18", "time_of_creation": "2018-06-24T19:50:19.064Z", "name": "Bungalow A18 ", "short_name": "A18", "description": "A-Type Bungalow", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4220, "pixel_y": 1142, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "82e7e32c-66ee-465c-a197-98790d7213dc", "fields": {"str_id": "seminar-hall", "time_of_creation": "2018-06-24T19:50:18.352Z", "name": "Seminar Hall", "short_name": "Seminar Hall", "description": "Tel: +912225764912, for booking +912225764420", "parent": null, "parent_relation": "", "group_id": 4, "pixel_x": 3792, "pixel_y": 2025, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "8325f07f-f283-4164-be1a-7d9d7bca43b6", "fields": {"str_id": "2b-12", "time_of_creation": "2018-06-24T19:50:18.947Z", "name": "Type 2B 12", "short_name": "2B 12", "description": "2B-Type Quarters, Flat nos 67 - 72", "parent": null, "parent_relation": null, "group_id": 3, "pixel_x": 701, "pixel_y": 2615, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "834a689d-12f2-4e3f-8880-619766dd2446", "fields": {"str_id": "h16-mess", "time_of_creation": "2018-07-26T18:30:38.468Z", "name": "Hostel 16 Mess", "short_name": "H16 Mess", "description": "", "parent": "0e79535d-f1a6-478b-9799-663d0dd54d9a", "parent_relation": "Ground Floor", "group_id": 8, "pixel_x": 0, "pixel_y": 0, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "8486a8f3-a25e-4b7e-acdf-8d7931302fad", "fields": {"str_id": "httpsbitly3k3tjjp", "time_of_creation": "2020-11-07T11:53:59.282Z", "name": "https://bit.ly/3k3TJjP", "short_name": "https://bit.ly/3k3TJjP", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "8516ff20-92c5-41bb-815c-bf172c5c3dd6", "fields": {"str_id": "cc", "time_of_creation": "2018-06-24T19:50:18.301Z", "name": "Computer Centre", "short_name": "CC", "description": "http://www.cse.iitb.ac.in\r\nTel: +912225767901/02\r\n\r\nThe department offers academic programs for B. Tech, Dual degree (B Tech + M Tech), M Tech, Dual Degree PG (M. Tech + Ph. D) and Ph. D. Research areas include algorithms, programming languages and Compilers, database and information systems, artificial intelligence and natural language processing, software engineering, formal methods, distributed systems, computer networks, data mining, computer graphics, computer vision and image understanding, real-time and embedded systems, formal languages and bio-inspired computing", "parent": null, "parent_relation": null, "group_id": 1, "pixel_x": 3422, "pixel_y": 1986, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "8537fb15-818c-4d5f-b8bf-3dba012e8410", "fields": {"str_id": "seminar-hall-3-first-floor-vmcc", "time_of_creation": "2019-10-10T14:21:36.454Z", "name": "Seminar Hall 3, first floor, VMCC", "short_name": "Seminar Hall 3, first floor, VMCC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "85c8b696-c6d6-40cc-bd20-e2fb4dd281c8", "fields": {"str_id": "geotech-lab", "time_of_creation": "2018-06-24T19:50:18.485Z", "name": "Geotechnical Engg. Lab", "short_name": "GeoTech Lab", "description": "Comes under Civil Engineering Department +912225764320", "parent": null, "parent_relation": "", "group_id": 12, "pixel_x": 4280, "pixel_y": 1425, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "85d2f82c-3002-4c68-9c5f-0d6753b65e38", "fields": {"str_id": "cese", "time_of_creation": "2018-06-24T19:50:18.087Z", "name": "Centre for Environmental Science and Engineering", "short_name": "CESE", "description": "http://www.cese.iitb.ac.in\r\nTel +912225767851\r\nFax +912225764650\r\n\r\nThe Centre offers M.Tech. and Ph.D. programmes, which are interdisciplinary in nature and consists of course work followed by a research project. The duration of the Ph.D. programme varies depending upon the background of the candidate.", "parent": null, "parent_relation": null, "group_id": 1, "pixel_x": 4340, "pixel_y": 1985, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "86698f93-b89d-433a-90df-3796613f7a8b", "fields": {"str_id": "gmfl-lab", "time_of_creation": "2018-06-24T19:50:18.489Z", "name": "GMFL Lab / Geophysical and multiphase Flows Lab", "short_name": "GMFL Lab", "description": "", "parent": null, "parent_relation": "", "group_id": 12, "pixel_x": 4530, "pixel_y": 1485, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "866dde4e-4667-446f-969e-ee4035b766a5", "fields": {"str_id": "dese-cese", "time_of_creation": "2018-06-24T19:50:19.550Z", "name": "DESE & CESE New Building", "short_name": "DESE CESE", "description": "New building for the Department of Energy Science and Engineering and Center for Environmental Science and Engineering", "parent": null, "parent_relation": null, "group_id": 9, "pixel_x": 3979, "pixel_y": 2467, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "86d51626-2b1a-450f-a60c-be4dc6a7e153", "fields": {"str_id": "c12", "time_of_creation": "2018-06-24T19:50:19.173Z", "name": "Type C-12", "short_name": "C12", "description": "C-Type Quarters Flat nos. 73 - 78", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 2867, "pixel_y": 3006, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "86e9bcf0-b075-4819-a837-fd1440cbecf2", "fields": {"str_id": "lec-hall-1--2", "time_of_creation": "2018-06-24T19:50:18.258Z", "name": "Lecture Hall Complex - 1 & 2", "short_name": "Lec Hall 1 & 2", "description": "", "parent": null, "parent_relation": "", "group_id": 4, "pixel_x": 3570, "pixel_y": 2152, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "874b540d-94cc-479d-9621-916552a3c02b", "fields": {"str_id": "csre", "time_of_creation": "2018-06-24T19:50:18.106Z", "name": "Centre of Studies in Resources Engineering", "short_name": "CSRE", "description": "http://www.csre.iitb.ac.in\r\nTel:+912225767662\r\n\r\nThe centre offers Ph.D, M Tech, UG Minor and institute elective. Research areas include Spatial Analysis, Digital Image Processing, Global Positioning System (GPS) and Photogrammetry, Geocomputational Systems, Microwave Remote Sensing, Snow and Glacier Studies, Geology and Mineral Resources, Agro-Informatics and rural development, Terrain evaluation group, Environment, natural hazards and disaster management, Coastal and marine sciences", "parent": null, "parent_relation": null, "group_id": 1, "pixel_x": 4096, "pixel_y": 1993, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "8791d3f0-d0c3-445c-823a-0738c0f4da19", "fields": {"str_id": "b4", "time_of_creation": "2018-06-24T19:50:19.082Z", "name": "Type B-4", "short_name": "B4", "description": "B-Type Quarters Flat nos. 15 - 18", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 2743, "pixel_y": 2947, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "87cce91e-c008-452d-b580-e9bc233e2c6a", "fields": {"str_id": "zoom-meet--httpszoomusj94770566170pwdcefkz2pttferck42uxk3vgp2qxhpdz09", "time_of_creation": "2021-08-10T14:55:36.479Z", "name": "Zoom Meet : https://zoom.us/j/94770566170?pwd=cEFKZ2ptTFErck42UXk3VGp2QXhpdz09", "short_name": "Zoom Meet : https://zoom.us/j/94770566170?pwd=cEFKZ2ptTFErck42UXk3VGp2QXhpdz09", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "87e2a2b9-b922-4184-adee-10dbbb707f05", "fields": {"str_id": "heavy-structure-lab", "time_of_creation": "2018-06-24T19:50:18.503Z", "name": "Heavy Structure Lab", "short_name": "Heavy Structure Lab", "description": "Comes under Structural Engineering Laboratories of Civil Engineering Department +912225764323", "parent": "fa6f024a-87ae-4d06-903a-f77e05de7a27", "parent_relation": "Near", "group_id": 12, "pixel_x": 4330, "pixel_y": 1495, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "887ecb32-a2a5-49df-932b-389db27c6320", "fields": {"str_id": "sac-conference-room", "time_of_creation": "2019-01-22T05:33:27.656Z", "name": "Sac conference room", "short_name": "Sac conference room", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "889abc9e-9d30-4e2e-8e8e-53295ca46380", "fields": {"str_id": "mw-1", "time_of_creation": "2018-06-24T19:50:19.388Z", "name": "MW Quarters 1", "short_name": "MW 1", "description": "MW Quarters 1 - 32", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4267, "pixel_y": 752, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "8946e59d-b065-463f-adf1-3dae1d986cac", "fields": {"str_id": "in-front-of-theatre-room-old-sac", "time_of_creation": "2018-09-23T05:08:04.356Z", "name": "In front of Theatre Room, Old SAC ", "short_name": "In front of Theatre Room, Old SAC ", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "897c294e-95c4-42de-ae55-26575e84c197", "fields": {"str_id": "lc-001", "time_of_creation": "2018-06-24T19:50:18.769Z", "name": "LC 001", "short_name": "LC 001", "description": "", "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", "parent_relation": "Ground floor", "group_id": 4, "pixel_x": 3570, "pixel_y": 2152, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "89841b84-4de4-4f33-a9a2-814d7e02303a", "fields": {"str_id": "youtube-live", "time_of_creation": "2020-12-15T13:10:28.247Z", "name": "YouTube Live", "short_name": "YouTube Live", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "898f95d5-f987-4588-86ae-a8cd184836d0", "fields": {"str_id": "h15-mess", "time_of_creation": "2018-07-26T18:30:38.462Z", "name": "H15 Mess", "short_name": "H15 Mess", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "89bcd0af-a808-468e-a26a-381292f32421", "fields": {"str_id": "httpseventwebinarjamcomchannelodysseyofcareers", "time_of_creation": "2021-01-23T08:19:33.719Z", "name": "https://event.webinarjam.com/channel/OdysseyofCareers", "short_name": "https://event.webinarjam.com/channel/OdysseyofCareers", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "8a53546e-916f-4b2a-9ef6-1bde0ce16a40", "fields": {"str_id": "1-type1", "time_of_creation": "2018-06-24T19:50:19.396Z", "name": "Type1 - 1", "short_name": "1-Type1", "description": "Type 1 Quarters Flat nos. 1 - 12", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4113, "pixel_y": 2583, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "8ab194eb-dcf6-4a29-bbe2-238f74c79049", "fields": {"str_id": "your-home", "time_of_creation": "2020-06-18T16:13:40.401Z", "name": "Your Home ", "short_name": "Your Home ", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "8ada0dd4-f9aa-4902-a7c5-749b1fd5707d", "fields": {"str_id": "lh302-lecture-hall-complex", "time_of_creation": "2022-07-28T20:10:24.991Z", "name": "LH302, Lecture Hall Complex", "short_name": "LH302, Lecture Hall Complex", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "8b4f4d28-edf6-4dd3-8b66-0e588a0b7df3", "fields": {"str_id": "yoga-room-3rd-floor-new-sac", "time_of_creation": "2019-12-19T13:04:56.213Z", "name": "Yoga room, 3rd floor, New SAC", "short_name": "Yoga room, 3rd floor, New SAC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "8b4f7618-a7da-48c8-87ab-e3cd5005fa53", "fields": {"str_id": "hostel-cricket-ground", "time_of_creation": "2019-08-23T12:15:21.537Z", "name": "Hostel Cricket Ground", "short_name": "Hostel Cricket Ground", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "8b8366e0-bdf0-49c4-acb2-e27dbf2c59d0", "fields": {"str_id": "theatre-room-old-sac", "time_of_creation": "2018-10-31T17:04:32.463Z", "name": "Theatre Room, Old SAC", "short_name": "Theatre Room, Old SAC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "8c600997-23a7-4453-a6e0-d22e5f3801b2", "fields": {"str_id": "post-office", "time_of_creation": "2018-06-24T19:50:18.335Z", "name": "Post Office", "short_name": "Post Office", "description": "Tel: +912225762774", "parent": null, "parent_relation": "", "group_id": 9, "pixel_x": 3918, "pixel_y": 2846, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "8c843750-8320-41c7-b2e2-48366a14982a", "fields": {"str_id": "lt-pcsa", "time_of_creation": "2018-08-18T12:33:45.746Z", "name": "LT PCSA", "short_name": "LT PCSA", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "8ca4b0f3-e3b5-4694-89f0-de750cfc6065", "fields": {"str_id": "2b-17", "time_of_creation": "2018-06-24T19:50:18.975Z", "name": "Type 2B 17", "short_name": "2B 17", "description": "2B-Type Quarters, Flat nos 97 - 102", "parent": null, "parent_relation": null, "group_id": 3, "pixel_x": 878, "pixel_y": 2756, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "8ccb786c-48e0-492a-bbbe-43974bbce905", "fields": {"str_id": "h1", "time_of_creation": "2018-06-24T19:50:18.152Z", "name": "Hostel 01 Queen of the campus", "short_name": "H1", "description": "Hostel security: +912225762601 Hall Manager: +912225762701 G. Sec: Ratikant +919930836852", "parent": null, "parent_relation": "", "group_id": 2, "pixel_x": 3908, "pixel_y": 1077, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "8dc3f7ea-952d-4a33-b4c0-44bd2a7c52e2", "fields": {"str_id": "new-yoga-room-old-sac", "time_of_creation": "2018-08-07T07:37:41.914Z", "name": "New Yoga Room, Old SAC", "short_name": "New Yoga Room, Old SAC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "8e17fbf3-7b22-4733-8b83-fdef95381196", "fields": {"str_id": "ms-teams", "time_of_creation": "2020-12-18T10:13:59.094Z", "name": "MS TEAMS ", "short_name": "MS TEAMS ", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "8e2ca11f-dbef-4d26-88a9-10f92ad64f6b", "fields": {"str_id": "b12", "time_of_creation": "2018-06-24T19:50:19.112Z", "name": "Type B-12", "short_name": "B12", "description": "B-Type Quarters Flat nos. 47 - 50", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 2080, "pixel_y": 2631, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "8e957c64-eb05-48ba-abb0-57252fabcead", "fields": {"str_id": "h8-tv-room", "time_of_creation": "2018-06-25T06:49:37.517Z", "name": "Hostel 8 TV Room", "short_name": "H8 TV Room", "description": "", "parent": "0e2c2a32-5356-48d8-94ef-b06bff458064", "parent_relation": "Inside", "group_id": 8, "pixel_x": 2834, "pixel_y": 1257, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "8f0edd03-327b-40ef-8a2d-7ffeb2245a39", "fields": {"str_id": "csre-b", "time_of_creation": "2018-06-24T19:50:19.479Z", "name": "CSRE B", "short_name": "CSRE B", "description": "CSRE Quarters C141, C142, C145, C146, C149, C150", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4251, "pixel_y": 1179, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "8f699c05-e021-4f6c-82e0-ffa52d35c1db", "fields": {"str_id": "n3-bay", "time_of_creation": "2018-06-24T19:50:18.548Z", "name": "N3 Bay", "short_name": "N3 Bay", "description": "", "parent": "34513a0d-1b20-4350-8d76-57c0883f10fe", "parent_relation": "Near", "group_id": 1, "pixel_x": 4360, "pixel_y": 1645, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "8f868c14-081b-44f2-99cc-e71b1708e826", "fields": {"str_id": "idp-sys--cntrl-engg", "time_of_creation": "2018-06-24T19:50:18.824Z", "name": "Inter-disciplinary Programme in Systems and Control Engineering", "short_name": "IDP Sys & Cntrl Engg.", "description": "http://www.sc.iitb.ac.in Tel: +912225767884, +912225722545 Fax:+912225720057 M Tech and Ph D offered in this programme. Research ares include nonlinear control, robotics, path-planning, embedded control, coordination of autonomous vehicles, multi-agent systems, game theory, information theory, combinatorics, sliding mode control and applications, fractional-order modelling and control, optimization and optimization-based control, and stochastic processes. In addition, research in the areas of process control, identification, behavioural theory, matrix computation, automotive control are being pursued by the associate faculty members. ", "parent": null, "parent_relation": "", "group_id": 1, "pixel_x": 4011, "pixel_y": 1411, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "8fcf8049-5a13-4e60-b5b1-993a4a554526", "fields": {"str_id": "maths", "time_of_creation": "2018-06-24T19:50:18.275Z", "name": "Mathematics Department", "short_name": "Maths", "description": "http://www.math.iitb.ac.in\r\nTel: +912225767451\r\n\r\nB Tech (core courses), MSc (ASI, Maths), Ph D", "parent": null, "parent_relation": null, "group_id": 1, "pixel_x": 3928, "pixel_y": 1496, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "90629a63-a762-42e3-9e4e-67834ea7a118", "fields": {"str_id": "a7", "time_of_creation": "2018-06-24T19:50:19.024Z", "name": "Bungalow A7 ", "short_name": "A7", "description": "A-Type Bungalow", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 2211, "pixel_y": 3055, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "90a68340-721b-4bd2-861e-d36d8e09f9d8", "fields": {"str_id": "h9", "time_of_creation": "2018-06-24T19:50:18.216Z", "name": "Hostel 09 Nawaabon Ki Basti", "short_name": "H9", "description": "Hostel security: +912225762609 Hall Manager: +912225762709 G. Sec: Shubham Meena +919619835583", "parent": null, "parent_relation": null, "group_id": 2, "pixel_x": 2693, "pixel_y": 858, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "90e980d3-7668-44b2-888c-341190c05e44", "fields": {"str_id": "jalvihar", "time_of_creation": "2018-06-24T19:50:18.137Z", "name": "Guest House / Jalvihar", "short_name": "Jalvihar", "description": "Tel: +912225768940 / +912225768942 / +912225768943", "parent": null, "parent_relation": null, "group_id": 3, "pixel_x": 2610, "pixel_y": 2138, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "91091770-c141-486d-bfce-08247cc7286c", "fields": {"str_id": "bsbe", "time_of_creation": "2018-06-24T19:50:18.069Z", "name": "Biosciences and Bioengineering Department", "short_name": "BSBE", "description": "Phone: +912225767771\r\nFax: +912225767771\r\nE-mail: office.bio@iitb.ac.in\r\n\r\nThe department offers academic programs in MSc (Biotechnology), MTech (Biomedical Engineering), MSc-PhD Dual Degree Program, PhD Program", "parent": null, "parent_relation": null, "group_id": 1, "pixel_x": 3934, "pixel_y": 2241, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "911a6892-5444-419c-b23e-c4c5de03daeb", "fields": {"str_id": "elec-engg-anx", "time_of_creation": "2018-06-24T19:50:18.121Z", "name": "Electrical Engineering Annexe Building", "short_name": "Elec engg Anx", "description": "http://www.ee.iitb.ac.in +912225764408 ", "parent": null, "parent_relation": "", "group_id": 1, "pixel_x": 3932, "pixel_y": 1997, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "911c89b3-0400-4d2f-9e95-ef3ab79c15c8", "fields": {"str_id": "gg-conference-room-department-of-electrical-engineering", "time_of_creation": "2018-10-19T11:44:26.980Z", "name": "GG Conference Room, Department of Electrical Engineering", "short_name": "GG Conference Room, Department of Electrical Engineering", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "935c4851-9d62-49f7-80ca-144b575c3370", "fields": {"str_id": "wwwlichessorg", "time_of_creation": "2019-09-29T19:28:22.871Z", "name": "www.lichess.org", "short_name": "www.lichess.org", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "936e944c-dd74-44c2-a350-28520c0bdb90", "fields": {"str_id": "ms-teams-code-cvlz22v", "time_of_creation": "2021-10-08T07:20:03.761Z", "name": "MS Teams (code: cvlz22v)", "short_name": "MS Teams (code: cvlz22v)", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "936ed800-b3d6-48cb-bc2c-cff0032d03a7", "fields": {"str_id": "h3-tv-room", "time_of_creation": "2019-10-11T06:15:38.021Z", "name": "H3 TV Room", "short_name": "H3 TV Room", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "937b062b-b66c-4969-bdbf-75ba79f94c90", "fields": {"str_id": "vmcc--seminar-hall-1", "time_of_creation": "2019-10-17T17:08:35.475Z", "name": "VMCC | Seminar Hall 1", "short_name": "VMCC | Seminar Hall 1", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "93ba3eea-cf19-49fa-bbf7-e631b1cc8ff6", "fields": {"str_id": "lh-101-lh102", "time_of_creation": "2019-01-18T17:38:21.096Z", "name": "LH 101, LH102", "short_name": "LH 101, LH102", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "94f86837-7215-4059-89bd-1d7220a9bd03", "fields": {"str_id": "la-001", "time_of_creation": "2018-06-24T19:50:18.667Z", "name": "LA 001", "short_name": "LA 001", "description": "The classroom has 4 entrance doors, two on ground floor and two in first floor.", "parent": "be8afcf1-c7f7-4d71-aaf5-0154081974dd", "parent_relation": "Ground and First floors", "group_id": 4, "pixel_x": 3779, "pixel_y": 2220, "lat": "19.130984", "lng": "72.917451", "reusable": true}}, {"model": "locations.location", "pk": "952d386e-5da3-458a-9752-fdb20861e47c", "fields": {"str_id": "cs-101---lc201-bb101---lc202", "time_of_creation": "2018-11-09T08:48:26.401Z", "name": "CS 101 - LC201. BB101 - LC202", "short_name": "CS 101 - LC201. BB101 - LC202", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "957a0f4a-2cd1-4611-b250-e767a32c6c70", "fields": {"str_id": "mlr-convention-center-bengaluru", "time_of_creation": "2018-07-16T16:59:34.881Z", "name": "MLR Convention Center, Bengaluru", "short_name": "MLR Convention Center, Bengaluru", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "962bdedb-ded0-42ff-8407-b48d5037ca16", "fields": {"str_id": "lc-301", "time_of_creation": "2018-06-24T19:50:18.791Z", "name": "LC 301", "short_name": "LC 301", "description": "", "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", "parent_relation": "Third floor", "group_id": 4, "pixel_x": 3570, "pixel_y": 2152, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "96a74240-57a5-4be0-a4fa-83784abbe650", "fields": {"str_id": "2nd-floor-board-games-room-new-gymkhana", "time_of_creation": "2019-02-09T13:46:58.263Z", "name": "2nd floor, Board Games Room, New Gymkhana", "short_name": "2nd floor, Board Games Room, New Gymkhana", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "96b1941c-0d9f-471a-b70b-9a9fd48d97e0", "fields": {"str_id": "som-auditorium", "time_of_creation": "2022-07-28T14:14:24.915Z", "name": "SOM Auditorium", "short_name": "SOM Auditorium", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "973e3f96-cf7e-42ea-929a-3eca87c7d422", "fields": {"str_id": "lt-204", "time_of_creation": "2018-06-24T19:50:18.734Z", "name": "LT 204", "short_name": "LT 204", "description": "", "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", "parent_relation": "Second floor", "group_id": 4, "pixel_x": 3570, "pixel_y": 2152, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "97f27a75-81b1-435e-a494-1dc14536935c", "fields": {"str_id": "earth-sci", "time_of_creation": "2018-06-24T19:50:18.117Z", "name": "Earth Science Department", "short_name": "Earth Sci", "description": "http://www.geos.iitb.ac.in +912225767251,+912225767265 The department offers academic programs for M.Sc (Applied Geology, Applied Geophysics, Geoexploration), M Tech (Petroleum Geoscience) and Ph.D. Research areas include Mineralogy, Geochemistry and Ore Deposits Structural Geology Igneous and Metamorphic Petrology Engineering geology, Hydro-geology Sedimentology Stratigraphy and Micro-Paleontology Mathematical Geology/ Ore Deposit Modelling Rock Magnetism and Marine Geology Seismology, Geothermics", "parent": null, "parent_relation": "", "group_id": 1, "pixel_x": 4038, "pixel_y": 2123, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "98a3c8d6-d988-464f-bff5-6ba09590e8b7", "fields": {"str_id": "sbi-atm", "time_of_creation": "2018-06-24T19:50:18.648Z", "name": "ATM - State Bank Main Gate", "short_name": "SBI ATM", "description": "", "parent": null, "parent_relation": null, "group_id": 6, "pixel_x": 2164, "pixel_y": 3227, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "98c72ca2-c7c8-4c40-95c0-fc54c0926f7d", "fields": {"str_id": "indoor-basketball-courts", "time_of_creation": "2019-09-08T06:08:24.335Z", "name": "Indoor Basketball Courts", "short_name": "Indoor Basketball Courts", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "98fc20ad-cfbb-4fd8-ba85-77fc5fb00da3", "fields": {"str_id": "2b-15", "time_of_creation": "2018-06-24T19:50:18.968Z", "name": "Type 2B 15", "short_name": "2B 15", "description": "2B-Type Quarters, Flat nos 85 - 90", "parent": null, "parent_relation": null, "group_id": 3, "pixel_x": 1076, "pixel_y": 2833, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "9929a0b3-64d6-4bef-91c6-7d8202836d66", "fields": {"str_id": "cl-118", "time_of_creation": "2019-01-31T08:13:07.127Z", "name": "CL 118", "short_name": "CL 118", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "9962262a-4c11-4385-822f-228b0f7d3379", "fields": {"str_id": "hockey-ground", "time_of_creation": "2018-06-24T19:50:19.579Z", "name": "Hockey Ground", "short_name": "Hockey Ground", "description": "", "parent": null, "parent_relation": "", "group_id": 8, "pixel_x": 3303, "pixel_y": 1368, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "9982150c-f1d6-4bab-bd1e-ac99958cc071", "fields": {"str_id": "la-002", "time_of_creation": "2018-06-24T19:50:18.671Z", "name": "LA 002", "short_name": "LA 002", "description": "The classroom has 4 entrance doors, two on ground floor and two in first floor.", "parent": "be8afcf1-c7f7-4d71-aaf5-0154081974dd", "parent_relation": "Ground and First floors", "group_id": 4, "pixel_x": 3779, "pixel_y": 2220, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "99d0616b-37f9-4175-bc41-ca3319622e30", "fields": {"str_id": "h5-football-grounds", "time_of_creation": "2019-10-22T13:45:58.340Z", "name": "H5 Football Grounds", "short_name": "H5 Football Grounds", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "99ea94a1-0b72-4467-a5f1-ef95e24f3bf8", "fields": {"str_id": "rock-powdering-lab", "time_of_creation": "2018-06-24T19:50:18.577Z", "name": "Rock Powdering Lab", "short_name": "Rock Powdering Lab", "description": "", "parent": null, "parent_relation": "", "group_id": 12, "pixel_x": 3921, "pixel_y": 2095, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "9a12eaea-210e-40f1-b68a-d1c1d9ef1844", "fields": {"str_id": "lc", "time_of_creation": "2020-01-11T09:04:35.299Z", "name": "LC", "short_name": "LC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "9ae531a0-d969-4383-81b2-3e246fafbc26", "fields": {"str_id": "lh102", "time_of_creation": "2018-10-19T21:06:25.060Z", "name": "LH102", "short_name": "LH102", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "9b0a998c-ecaf-4974-848d-83444838c5e7", "fields": {"str_id": "frisbee-field-hostel-2", "time_of_creation": "2020-02-09T08:41:54.793Z", "name": "Frisbee Field, Hostel 2", "short_name": "Frisbee Field, Hostel 2", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "9b1f6038-948e-4330-9f87-20b8432752e8", "fields": {"str_id": "h15--h16", "time_of_creation": "2019-03-13T12:37:40.691Z", "name": "H15 & H16", "short_name": "H15 & H16", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "9c40f2d7-0491-44d9-86fb-ae8e42d46450", "fields": {"str_id": "instagram-page--energy-club", "time_of_creation": "2020-09-02T16:12:39.266Z", "name": "Instagram Page | Energy Club", "short_name": "Instagram Page | Energy Club", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "9caed95c-3cb6-435b-9938-33b279009b8f", "fields": {"str_id": "shivalik-c-23", "time_of_creation": "2018-06-24T19:50:18.360Z", "name": "Shivalik C 23 (187-240)", "short_name": "Shivalik C 23", "description": "C- Type Quartera Flat nos. 187 - 240", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 3129, "pixel_y": 2612, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "9cbe0f43-5740-47d9-99e2-ba1400812394", "fields": {"str_id": "h12", "time_of_creation": "2018-06-24T19:50:18.171Z", "name": "Hostel 12 Crown of the Campus", "short_name": "H12", "description": "Hostel security: +912225762612 Hall Manager: +912225762712 G. Sec: Ashutosh +919167782489", "parent": null, "parent_relation": null, "group_id": 2, "pixel_x": 2096, "pixel_y": 667, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "9d1fce95-c6e9-4998-851e-2094058b71fc", "fields": {"str_id": "2b-21", "time_of_creation": "2018-06-24T19:50:18.990Z", "name": "Type 2B 21", "short_name": "2B 21", "description": "2B-Type Quarters, Flat nos 135 - 140", "parent": null, "parent_relation": null, "group_id": 3, "pixel_x": 4720, "pixel_y": 1371, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "9d52d7c6-a85e-402e-9bc1-fc39b48f7039", "fields": {"str_id": "kg-school", "time_of_creation": "2018-06-24T19:50:18.866Z", "name": "Kindergarten School", "short_name": "K.G. School", "description": "Principal: Ms. Lata P. Jagdeesh http://www.iitb.ac.in/facilities/kgschool School Office: +912225768991 In Charge's Office: +912225768913 Email: kgschool@iitb.ac.in In 1963 for the benefit of the children of the staff members staying in the campus of IIT Bombay, a School consisting of K.G. and primary classes commenced functioning from 10th June 1963. This School had one Nursery class, one Kindergarten class and one class each of I and II (4 classes). From a small number of 53 students at the start today the School has 250 children on roll, 7 teaching staff, 12 supporting staff and one office staff working with the School In Charge. ", "parent": "5ce808c0-1085-405c-bce3-c1830c72082d", "parent_relation": "Inside", "group_id": 7, "pixel_x": 3331, "pixel_y": 2865, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "9d7a43d5-7076-406c-8768-6e8bcffe6908", "fields": {"str_id": "2-type1", "time_of_creation": "2018-06-24T19:50:19.400Z", "name": "Type1 - 2", "short_name": "2-Type1", "description": "Type 1 Quarters Flat nos. 13 - 24", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4214, "pixel_y": 2586, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "9dc65ead-7371-4536-907e-44791b20cf23", "fields": {"str_id": "c13", "time_of_creation": "2018-06-24T19:50:19.177Z", "name": "Type C-13", "short_name": "C13", "description": "C-Type Quarters Flat nos. 79 - 84", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 2974, "pixel_y": 3070, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "9e17f3a8-1c28-4a2e-b728-edf7290db982", "fields": {"str_id": "1-h2", "time_of_creation": "2018-06-24T19:50:19.271Z", "name": "Type H2 1", "short_name": "1-H2", "description": "H2 Type Quarters Flat nos. 1 - 8", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 1257, "pixel_y": 2812, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "9e19a24e-8b90-46e4-b29c-fc5673b9121c", "fields": {"str_id": "google-forms", "time_of_creation": "2020-09-29T15:27:11.624Z", "name": "Google Forms", "short_name": "Google Forms", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "9e421dd1-3e51-4fd6-afc2-c6b13a322b6d", "fields": {"str_id": "7-h2", "time_of_creation": "2018-06-24T19:50:19.293Z", "name": "Type H2 - 7", "short_name": "7-H2", "description": "H2 Type Quarters Flat nos. 49 - 56", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 1211, "pixel_y": 2702, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "9e7b028d-e975-4cc7-9360-38085c448c34", "fields": {"str_id": "instagram-live---insynciitb", "time_of_creation": "2020-07-26T12:06:14.900Z", "name": "Instagram Live - @insync_iitb ", "short_name": "Instagram Live - @insync_iitb ", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "9e8a8fae-4993-4d6a-a2c6-6d99a02f479a", "fields": {"str_id": "h2", "time_of_creation": "2018-06-24T19:50:18.190Z", "name": "Hostel 02 The Wild Ones", "short_name": "H2", "description": "Hostel security:+912225762602 Hall Manager: +912225762702 G. Sec: Manohar Reddy Devarpalli +918796879949", "parent": null, "parent_relation": null, "group_id": 2, "pixel_x": 3672, "pixel_y": 1000, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "9eaba236-529a-40eb-90aa-c599e0bb30f3", "fields": {"str_id": "lh-301--lh-302", "time_of_creation": "2019-01-16T15:44:04.109Z", "name": "LH 301 , LH 302", "short_name": "LH 301 , LH 302", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "9f078117-e97f-4345-a4f2-6cfb1c378f9b", "fields": {"str_id": "2b-23", "time_of_creation": "2018-06-24T19:50:18.997Z", "name": "Type 2B 23", "short_name": "2B 23", "description": "2B-Type Quarters, Flat nos 165 - 192", "parent": null, "parent_relation": null, "group_id": 3, "pixel_x": 4365, "pixel_y": 1180, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "9f4f3d3f-d159-45b5-a9c8-a27f2e2e1c0a", "fields": {"str_id": "lt-pcsa", "time_of_creation": "2018-06-24T19:50:18.328Z", "name": "PC Saxena Auditorium / Lecture Theatre", "short_name": "LT PCSA", "description": "022 2576 4999", "parent": null, "parent_relation": null, "group_id": 4, "pixel_x": 3648, "pixel_y": 1790, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "9fff223e-89e4-4eb3-944f-2b9dac894ebe", "fields": {"str_id": "c17", "time_of_creation": "2018-06-24T19:50:19.192Z", "name": "Type C-17", "short_name": "C17", "description": "C-Type Quarters Flat nos. 103 - 108", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 3453, "pixel_y": 2987, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "a08be164-f9b6-42d8-b582-74281416eac8", "fields": {"str_id": "lt-106", "time_of_creation": "2018-06-24T19:50:18.720Z", "name": "LT 106", "short_name": "LT 106", "description": "", "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", "parent_relation": "First floor", "group_id": 4, "pixel_x": 3570, "pixel_y": 2152, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "a0aa7145-0efa-45ce-9e2b-c6e57fac4942", "fields": {"str_id": "cl-112-old-cl-118-creativity-hall-chemical-engineering-department", "time_of_creation": "2020-01-30T12:45:41.862Z", "name": "CL 112 (Old CL 118-Creativity Hall), Chemical Engineering Department", "short_name": "CL 112 (Old CL 118-Creativity Hall), Chemical Engineering Department", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "a0ac9dda-b31f-4bd2-964b-5b4a5797c9e7", "fields": {"str_id": "lhc", "time_of_creation": "2019-01-11T17:12:46.410Z", "name": "LHC", "short_name": "LHC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "a0d57b10-28fe-4288-9f04-e42f38b8cc48", "fields": {"str_id": "google-meet", "time_of_creation": "2020-07-19T10:11:35.159Z", "name": "Google Meet", "short_name": "Google Meet", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "a10e49a4-09fa-48f2-8578-716f860d12f6", "fields": {"str_id": "h5-football-field", "time_of_creation": "2018-11-02T13:28:35.528Z", "name": "H5 Football Field", "short_name": "H5 Football Field", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "a1232173-393b-47af-a8d7-f94b27143542", "fields": {"str_id": "2b-11", "time_of_creation": "2018-06-24T19:50:18.943Z", "name": "Type 2B 11", "short_name": "2B 11", "description": "2B-Type Quarters, Flat nos 61 - 66", "parent": null, "parent_relation": null, "group_id": 3, "pixel_x": 808, "pixel_y": 2612, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "a125b4ae-609f-4c36-a3e7-332df6182bc4", "fields": {"str_id": "sac-conference-room", "time_of_creation": "2020-01-28T15:32:38.862Z", "name": "SAC conference room", "short_name": "SAC conference room", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "a1370540-fc28-43b9-a415-4e94b9719474", "fields": {"str_id": "2b-2", "time_of_creation": "2018-06-24T19:50:18.914Z", "name": "Type 2B 2", "short_name": "2B 2", "description": "2B-Type Quarters, Flat nos 7 - 12", "parent": null, "parent_relation": null, "group_id": 3, "pixel_x": 4381, "pixel_y": 2311, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "a2247c54-e8dd-405e-8ad3-1454f325e528", "fields": {"str_id": "21-h2", "time_of_creation": "2018-06-24T19:50:19.345Z", "name": "Type H2 - 21", "short_name": "21-H2", "description": "H2 Type Quarters Flat nos. 161 - 168", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4304, "pixel_y": 1260, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "a280088b-fae2-4384-be64-399d924a4514", "fields": {"str_id": "lh-301", "time_of_creation": "2018-06-24T19:50:18.808Z", "name": "LH 301", "short_name": "LH 301", "description": "", "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", "parent_relation": "Third floor", "group_id": 4, "pixel_x": 3570, "pixel_y": 2152, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "a2a92db7-8485-43ab-ab1b-e84d1a573eb9", "fields": {"str_id": "httpstinyurlcomcsec-reveng", "time_of_creation": "2021-10-23T09:27:04.086Z", "name": "https://tinyurl.com/csec-reveng", "short_name": "https://tinyurl.com/csec-reveng", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "a2fb1bdc-3df2-4e88-af3a-2a5a8ccc6236", "fields": {"str_id": "phy-lab-1-yr", "time_of_creation": "2018-06-24T19:50:18.563Z", "name": "Physics Lab (Ist Years)", "short_name": "Phy Lab (1 Yr)", "description": "Comes under Physics department", "parent": null, "parent_relation": "", "group_id": 12, "pixel_x": 4585, "pixel_y": 1540, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "a30aaf64-48a0-4ee5-b973-c9f8001bad57", "fields": {"str_id": "hospital", "time_of_creation": "2018-06-24T19:50:18.149Z", "name": "Hospital", "short_name": "Hospital", "description": "Hospital Tel: +912225767051, Ambulance Tel: +912225761101", "parent": null, "parent_relation": null, "group_id": 9, "pixel_x": 3018, "pixel_y": 1917, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "a3c684e3-5581-4830-ad02-27053bf89d59", "fields": {"str_id": "cisco-webex", "time_of_creation": "2020-08-04T09:08:36.543Z", "name": "Cisco Webex", "short_name": "Cisco Webex", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "a40e2585-3aa6-4448-ad0b-a4faa31adb20", "fields": {"str_id": "badminton-court--opposite-to-hostel-2", "time_of_creation": "2019-06-17T10:06:44.421Z", "name": "Badminton Court ( opposite to hostel 2)", "short_name": "Badminton Court ( opposite to hostel 2)", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "a498414e-d89e-4462-8b79-5bc10a91e96e", "fields": {"str_id": "itc-room-aka-stab-room-old-sac", "time_of_creation": "2019-01-11T12:17:02.971Z", "name": "ITC Room (aka STAB room), Old SAC", "short_name": "ITC Room (aka STAB room), Old SAC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "a5306738-dfc3-4ba1-846e-2d337aa9905a", "fields": {"str_id": "zoom-meetings", "time_of_creation": "2020-10-15T13:33:08.574Z", "name": "Zoom Meetings", "short_name": "Zoom Meetings", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "a5bd85a4-a281-44cb-925f-49a50f8a7070", "fields": {"str_id": "h13", "time_of_creation": "2018-06-24T19:50:18.175Z", "name": "Hostel 13 House of Titans", "short_name": "H13", "description": "Hostel security: +912225762613 Hall Manager: +912225762713 G. Sec: Raj Kumar Yadav +919769484219", "parent": null, "parent_relation": "", "group_id": 2, "pixel_x": 1918, "pixel_y": 745, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "a5d23588-38aa-42ad-b8a8-686b18707b9b", "fields": {"str_id": "httpseventwebinarjamcomchannelvsm", "time_of_creation": "2020-08-10T11:23:29.043Z", "name": "https://event.webinarjam.com/channel/vsm", "short_name": "https://event.webinarjam.com/channel/vsm", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "a5ee8c37-d016-4f77-b404-facb476001cb", "fields": {"str_id": "httpsus02webzoomusj89823207326pwdr1ridmh1nxavqxpzn3fycznit2hvdz09", "time_of_creation": "2020-12-25T15:46:06.422Z", "name": "https://us02web.zoom.us/j/89823207326?pwd=R1RIdmh1NXAvQXpZN3FYczNiT2hvdz09", "short_name": "https://us02web.zoom.us/j/89823207326?pwd=R1RIdmh1NXAvQXpZN3FYczNiT2hvdz09", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "a5f7a4ff-abd0-43a5-972a-05904a82e470", "fields": {"str_id": "casde", "time_of_creation": "2018-06-24T19:50:18.455Z", "name": "Centre for Aerospace Systems Design and Engineering", "short_name": "CASDE", "description": "http://www.casde.iitb.ac.in/aboutus Tel: +912225767840", "parent": "cd0dc47f-5286-45cd-a17d-d1867df08f69", "parent_relation": "Inside", "group_id": 1, "pixel_x": 4153, "pixel_y": 2249, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "a64aee78-8aa0-4af0-976b-e22c0fec74d6", "fields": {"str_id": "room-no-21-vmcc", "time_of_creation": "2019-03-30T11:03:44.329Z", "name": "Room No 21, VMCC", "short_name": "Room No 21, VMCC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "a68e2e07-bec6-4664-961f-bf412cb0c6b9", "fields": {"str_id": "central-library", "time_of_creation": "2018-06-24T19:50:18.083Z", "name": "Central Library", "short_name": "Central Library", "description": "http://www.library.iitb.ac.in\n+912225768921\n\nLibrary Working Hours:\nMonday through Friday: 0900 - 2300 hrs \nMonday through Friday: 0900 - 0100 hrs (during examination)\nHolidays: 1000 - 1700 hrs\n\nCirculation Hours:\nMonday through Friday 0900-2000 hrs\nHolidays: 1100-1300 hrs\n\nSelf Issue / self Check out, any time till library is open. Study room books issued for overnight, one hour before closing of the library on all days", "parent": null, "parent_relation": "", "group_id": 1, "pixel_x": 3820, "pixel_y": 1455, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "a75c2a8d-b7c0-43ce-b324-72091642338f", "fields": {"str_id": "30-january-2021-11-am-online", "time_of_creation": "2021-01-27T02:35:20.708Z", "name": "30 January 2021, 11 am Online ", "short_name": "30 January 2021, 11 am Online ", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "a764ea8e-2d6b-4cdc-9641-7a4fae64b1b6", "fields": {"str_id": "webinar-jam", "time_of_creation": "2020-11-29T08:22:54.902Z", "name": "Webinar jam", "short_name": "Webinar jam", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "a8283e37-983e-4214-b0e7-80900504b3a3", "fields": {"str_id": "prints", "time_of_creation": "2018-06-24T19:50:18.635Z", "name": "Printing and photocopying H11", "short_name": "Prints", "description": "", "parent": "598d1ab6-cc6d-4409-8363-f0e9a1fc81c6", "parent_relation": "Inside", "group_id": 11, "pixel_x": 2987, "pixel_y": 1368, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "a8d6f1b1-aa19-4f9d-adc0-f34ac7b7443e", "fields": {"str_id": "h6", "time_of_creation": "2018-06-24T19:50:18.205Z", "name": "Hostel 06 Vikings", "short_name": "H6", "description": "Hostel security: +912225762606 Hall Manager:+912225762706 G. Sec: Anil Reddy +919022623186", "parent": null, "parent_relation": null, "group_id": 2, "pixel_x": 2546, "pixel_y": 769, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "a8e0dbe5-79dd-44c6-a16f-807c21befd73", "fields": {"str_id": "hostel-8---tv-room", "time_of_creation": "2018-09-27T19:28:25.235Z", "name": "Hostel 8 - TV Room", "short_name": "Hostel 8 - TV Room", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "a90f8bef-e300-47eb-b26f-35bf8cb302df", "fields": {"str_id": "press", "time_of_creation": "2018-06-24T19:50:19.547Z", "name": "Proposed Press ", "short_name": "Press", "description": "", "parent": "e6eb8827-5107-4536-ab97-d7e367f3955f", "parent_relation": "inside", "group_id": 9, "pixel_x": 4451, "pixel_y": 2173, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "a9519692-c611-4c58-85b1-3a1713fd6264", "fields": {"str_id": "10-h1", "time_of_creation": "2018-06-24T19:50:19.247Z", "name": "Type H1 - 10", "short_name": "10-H1", "description": "H1 Type Quarters Flat nos. 109 - 120", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 703, "pixel_y": 2275, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "a985dda9-4c63-4a44-bda3-4253613e35c4", "fields": {"str_id": "b-24-nilgiri", "time_of_creation": "2018-06-24T19:50:18.305Z", "name": "B 24 Nilgiri", "short_name": "B 24 Nilgiri", "description": "Flat nos. 268-326 ", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 3318, "pixel_y": 2324, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "a9bd0a1e-0e53-4a2c-8b1d-925e43480f7e", "fields": {"str_id": "httpsyoutubeldpjvg18j6s", "time_of_creation": "2020-09-08T13:32:56.306Z", "name": "https://youtu.be/LdPJvG18j6s", "short_name": "https://youtu.be/LdPJvG18j6s", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "aa0ea9a0-8324-44c1-8454-bcbdcc5bcfb8", "fields": {"str_id": "cl-237-computational-lab-chemical-department", "time_of_creation": "2019-09-28T11:42:26.851Z", "name": "CL 237 Computational Lab, Chemical Department", "short_name": "CL 237 Computational Lab, Chemical Department", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "aa4fa9f4-40fa-4d99-bba8-bd985d11f67e", "fields": {"str_id": "mems", "time_of_creation": "2018-06-24T19:50:18.287Z", "name": "Metallurgical Engineering and Material Science Department", "short_name": "MEMS", "description": "http://www.met.iitb.ac.in\r\nTel: +912225767601 / +912225767602\r\n\r\nThe department offers academic programs for B. Tech, Dual degree (B Tech + M Tech), M. Tech and Ph. D. Dual degree specializations include Ceramics and Composites and Metallurgical Process Engineering. M Tech specializations include Materials Science, Steel Technology, Process Engineering and Corrosion Science.", "parent": null, "parent_relation": null, "group_id": 1, "pixel_x": 3631, "pixel_y": 2044, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "aa7a87c3-bcfc-4364-aa8b-86b8db299022", "fields": {"str_id": "vmcc-33", "time_of_creation": "2020-01-07T11:53:38.915Z", "name": "VMCC 33", "short_name": "VMCC 33", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "aad1d082-064b-4175-a59b-47f843ba5007", "fields": {"str_id": "board-games-room-new-sac", "time_of_creation": "2019-08-22T05:56:50.942Z", "name": "Board Games Room, New Sac", "short_name": "Board Games Room, New Sac", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "aaf55c39-1b2f-4a5c-9fb5-2da764bcc88f", "fields": {"str_id": "new-gymkhana-building-3rd-floor-opposite-hostel-11", "time_of_creation": "2018-07-30T12:51:57.471Z", "name": "New Gymkhana Building, 3rd Floor, Opposite Hostel 11", "short_name": "New Gymkhana Building, 3rd Floor, Opposite Hostel 11", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "acd9e87f-26c9-410f-bf4d-57c7367f87c5", "fields": {"str_id": "flexiloans-technologies-pvt-ltd-matunga-west-mumbai", "time_of_creation": "2018-08-29T17:33:33.245Z", "name": "FlexiLoans Technologies Pvt. Ltd., Matunga West, Mumbai", "short_name": "FlexiLoans Technologies Pvt. Ltd., Matunga West, Mumbai", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "ad376d38-f817-4224-99c3-15de288ece8d", "fields": {"str_id": "h15-16-gate", "time_of_creation": "2019-08-23T13:02:17.366Z", "name": "H15-16 Gate", "short_name": "H15-16 Gate", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "ad5cf6e1-69f3-4a1a-b4dd-99483c3610a8", "fields": {"str_id": "fc-kohli-auditorium-kresit-building", "time_of_creation": "2019-12-15T11:04:26.850Z", "name": "F.C Kohli Auditorium, KReSIT Building", "short_name": "F.C Kohli Auditorium, KReSIT Building", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "ad8f15b6-d946-4d20-958a-7cf2a4a59058", "fields": {"str_id": "httpszoomusj99677697540pwdr21bbknnt3vkvhp6ztloy3zpeks4ut09", "time_of_creation": "2021-06-30T10:31:10.898Z", "name": "https://zoom.us/j/99677697540?pwd=R21BbkNNT3VKVHp6ZTloY3Zpeks4UT09", "short_name": "https://zoom.us/j/99677697540?pwd=R21BbkNNT3VKVHp6ZTloY3Zpeks4UT09", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "ade90eb3-ce30-47ff-8f7f-285734d23017", "fields": {"str_id": "httpsiit-techambitinpan-iit-editorial-onboarding", "time_of_creation": "2020-10-18T16:49:19.542Z", "name": "https://iit-techambit.in/pan-iit-editorial-onboarding/", "short_name": "https://iit-techambit.in/pan-iit-editorial-onboarding/", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "adf317b3-7f62-479f-af07-3f0e512d3caa", "fields": {"str_id": "h15-and-h16-mess", "time_of_creation": "2018-07-26T18:27:22.055Z", "name": "H15 and H16 Mess", "short_name": "H15 and H16 Mess", "description": "", "parent": "12c0c3f6-8e0d-430f-accc-c876986cf622", "parent_relation": null, "group_id": 8, "pixel_x": 3599, "pixel_y": 1225, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "ae635b75-df27-4df0-a9b8-c933501e50ab", "fields": {"str_id": "ese", "time_of_creation": "2018-06-24T19:50:18.434Z", "name": "Energy Science and Engineering", "short_name": "ESE", "description": "http://www.ese.iitb.ac.in\nTel: +912225767890\n\nThe department offers academic programs in Dual degree (B Tech + M Tech), M Tech, M.Sc.-Ph.D and Ph.D. Research areas include Energy Efficiency and Conservation, Solar PV and Thermal, Battery and Storage Engineering, Hydrogen and Fuel Cells, Smart microgrids, Biomass and Bio-Fuels, Wind Energy, Nuclear", "parent": null, "parent_relation": null, "group_id": 1, "pixel_x": 4239, "pixel_y": 2028, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "aec4d748-d6a2-4c05-a6a2-b3964459d62c", "fields": {"str_id": "b13", "time_of_creation": "2018-06-24T19:50:19.115Z", "name": "Type B-13", "short_name": "B13", "description": "B-Type Quarters Flat nos. 51 - 54", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 2356, "pixel_y": 2478, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "aef07612-581c-4f05-9f6c-faf65a61eec4", "fields": {"str_id": "vmcc-lecture-hall-22", "time_of_creation": "2018-08-14T12:05:46.948Z", "name": "VMCC Lecture Hall-22", "short_name": "VMCC Lecture Hall-22", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "b006bf9a-58a9-4e3d-8886-e2b192bdb467", "fields": {"str_id": "discord", "time_of_creation": "2021-01-10T13:45:03.700Z", "name": "Discord", "short_name": "Discord", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "b0e83bb6-80dd-4e87-8b80-6ae8cf03d985", "fields": {"str_id": "instagraminsynciitb-and-facebook", "time_of_creation": "2020-12-08T10:17:38.433Z", "name": "Instagram(@insync_iitb) and Facebook", "short_name": "Instagram(@insync_iitb) and Facebook", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "b10f60bc-30a0-41f2-8928-0ddd0dede17b", "fields": {"str_id": "b2", "time_of_creation": "2018-06-24T19:50:19.075Z", "name": "Type B-2", "short_name": "B2", "description": "B-Type Quarters Flat nos. 7 - 10", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 2848, "pixel_y": 2685, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "b15f619e-d6c2-45af-b254-ffaa8c70844e", "fields": {"str_id": "4-h1", "time_of_creation": "2018-06-24T19:50:19.225Z", "name": "Type H1 - 4", "short_name": "4-H1", "description": "H1 Type Quarters Flat nos. 37 - 48", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 812, "pixel_y": 2560, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "b1e5aa36-eb00-440b-a254-d49711f93103", "fields": {"str_id": "dir-bunglw", "time_of_creation": "2018-06-24T19:50:18.110Z", "name": "A1 Director Bungalow", "short_name": "Dir. Bunglw.", "description": "", "parent": null, "parent_relation": null, "group_id": 3, "pixel_x": 2594, "pixel_y": 2495, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "b1e5b6a3-5bf6-4ac5-a48a-3f866b85dddb", "fields": {"str_id": "forms", "time_of_creation": "2021-08-08T13:57:54.222Z", "name": "Forms", "short_name": "Forms", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "b1f93a00-49ea-4a53-bfc9-dbaa30cd1d3c", "fields": {"str_id": "12-h2", "time_of_creation": "2018-06-24T19:50:19.312Z", "name": "Type H2 - 12", "short_name": "12-H2", "description": "H2 Type Quarters Flat nos. 89 - 96", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 960, "pixel_y": 2640, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "b236a1df-31be-4a81-8a1d-cf67b3a07223", "fields": {"str_id": "board-games-room-2nd-floor-new-gymkhana-building", "time_of_creation": "2019-01-14T15:05:02.401Z", "name": "Board games Room, 2nd floor, New Gymkhana Building", "short_name": "Board games Room, 2nd floor, New Gymkhana Building", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "b239dcc9-8d85-4555-9399-ab27d3276a54", "fields": {"str_id": "register-asap", "time_of_creation": "2020-09-18T15:19:18.176Z", "name": "REGISTER ASAP ", "short_name": "REGISTER ASAP ", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "b25ca3c2-bf35-4167-a4c5-3127cb5af7f1", "fields": {"str_id": "h8-lounge", "time_of_creation": "2019-01-27T08:40:53.158Z", "name": "H8 Lounge", "short_name": "H8 Lounge", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "b2b6e406-d148-4db2-aaf4-c2de718eec27", "fields": {"str_id": "screening-room-3rd-floor-new-sac-opposite-to-hostel-11", "time_of_creation": "2019-05-13T15:57:10.183Z", "name": "Screening Room, 3rd floor, New SAC, opposite to Hostel 11", "short_name": "Screening Room, 3rd floor, New SAC, opposite to Hostel 11", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "b4c43ce8-5cc5-40aa-83e8-6e8bd1ab2a88", "fields": {"str_id": "b1", "time_of_creation": "2018-06-24T19:50:19.071Z", "name": "Type B-1", "short_name": "B1", "description": "B-Type Quarters Flat nos. 1 - 6", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 2680, "pixel_y": 2368, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "b4e17da4-6aad-46c4-b799-3fe9de7a18a3", "fields": {"str_id": "b16", "time_of_creation": "2018-06-24T19:50:19.126Z", "name": "Type B-16", "short_name": "B16", "description": "B-Type Quarters Flat nos. 63 - 66", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 2085, "pixel_y": 2719, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "b4f2c8f6-3d50-4f22-813b-f2578cdf8b06", "fields": {"str_id": "facebook-live---culturalsiitb", "time_of_creation": "2020-11-05T11:46:42.120Z", "name": "Facebook Live - Culturals@iitb", "short_name": "Facebook Live - Culturals@iitb", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "b4f6367a-950a-4280-b8fe-ce00985f7db8", "fields": {"str_id": "csre-d", "time_of_creation": "2018-06-24T19:50:19.583Z", "name": "CSRE D", "short_name": "CSRE D", "description": "CSRE Quarters D1, D2, D3, D4, D5, D6, D7, D8, D9, D10, D11, D12", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4302, "pixel_y": 1171, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "b50583af-c835-4030-90c1-d16271e62217", "fields": {"str_id": "hcu", "time_of_creation": "2018-06-24T19:50:18.418Z", "name": "Hostel Coordinating Unit", "short_name": "HCU", "description": "Chairman Tel: +91222576 8901, OfficeTel: +91222576 8900", "parent": "0308d18d-03a2-40bb-8efd-b222b7f84001", "parent_relation": "Inside", "group_id": 1, "pixel_x": 3628, "pixel_y": 1640, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "b52ba7b4-277b-4207-ae6d-dd14f392dd8d", "fields": {"str_id": "multi-purpose-hall-3rd-floor-new-sac", "time_of_creation": "2019-03-18T12:36:16.136Z", "name": "Multi purpose Hall, 3rd floor, New SAC", "short_name": "Multi purpose Hall, 3rd floor, New SAC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "b565f4f8-0862-4d16-ba5b-6bc2f42e9933", "fields": {"str_id": "sustain--ts-online", "time_of_creation": "2020-10-26T09:29:59.339Z", "name": "Sustain- TS online", "short_name": "Sustain- TS online", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "b594b49b-3d07-4847-a6c2-4702122b8e53", "fields": {"str_id": "your-homes", "time_of_creation": "2020-05-21T09:24:46.154Z", "name": "Your Homes", "short_name": "Your Homes", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "b59f3e02-09ac-4f7c-94d4-39332f9e2196", "fields": {"str_id": "paspoli-gate", "time_of_creation": "2018-06-24T19:50:19.513Z", "name": "Paspoli Gate no. 4 ", "short_name": "Paspoli Gate", "description": "This gate is not used regularly", "parent": null, "parent_relation": "", "group_id": 10, "pixel_x": 2247, "pixel_y": 196, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "b5d88d5d-20c2-4adf-89bc-dda50ded092f", "fields": {"str_id": "hostel-11", "time_of_creation": "2020-03-04T11:00:09.209Z", "name": "Hostel 11", "short_name": "Hostel 11", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "b60f8967-aeb9-4cb2-8781-2658556661d5", "fields": {"str_id": "lt-102", "time_of_creation": "2018-06-24T19:50:18.705Z", "name": "LT 102", "short_name": "LT 102", "description": "", "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", "parent_relation": "First floor", "group_id": 4, "pixel_x": 3570, "pixel_y": 2152, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "b65f77a6-df7b-4034-ade1-ecc360e93a6a", "fields": {"str_id": "elec-maint", "time_of_creation": "2018-06-24T19:50:18.134Z", "name": "Electrical Maintenence", "short_name": "Elec Maint", "description": "Tel: +912225767971/ +912225764077", "parent": null, "parent_relation": "", "group_id": 1, "pixel_x": 4544, "pixel_y": 1830, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "b6b7c7dd-9093-4452-b296-8128517a2298", "fields": {"str_id": "room-21-vmcc", "time_of_creation": "2019-03-10T14:09:30.007Z", "name": "Room 21, VMCC", "short_name": "Room 21, VMCC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "b6e1cef3-704f-4c8c-bd9a-44294c9920ba", "fields": {"str_id": "new-ese", "time_of_creation": "2019-02-05T08:03:01.452Z", "name": "Energy Science and Engineering (New Building)", "short_name": "New ESE", "description": "http://www.ese.iitb.ac.in\r\nTel: +912225767890\r\n\r\nThe department offers academic programs in Dual degree (B Tech + M Tech), M Tech, M.Sc.-Ph.D and Ph.D. Research areas include Energy Efficiency and Conservation, Solar PV and Thermal, Battery and Storage Engineering, Hydrogen and Fuel Cells, Smart microgrids, Biomass and Bio-Fuels, Wind Energy, Nuclear", "parent": "866dde4e-4667-446f-969e-ee4035b766a5", "parent_relation": "inside", "group_id": 1, "pixel_x": 3979, "pixel_y": 2467, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "b6f05fac-d82e-4815-905a-aa44216c6b98", "fields": {"str_id": "g-form", "time_of_creation": "2021-12-07T10:44:21.029Z", "name": "G-form", "short_name": "G-form", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "b74329f6-3816-4daf-a7a2-4bdc54282da0", "fields": {"str_id": "hostel-12-lounge", "time_of_creation": "2019-04-11T21:12:32.103Z", "name": "Hostel 12 Lounge", "short_name": "Hostel 12 Lounge", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "b7af300a-dddf-4bdf-b342-e0f7df0e4f6a", "fields": {"str_id": "16-h2", "time_of_creation": "2018-06-24T19:50:19.326Z", "name": "Type H2 - 16", "short_name": "16-H2", "description": "H2 Type Quarters Flat nos. 121 - 128", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 774, "pixel_y": 2412, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "b7ccef18-0330-4871-bb95-4bb523344287", "fields": {"str_id": "2b-13", "time_of_creation": "2018-06-24T19:50:18.950Z", "name": "Type 2B 13", "short_name": "2B 13", "description": "2B-Type Quarters, Flat nos 73 - 78", "parent": null, "parent_relation": null, "group_id": 3, "pixel_x": 691, "pixel_y": 2555, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "b7dd5c67-a1a3-4ce9-b336-da92ec966032", "fields": {"str_id": "vmcc-lecture-hall-22", "time_of_creation": "2018-10-26T05:17:25.302Z", "name": "VMCC Lecture Hall 22 ", "short_name": "VMCC Lecture Hall 22 ", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "b869092b-7705-41c4-8672-64b2271ade0a", "fields": {"str_id": "b18", "time_of_creation": "2018-06-24T19:50:19.134Z", "name": "Type B-18", "short_name": "B18", "description": "B-Type Quarters Flat nos. 73 - 74 and 73A - 74A ", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 3159, "pixel_y": 2368, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "b8b3c83f-84ba-46bf-8a36-ff228cb8d75a", "fields": {"str_id": "ms-teams---knwwwcx", "time_of_creation": "2021-01-19T18:38:29.528Z", "name": "MS Teams - KNWWWCX", "short_name": "MS Teams - KNWWWCX", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "b8db6df3-6f37-4dd5-9b19-133a05101518", "fields": {"str_id": "convocation-foyer", "time_of_creation": "2019-01-18T16:01:27.715Z", "name": "Convocation Foyer", "short_name": "Convocation Foyer", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "b8e05a24-1e3f-4926-b91e-b2e3cd3a2a55", "fields": {"str_id": "2b-3", "time_of_creation": "2018-06-24T19:50:18.918Z", "name": "Type 2B 3", "short_name": "2B 3", "description": "2B-Type Quarters, Flat nos 13 - 18", "parent": null, "parent_relation": null, "group_id": 3, "pixel_x": 4331, "pixel_y": 2388, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "b975408c-933c-4ffa-9b2d-27850edfe195", "fields": {"str_id": "b5", "time_of_creation": "2018-06-24T19:50:19.086Z", "name": "Type B-5", "short_name": "B5", "description": "B-Type Quarters Flat nos. 19 - 22", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 2687, "pixel_y": 3079, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "b980d0b5-f88b-4315-9500-ac3228cee585", "fields": {"str_id": "avenues-sjmsom-iit-bombay", "time_of_creation": "2019-10-16T19:25:11.059Z", "name": "Avenues, SJMSOM, IIT Bombay ", "short_name": "Avenues, SJMSOM, IIT Bombay ", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "b98a3030-ea72-486c-b94d-28120eb39a7e", "fields": {"str_id": "hostel-15-16-mess", "time_of_creation": "2019-07-25T07:32:47.571Z", "name": "Hostel 15 &16 mess", "short_name": "Hostel 15 &16 mess", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "b98eea0b-f1b6-442d-8c84-a546f7e977d0", "fields": {"str_id": "lc-101", "time_of_creation": "2019-01-11T17:31:09.195Z", "name": " LC 101", "short_name": " LC 101", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "b9eac8fe-ea56-48d4-b466-3651a45875a0", "fields": {"str_id": "a15", "time_of_creation": "2018-06-24T19:50:19.053Z", "name": "Bungalow A15 ", "short_name": "A15", "description": "A-Type Bungalow", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4017, "pixel_y": 1243, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "ba9872e9-7438-4ad9-81bb-16261d2d60c7", "fields": {"str_id": "h5-mess", "time_of_creation": "2019-09-27T19:44:54.163Z", "name": "H5 Mess", "short_name": "H5 Mess", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "bb09ec9c-e49e-4cab-853b-cf7022fd83fe", "fields": {"str_id": "powai-lake", "time_of_creation": "2019-06-01T16:18:02.277Z", "name": "Powai Lake", "short_name": "Powai Lake", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "bba75c4c-0ad7-4d4b-bcdd-a3d1c9d1ea3e", "fields": {"str_id": "heat-trans-lab", "time_of_creation": "2018-06-24T19:50:18.500Z", "name": "Heat Transfer and Thermodynamic Lab", "short_name": "Heat Trans Lab", "description": "Comes under Mechanical Engineering Department +912225764533", "parent": null, "parent_relation": "", "group_id": 12, "pixel_x": 4390, "pixel_y": 1550, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "bbd5ca5e-e1e1-4d28-a862-02edd1ccef22", "fields": {"str_id": "fuel-cell-re-fac", "time_of_creation": "2018-06-24T19:50:18.482Z", "name": "Fuel Cell Research Facility", "short_name": "Fuel Cell Re. Fac.", "description": "Comes under Energy Systems Engineering Department http://www.ese.iitb.ac.in +912225764897", "parent": "571b762e-b756-4def-a968-ee114f28964b", "parent_relation": "Inside", "group_id": 1, "pixel_x": 4525, "pixel_y": 1680, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "bc319d21-2852-4d4a-9dd5-e4c8cd4ce9f7", "fields": {"str_id": "theater-room-sac", "time_of_creation": "2019-10-11T15:59:15.160Z", "name": "Theater room, SAC", "short_name": "Theater room, SAC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "bc594c03-f74e-4b42-8fe6-9614ac7a6e95", "fields": {"str_id": "aq-corro-lab", "time_of_creation": "2018-06-24T19:50:18.855Z", "name": "Aqueous Corrosion Lab", "short_name": "Aq Corro Lab", "description": "Tel: +912225764607", "parent": "aa4fa9f4-40fa-4d99-bba8-bd985d11f67e", "parent_relation": "Inside", "group_id": 12, "pixel_x": 3631, "pixel_y": 2044, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "bc5a6f5d-2def-4791-953c-103333802548", "fields": {"str_id": "hall-no-32-vmcc", "time_of_creation": "2018-10-23T11:07:08.017Z", "name": "Hall No. 32, VMCC", "short_name": "Hall No. 32, VMCC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "bc78928a-2e85-41a2-a40d-93056d951791", "fields": {"str_id": "cl-118-chemical-department", "time_of_creation": "2019-02-12T18:49:29.655Z", "name": "CL-118, CHEMICAL DEPARTMENT", "short_name": "CL-118, CHEMICAL DEPARTMENT", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "bc8ec523-410a-49dc-bb80-ec8c335688bf", "fields": {"str_id": "h4-security-desk", "time_of_creation": "2018-10-24T19:54:12.539Z", "name": "H4 Security Desk", "short_name": "H4 Security Desk", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "bd1fb0c2-8e89-47fe-981c-5556fbbab6fb", "fields": {"str_id": "old-sac", "time_of_creation": "2018-08-26T08:40:20.065Z", "name": "Old SAC", "short_name": "Old SAC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "bd2d4d75-7561-4b2d-b1d7-0dd6294c2015", "fields": {"str_id": "lt-001", "time_of_creation": "2018-06-24T19:50:18.683Z", "name": "LT 001", "short_name": "LT 001", "description": "", "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", "parent_relation": "Ground floor", "group_id": 4, "pixel_x": 3570, "pixel_y": 2152, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "bd3c5abd-5845-4934-873e-b6f6f27d223e", "fields": {"str_id": "google-meet---httpsmeetgooglecomrbu-qdaq-bvt", "time_of_creation": "2020-09-25T16:31:51.669Z", "name": "Google Meet - https://meet.google.com/rbu-qdaq-bvt", "short_name": "Google Meet - https://meet.google.com/rbu-qdaq-bvt", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "bd54d157-c3a1-43a1-b05d-e724ddc76f1e", "fields": {"str_id": "sustain--team-shunya-online", "time_of_creation": "2020-10-26T05:49:40.681Z", "name": "Sustain- Team Shunya Online", "short_name": "Sustain- Team Shunya Online", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "bd67f0af-b039-44ae-a86e-0d9480d3fe90", "fields": {"str_id": "ncpa-theatre", "time_of_creation": "2018-06-24T22:02:28.756Z", "name": "NCPA Theatre", "short_name": "NCPA Theatre", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "bddeb9d2-1c06-4eac-a2e9-d2ebac2207b1", "fields": {"str_id": "ug-lab--s2-bay", "time_of_creation": "2018-06-24T19:50:18.627Z", "name": "UG Lab / S2 Bay", "short_name": "UG Lab / S2 Bay", "description": "Comes under Chemical Engineering Department +912225764207", "parent": "c3545b3d-e33d-4c14-b04d-c369146391ec", "parent_relation": "", "group_id": 12, "pixel_x": 4410, "pixel_y": 1740, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "bdecb6e1-9cd6-4fac-82bd-bb7212fa4fc4", "fields": {"str_id": "cdeep", "time_of_creation": "2018-06-24T19:50:18.448Z", "name": "Centre for Distance Engineering Education Programme", "short_name": "CDEEP", "description": "http://www.cdeep.iitb.ac.in Tel: +912225764820/4812", "parent": "8fcf8049-5a13-4e60-b5b1-993a4a554526", "parent_relation": "Ground floor", "group_id": 1, "pixel_x": 3928, "pixel_y": 1496, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "be0c6f4e-b1d7-47dd-9e72-de3e720a1c29", "fields": {"str_id": "music-room", "time_of_creation": "2018-06-24T19:50:19.505Z", "name": "Institute Music Room", "short_name": "Music Room", "description": "", "parent": "1007b63e-4c44-485d-a4c8-c8d89c3603c6", "parent_relation": "Backside", "group_id": 9, "pixel_x": 3255, "pixel_y": 1711, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "be22dec9-07a1-45f0-b1d2-9920712f09ae", "fields": {"str_id": "coffee-shack", "time_of_creation": "2018-06-24T19:50:18.298Z", "name": "Nestle Cafe (Coffee Shack)", "short_name": "Coffee Shack", "description": "", "parent": null, "parent_relation": "", "group_id": 5, "pixel_x": 3492, "pixel_y": 1784, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "be8afcf1-c7f7-4d71-aaf5-0154081974dd", "fields": {"str_id": "lec-hall-3", "time_of_creation": "2018-06-24T19:50:18.261Z", "name": "Lecture Hall Complex - 3", "short_name": "Lec Hall 3", "description": "", "parent": null, "parent_relation": null, "group_id": 4, "pixel_x": 3779, "pixel_y": 2220, "lat": "19.130780", "lng": "72.917487", "reusable": true}}, {"model": "locations.location", "pk": "beb923e6-ecea-4cd9-915f-753fbf66a579", "fields": {"str_id": "sustain-ts-online", "time_of_creation": "2020-10-26T12:59:18.885Z", "name": "Sustain-TS online", "short_name": "Sustain-TS online", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "bedaac81-e6fe-40d3-8a51-4839ad83515b", "fields": {"str_id": "prints", "time_of_creation": "2018-06-24T19:50:18.639Z", "name": "Printing and photocopying H8", "short_name": "Prints", "description": "", "parent": "0e2c2a32-5356-48d8-94ef-b06bff458064", "parent_relation": "Inside", "group_id": 11, "pixel_x": 2834, "pixel_y": 1257, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "bf203d00-279e-4683-b5ba-16b14c520622", "fields": {"str_id": "film-room-sac", "time_of_creation": "2018-09-19T14:47:36.253Z", "name": "Film Room, SAC", "short_name": "Film Room, SAC", "description": "", "parent": "36392e9a-cec2-47a7-ba8d-6053f4c46b7a", "parent_relation": "Inside", "group_id": 8, "pixel_x": 3599, "pixel_y": 1225, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "c02d0f36-cbb2-4f66-b7e2-b2517a095e52", "fields": {"str_id": "lch", "time_of_creation": "2020-01-12T06:07:36.819Z", "name": "LCH", "short_name": "LCH", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "c14459e4-d6e7-4297-8ef3-39f00d8bb46c", "fields": {"str_id": "ctara", "time_of_creation": "2018-06-24T19:50:18.444Z", "name": "Centre for Technology Alternatives for Rural Areas", "short_name": "CTARA", "description": "http://www.ctara.iitb.ac.in Tel: +912225767870 Offers M. Tech, Ph D and TDSL (Minor for UG). Research areas include agriculture and food, appropriate technology, drinking water, environment, energy and health", "parent": "42422033-0fb0-4a62-aa55-133f1691997d", "parent_relation": "Inside", "group_id": 1, "pixel_x": 4002, "pixel_y": 1545, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "c156035c-c217-4a56-a329-c1ce7c65b239", "fields": {"str_id": "gulmohar-restaurant", "time_of_creation": "2018-06-24T19:50:18.145Z", "name": "Gulmohar Restaurant", "short_name": "Gulmohar Restaurant", "description": "Tel: +912225762783 / Tel: +912225762786", "parent": "5d7d2bba-e553-4733-9515-c991ff9e0f37", "parent_relation": "Second floor", "group_id": 5, "pixel_x": 2989, "pixel_y": 2154, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "c1582589-e08e-47d1-b343-abfed9f1889b", "fields": {"str_id": "ctr-20", "time_of_creation": "2018-06-24T19:50:19.208Z", "name": "CTR 20", "short_name": "CTR 20", "description": "CTR Quarters Flat nos. 127 - 138", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 1749, "pixel_y": 2959, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "c186690e-6970-49a3-b944-d73aae2cb6bd", "fields": {"str_id": "crnts", "time_of_creation": "2018-06-24T19:50:18.103Z", "name": "NanoTech. & Science Research Centre", "short_name": "CRNTS", "description": "http://www.iitb.ac.in/~crnts Tel:+912225767691 CRNTS offers programs such as Dual degree programme-1 (B.Tech. Engg. Physics & M.Tech. Engg. Physics with specialization in Nanoscience. Admission Through: JEE. Offered by: Department of Physics. Duration: 5 years) Dual degree programme-2 (M.Sc. Physics & M.Tech. in Materials Science with specialization in Nanoscience., Input : B.Sc. (Physics), Admission through: J.A.M. Jointly offered by Department of Physics & Department of Metallurgical Engg. & Materials Science) Ph.D ( Interdisciplinary program. Research Domains include Nanomaterials, Nanobiotechnology, Nanofluidics, Nanoelectronics, Nanomanufacturing, Nanosensors, Computational research in Nanosystems)", "parent": null, "parent_relation": "", "group_id": 1, "pixel_x": 4081, "pixel_y": 1344, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "c1aba77e-a844-44af-844b-eca83a357226", "fields": {"str_id": "area-51", "time_of_creation": "2019-02-24T16:49:25.451Z", "name": "Area 51", "short_name": "Area 51", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "c25129ab-97fd-47e6-b074-8fb2c7887e71", "fields": {"str_id": "youtube-live", "time_of_creation": "2020-10-31T06:08:47.764Z", "name": "YouTube live", "short_name": "YouTube live", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "c269ca35-15c0-47e0-beb4-adfb21f9f970", "fields": {"str_id": "httpszoomusj93348372344pwdzdlos2dtqlfir0i2ohzmswvfy0u0qt09", "time_of_creation": "2021-07-05T13:20:38.028Z", "name": "https://zoom.us/j/93348372344?pwd=ZDlOS2dtQlFIR0I2OHZMSWVFY0U0QT09", "short_name": "https://zoom.us/j/93348372344?pwd=ZDlOS2dtQlFIR0I2OHZMSWVFY0U0QT09", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "c2a8f379-1a40-4357-9015-423e3702483e", "fields": {"str_id": "chem-engg", "time_of_creation": "2018-06-24T19:50:18.130Z", "name": "Chemical Engineering Department", "short_name": "Chem Engg", "description": "http://www.che.iitb.ac.in\r\n+912225767201, +912225767202\r\n\r\nPrograms offered in B Tech, M Tech, Dual Degree (M Tech + Ph D) and Ph D. Research areas include Biological Systems Engineering, Energy & Environment, Materials Engineering, Process Systems Engineering, Reactor Engineering, and Transport Phenomena and Complex Fluids", "parent": null, "parent_relation": null, "group_id": 1, "pixel_x": 3788, "pixel_y": 2350, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "c2ac410a-5ebf-4b15-8eb1-5406d3495c74", "fields": {"str_id": "13--h1", "time_of_creation": "2018-06-24T19:50:19.259Z", "name": "Type H1 - 13", "short_name": "13- H1", "description": "H1 Type Quarters Flat nos. 152 - 168", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4786, "pixel_y": 1218, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "c2fa488e-a9b2-4175-aeef-84b0bfc982bc", "fields": {"str_id": "1--h1", "time_of_creation": "2018-06-24T19:50:19.212Z", "name": "Type H1 - 1", "short_name": "1- H1", "description": "H1 Type Quarters Flat nos. 1 - 12", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 866, "pixel_y": 2684, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "c32c861b-9407-44c0-a83c-2e47a4886598", "fields": {"str_id": "c18", "time_of_creation": "2018-06-24T19:50:19.196Z", "name": "Type C-18", "short_name": "C18", "description": "C-Type Quarters Flat nos. 109 - 114", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 3537, "pixel_y": 2963, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "c3545b3d-e33d-4c14-b04d-c369146391ec", "fields": {"str_id": "s2-bay", "time_of_creation": "2018-06-24T19:50:18.586Z", "name": "S2 Bay", "short_name": "S2 Bay", "description": "Tel:+912225764213", "parent": "431b487b-1db7-4cc0-ae63-af19ad96dca9", "parent_relation": "Near", "group_id": 1, "pixel_x": 4410, "pixel_y": 1740, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "c3581052-4ffb-4276-b3ea-c8933a58d062", "fields": {"str_id": "mobile", "time_of_creation": "2019-02-08T11:54:24.847Z", "name": "Mobile", "short_name": "Mobile", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "c3a14998-23cb-4cbe-a6fa-70accc7069a1", "fields": {"str_id": "som", "time_of_creation": "2018-06-24T19:50:18.363Z", "name": "School of Management", "short_name": "SOM", "description": "http://www.som.iitb.ac.in\nOffice - +912225767781\nPh. D. admissions - +912225767782\nM. Mgt. admissions - +912225768781 \n\nThe department offers academic programs in Master Of Management Programme - Full Time, Doctoral Programme in Management - PhD Degree, Management Development Programme - For Corporate Executives", "parent": null, "parent_relation": "", "group_id": 1, "pixel_x": 3505, "pixel_y": 1867, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "c4042869-13ef-40b2-9d77-ae39bee31d03", "fields": {"str_id": "gg-bldg", "time_of_creation": "2018-06-24T19:50:18.884Z", "name": "Girish Gaitonde Building", "short_name": "GG Bldg", "description": "Contact persons: Madhumati Shetty +912225767401 Vaishali Deshpande +912225767402 Santosh S. Kharat +912225767402 Tanvi D. Shelatkar +912225767402", "parent": null, "parent_relation": "", "group_id": 1, "pixel_x": 3668, "pixel_y": 1937, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "c443e517-6f5f-45c5-b1e4-0bea66ab7ed9", "fields": {"str_id": "h10", "time_of_creation": "2018-06-24T19:50:18.160Z", "name": "Hostel 10 Phoenix (Girls Hostel)", "short_name": "H10", "description": "Hostel security: +912225762610\nHall Manager: +912225762710\nG. Sec: Madhu Lekha +919769372532", "parent": null, "parent_relation": null, "group_id": 2, "pixel_x": 3005, "pixel_y": 2342, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "c46242a6-8ffa-4f14-8489-3a2a2773ebd9", "fields": {"str_id": "theatre-room", "time_of_creation": "2019-08-04T18:52:18.110Z", "name": "THEATRE ROOM", "short_name": "THEATRE ROOM", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "c46e695e-5553-465d-8802-96b9d1261f14", "fields": {"str_id": "11-h1", "time_of_creation": "2018-06-24T19:50:19.251Z", "name": "Type H1 - 11", "short_name": "11-H1", "description": "H1 Type Quarters Flat nos. 121 - 134", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 849, "pixel_y": 2249, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "c4987713-8aad-420b-b4a5-e98813c7d330", "fields": {"str_id": "b15", "time_of_creation": "2018-06-24T19:50:19.123Z", "name": "Type B-15", "short_name": "B15", "description": "B-Type Quarters Flat nos. 59 - 62", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 2192, "pixel_y": 2665, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "c4f435a1-d7a0-44a4-86c9-6f3e933a1e04", "fields": {"str_id": "2b-7", "time_of_creation": "2018-06-24T19:50:18.932Z", "name": "Type 2B 7", "short_name": "2B 7", "description": "2B-Type Quarters, Flat nos 37 - 42", "parent": null, "parent_relation": null, "group_id": 3, "pixel_x": 4296, "pixel_y": 2312, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "c4f4e5e3-f5fb-43f6-9825-52e92415b6c7", "fields": {"str_id": "h15-16-street", "time_of_creation": "2018-08-08T14:53:05.242Z", "name": "H15-16 Street", "short_name": "H15-16 Street", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "c4f78d67-ac0f-461b-a8e2-9b0319ba07a4", "fields": {"str_id": "httpsbitlyevalfi", "time_of_creation": "2020-07-17T09:21:58.907Z", "name": "https://bit.ly/evalfi", "short_name": "https://bit.ly/evalfi", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "c673927a-3e77-4e00-9165-849593fad848", "fields": {"str_id": "first-floor-conference-hall-civil-department", "time_of_creation": "2018-11-16T14:13:58.590Z", "name": "First floor Conference Hall, Civil Department", "short_name": "First floor Conference Hall, Civil Department", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "c77979b7-3ce4-473a-a43b-07e48430b33c", "fields": {"str_id": "team-shunya-online", "time_of_creation": "2020-09-17T06:56:17.738Z", "name": "Team Shunya Online", "short_name": "Team Shunya Online", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "c7d1e9f5-4c26-4d3c-b791-a175b939dcfa", "fields": {"str_id": "lt-203", "time_of_creation": "2018-06-24T19:50:18.731Z", "name": "LT 203", "short_name": "LT 203", "description": "", "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", "parent_relation": "Second floor", "group_id": 4, "pixel_x": 3570, "pixel_y": 2152, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "c80bf19d-1bcb-4521-87f2-044386b7eb81", "fields": {"str_id": "lc201", "time_of_creation": "2019-10-16T12:32:56.824Z", "name": "LC201", "short_name": "LC201", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "c82574af-fd46-4662-8bc4-aa823fdabaf8", "fields": {"str_id": "7-type1", "time_of_creation": "2018-06-24T19:50:19.414Z", "name": "Type1 - 7", "short_name": "7-Type1", "description": "Type 1 Quarters Flat nos. 73 - 84", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4600, "pixel_y": 1351, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "c83b0d4c-8193-472c-9424-af4e7692f5ce", "fields": {"str_id": "shakti", "time_of_creation": "2018-06-24T19:50:18.660Z", "name": "IDC Shakti", "short_name": "Shakti", "description": "Piping hot, home style food between 1 pm and 2:30 pm, weekdays only! Call Mr. Gaikwad to order a tiffin at +919833575881", "parent": "d467330f-a3a7-484b-8eca-b23815a0a3a7", "parent_relation": "Inside", "group_id": 5, "pixel_x": 4207, "pixel_y": 1732, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "c8d2acf1-3616-4a11-be5c-903a4219510e", "fields": {"str_id": "online-meet", "time_of_creation": "2021-10-02T09:51:35.545Z", "name": "Online meet", "short_name": "Online meet", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "c9104777-7b53-4e78-a7f0-43704f066497", "fields": {"str_id": "online", "time_of_creation": "2018-06-24T21:51:50.186Z", "name": "Online", "short_name": "Online", "description": "", "parent": null, "parent_relation": null, "group_id": null, "pixel_x": 0, "pixel_y": 0, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "c967e833-4c43-42ff-bd33-1ce2774db62e", "fields": {"str_id": "lt-005", "time_of_creation": "2018-06-24T19:50:18.694Z", "name": "LT 005", "short_name": "LT 005", "description": "", "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", "parent_relation": "Ground floor", "group_id": 4, "pixel_x": 3570, "pixel_y": 2152, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "c9d30a36-6a79-43ad-89a1-f348955bdcf7", "fields": {"str_id": "aravali", "time_of_creation": "2018-06-24T19:50:18.043Z", "name": "B 23 Aravali", "short_name": "Aravali", "description": "Flat nos. 207-267", "parent": null, "parent_relation": null, "group_id": 3, "pixel_x": 4415, "pixel_y": 936, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "ca18b41e-234c-476f-9c4d-c95994727389", "fields": {"str_id": "hybrid-mode", "time_of_creation": "2021-12-25T16:07:17.020Z", "name": "Hybrid Mode", "short_name": "Hybrid Mode", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "caefc809-3aed-4b51-beda-9ae2fe4f9dfd", "fields": {"str_id": "sac-library", "time_of_creation": "2018-09-24T22:09:57.992Z", "name": "SAC Library", "short_name": "SAC Library", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "cb002ce4-621b-46ac-ace8-1cf94229f725", "fields": {"str_id": "micro-fluidics-lab", "time_of_creation": "2018-06-24T19:50:18.536Z", "name": "Micro Fluidics Lab", "short_name": "Micro Fluidics Lab", "description": "", "parent": null, "parent_relation": "", "group_id": 12, "pixel_x": 4620, "pixel_y": 1783, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "cb4e638a-c39b-47ea-921d-1f533c19051d", "fields": {"str_id": "sameer", "time_of_creation": "2018-06-24T19:50:18.870Z", "name": "Society for Applied Microwave Electronics Engineering & Research", "short_name": "SAMEER ", "description": "http://www.sameer.gov.in Phone: +912225727100 Fax: +912225723254 SAMEER was set up as an autonomous R & D laboratory at Mumbai under the then Department of Electronics, Government of India with a broad mandate to undertake R & D work in the areas of Microwave Engineering and Electromagnetic Engineering Technology. It is an offshoot of the special microwave products unit (SMPU) set up in 1977 at the TATA INSTITUTE OF FUNDAMENTAL RESEARCH (TIFR), Mumbai. SAMEER, Mumbai was setup in 1984.", "parent": null, "parent_relation": "", "group_id": 1, "pixel_x": 4538, "pixel_y": 837, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "cc1c7851-a456-418e-81d0-a4ac595297b6", "fields": {"str_id": "squash-court", "time_of_creation": "2018-06-24T19:50:19.572Z", "name": "Squash Court", "short_name": "Squash Court", "description": "", "parent": null, "parent_relation": "", "group_id": 8, "pixel_x": 3115, "pixel_y": 1485, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "cc670ac3-a58f-4a2e-aaba-ee3d6ea9258b", "fields": {"str_id": "webex-events", "time_of_creation": "2020-07-30T06:15:34.170Z", "name": "WebEx Events", "short_name": "WebEx Events", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "cc810641-c50f-4fb2-92a9-5e093b2a4240", "fields": {"str_id": "from-home", "time_of_creation": "2021-01-17T14:54:56.537Z", "name": "From Home", "short_name": "From Home", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "ccc12ac3-b73e-40d1-8a2d-7c0e9e8c59d5", "fields": {"str_id": "h18", "time_of_creation": "2018-06-24T19:50:19.509Z", "name": "Hostel 18", "short_name": "H18", "description": "Multi storeyed student residential facility", "parent": null, "parent_relation": null, "group_id": 2, "pixel_x": 2897, "pixel_y": 727, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "ccd5c8e3-4e93-4816-a87e-416ee0d051d5", "fields": {"str_id": "indoor-badminton-courts", "time_of_creation": "2019-08-03T06:32:10.638Z", "name": "Indoor Badminton Courts", "short_name": "Indoor Badminton Courts", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "ccefdca7-e40e-4256-bddb-350f415283ac", "fields": {"str_id": "lakeside-jal-vihar", "time_of_creation": "2018-08-21T13:46:55.100Z", "name": "Lakeside, Jal Vihar", "short_name": "Lakeside, Jal Vihar", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "cd01eed0-b1dc-4921-aa3f-1b88081492b2", "fields": {"str_id": "h4", "time_of_creation": "2018-06-24T19:50:18.198Z", "name": "Hostel 04 MadHouse", "short_name": "H4", "description": "Hostel security: +912225762604 Hall Manager: +912225762704 G. Sec: Kumar Gaurav +919969800320", "parent": null, "parent_relation": null, "group_id": 2, "pixel_x": 3176, "pixel_y": 867, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "cd0dc47f-5286-45cd-a17d-d1867df08f69", "fields": {"str_id": "aero-engg", "time_of_creation": "2018-06-24T19:50:18.036Z", "name": "Aerospace Engineering Department", "short_name": "Aero engg", "description": "http://www.aero.iitb.ac.in\r\nPhone No.: +912225767101 / +912225767102\r\nFax No.: +91222572 2602.\r\nEmail: office@aero.iitb.ac.in \r\n\r\nThe department offers academic programs for B. Tech, M. Tech, Ph. D. Specialization are offered: Aerodynamics, Control and Guidance, Propulsion, Structures, and Systems Engineering", "parent": null, "parent_relation": null, "group_id": 1, "pixel_x": 4153, "pixel_y": 2249, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "cd35be33-81a8-481c-a5ac-507fb5dbcef2", "fields": {"str_id": "ncc-office", "time_of_creation": "2018-06-24T19:50:18.294Z", "name": "NCC Office", "short_name": "NCC Office", "description": "Tel: +912225768917", "parent": null, "parent_relation": "", "group_id": 9, "pixel_x": 3387, "pixel_y": 1421, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "cedfdafd-c5c3-4142-b6b2-63a8ac35e3bb", "fields": {"str_id": "h10-annx", "time_of_creation": "2018-06-24T19:50:18.156Z", "name": "Hostel 10 Annexe (Girls Hostel)", "short_name": "H10 Annx", "description": "Hostel security: +912225762610 Hall Manager: +912225762710 G. Sec: Madhu Lekha +919769372532", "parent": null, "parent_relation": "", "group_id": 2, "pixel_x": 2886, "pixel_y": 2452, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "cee94b99-0fc1-4920-9a40-85660d2ad2b7", "fields": {"str_id": "sbi-atm", "time_of_creation": "2018-06-24T19:50:18.054Z", "name": "ATM - State Bank near Tansa", "short_name": "SBI ATM", "description": "", "parent": "e57586cc-f018-47ef-bf69-9d34244be9f1", "parent_relation": "Near", "group_id": 6, "pixel_x": 3028, "pixel_y": 989, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "cf2f6dd3-4fa2-436b-8cf0-ca3bcdcdbd29", "fields": {"str_id": "22-h2", "time_of_creation": "2018-06-24T19:50:19.350Z", "name": "Type H2 - 22", "short_name": "22-H2", "description": "H2 Type Quarters Flat nos. 169 - 176", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4231, "pixel_y": 1259, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "cfd56b98-4785-44c7-8905-bb1e6544e743", "fields": {"str_id": "google-meets", "time_of_creation": "2020-09-04T12:12:41.669Z", "name": "Google Meets", "short_name": "Google Meets", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "d028d244-e087-4a98-a3a3-296e26ae5245", "fields": {"str_id": "h5", "time_of_creation": "2018-06-24T19:50:18.202Z", "name": "Hostel 05 Penthouse", "short_name": "H5", "description": "Hostel security: +912225762605 Hall Manager: +912225762705 G. Sec: Shashank Patidar +919820717487", "parent": null, "parent_relation": "", "group_id": 2, "pixel_x": 2820, "pixel_y": 970, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "d02d58b0-d504-43ef-a5d3-4d8436ed996d", "fields": {"str_id": "lt-301", "time_of_creation": "2018-06-24T19:50:18.745Z", "name": "LT 301", "short_name": "LT 301", "description": "", "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", "parent_relation": "Third floor", "group_id": 4, "pixel_x": 3570, "pixel_y": 2152, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "d2316bc8-881d-4b13-8afb-6c429dbe6995", "fields": {"str_id": "the-link-to-the-meeting-will-be-posted-before-the-event", "time_of_creation": "2020-05-05T09:22:15.687Z", "name": "The link to the meeting will be posted before the event", "short_name": "The link to the meeting will be posted before the event", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "d236696e-39bb-4a67-92d1-aaff0482c8ed", "fields": {"str_id": "facebook-page-of-ncc-iitb", "time_of_creation": "2020-07-06T07:12:40.287Z", "name": "Facebook page of NCC IITB", "short_name": "Facebook page of NCC IITB", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "d23888fb-cd7c-4b4f-a7b3-9ef8770f9d12", "fields": {"str_id": "httpszoomusj95729038877pwdulyxq1npswhjekrwrytsufcrsfhjdz09", "time_of_creation": "2020-07-09T04:17:35.583Z", "name": "https://zoom.us/j/95729038877?pwd=UlYxQ1NpSWhJekRwRytsUFcrSFhjdz09", "short_name": "https://zoom.us/j/95729038877?pwd=UlYxQ1NpSWhJekRwRytsUFcrSFhjdz09", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "d238d809-728f-4067-937c-8494fcd3383d", "fields": {"str_id": "room-350-2nd-floor-department-of-chemistry", "time_of_creation": "2019-01-31T04:11:03.312Z", "name": "Room 350, 2nd floor, Department of Chemistry", "short_name": "Room 350, 2nd floor, Department of Chemistry", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "d2bd40a4-e663-44e4-8039-bddb6441636f", "fields": {"str_id": "19-type1", "time_of_creation": "2018-06-24T19:50:19.456Z", "name": "Type1 - 19", "short_name": "19-Type1", "description": "Type 1 Quarters Flat nos. 225 - 259", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4340, "pixel_y": 815, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "d2fec675-44b9-48f5-a779-878d97640c95", "fields": {"str_id": "lt-003", "time_of_creation": "2018-06-24T19:50:19.590Z", "name": "LT 003", "short_name": "LT 003", "description": "", "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", "parent_relation": "Ground floor", "group_id": 4, "pixel_x": 3570, "pixel_y": 2152, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "d3244c33-3f5e-466b-8fac-fe540afa4530", "fields": {"str_id": "yoga-room-3rd-floor-new-sac-opposite-to-hostel-11", "time_of_creation": "2019-05-30T13:51:37.822Z", "name": "Yoga room, 3rd floor, New SAC, opposite to hostel 11", "short_name": "Yoga room, 3rd floor, New SAC, opposite to hostel 11", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "d39bab65-7802-49d6-b129-b5c325511dde", "fields": {"str_id": "2b-22", "time_of_creation": "2018-06-24T19:50:18.994Z", "name": "Type 2B 22", "short_name": "2B 22", "description": "2B-Type Quarters, Flat nos 141 - 164", "parent": null, "parent_relation": null, "group_id": 3, "pixel_x": 4761, "pixel_y": 1315, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "d42c795a-9171-4f98-b66a-446d5ee2b2e1", "fields": {"str_id": "convocation-hall-foyer", "time_of_creation": "2019-10-11T16:34:42.840Z", "name": "Convocation Hall Foyer", "short_name": "Convocation Hall Foyer", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "d467330f-a3a7-484b-8eca-b23815a0a3a7", "fields": {"str_id": "idc", "time_of_creation": "2018-06-24T19:50:18.223Z", "name": "Industrial Design Centre", "short_name": "IDC", "description": "http://www.idc.iitb.ac.in\n+91222576 7801\n\nThe department offers academic programs for M. Des and Ph. D. Sub-disciplines include Product Design, Industrial Design, Visual Communication, Animation, Interaction Design, Mobility and vehicle design", "parent": null, "parent_relation": "", "group_id": 1, "pixel_x": 4207, "pixel_y": 1732, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "d483545a-95ba-438d-a218-20a8ee2946a1", "fields": {"str_id": "combustion-lab", "time_of_creation": "2018-06-24T19:50:18.518Z", "name": "IC Engine and Combustion Lab", "short_name": "Combustion Lab", "description": "Comes under Mechanical Engineering Department +912225764586", "parent": "f5303dcd-b456-4147-a414-88a89815d826", "parent_relation": "Backside", "group_id": 12, "pixel_x": 4295, "pixel_y": 1570, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "d526aa95-3fb6-4770-8229-bf6ac50f8a68", "fields": {"str_id": "ananta", "time_of_creation": "2018-06-24T19:50:18.040Z", "name": "B 22 Ananta", "short_name": "Ananta", "description": "Flat nos. 147-206", "parent": null, "parent_relation": null, "group_id": 3, "pixel_x": 4709, "pixel_y": 865, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "d590e065-755e-41d8-b9ed-630feb4770f2", "fields": {"str_id": "a17", "time_of_creation": "2018-06-24T19:50:19.060Z", "name": "Bungalow A17 ", "short_name": "A17", "description": "A-Type Bungalow", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4155, "pixel_y": 1175, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "d66064b5-28c8-4684-9db3-c63e22b04410", "fields": {"str_id": "conference-room-01st-floor-kresit", "time_of_creation": "2018-11-27T07:34:53.319Z", "name": "Conference Room, 01st Floor, KReSIT", "short_name": "Conference Room, 01st Floor, KReSIT", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "d6937d50-0d67-46dc-8ec0-5a98def59be2", "fields": {"str_id": "badminton-court", "time_of_creation": "2018-06-24T19:50:18.061Z", "name": "Badminton Court", "short_name": "Badminton Court", "description": "", "parent": "dc4c5b70-1ab2-4d3d-9906-e61140ce7d51", "parent_relation": "Inside", "group_id": 8, "pixel_x": 3480, "pixel_y": 1081, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "d6a97579-ac84-4f59-baa8-a989295924b3", "fields": {"str_id": "vindya", "time_of_creation": "2018-06-24T19:50:18.896Z", "name": "C22, B wing, Vindya", "short_name": "Vindya", "description": "Hill side, Flat nos. 169 - 186", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4646, "pixel_y": 1110, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "d6bc5e7b-3390-43b9-b3c9-efb814f7f8b7", "fields": {"str_id": "room-no-109-new-csecc-building", "time_of_creation": "2019-02-07T12:38:30.424Z", "name": "Room No. 109, New CSE/CC Building ", "short_name": "Room No. 109, New CSE/CC Building ", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "d73053a0-7729-45af-ac3e-cf15c2a43409", "fields": {"str_id": "bkc", "time_of_creation": "2019-09-26T16:54:06.461Z", "name": "BKC", "short_name": "BKC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "d764cffc-d184-4707-a695-a6efb62d2b31", "fields": {"str_id": "oat", "time_of_creation": "2018-06-24T19:50:18.835Z", "name": "Open Air Theatre", "short_name": "OAT", "description": "Tel: +912225768968", "parent": "36392e9a-cec2-47a7-ba8d-6053f4c46b7a", "parent_relation": "Inside", "group_id": 8, "pixel_x": 3599, "pixel_y": 1225, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "d786b3c4-e8ee-4119-a2d8-c8d3b5387f2a", "fields": {"str_id": "a12", "time_of_creation": "2018-06-24T19:50:19.042Z", "name": "Bungalow A12 ", "short_name": "A12", "description": "A-Type Bungalow", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 2157, "pixel_y": 2855, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "d7a98325-4b30-4502-a099-3dfc6683bafd", "fields": {"str_id": "yoga-room-new-sac", "time_of_creation": "2018-12-04T04:19:41.962Z", "name": "Yoga Room, New SAC.", "short_name": "Yoga Room, New SAC.", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "d7b2176f-42bc-4523-8a35-6457134db7d2", "fields": {"str_id": "csre-a", "time_of_creation": "2018-06-24T19:50:19.199Z", "name": "CSRE A", "short_name": "CSRE A", "description": "CSRE Quarters C139, C140, C143. C144. C147, C148", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4283, "pixel_y": 1163, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "d7ec7b7b-5e2b-4fe6-879e-96aeb4ceba17", "fields": {"str_id": "27-h2", "time_of_creation": "2018-06-24T19:50:19.368Z", "name": "Type H2 - 28", "short_name": "27-H2", "description": "H2 Type Quarters Flat nos. 217 - 232", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4193, "pixel_y": 1295, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "d877428e-cf7d-411e-9210-4960b2f997ef", "fields": {"str_id": "hostel-10-terrace", "time_of_creation": "2020-02-28T06:35:55.091Z", "name": "Hostel 10 Terrace", "short_name": "Hostel 10 Terrace", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "d879656f-74fc-472d-84d8-adecf3de8182", "fields": {"str_id": "seminar-hall-civil-department", "time_of_creation": "2019-01-16T21:44:49.434Z", "name": "Seminar Hall, Civil Department ", "short_name": "Seminar Hall, Civil Department ", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "d8842021-716a-4fcd-b0b1-b7fbc36b3158", "fields": {"str_id": "iit-bombay", "time_of_creation": "2018-06-24T21:41:38.235Z", "name": "IIT Bombay", "short_name": "IIT Bombay", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "d9155381-e668-43ab-965d-80f4d626fef2", "fields": {"str_id": "h15", "time_of_creation": "2018-06-24T19:50:18.182Z", "name": "Hostel 15 Trident", "short_name": "H15", "description": "Hostel security: +912225762715 Hall Manager: G. Sec:", "parent": null, "parent_relation": null, "group_id": 2, "pixel_x": 4196, "pixel_y": 870, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "d940761e-4c7d-4d6d-b185-072abf22866b", "fields": {"str_id": "9-h2", "time_of_creation": "2018-06-24T19:50:19.301Z", "name": "Type H2 - 9", "short_name": "9-H2", "description": "H2 Type Quarters Flat nos. 65 - 72", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 1145, "pixel_y": 2682, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "d9b044c4-50e3-4287-a868-16bdde8e7bac", "fields": {"str_id": "25techfestorg", "time_of_creation": "2021-12-11T14:15:33.652Z", "name": "25.techfest.org", "short_name": "25.techfest.org", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "d9fe75c9-d31b-4847-9dc1-27ece2dc4d16", "fields": {"str_id": "discord-server", "time_of_creation": "2022-02-11T10:59:05.650Z", "name": "Discord Server", "short_name": "Discord Server", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "da0b901b-e6f6-447e-ae5b-2f9b518778df", "fields": {"str_id": "-", "time_of_creation": "2022-02-17T15:23:54.471Z", "name": "-", "short_name": "-", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "db017a69-fb2c-4a5f-be1e-7b53218e2d83", "fields": {"str_id": "room-cl149-ground-floor-department-of-chemistry", "time_of_creation": "2019-02-13T18:26:45.621Z", "name": "Room CL149, Ground Floor, Department of Chemistry", "short_name": "Room CL149, Ground Floor, Department of Chemistry", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "db0c6848-36fe-427d-9be6-afad234f4b64", "fields": {"str_id": "b7", "time_of_creation": "2018-06-24T19:50:19.093Z", "name": "Type B-7", "short_name": "B7", "description": "B-Type Quarters Flat nos. 27 - 30", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 2529, "pixel_y": 3009, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "db6f65c0-e0df-4175-bfc3-deba8dcb71eb", "fields": {"str_id": "tulsi-b", "time_of_creation": "2018-06-24T19:50:18.903Z", "name": "Tulsi B", "short_name": "Tulsi B", "description": "PS Quarters", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4573, "pixel_y": 987, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "dbcfb1df-c87c-4c13-a0b2-d9b96751a5b3", "fields": {"str_id": "idp-corro-sci--engg", "time_of_creation": "2018-06-24T19:50:18.848Z", "name": "Inter-disciplinary Programme in Corrosion Science & Engineering", "short_name": "IDP Corro Sci & Engg", "description": "http://www.iitb.ac.in/~corrsci Office inside Metallurgical Engineering and Material Science building Tel: +912225767601 / +912225767602 Ph. D and M.Tech offered in this programme. Research focuses on corrosion and its control with applications in industris such as Oil and gas industry, Marine and aerospace industry, Automobile industry, Building and constructions, General engineering industry, Power plants, etc.", "parent": "aa4fa9f4-40fa-4d99-bba8-bd985d11f67e", "parent_relation": "Inside", "group_id": 1, "pixel_x": 3631, "pixel_y": 2044, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "dbfc81ea-1b1a-4ebf-9446-883e7e6c7cbd", "fields": {"str_id": "21-type1", "time_of_creation": "2018-06-24T19:50:19.464Z", "name": "Type1 - 21", "short_name": "21-Type1", "description": "Type 1 Quarters Flat nos. 290 - 309", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4521, "pixel_y": 1346, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "dbfd5d7b-72d8-4224-be0b-3680c7664255", "fields": {"str_id": "yoga-room-new-sac", "time_of_creation": "2018-08-16T10:54:30.706Z", "name": "Yoga Room, new SAC", "short_name": "Yoga Room, new SAC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "dc2055c4-4844-468a-ac1d-2cbe04b30115", "fields": {"str_id": "a16", "time_of_creation": "2018-06-24T19:50:19.056Z", "name": "Bungalow A16 ", "short_name": "A16", "description": "A-Type Bungalow", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4085, "pixel_y": 1210, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "dc3fcf5f-e41d-44be-a32f-7da92ef76756", "fields": {"str_id": "17-h2", "time_of_creation": "2018-06-24T19:50:19.330Z", "name": "Type H2 - 17", "short_name": "17-H2", "description": "H2 Type Quarters Flat nos. 129 - 136", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 3110, "pixel_y": 1832, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "dc4c5b70-1ab2-4d3d-9906-e61140ce7d51", "fields": {"str_id": "indoor-stadium", "time_of_creation": "2018-06-24T19:50:18.227Z", "name": "Indoor Stadium", "short_name": "Indoor Stadium", "description": "", "parent": null, "parent_relation": "", "group_id": 8, "pixel_x": 3480, "pixel_y": 1081, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "dca613da-2467-4e9f-b238-601a122df5dd", "fields": {"str_id": "nasa", "time_of_creation": "2018-06-24T19:50:18.291Z", "name": "Non- Academic Staff Association", "short_name": "NASA", "description": "Tel: +912225768919", "parent": null, "parent_relation": "", "group_id": 1, "pixel_x": 4326, "pixel_y": 1896, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "dcaf5f4d-cf0b-4535-b425-9bb5ef27d1c2", "fields": {"str_id": "a10", "time_of_creation": "2018-06-24T19:50:19.035Z", "name": "Bungalow A10 ", "short_name": "A10", "description": "A-Type Bungalow", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 1962, "pixel_y": 2928, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "dcdbc389-fdb5-4ba3-aa9b-7ba3b46200ab", "fields": {"str_id": "sustan--ts-online", "time_of_creation": "2020-10-27T05:43:37.502Z", "name": "Sustan- TS online", "short_name": "Sustan- TS online", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "dcf95d9c-613f-427b-ba0f-e785a87e96fb", "fields": {"str_id": "fluid-processing", "time_of_creation": "2018-06-24T19:50:18.612Z", "name": "Supercritical fluid Processing facility (Chemical Engg.)", "short_name": "Fluid Processing", "description": "Comes under Chemical Engineering Department +912225767201 / +912225767202", "parent": "51839c0e-324f-413b-8edf-510df2927fb7", "parent_relation": "", "group_id": 1, "pixel_x": 4490, "pixel_y": 1760, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "dcfdb8e1-b859-4244-96b7-f548e85fdcb2", "fields": {"str_id": "theater-room-sac", "time_of_creation": "2019-09-29T14:08:24.134Z", "name": "Theater Room, SAC", "short_name": "Theater Room, SAC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "ddd2cd17-860e-4468-a02f-dbc36133b6cd", "fields": {"str_id": "b11", "time_of_creation": "2018-06-24T19:50:19.108Z", "name": "Type B-11", "short_name": "B11", "description": "B-Type Quarters Flat nos. 43 - 46", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 2232, "pixel_y": 2552, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "dde00d7c-72ee-4871-8ee4-60466a65b4c9", "fields": {"str_id": "dance-room", "time_of_creation": "2019-08-14T11:54:47.943Z", "name": "Dance Room", "short_name": "Dance Room", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "de1f68af-8487-465e-9635-7467d5df0bc0", "fields": {"str_id": "gymkhana", "time_of_creation": "2018-06-24T22:07:44.719Z", "name": "Gymkhana Building", "short_name": "Gymkhana", "description": "New building for student sport activities.", "parent": null, "parent_relation": null, "group_id": 8, "pixel_x": 3058, "pixel_y": 1237, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "de31d3d3-f39f-4a2e-aac0-a9d849fa0bde", "fields": {"str_id": "home", "time_of_creation": "2020-04-30T13:15:09.914Z", "name": "Home", "short_name": "Home", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "de7ef4c4-47b7-48c9-8408-7cd78dc41d7e", "fields": {"str_id": "qip-1", "time_of_creation": "2018-06-24T19:50:19.472Z", "name": "QIP 1", "short_name": "QIP 1", "description": "QIP Quarters Flat nos. 1 - 16", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4830, "pixel_y": 1376, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "de93bc1e-9dcb-47bd-953c-4ab5b4c477c3", "fields": {"str_id": "idp-ieor", "time_of_creation": "2018-06-24T19:50:18.851Z", "name": "Industrial Engineering and Operations Research", "short_name": "IDP IEOR", "description": "http://www.ieor.iitb.ac.in Room 308A, Mechanical Engineering Building, Indian Institute of Technology Bombay, Powai, Mumbai (INDIA), PIN: 400076, Fax: +912225726875, +912225723480 M.Tech, Dual Degree (MSc-PhD) and PhD offered in this programme. Research areas include Optimization: Models, theory and algorithms, Stochastic models, Stochastic control, Simulation Modeling and Analysis, Artificial Intelligence based methods, Game theory, Logistics and Transportation, Supply Chain, Analysis and Inventory Planning, Financial Engineering, Optimization, Planning and Control in Manufacturing and Robotics, Scheduling and ERP", "parent": "57be98ca-7e19-47c7-a249-64140e246f2b", "parent_relation": "Inside", "group_id": 1, "pixel_x": 4009, "pixel_y": 1645, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "deb1e01f-13a4-4491-bcea-5b313e0138c5", "fields": {"str_id": "room-105-idc", "time_of_creation": "2020-01-15T13:22:44.775Z", "name": "Room 105, IDC", "short_name": "Room 105, IDC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "deea6dae-cb0e-4f0d-8a32-258eefabb960", "fields": {"str_id": "2b-20", "time_of_creation": "2018-06-24T19:50:18.986Z", "name": "Type 2B 20", "short_name": "2B 20", "description": "2B-Type Quarters, Flat nos 115 - 134", "parent": null, "parent_relation": null, "group_id": 3, "pixel_x": 4786, "pixel_y": 1431, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "deeb8004-d462-409b-a83d-f91c94072626", "fields": {"str_id": "c6", "time_of_creation": "2018-06-24T19:50:19.149Z", "name": "Type C-6", "short_name": "C6", "description": "C-Type Quarters Flat nos. 37 - 42", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 3547, "pixel_y": 2771, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "df735571-14c0-4422-aea7-8e95b0b0bbed", "fields": {"str_id": "hostels-kv-som-campus-school-ncc-ground", "time_of_creation": "2019-08-14T06:31:03.270Z", "name": "Hostels, KV, SOM, Campus school, NCC ground", "short_name": "Hostels, KV, SOM, Campus school, NCC ground", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "dfdd3a88-6544-44b1-9c74-80c5b8b339ac", "fields": {"str_id": "ce-233", "time_of_creation": "2018-10-01T08:05:06.510Z", "name": "CE 233", "short_name": "CE 233", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "dfe1fe8e-40ff-47c4-8893-70dc8584352d", "fields": {"str_id": "lt-206", "time_of_creation": "2018-06-24T19:50:18.741Z", "name": "LT 206", "short_name": "LT 206", "description": "", "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", "parent_relation": "Second floor", "group_id": 4, "pixel_x": 3570, "pixel_y": 2152, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "dfe35072-f951-4a35-b19f-a515ace13e59", "fields": {"str_id": "4-type1", "time_of_creation": "2018-06-24T19:50:19.407Z", "name": "Type1 - 4", "short_name": "4-Type1", "description": "Type 1 Quarters Flat nos. 37 - 48", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4067, "pixel_y": 2658, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "e037ccea-d527-4299-97ad-aa5bc8395350", "fields": {"str_id": "httpsbitly3ktsg20", "time_of_creation": "2020-09-19T13:52:39.763Z", "name": "https://bit.ly/3ktsG20", "short_name": "https://bit.ly/3ktsG20", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "e03d1515-8cff-4c0d-a439-cd9ff1c9b467", "fields": {"str_id": "market-gate", "time_of_creation": "2018-06-24T19:50:18.272Z", "name": "Market Gate, Y point Gate no. 3", "short_name": "Market Gate", "description": "Tel: +912225768979 / +912225761121", "parent": null, "parent_relation": "", "group_id": 10, "pixel_x": 3829, "pixel_y": 2972, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "e15ad8b5-ee62-4d0d-b3aa-aea1391adb9d", "fields": {"str_id": "brewberrys", "time_of_creation": "2018-06-24T19:50:18.076Z", "name": "Brewberrys Cafe", "short_name": "Brewberrys", "description": "Ph no: +912265641001,\nHostel 8, IIT Bombay, Powai, Mumbai", "parent": null, "parent_relation": "", "group_id": 5, "pixel_x": 2967, "pixel_y": 1271, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "e1827c34-679c-4c54-9f0b-da20aa98114c", "fields": {"str_id": "15-type1", "time_of_creation": "2018-06-24T19:50:19.440Z", "name": "Type1 - 15", "short_name": "15-Type1", "description": "Type 1 Quarters Flat nos. 169 - 180", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 3151, "pixel_y": 1798, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "e1a9e241-d6e8-4d80-91b5-76921186c600", "fields": {"str_id": "lh-102", "time_of_creation": "2018-06-24T19:50:18.803Z", "name": "LH 102", "short_name": "LH 102", "description": "", "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", "parent_relation": "First floor", "group_id": 4, "pixel_x": 3570, "pixel_y": 2152, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "e2f0549e-11ed-4f03-abae-e2d9bc5eab20", "fields": {"str_id": "h5-common-room", "time_of_creation": "2019-04-12T07:46:05.592Z", "name": "H5 Common Room", "short_name": "H5 Common Room", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "e319e68f-124d-4c69-b89f-d188ffa7385f", "fields": {"str_id": "httpstinyurlcomcsec-club-intro", "time_of_creation": "2021-08-06T16:15:48.247Z", "name": "https://tinyurl.com/csec-club-intro", "short_name": "https://tinyurl.com/csec-club-intro", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "e332103d-4dbe-44d3-adbc-08866c77f2ee", "fields": {"str_id": "webinar-jam", "time_of_creation": "2020-09-04T13:10:12.981Z", "name": "Webinar Jam", "short_name": "Webinar Jam", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "e41e1806-5763-4ebd-8ced-6572e2e5b4c1", "fields": {"str_id": "lh-foyerfirst-floor", "time_of_creation": "2018-09-24T03:50:32.798Z", "name": "LH Foyer(first floor) ", "short_name": "LH Foyer(first floor) ", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "e42503eb-f06d-42ec-8ddc-140cba44f851", "fields": {"str_id": "lt-103", "time_of_creation": "2018-06-24T19:50:18.709Z", "name": "LT 103", "short_name": "LT 103", "description": "", "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", "parent_relation": "First floor", "group_id": 4, "pixel_x": 3570, "pixel_y": 2152, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "e46d7546-67c6-4942-a9d4-1ad121c36ee6", "fields": {"str_id": "6-type1", "time_of_creation": "2018-06-24T19:50:19.411Z", "name": "Type1 - 6", "short_name": "6-Type1", "description": "Type 1 Quarters Flat nos. 61 - 72", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4660, "pixel_y": 1367, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "e483e17b-007e-465b-95a2-6df7834fed02", "fields": {"str_id": "work-from-home", "time_of_creation": "2020-03-27T08:48:37.659Z", "name": "Work from Home", "short_name": "Work from Home", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "e4a3a170-9b36-46d1-bf75-48c35478f0d6", "fields": {"str_id": "h10a-qip", "time_of_creation": "2018-06-24T19:50:18.163Z", "name": "Hostel 10A QIP (Girls Hostel)", "short_name": "H10A QIP", "description": "Hostel security: +912225762619 Hall Manager: +912225762719 G. Sec: Sagarika Kumar +919167273231", "parent": null, "parent_relation": null, "group_id": 2, "pixel_x": 4716, "pixel_y": 1448, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "e5125a9d-6305-480b-bc74-1ced68227356", "fields": {"str_id": "lt-306", "time_of_creation": "2018-06-24T19:50:18.765Z", "name": "LT 306", "short_name": "LT 306", "description": "", "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", "parent_relation": "Third floor", "group_id": 4, "pixel_x": 3570, "pixel_y": 2152, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "e536c5fb-95ba-4e25-8d58-62bb8ccef2c5", "fields": {"str_id": "vadodara", "time_of_creation": "2019-09-05T03:13:38.212Z", "name": "Vadodara", "short_name": "Vadodara", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "e5734960-5c89-4040-834f-e44d559f92f6", "fields": {"str_id": "energy-club", "time_of_creation": "2020-10-31T13:31:57.920Z", "name": "Energy Club", "short_name": "Energy Club", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "e57586cc-f018-47ef-bf69-9d34244be9f1", "fields": {"str_id": "tansa", "time_of_creation": "2018-06-24T19:50:18.388Z", "name": "Tansa House King of campus (Proj. Staff Boys)", "short_name": "Tansa", "description": "Tel: +912225762620", "parent": null, "parent_relation": "", "group_id": 2, "pixel_x": 3028, "pixel_y": 932, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "e57734a7-bfde-49a2-9d69-75991c9e2d89", "fields": {"str_id": "h7", "time_of_creation": "2018-06-24T19:50:18.208Z", "name": "Hostel 07 Lady of the Lake", "short_name": "H7", "description": "Legacy", "parent": null, "parent_relation": null, "group_id": 2, "pixel_x": 2454, "pixel_y": 942, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "e5993d0b-6e6d-4217-8bb8-d042b33a0d98", "fields": {"str_id": "c10", "time_of_creation": "2018-06-24T19:50:19.165Z", "name": "Type C-10", "short_name": "C10", "description": "C-Type Quarters Flat nos. 61 - 66", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 2944, "pixel_y": 2820, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "e5dfc4df-6421-458c-adc5-ffbb12b4cd84", "fields": {"str_id": "conference-room-sac", "time_of_creation": "2019-04-08T12:35:31.202Z", "name": "Conference room, SAC", "short_name": "Conference room, SAC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "e5e33e20-80ed-4bd1-9ce1-c9d32ed69e24", "fields": {"str_id": "2-h1", "time_of_creation": "2018-06-24T19:50:19.216Z", "name": "Type H1 - 2", "short_name": "2-H1", "description": "H1 Type Quarters Flat nos. 13 - 24", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 910, "pixel_y": 2613, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "e6eb8827-5107-4536-ab97-d7e367f3955f", "fields": {"str_id": "tata-centre", "time_of_creation": "2018-06-24T19:50:19.531Z", "name": "Proposed Building for Tata Centre for Technology", "short_name": "Tata Centre", "description": "", "parent": null, "parent_relation": "", "group_id": 9, "pixel_x": 4451, "pixel_y": 2173, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "e70aa487-8f24-4b51-884f-306c736c6d4a", "fields": {"str_id": "lc101", "time_of_creation": "2019-06-07T12:56:18.409Z", "name": "LC101", "short_name": "LC101", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "e71b55e3-b431-4390-8c6f-8ad6bf524b14", "fields": {"str_id": "cisco-webex", "time_of_creation": "2020-09-02T13:37:45.909Z", "name": "Cisco WebEx ", "short_name": "Cisco WebEx ", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "e723efd5-90e6-4bd7-8541-d1f563863495", "fields": {"str_id": "staff-club", "time_of_creation": "2018-06-24T19:50:18.370Z", "name": "Staff Club", "short_name": "Staff Club", "description": "Tel: +912235764075", "parent": null, "parent_relation": "", "group_id": 8, "pixel_x": 2931, "pixel_y": 2027, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "e729b463-b315-4d1d-9852-b537dacaafe5", "fields": {"str_id": "cc103", "time_of_creation": "2018-08-23T15:03:38.714Z", "name": "CC103", "short_name": "CC103", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "e72fc98b-f57d-409b-a548-e1a1584af57c", "fields": {"str_id": "main-building-lawns", "time_of_creation": "2019-08-26T06:19:19.199Z", "name": "Main Building Lawns", "short_name": "Main Building Lawns", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "e732e21d-1e82-4f88-aace-257e6fe73f03", "fields": {"str_id": "zoom-link-in-description", "time_of_creation": "2020-12-19T10:21:23.136Z", "name": "Zoom Link in Description ", "short_name": "Zoom Link in Description ", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "e8342d74-dcab-489d-86a5-6ff5d7ae4887", "fields": {"str_id": "9-type1", "time_of_creation": "2018-06-24T19:50:19.422Z", "name": "Type1 - 9", "short_name": "9-Type1", "description": "Type 1 Quarters Flat nos. 97 - 108", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4675, "pixel_y": 1293, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "e886baf5-c610-42c6-a5db-85ff75f6422f", "fields": {"str_id": "canara-bank", "time_of_creation": "2018-06-24T19:50:18.414Z", "name": "Canara Bank", "short_name": "Canara Bank", "description": "Tel: +912225762797", "parent": "5d7d2bba-e553-4733-9515-c991ff9e0f37", "parent_relation": "First Floor", "group_id": 6, "pixel_x": 2989, "pixel_y": 2154, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "e8911eed-09a1-40d8-bfb4-f50e011ac296", "fields": {"str_id": "yoga-room-new-sac", "time_of_creation": "2018-12-11T17:09:08.684Z", "name": " Yoga Room, New SAC", "short_name": " Yoga Room, New SAC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "e8921d19-0736-4e51-861a-53117fc80511", "fields": {"str_id": "10-type1", "time_of_creation": "2018-06-24T19:50:19.425Z", "name": "Type1 - 10", "short_name": "10-Type1", "description": "Type 1 Quarters Flat nos. 109 - 120", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4373, "pixel_y": 758, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "e8d20256-5395-4365-9a4b-673f9b74d52a", "fields": {"str_id": "a8", "time_of_creation": "2018-06-24T19:50:19.028Z", "name": "Bungalow A8 ", "short_name": "A8", "description": "A-Type Bungalow", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 2176, "pixel_y": 3135, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "e92f2023-dd44-41bb-a349-38cf058b6f94", "fields": {"str_id": "link-in-caption", "time_of_creation": "2021-04-09T15:18:50.450Z", "name": "Link in Caption", "short_name": "Link in Caption", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "e93b10ee-1c22-49d1-9653-7f5422e198ca", "fields": {"str_id": "ms-teams-td72dbz", "time_of_creation": "2021-10-12T08:21:53.805Z", "name": "MS Teams (td72dbz)", "short_name": "MS Teams (td72dbz)", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "e966e602-b2be-45f8-a3f0-dbc81d7c28a8", "fields": {"str_id": "lc-102", "time_of_creation": "2018-06-24T19:50:18.780Z", "name": "LC 102", "short_name": "LC 102", "description": "", "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", "parent_relation": "First floor", "group_id": 4, "pixel_x": 3570, "pixel_y": 2152, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "e98f1818-b44b-4ec2-b1c6-035714295f07", "fields": {"str_id": "gender-cell-office-3rd-floor-beside-swc-main-building", "time_of_creation": "2019-08-26T06:55:33.440Z", "name": "Gender cell office, 3rd floor, beside SWC, Main Building", "short_name": "Gender cell office, 3rd floor, beside SWC, Main Building", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "ea364c0b-71fd-420d-9b19-aab9c0051852", "fields": {"str_id": "lh-101-lecture-hall-complex-iit-bombay", "time_of_creation": "2019-08-27T05:42:28.862Z", "name": "LH 101, Lecture Hall Complex, IIT Bombay", "short_name": "LH 101, Lecture Hall Complex, IIT Bombay", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "ea6132a6-0438-4cf5-b9af-00e231e40a2d", "fields": {"str_id": "hostel-15-and-16-mess", "time_of_creation": "2018-08-23T12:10:38.547Z", "name": "Hostel 15 and 16 mess", "short_name": "Hostel 15 and 16 mess", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "ea71fa79-96b2-44f1-ab11-151f15b982ef", "fields": {"str_id": "sine", "time_of_creation": "2018-06-24T19:50:19.587Z", "name": "Society for Innovation and Entrepreneurship", "short_name": "SINE", "description": "", "parent": "874b540d-94cc-479d-9621-916552a3c02b", "parent_relation": "Third Floor", "group_id": 1, "pixel_x": 4096, "pixel_y": 1993, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "eb933817-ed0d-4047-90f2-ec8835639e81", "fields": {"str_id": "hackerank", "time_of_creation": "2021-04-09T14:53:41.253Z", "name": "Hackerank", "short_name": "Hackerank", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "ebe9c23a-a414-4992-a92e-410250b471c6", "fields": {"str_id": "insight-discussion-forum", "time_of_creation": "2021-01-27T07:37:11.953Z", "name": "Insight Discussion Forum", "short_name": "Insight Discussion Forum", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "ec0fced5-def8-4561-8282-41ce0d1dd4a7", "fields": {"str_id": "2b-18", "time_of_creation": "2018-06-24T19:50:18.979Z", "name": "Type 2B 18", "short_name": "2B 18", "description": "2B-Type Quarters, Flat nos 103 - 108", "parent": null, "parent_relation": null, "group_id": 3, "pixel_x": 615, "pixel_y": 2492, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "ecccdbd3-d9a6-4873-8d71-400f24f49a39", "fields": {"str_id": "h15--h16-mess", "time_of_creation": "2018-09-25T07:23:46.303Z", "name": "H15 & H16 Mess", "short_name": "H15 & H16 Mess", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "ed0b73d6-6712-4fc9-999b-0bb4a9b59956", "fields": {"str_id": "dsf", "time_of_creation": "2018-06-24T19:50:19.543Z", "name": "Proposed D.S Foundation", "short_name": "DSF", "description": "", "parent": "e6eb8827-5107-4536-ab97-d7e367f3955f", "parent_relation": "inside", "group_id": 9, "pixel_x": 4451, "pixel_y": 2173, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "ed18ba3e-5afb-49a4-8626-0977ab0d62be", "fields": {"str_id": "tulsi-a", "time_of_creation": "2018-06-24T19:50:18.900Z", "name": "Tulsi A", "short_name": "Tulsi A", "description": "PS Quarters", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4515, "pixel_y": 952, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "ed6b9196-b8a8-488f-add2-a081e8d71c2a", "fields": {"str_id": "26-h2", "time_of_creation": "2018-06-24T19:50:19.365Z", "name": "Type H2 - 27", "short_name": "26-H2", "description": "H2 Type Quarters Flat nos. 209 - 216", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 793, "pixel_y": 2214, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "ed961661-58e7-4a22-a37b-039c359ba759", "fields": {"str_id": "yoga-room-new-sac-opposite-hostel-11", "time_of_creation": "2020-02-14T06:59:06.170Z", "name": "Yoga Room, New SAC, Opposite Hostel 11", "short_name": "Yoga Room, New SAC, Opposite Hostel 11", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "ee2a5dbb-4bbe-40d3-8f90-7498022b46b6", "fields": {"str_id": "seminar-hall-second-floor-vmcc", "time_of_creation": "2019-10-31T17:05:57.268Z", "name": "Seminar Hall, Second floor, VMCC", "short_name": "Seminar Hall, Second floor, VMCC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "ee616b24-4ea1-4be7-bd83-0ad5d1252fcb", "fields": {"str_id": "zoom-live-and-yt-live", "time_of_creation": "2021-01-15T13:58:16.869Z", "name": "Zoom Live and YT Live", "short_name": "Zoom Live and YT Live", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "ee6bc1c1-6b29-4ee6-9e64-1d7d1b480224", "fields": {"str_id": "hydraulics-lab-new", "time_of_creation": "2018-06-24T19:50:18.510Z", "name": "Hydraulics Lab (New)", "short_name": "Hydraulics Lab (New)", "description": "Comes under Civil Engineering Department HYDRAULICS LAB (VMCC) +912225764301", "parent": "2f04f408-6ec8-447c-b898-df0b58035a6b", "parent_relation": "Inside", "group_id": 12, "pixel_x": 4110, "pixel_y": 1525, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "eeb2cb01-b7e9-42c8-a3fd-14cbbe047e65", "fields": {"str_id": "nag-auditorium-vmcc", "time_of_creation": "2019-08-26T08:25:37.698Z", "name": "Nag Auditorium, VMCC", "short_name": "Nag Auditorium, VMCC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "eee814d6-8b03-45fa-a82d-1a8a87a6ba6c", "fields": {"str_id": "front-of-old-sac", "time_of_creation": "2018-09-18T18:36:00.485Z", "name": "Front of old SAC", "short_name": "Front of old SAC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "ef24f4ae-2f7e-4d6f-a46f-f0cd730bc607", "fields": {"str_id": "lh-101", "time_of_creation": "2018-06-24T19:50:18.800Z", "name": "LH 101", "short_name": "LH 101", "description": "", "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", "parent_relation": "First floor", "group_id": 4, "pixel_x": 3570, "pixel_y": 2152, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "f01dab99-bec0-4b41-9b7f-f9eff99c716c", "fields": {"str_id": "concrete-tech-lab", "time_of_creation": "2018-06-24T19:50:18.463Z", "name": "Concrete Technology Lab", "short_name": "Concrete Tech Lab", "description": "Comes under Structural Engineering Laboratories of Civil Engineering Department ", "parent": "87e2a2b9-b922-4184-adee-10dbbb707f05", "parent_relation": "Near", "group_id": 12, "pixel_x": 4330, "pixel_y": 1495, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "f0778d6e-5ab5-4962-97eb-465b6f1c1f3b", "fields": {"str_id": "a11", "time_of_creation": "2018-06-24T19:50:19.039Z", "name": "Bungalow A11 ", "short_name": "A11", "description": "A-Type Bungalow", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 2074, "pixel_y": 2885, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "f0ebc61f-7154-4a8d-9d0f-7dab68e8f9b4", "fields": {"str_id": "cfdvs", "time_of_creation": "2018-06-24T19:50:18.441Z", "name": "Centre for Formal Design and Verification of Software", "short_name": "CFDVS", "description": "http://www.cfdvs.iitb.ac.in +912225768701", "parent": "8fcf8049-5a13-4e60-b5b1-993a4a554526", "parent_relation": "In basement", "group_id": 1, "pixel_x": 3928, "pixel_y": 1496, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "f11d1f82-63b1-4a64-9b48-7cc3b967b2c8", "fields": {"str_id": "med-store", "time_of_creation": "2018-06-24T19:50:18.284Z", "name": "Medical Store", "short_name": "Med. Store", "description": "", "parent": null, "parent_relation": "", "group_id": 9, "pixel_x": 4000, "pixel_y": 2808, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "f12cc4b8-0f0d-4e1c-bf38-b8edb7d6ead5", "fields": {"str_id": "main-gate", "time_of_creation": "2018-06-24T19:50:18.268Z", "name": "Main Gate no. 2", "short_name": "Main Gate", "description": "Tel: +9125768978 / +9125761123. Tum Tum coupons available at Main Gate", "parent": null, "parent_relation": "", "group_id": 10, "pixel_x": 2259, "pixel_y": 3237, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "f146c25f-34c9-4436-8b19-296c239214d7", "fields": {"str_id": "c7", "time_of_creation": "2018-06-24T19:50:19.153Z", "name": "Type C-7", "short_name": "C7", "description": "C-Type Quarters Flat nos. 43 - 48", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 3440, "pixel_y": 2787, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "f1515b1f-505e-4218-a0ce-7f103da03c32", "fields": {"str_id": "lecture-hall-complex", "time_of_creation": "2022-10-13T18:34:42.216Z", "name": "Lecture Hall Complex", "short_name": "Lecture Hall Complex", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "f1b71bae-84d0-4002-b5bc-31b7925be935", "fields": {"str_id": "lt-004", "time_of_creation": "2018-06-24T19:50:18.690Z", "name": "LT 004", "short_name": "LT 004", "description": "", "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", "parent_relation": "Ground floor", "group_id": 4, "pixel_x": 3570, "pixel_y": 2152, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "f21fe4c6-f8a6-4cd5-9d1d-cb9386088711", "fields": {"str_id": "styleups-youtube-live", "time_of_creation": "2020-12-10T12:25:54.805Z", "name": "StyleUp's YouTube Live", "short_name": "StyleUp's YouTube Live", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "f23dd119-418e-4207-86c8-0182ef6bfc96", "fields": {"str_id": "chemical-engineering-department--cl-112-old-cl-118", "time_of_creation": "2020-02-07T06:07:13.279Z", "name": "Chemical Engineering Department- CL 112 (Old CL 118)", "short_name": "Chemical Engineering Department- CL 112 (Old CL 118)", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "f25ed34b-698d-45fd-8492-a809a16622d2", "fields": {"str_id": "ncc-t-point", "time_of_creation": "2019-03-03T10:17:28.707Z", "name": "NCC T-Point ", "short_name": "NCC T-Point ", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "f3288cac-8ebd-4a42-a88b-d0ae624359c9", "fields": {"str_id": "heat-pump-lab", "time_of_creation": "2018-06-24T19:50:18.496Z", "name": "Heat Pump Lab", "short_name": "Heat Pump Lab", "description": "Comes under Mechanical Engineering Department +912225764527 / +912225764593", "parent": null, "parent_relation": "", "group_id": 12, "pixel_x": 4153, "pixel_y": 1539, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "f36a1f18-8b64-4084-9b29-1beddef2a551", "fields": {"str_id": "ctr-19", "time_of_creation": "2018-06-24T19:50:19.203Z", "name": "CTR 19", "short_name": "CTR 19", "description": "CTR Quarters Flat nos. 115 - 126", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 1815, "pixel_y": 3040, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "f3fbfd2b-36a0-46f2-9cb1-0bad97e60c28", "fields": {"str_id": "kresit", "time_of_creation": "2018-06-24T19:50:18.234Z", "name": "Kanwal Rekhi School of Information Technology", "short_name": "KReSIT", "description": "For admission / general queries +9125767967 / +9125767977\nOffice +9125767901 / +9125767902 \nSecurity +912225762784", "parent": null, "parent_relation": "", "group_id": 1, "pixel_x": 3301, "pixel_y": 2106, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "f4579126-c78f-46e4-b56a-18d63a01d6ae", "fields": {"str_id": "instagram-live---insynciitb", "time_of_creation": "2020-06-30T08:00:24.094Z", "name": "Instagram Live - @insync_iitb", "short_name": "Instagram Live - @insync_iitb", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "f4b7fbab-6373-4880-9c36-4105d618df35", "fields": {"str_id": "14-h1", "time_of_creation": "2018-06-24T19:50:19.263Z", "name": "Type H1 - 14", "short_name": "14-H1", "description": "H1 Type Quarters Flat nos. 169 - 176 and 1A - 2A", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4645, "pixel_y": 1407, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "f4e51539-d12d-4b9d-89b5-561f95fcebf3", "fields": {"str_id": "padmavihar", "time_of_creation": "2018-06-24T19:50:19.561Z", "name": "Guest House / Padmavihar", "short_name": "Padmavihar", "description": "", "parent": null, "parent_relation": null, "group_id": 3, "pixel_x": 2776, "pixel_y": 1936, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "f5303dcd-b456-4147-a414-88a89815d826", "fields": {"str_id": "treelabs", "time_of_creation": "2018-06-24T19:50:18.624Z", "name": "Treelabs", "short_name": "Treelabs", "description": "TreeLabs is an 'inventions factory' to nurture and encourage inventors and innovations, leading to entrepreneurship Address: Electrical Engineering Dept, N-5 Bay (near Mech Engg Dept), I.I.T.Bombay, Powai, Mumbai - 400076, India. Phone: +912225723001 / +912225764410 Email: Prof. Dipankar : dipankar@iitbombay.org", "parent": null, "parent_relation": "", "group_id": 9, "pixel_x": 4225, "pixel_y": 1630, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "f56fff0b-5293-436d-9f74-0e973b679b04", "fields": {"str_id": "som-ic01", "time_of_creation": "2018-07-28T10:19:29.075Z", "name": "SOM IC01", "short_name": "SOM IC01", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "f60a3b0a-4923-4672-a31f-5725f07777a9", "fields": {"str_id": "10-h2", "time_of_creation": "2018-06-24T19:50:19.304Z", "name": "Type H2 - 10", "short_name": "10-H2", "description": "H2 Type Quarters Flat nos. 73 - 80", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 978, "pixel_y": 2702, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "f6361380-2a5e-443c-a4de-95bf48f838fc", "fields": {"str_id": "sac-guitar-room", "time_of_creation": "2018-07-29T07:32:07.590Z", "name": "SAC Guitar Room", "short_name": "SAC Guitar Room", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "f651597e-17e6-47b7-9a06-6faaf7898d00", "fields": {"str_id": "c5", "time_of_creation": "2018-06-24T19:50:19.146Z", "name": "Type C-5", "short_name": "C5", "description": "C-Type Quarters Flat nos. 31 - 36", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 3464, "pixel_y": 2708, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "f676f101-89b1-48f4-868a-e74fa856dd5d", "fields": {"str_id": "nsl", "time_of_creation": "2018-06-24T19:50:18.816Z", "name": "New Software Lab", "short_name": "NSL", "description": "", "parent": "42422033-0fb0-4a62-aa55-133f1691997d", "parent_relation": "Ground floor", "group_id": 12, "pixel_x": 4002, "pixel_y": 1545, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "f6887970-7bad-472d-8614-524c1c393c8c", "fields": {"str_id": "dance-room-sac", "time_of_creation": "2022-10-12T16:38:27.002Z", "name": "Dance Room, SAC", "short_name": "Dance Room, SAC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "f695944b-930f-476d-8c6d-5037203c3993", "fields": {"str_id": "your-home", "time_of_creation": "2020-05-21T09:47:02.406Z", "name": "Your Home", "short_name": "Your Home", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "f764a508-bbd5-4b1b-a4dc-f444d0757dfc", "fields": {"str_id": "lc-002", "time_of_creation": "2018-06-24T19:50:18.773Z", "name": "LC 002", "short_name": "LC 002", "description": "", "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", "parent_relation": "Ground floor", "group_id": 4, "pixel_x": 3570, "pixel_y": 2152, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "f76cb1e0-f17c-4833-9a61-9919ca645394", "fields": {"str_id": "lcs-lhs-lt-pcsa-convocation-hall--ics-oat-sac", "time_of_creation": "2019-01-08T20:10:43.198Z", "name": "LCs, LHs, LT-PCSA, Convocation hall , ICs, OAT, SAC", "short_name": "LCs, LHs, LT-PCSA, Convocation hall , ICs, OAT, SAC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "f7a35c0d-f5e3-4254-bca7-96a09e846072", "fields": {"str_id": "c14", "time_of_creation": "2018-06-24T19:50:19.181Z", "name": "Type C-14", "short_name": "C14", "description": "C-Type Quarters Flat nos. 85 - 90", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 3140, "pixel_y": 3047, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "f9edd33a-eb7f-4d99-a59e-798478a24c74", "fields": {"str_id": "board-games-room-new-sac", "time_of_creation": "2020-01-15T13:52:18.330Z", "name": "Board Games Room, New SAC", "short_name": "Board Games Room, New SAC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "fa5df469-65c1-4743-8039-0d702a795c56", "fields": {"str_id": "sahyadri", "time_of_creation": "2018-06-24T19:50:18.877Z", "name": "C22, A wing, Sahyadri", "short_name": "Sahyadri", "description": "Hill side, Flat nos. 151 - 168", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4673, "pixel_y": 1077, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "fa6b95bb-a520-49d3-8393-0b6a5f543029", "fields": {"str_id": "old-swimming-pool-area", "time_of_creation": "2020-02-08T18:38:20.230Z", "name": "Old Swimming Pool Area", "short_name": "Old Swimming Pool Area", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "fa6f024a-87ae-4d06-903a-f77e05de7a27", "fields": {"str_id": "hydraulics-lab", "time_of_creation": "2018-06-24T19:50:18.507Z", "name": "Hydraulics Lab", "short_name": "Hydraulics Lab", "description": "Comes under Civil Engineering Department Water Resources Hydraulics Lab +912225764303", "parent": "fa6f024a-87ae-4d06-903a-f77e05de7a27", "parent_relation": "Near", "group_id": 12, "pixel_x": 4215, "pixel_y": 1490, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "fa7cb05f-2b00-47b9-b629-9e37a056ee0b", "fields": {"str_id": "hostel-15-and-hostel-16-mess", "time_of_creation": "2018-08-21T15:59:16.159Z", "name": "Hostel 15 and Hostel 16 Mess", "short_name": "Hostel 15 and Hostel 16 Mess", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "fa99dab1-2473-42e0-9b6a-1b93e07137f8", "fields": {"str_id": "canara-atm", "time_of_creation": "2018-06-24T19:50:18.047Z", "name": "ATM - Canara Bank near Gulmohar", "short_name": "Canara ATM", "description": "", "parent": "e886baf5-c610-42c6-a5db-85ff75f6422f", "parent_relation": "First floor", "group_id": 6, "pixel_x": 2989, "pixel_y": 2154, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "faae7c2d-3d2e-4766-8fd4-1d37fbd0d586", "fields": {"str_id": "hostels-kv-sommain-building-campus-school-ncc-ground", "time_of_creation": "2019-08-14T06:32:41.284Z", "name": "Hostels, KV, SOM,Main building, Campus school, NCC ground", "short_name": "Hostels, KV, SOM,Main building, Campus school, NCC ground", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "fb13b3c7-7cc0-4fca-9f18-8f8473b41123", "fields": {"str_id": "kv-1", "time_of_creation": "2018-06-24T19:50:19.380Z", "name": "Kendriya Vidyalay Quarters 1", "short_name": "KV 1", "description": "KV Quarters 1 - 5", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 3592, "pixel_y": 2817, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "fc233dda-08e4-4b42-a4aa-da2eb6512a62", "fields": {"str_id": "cc", "time_of_creation": "2018-06-24T19:50:18.452Z", "name": "Computer Centre", "short_name": "CC", "description": "http://www.cc.iitb.ac.in Tel: +912225767751", "parent": "0c4c56dc-a5e3-4a32-af3c-8f3f3472dd6d", "parent_relation": "In room 243", "group_id": 1, "pixel_x": 3932, "pixel_y": 1997, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "fc35389a-ad47-4645-8392-681c85099830", "fields": {"str_id": "backside-lawns-of-main-building", "time_of_creation": "2018-10-30T19:29:33.251Z", "name": "Backside lawns of Main Building", "short_name": "Backside lawns of Main Building", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "fcc5a892-f4e2-4254-acf8-0e34d3966829", "fields": {"str_id": "a5", "time_of_creation": "2018-06-24T19:50:19.017Z", "name": "Bungalow A5 ", "short_name": "A5", "description": "A-Type Bungalow", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 2319, "pixel_y": 2848, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "fd33deb4-4282-4c67-8bfb-d765bffca6be", "fields": {"str_id": "football-ground", "time_of_creation": "2019-01-28T08:54:54.272Z", "name": "Football Ground", "short_name": "Football Ground", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "fd3ff97c-62bb-445c-9805-ae32af6671e6", "fields": {"str_id": "saif", "time_of_creation": "2018-06-24T19:50:18.349Z", "name": "Sophisticated Analytical Instruments Facility", "short_name": "SAIF", "description": "Tel: +912225767691 / +912225767692", "parent": "c186690e-6970-49a3-b944-d73aae2cb6bd", "parent_relation": "Inside", "group_id": 1, "pixel_x": 4081, "pixel_y": 1344, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "fd6cc42e-e580-43d3-8a9a-bae60b901559", "fields": {"str_id": "8-type1", "time_of_creation": "2018-06-24T19:50:19.418Z", "name": "Type1 - 8", "short_name": "8-Type1", "description": "Type 1 Quarters Flat nos. 85 - 96", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4616, "pixel_y": 1271, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "fd7f2ff0-cce1-4249-897f-f395a909d47d", "fields": {"str_id": "b-19", "time_of_creation": "2018-06-24T19:50:18.313Z", "name": "B 19 Old Multistoried Building- Residence ", "short_name": "B 19", "description": "Building lift phone Tel: +912225762884 Flat nos. 75-98", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 1413, "pixel_y": 2885, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "fddbd572-f75c-4d44-985e-ce45bee2cd4e", "fields": {"str_id": "flexiloans-technologies-pvt-ltd-matunga-west-mumbai", "time_of_creation": "2018-08-29T17:33:18.067Z", "name": "FlexiLoans Technologies Pvt. Ltd., Matunga West, Mumbai,", "short_name": "FlexiLoans Technologies Pvt. Ltd., Matunga West, Mumbai,", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "fe6d4897-1da8-409d-9ac2-5db3b18512bd", "fields": {"str_id": "snow-kingdom-r-city", "time_of_creation": "2019-08-05T06:06:38.056Z", "name": "Snow Kingdom, R-City", "short_name": "Snow Kingdom, R-City", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "febe07a6-3711-45b6-bf55-9e4b56f346ae", "fields": {"str_id": "lh-102", "time_of_creation": "2019-09-27T17:10:38.511Z", "name": "LH 102 ", "short_name": "LH 102 ", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "feed3cb4-52a6-42ce-baa3-fe09ff2275df", "fields": {"str_id": "new-sac", "time_of_creation": "2019-08-06T14:30:44.202Z", "name": "NEW SAC", "short_name": "NEW SAC", "description": null, "parent": null, "parent_relation": null, "group_id": null, "pixel_x": null, "pixel_y": null, "lat": null, "lng": null, "reusable": false}}, {"model": "locations.location", "pk": "feeeb19a-dcb6-45da-b131-ddfc52757a6c", "fields": {"str_id": "b6", "time_of_creation": "2018-06-24T19:50:19.090Z", "name": "Type B-6", "short_name": "B6", "description": "B-Type Quarters Flat nos. 23 - 26", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 2508, "pixel_y": 3189, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "ff82adc8-d636-490d-be6a-a86118fc0565", "fields": {"str_id": "14-type1", "time_of_creation": "2018-06-24T19:50:19.436Z", "name": "Type1 - 14", "short_name": "14-Type1", "description": "Type 1 Quarters Flat nos. 157 - 168", "parent": null, "parent_relation": "", "group_id": 3, "pixel_x": 4670, "pixel_y": 1198, "lat": null, "lng": null, "reusable": true}}, {"model": "locations.location", "pk": "ffaeefc7-ebe4-4e35-8c3f-f524d0f608ee", "fields": {"str_id": "lt-303", "time_of_creation": "2018-06-24T19:50:18.754Z", "name": "LT 303", "short_name": "LT 303", "description": "", "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", "parent_relation": "Third floor", "group_id": 4, "pixel_x": 3570, "pixel_y": 2152, "lat": null, "lng": null, "reusable": true}}] -======= -[ - { - "model": "locations.location", - "pk": "00337ebe-da3e-407b-978c-561084575ab5", - "fields": { - "str_id": "18-type1", - "time_of_creation": "2018-06-24T19:50:19.451Z", - "name": "Type1 - 18", - "short_name": "18-Type1", - "description": "Type 1 Quarters Flat nos. 209 - 224", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4801, - "pixel_y": 1269, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "003cf4f5-b64c-46ac-8ffa-4bb73e2b2db3", - "fields": { - "str_id": "httpsmeetgooglecomyzy-avxo-zpk", - "time_of_creation": "2021-03-18T19:38:40.254Z", - "name": "https://meet.google.com/yzy-avxo-zpk", - "short_name": "https://meet.google.com/yzy-avxo-zpk", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "0073afdf-3641-4791-9448-1efedb5d63f3", - "fields": { - "str_id": "bb-h2", - "time_of_creation": "2018-06-24T19:50:19.377Z", - "name": "Type H2 - BB", - "short_name": "BB-H2", - "description": "H2 BB Type Quarters Flat nos. 1 - 18", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 840, - "pixel_y": 2180, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "0104ab1a-60ef-4a4f-a246-6a31272f16af", - "fields": { - "str_id": "h15-mess", - "time_of_creation": "2018-09-30T19:16:42.003Z", - "name": "Hostel 15 Mess", - "short_name": "H15 Mess", - "description": "", - "parent": "d9155381-e668-43ab-965d-80f4d626fef2", - "parent_relation": "Ground Floor", - "group_id": 8, - "pixel_x": 0, - "pixel_y": 0, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "01405842-52b6-437d-b8b1-608a8230273d", - "fields": { - "str_id": "b-21", - "time_of_creation": "2018-06-24T19:50:18.880Z", - "name": "B 21 Satpura", - "short_name": "B 21", - "description": "", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 3332, - "pixel_y": 2602, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "0183abd1-a46d-4134-9b42-2a55ef9e2b04", - "fields": { - "str_id": "conference-hall-civil-department", - "time_of_creation": "2019-01-30T07:08:24.947Z", - "name": "Conference Hall, Civil Department ", - "short_name": "Conference Hall, Civil Department ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "01de8231-9254-49ba-a66a-69f58f509b20", - "fields": { - "str_id": "12-13-14-mess", - "time_of_creation": "2018-06-24T19:50:19.502Z", - "name": "Mess for hostels 12 | 13 | 14", - "short_name": "12-13-14 Mess", - "description": "", - "parent": null, - "parent_relation": null, - "group_id": 5, - "pixel_x": 2044, - "pixel_y": 734, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "0308d18d-03a2-40bb-8efd-b222b7f84001", - "fields": { - "str_id": "main-building", - "time_of_creation": "2018-06-24T19:50:18.265Z", - "name": "Main Building", - "short_name": "Main Building", - "description": "", - "parent": null, - "parent_relation": null, - "group_id": 1, - "pixel_x": 3628, - "pixel_y": 1640, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "03caa589-1b26-4794-bfbe-85266a4b2309", - "fields": { - "str_id": "baskey-court", - "time_of_creation": "2018-06-24T19:50:19.575Z", - "name": "Basketball Court", - "short_name": "Baskey Court", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 8, - "pixel_x": 3161, - "pixel_y": 1338, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "03f4680c-e404-40ed-89c4-69033b70b1cc", - "fields": { - "str_id": "httpsmeetgooglecombju-ypps-muahs122authuser2", - "time_of_creation": "2020-09-04T05:00:30.551Z", - "name": "https://meet.google.com/bju-ypps-mua?hs=122&authuser=2", - "short_name": "https://meet.google.com/bju-ypps-mua?hs=122&authuser=2", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "04084246-b9b0-4784-bbdf-576cd7db863b", - "fields": { - "str_id": "centrifugal-lab", - "time_of_creation": "2018-06-24T19:50:18.459Z", - "name": "Centrifugal Lab", - "short_name": "Centrifugal Lab", - "description": "", - "parent": "07adc7db-e51f-45df-b4bf-12c44746b0ba", - "parent_relation": "Near", - "group_id": 12, - "pixel_x": 4370, - "pixel_y": 1395, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "04abaf8d-a117-43cc-b774-9679c6afb92e", - "fields": { - "str_id": "conference-room-old-sac", - "time_of_creation": "2018-10-28T06:52:46.256Z", - "name": "Conference room, Old SAC", - "short_name": "Conference room, Old SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "04d2e020-0846-480e-8be4-637c48e1b88d", - "fields": { - "str_id": "github", - "time_of_creation": "2020-12-20T09:57:02.493Z", - "name": "Github", - "short_name": "Github", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "04d719e4-8862-4bbe-b35b-e3b4a7031860", - "fields": { - "str_id": "5-h2", - "time_of_creation": "2018-06-24T19:50:19.286Z", - "name": "Type H2 - 5", - "short_name": "5-H2", - "description": "H2 Type Quarters Flat nos. 33 - 40", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 1302, - "pixel_y": 2738, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "04e60ea6-22b8-421a-bb6b-054adfd17444", - "fields": { - "str_id": "greenhouse-lab", - "time_of_creation": "2018-06-24T19:50:18.493Z", - "name": "Greenhouse Lab", - "short_name": "Greenhouse Lab", - "description": "", - "parent": "12228198-b261-4c02-bea0-7eb5c80a7096", - "parent_relation": "Inside", - "group_id": 12, - "pixel_x": 4790, - "pixel_y": 1055, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "061d5c92-e544-4bce-90c3-ba0b9ce5d708", - "fields": { - "str_id": "yoga-room-new-sac", - "time_of_creation": "2019-01-14T06:10:05.832Z", - "name": "Yoga Room, New SAC", - "short_name": "Yoga Room, New SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "06bbc544-2477-4bf6-9758-a3cd394cb60b", - "fields": { - "str_id": "kv-2", - "time_of_creation": "2018-06-24T19:50:19.384Z", - "name": "Kendriya Vidyalay Quarters 2", - "short_name": "KV 2", - "description": "KV Quarters 6 - 11", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3498, - "pixel_y": 2854, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "06f63a9a-3b83-4faa-b84a-0d9fc41c3b35", - "fields": { - "str_id": "yoga-room-3rd-floor-new-sac", - "time_of_creation": "2020-03-05T19:16:10.162Z", - "name": "Yoga Room, 3rd Floor, New SAC", - "short_name": "Yoga Room, 3rd Floor, New SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "077e9c80-d3fb-4797-a1c0-cc9d6464b9f0", - "fields": { - "str_id": "old-swimming-pool", - "time_of_creation": "2022-04-01T21:08:34.508Z", - "name": "Old Swimming Pool", - "short_name": "Old Swimming Pool", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "07adc7db-e51f-45df-b4bf-12c44746b0ba", - "fields": { - "str_id": "geotech-centrifuge", - "time_of_creation": "2018-06-24T19:50:18.552Z", - "name": "National Geotechnical Centrifuge Facility", - "short_name": "GeoTech Centrifuge", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 4370, - "pixel_y": 1395, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "0800d0cd-9ea8-427a-8c6c-3474a4370f49", - "fields": { - "str_id": "outdoor-sports", - "time_of_creation": "2018-06-24T19:50:19.568Z", - "name": "Outdoor Sports Facility", - "short_name": "Outdoor Sports", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 8, - "pixel_x": 3294, - "pixel_y": 1031, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "0829c9a2-3dd9-4c11-963c-183d7cce2e0e", - "fields": { - "str_id": "7-h1", - "time_of_creation": "2018-06-24T19:50:19.236Z", - "name": "Type H1 - 7", - "short_name": "7-H1", - "description": "H1 Type Quarters Flat nos. 73 - 84", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4542, - "pixel_y": 1238, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "0846e7e1-7ad4-45e2-ad10-70c357bcac72", - "fields": { - "str_id": "2b-5", - "time_of_creation": "2018-06-24T19:50:18.925Z", - "name": "Type 2B 5", - "short_name": "2B 5", - "description": "2B-Type Quarters, Flat nos 25 - 30", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 4196, - "pixel_y": 2455, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "088ba891-7667-4581-8418-89ec6f53f769", - "fields": { - "str_id": "gate-off", - "time_of_creation": "2018-06-24T19:50:18.422Z", - "name": "Graduate apptitude test in engineering Office", - "short_name": "GATE Off.", - "description": "Tel: +91222576 2924", - "parent": "0308d18d-03a2-40bb-8efd-b222b7f84001", - "parent_relation": "Inside", - "group_id": 1, - "pixel_x": 3628, - "pixel_y": 1640, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "088ecfc0-baae-4f83-9817-37ca1a2dbee6", - "fields": { - "str_id": "httpwebexcomkakshajphpmtidm785583590104d3f1dea1aa7a7a11c1c6", - "time_of_creation": "2021-12-31T18:37:32.599Z", - "name": "http://webex.com/kaksha/j.php?MTID=m785583590104d3f1dea1aa7a7a11c1c6", - "short_name": "http://webex.com/kaksha/j.php?MTID=m785583590104d3f1dea1aa7a7a11c1c6", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "09520a24-683f-4655-9e0c-3788722596a2", - "fields": { - "str_id": "lt-002", - "time_of_creation": "2018-06-24T19:50:18.687Z", - "name": "LT 002", - "short_name": "LT 002", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Ground floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "095c90f9-4c8a-408b-9f24-69fdb81c85b6", - "fields": { - "str_id": "tennis-court-old", - "time_of_creation": "2018-06-24T19:50:18.394Z", - "name": "Tennis Court (old)", - "short_name": "Tennis Court (old)", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 8, - "pixel_x": 3177, - "pixel_y": 1624, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "0972ce1c-0226-4ed0-a49f-f3cb4b78f8e5", - "fields": { - "str_id": "solar-lab", - "time_of_creation": "2018-06-24T19:50:18.601Z", - "name": "Solar Lab", - "short_name": "Solar Lab", - "description": "Comes under Chemistry Department +912225764887 SOLAR LAB (308) Phone: +912225764173 ", - "parent": "60ef3a78-0cd0-467d-9343-ec8d5048adff", - "parent_relation": "", - "group_id": 12, - "pixel_x": 4230, - "pixel_y": 1435, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "09a1f1e0-61cc-486a-ad50-471d27729e3b", - "fields": { - "str_id": "a9", - "time_of_creation": "2018-06-24T19:50:19.032Z", - "name": "Bungalow A9 ", - "short_name": "A9", - "description": "A-Type Bungalow", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 1888, - "pixel_y": 2960, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "09fdc045-bc1a-424b-b458-a89aa63dec46", - "fields": { - "str_id": "new-cese", - "time_of_creation": "2018-06-24T19:50:19.553Z", - "name": "Centre for Environmental Science and Engineering (New Building)", - "short_name": "New CESE", - "description": "http://www.cese.iitb.ac.in\r\nTel +912225767851\r\nFax +912225764650\r\n\r\nThe Centre offers M.Tech. and Ph.D. programmes, which are interdisciplinary in nature and consists of course work followed by a research project. The duration of the Ph.D. programme varies depending upon the background of the candidate.", - "parent": "866dde4e-4667-446f-969e-ee4035b766a5", - "parent_relation": "inside", - "group_id": 9, - "pixel_x": 3979, - "pixel_y": 2467, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "0a425d6a-1366-40c6-abae-28440ba43b23", - "fields": { - "str_id": "rock-cutting-lab", - "time_of_creation": "2018-06-24T19:50:18.574Z", - "name": "Rock Cutting Lab", - "short_name": "Rock Cutting Lab", - "description": "", - "parent": "99ea94a1-0b72-4467-a5f1-ef95e24f3bf8", - "parent_relation": "Near", - "group_id": 12, - "pixel_x": 3921, - "pixel_y": 2095, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "0a46881d-39c0-48fc-aa54-f8354b8c7933", - "fields": { - "str_id": "jee-off", - "time_of_creation": "2018-06-24T19:50:18.430Z", - "name": "Joint Entrance Examination Office", - "short_name": "JEE Off.", - "description": "Tel: +91222576 4063", - "parent": "0308d18d-03a2-40bb-8efd-b222b7f84001", - "parent_relation": "Inside", - "group_id": 1, - "pixel_x": 3628, - "pixel_y": 1640, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "0b4c86dc-7248-4ccd-903c-1c3c31c7b3d9", - "fields": { - "str_id": "theatre-room-sac", - "time_of_creation": "2019-03-08T18:19:07.718Z", - "name": "Theatre room, SAC", - "short_name": "Theatre room, SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "0b61dd10-ff14-4071-a8a3-350ddb4a3636", - "fields": { - "str_id": "lh-foyer", - "time_of_creation": "2019-01-11T17:24:07.716Z", - "name": "LH Foyer", - "short_name": "LH Foyer", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "0ba7057b-b9db-4876-8655-8725cfcbdf3e", - "fields": { - "str_id": "auditorium", - "time_of_creation": "2019-02-12T14:28:44.494Z", - "name": "Auditorium", - "short_name": "Auditorium", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "0c0a5022-c439-4d30-bebd-1fe6a20e9343", - "fields": { - "str_id": "gg-conference-room--electrical-department", - "time_of_creation": "2022-09-28T13:03:44.777Z", - "name": "GG Conference Room , Electrical department", - "short_name": "GG Conference Room , Electrical department", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "0c320f01-cb8d-45a5-a4f4-bafdf881109e", - "fields": { - "str_id": "fc-kohli", - "time_of_creation": "2018-06-24T19:50:19.491Z", - "name": "Faqir Chand Kohli Auditorium", - "short_name": "F.C Kohli", - "description": "Named after Faqir Chand Kohli, who is often reffered as Father of Indian Software Industry", - "parent": "f3fbfd2b-36a0-46f2-9cb1-0bad97e60c28", - "parent_relation": "First floor", - "group_id": 4, - "pixel_x": 3301, - "pixel_y": 2106, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "0c4c1638-6d99-4d9f-9995-9c1b10092e15", - "fields": { - "str_id": "teams-code-pc5mf1o", - "time_of_creation": "2022-05-16T03:20:59.937Z", - "name": "Teams code: pc5mf1o", - "short_name": "Teams code: pc5mf1o", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "0c4c56dc-a5e3-4a32-af3c-8f3f3472dd6d", - "fields": { - "str_id": "elec-engg", - "time_of_creation": "2018-06-24T19:50:18.125Z", - "name": "Electrical Engineering Department", - "short_name": "Elec engg", - "description": "http://www.ee.iitb.ac.in\r\nMain office is inside GG Building on second floor\r\n\r\nContact persons:\r\nMadhumati Shetty +912225767401\r\nVaishali Deshpande +912225767402\r\nSantosh S. Kharat +912225767402\r\nTanvi D. Shelatkar +912225767402\r\n\r\nB Tech, B Tech Honors, Dual Degree Program (B Tech + M Tech), M Tech (Full time 2 yrs, Part time 3yrs with specializations such as Communications, Engineering (termed as EE1), Control and Computing (EE2), Power Electronics and Power System (EE3), Microelectronics and VLSI (EE4), Electronic Systems (EE5)) and Ph D", - "parent": null, - "parent_relation": null, - "group_id": 1, - "pixel_x": 3780, - "pixel_y": 1900, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "0c87b881-7733-4e51-9b5b-1323b75ad283", - "fields": { - "str_id": "3-h2", - "time_of_creation": "2018-06-24T19:50:19.278Z", - "name": "Type H2 - 3", - "short_name": "3-H2", - "description": "H2 Type Quarters Flat nos. 17 - 24", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 1417, - "pixel_y": 2797, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "0ca148f8-da44-481f-ac31-27e1a79d7814", - "fields": { - "str_id": "lh-302", - "time_of_creation": "2018-06-24T19:50:18.812Z", - "name": "LH 302", - "short_name": "LH 302", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Third floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "0cb56461-a98d-44ff-8fdf-6f13f400263c", - "fields": { - "str_id": "power-house", - "time_of_creation": "2018-06-24T19:50:18.339Z", - "name": "Power House", - "short_name": "Power House", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 9, - "pixel_x": 4671, - "pixel_y": 1590, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "0d5be149-30a2-44e5-b4b1-68f61ad33e20", - "fields": { - "str_id": "kv", - "time_of_creation": "2018-06-24T19:50:18.241Z", - "name": "Kendriya Vidyalaya ", - "short_name": "KV", - "description": "Tel: +912225768983", - "parent": null, - "parent_relation": "", - "group_id": 7, - "pixel_x": 3883, - "pixel_y": 2714, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "0d64123d-9704-4f3c-bf78-c7b2172e8705", - "fields": { - "str_id": "nso-guitar-room-new-sac", - "time_of_creation": "2018-09-28T14:16:49.969Z", - "name": "NSO Guitar Room New SAC", - "short_name": "NSO Guitar Room New SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "0e2c2a32-5356-48d8-94ef-b06bff458064", - "fields": { - "str_id": "h8", - "time_of_creation": "2018-06-24T19:50:18.212Z", - "name": "Hostel 08 Woodland", - "short_name": "H8", - "description": "Hostel security: +912225762608 Hall Manager:+912225762708 G. Sec: Mayur Kalambe +919920147585", - "parent": null, - "parent_relation": "", - "group_id": 2, - "pixel_x": 2834, - "pixel_y": 1257, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "0e79535d-f1a6-478b-9799-663d0dd54d9a", - "fields": { - "str_id": "h16", - "time_of_creation": "2018-06-24T19:50:18.186Z", - "name": "Hostel 16 Olympus", - "short_name": "H16", - "description": "Hostel security: +91222576 2716 Hall Manager: 022-2576 G. Sec:", - "parent": null, - "parent_relation": null, - "group_id": 2, - "pixel_x": 3972, - "pixel_y": 849, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "0fbdb6d4-ea59-4673-9e30-41137599f944", - "fields": { - "str_id": "theatre-room-old-sac", - "time_of_creation": "2018-09-30T09:31:20.864Z", - "name": "Theatre Room, Old SAC ", - "short_name": "Theatre Room, Old SAC ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "1007b63e-4c44-485d-a4c8-c8d89c3603c6", - "fields": { - "str_id": "convocation-hall", - "time_of_creation": "2018-06-24T19:50:18.099Z", - "name": "Convocation Hall", - "short_name": "Convocation Hall", - "description": "Tel: +912225762781", - "parent": null, - "parent_relation": null, - "group_id": 4, - "pixel_x": 3255, - "pixel_y": 1711, - "lat": "19.131973", - "lng": "72.914285", - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "10134e84-1f85-4212-8f3d-a6de70004604", - "fields": { - "str_id": "lc-102", - "time_of_creation": "2018-08-31T15:13:35.198Z", - "name": "LC 102 ", - "short_name": "LC 102 ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "10543381-7bb4-4d8e-812a-3574c0a39298", - "fields": { - "str_id": "yoga-room-3rd-floor-new-sac-opposite-to-hostel-11", - "time_of_creation": "2019-05-26T10:30:48.072Z", - "name": "Yoga room, 3rd floor, New SAC, Opposite to hostel 11", - "short_name": "Yoga room, 3rd floor, New SAC, Opposite to hostel 11", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "10e47646-da66-43e8-bf51-05f93aedee22", - "fields": { - "str_id": "science-park", - "time_of_creation": "2018-06-24T19:50:19.520Z", - "name": "Proposed Science Park", - "short_name": "Science Park", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 9, - "pixel_x": 2140, - "pixel_y": 259, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "11688c98-ba18-43a6-ab63-a699e7cc6e0a", - "fields": { - "str_id": "type-h1", - "time_of_creation": "2018-06-24T19:50:19.524Z", - "name": "Proposed Type H1 Building", - "short_name": "Type H1", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4943, - "pixel_y": 1193, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "1172c3c0-0d9a-4849-81ab-93609dc3153b", - "fields": { - "str_id": "la-201", - "time_of_creation": "2018-06-24T19:50:18.675Z", - "name": "LA 201", - "short_name": "LA 201", - "description": "The classroom has 4 entrance doors, two on second floor and two in third floor.", - "parent": "be8afcf1-c7f7-4d71-aaf5-0154081974dd", - "parent_relation": "Second and Third floors", - "group_id": 4, - "pixel_x": 3779, - "pixel_y": 2220, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "11fd6f6d-6b87-4d51-9923-c28318d97fc8", - "fields": { - "str_id": "sarcs-facebook-page", - "time_of_creation": "2021-10-24T06:36:29.756Z", - "name": "SARC's Facebook Page ", - "short_name": "SARC's Facebook Page ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "12228198-b261-4c02-bea0-7eb5c80a7096", - "fields": { - "str_id": "k-yantra", - "time_of_creation": "2018-06-24T19:50:18.521Z", - "name": "K-Yantra Lab (CSE Dept.)", - "short_name": "K-Yantra", - "description": "ERTS Lab First Floor, KReSIT Building, CSE Department IIT Bombay - Powai, Mumbai 400076 helpdesk@e-yantra.org", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 4790, - "pixel_y": 1055, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "12b7133f-4631-4bdb-b599-7f63e682c4d7", - "fields": { - "str_id": "football-field-hostel-5", - "time_of_creation": "2019-04-09T17:17:00.049Z", - "name": "Football Field, Hostel 5", - "short_name": "Football Field, Hostel 5", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "12c0c3f6-8e0d-430f-accc-c876986cf622", - "fields": { - "str_id": "h13-night-cant", - "time_of_creation": "2018-06-24T19:50:18.664Z", - "name": "H13 Night Canteen", - "short_name": "H13 Night Cant.", - "description": "Open till 3 am, recomended for night-outs!", - "parent": "a5bd85a4-a281-44cb-925f-49a50f8a7070", - "parent_relation": "Inside", - "group_id": 5, - "pixel_x": 1918, - "pixel_y": 745, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "1347e755-c11b-4ad8-8568-4fca554dc66f", - "fields": { - "str_id": "pg-cult-fb-live", - "time_of_creation": "2021-07-30T05:15:40.832Z", - "name": "PG Cult Fb live", - "short_name": "PG Cult Fb live", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "13b2d533-53d5-4050-bd1f-16989a0f770e", - "fields": { - "str_id": "qip-2", - "time_of_creation": "2018-06-24T19:50:19.475Z", - "name": "QIP 2", - "short_name": "QIP 2", - "description": "QIP Quarters Flat nos. 17 - 35", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4869, - "pixel_y": 1328, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "13d12d75-c5b3-4fb6-b1c1-98d2079ad1a4", - "fields": { - "str_id": "2b-19", - "time_of_creation": "2018-06-24T19:50:18.983Z", - "name": "Type 2B 19", - "short_name": "2B 19", - "description": "2B-Type Quarters, Flat nos 109 - 114", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 2573, - "pixel_y": 2468, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "13e7b7a4-1b28-4ba7-86fb-e360ffde6990", - "fields": { - "str_id": "seminar-hall-civil-department", - "time_of_creation": "2019-02-02T16:17:54.878Z", - "name": "Seminar Hall, Civil department ", - "short_name": "Seminar Hall, Civil department ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "1408d43c-7774-4031-b490-08f66e850cce", - "fields": { - "str_id": "enelek", - "time_of_creation": "2018-06-24T19:50:18.470Z", - "name": "ENELEK Power Sine", - "short_name": "ENELEK", - "description": "Enelek is a technology driven company, dedicated to delivery to quality and affordability through state-of-the art solar thermal & solar power products, systems and providing technology solutions & services. Address: CM-06, SINE Office 3rd Floor, CSRE Building IIT Bombay Powai, Mumbai - 400076 Contact No. - +919167939941 | info@enelek.com Careers Enquiry - career@enelek.com", - "parent": "f5303dcd-b456-4147-a414-88a89815d826", - "parent_relation": "Beside", - "group_id": 9, - "pixel_x": 4160, - "pixel_y": 1620, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "14bb96e1-47f1-46ec-907b-aefc07ccca0f", - "fields": { - "str_id": "metal-forming-lab", - "time_of_creation": "2018-06-24T19:50:18.532Z", - "name": "Metal Forming Lab", - "short_name": "Metal Forming Lab", - "description": "Comes under Mechanical Engineering Department +912225764561", - "parent": "58bea0b3-733b-45bf-a87b-4785b8e0d9e1", - "parent_relation": "Near", - "group_id": 12, - "pixel_x": 4290, - "pixel_y": 1470, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "1512ba5c-6311-4ae2-87d3-ec9ede65c1b2", - "fields": { - "str_id": "khodad-pune", - "time_of_creation": "2019-01-22T17:08:03.970Z", - "name": "Khodad, Pune", - "short_name": "Khodad, Pune", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "1518d3d0-29fe-4409-9352-d283401c2016", - "fields": { - "str_id": "14-h2", - "time_of_creation": "2018-06-24T19:50:19.319Z", - "name": "Type H2 - 14", - "short_name": "14-H2", - "description": "H2 Type Quarters Flat nos. 105 - 112", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 717, - "pixel_y": 2510, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "15649951-36e4-4acb-bd98-8a018385f5de", - "fields": { - "str_id": "httpssarcasmsarc-iitborglogin", - "time_of_creation": "2022-01-21T17:04:38.239Z", - "name": "https://sarcasm.sarc-iitb.org/login", - "short_name": "https://sarcasm.sarc-iitb.org/login", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "15ceb9e8-81af-475e-a00c-5fe5970e3b4d", - "fields": { - "str_id": "5-h1", - "time_of_creation": "2018-06-24T19:50:19.228Z", - "name": "Type H1 - 5", - "short_name": "5-H1", - "description": "H1 Type Quarters Flat nos. 49 - 60", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4552, - "pixel_y": 1173, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "15dac3ab-da84-470a-a3bd-d691c1edfd0c", - "fields": { - "str_id": "13-type1", - "time_of_creation": "2018-06-24T19:50:19.433Z", - "name": "Type1 - 13", - "short_name": "13-Type1", - "description": "Type 1 Quarters Flat nos. 145 - 156", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4637, - "pixel_y": 1237, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "15fca3e0-8c45-43fb-a5b0-568bc8f517ad", - "fields": { - "str_id": "b10", - "time_of_creation": "2018-06-24T19:50:19.104Z", - "name": "Type B-10", - "short_name": "B10", - "description": "B-Type Quarters Flat nos. 39 - 42", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2726, - "pixel_y": 2634, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "16a39766-682b-4d7f-9fcc-3fca038a5cdd", - "fields": { - "str_id": "sameer-hill", - "time_of_creation": "2018-06-24T19:50:18.873Z", - "name": "Sameer Hill", - "short_name": "Sameer Hill", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 9, - "pixel_x": 4830, - "pixel_y": 675, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "16c65ffa-589d-4313-87ee-c8be1bb898bc", - "fields": { - "str_id": "chemistry", - "time_of_creation": "2018-06-24T19:50:18.092Z", - "name": "Chemistry Department", - "short_name": "Chemistry", - "description": "http://www.chem.iitb.ac.in\r\nPhone: +912225767151\r\nFax: +912225723480, +912225767152\r\n\r\nThe department offers academic programs for M.Sc, Ph.D, (M.Sc + Ph.D) Dual Degree Courses, 4 year BS degree course (From 2014, the 5 year Integrated M.Sc course has been replaced by the 4 year B.S course).", - "parent": "c2a8f379-1a40-4357-9015-423e3702483e", - "parent_relation": null, - "group_id": 1, - "pixel_x": 3788, - "pixel_y": 2350, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "16ebb030-2c57-4602-80bb-fe0c2a6949fa", - "fields": { - "str_id": "vidya-niwas", - "time_of_creation": "2018-06-24T19:50:18.402Z", - "name": "Vidya Niwas", - "short_name": "Vidya Niwas", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4911, - "pixel_y": 1111, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "1881e054-e7df-431d-ad92-52d4208dc192", - "fields": { - "str_id": "b-nag-auditorium-iit-bombay", - "time_of_creation": "2018-09-18T18:22:32.448Z", - "name": "B. Nag auditorium, IIT Bombay", - "short_name": "B. Nag auditorium, IIT Bombay", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "18f66d29-d67e-4d95-873c-1c4cdd963423", - "fields": { - "str_id": "wel-lab-electrical-department", - "time_of_creation": "2019-01-11T09:13:48.798Z", - "name": "WEL lab, Electrical department", - "short_name": "WEL lab, Electrical department", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "1994fc34-8cca-4038-9e42-d4343fa65ead", - "fields": { - "str_id": "som", - "time_of_creation": "2019-02-07T15:34:57.032Z", - "name": "SOM ", - "short_name": "SOM ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "19fbe27e-d38a-487b-a581-3b45a9a01161", - "fields": { - "str_id": "check-point", - "time_of_creation": "2018-06-24T19:50:19.517Z", - "name": "Security Check Point", - "short_name": "Check Point", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 10, - "pixel_x": 2744, - "pixel_y": 399, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "1a047777-10a4-45d0-bffc-da4096539ac8", - "fields": { - "str_id": "lc-201", - "time_of_creation": "2018-06-24T19:50:18.784Z", - "name": "LC 201", - "short_name": "LC 201", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Second floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "1a09f9d8-7ed1-4ad7-b2e5-0553c64448c4", - "fields": { - "str_id": "cisco-webex", - "time_of_creation": "2020-09-05T13:25:20.518Z", - "name": "Cisco WebEX", - "short_name": "Cisco WebEX", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "1a373a3f-d335-47d8-9c4a-32bfb575e1b1", - "fields": { - "str_id": "seminar-hall-civil-department", - "time_of_creation": "2018-11-12T14:50:24.628Z", - "name": "Seminar Hall Civil Department ", - "short_name": "Seminar Hall Civil Department ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "1a465e27-cf97-42c6-9d55-f0855f067124", - "fields": { - "str_id": "tf-room", - "time_of_creation": "2019-02-12T09:30:17.264Z", - "name": "TF Room", - "short_name": "TF Room", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "1ae34315-a0d7-43f6-9a07-a3e734abca79", - "fields": { - "str_id": "literati-discord-server", - "time_of_creation": "2020-10-28T15:06:14.843Z", - "name": "Literati Discord Server", - "short_name": "Literati Discord Server", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "1b47aa07-a1de-4883-bd25-ba2a1fbe865f", - "fields": { - "str_id": "httpwwwabhyudayiitborgfest", - "time_of_creation": "2021-01-22T17:45:36.543Z", - "name": "http://www.abhyudayiitb.org/fest", - "short_name": "http://www.abhyudayiitb.org/fest", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "1b76a9fd-24b6-4ddb-bea4-681744cf93c5", - "fields": { - "str_id": "28-h2", - "time_of_creation": "2018-06-24T19:50:19.373Z", - "name": "Type H2 - 29", - "short_name": "28-H2", - "description": "H2 Type Quarters Flat nos. 233 - 248", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 691, - "pixel_y": 2410, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "1c4c094f-502b-4a5b-962d-1d4768e7b04f", - "fields": { - "str_id": "staff-hostel", - "time_of_creation": "2018-06-24T19:50:19.527Z", - "name": "Proposed Hostel for Project Staff", - "short_name": "Staff Hostel", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4935, - "pixel_y": 1391, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "1d1edac2-ec2b-423b-905f-0d0fa9582956", - "fields": { - "str_id": "ms-teams---join-team-at-httpscuttlygjbdnks", - "time_of_creation": "2021-01-15T07:05:35.853Z", - "name": "MS Teams - join team at https://cutt.ly/GjbdNKs", - "short_name": "MS Teams - join team at https://cutt.ly/GjbdNKs", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "1d25cff6-8bdd-42a5-9d30-9af61382ccec", - "fields": { - "str_id": "6--h1", - "time_of_creation": "2018-06-24T19:50:19.232Z", - "name": "Type H1 - 6", - "short_name": "6- H1", - "description": "H1 Type Quarters Flat nos. 61 - 72", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4468, - "pixel_y": 1189, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "1dd8b968-3692-4f2a-8e24-d76b46b4305c", - "fields": { - "str_id": "wadhwani-electronics-lab-3rd-floor-ee-dept", - "time_of_creation": "2020-02-07T14:04:58.279Z", - "name": "Wadhwani Electronics Lab, 3rd Floor, EE Dept.", - "short_name": "Wadhwani Electronics Lab, 3rd Floor, EE Dept.", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "1e9de2de-1377-4765-8599-4402301a3c03", - "fields": { - "str_id": "9-h1", - "time_of_creation": "2018-06-24T19:50:19.243Z", - "name": "Type H1 - 9", - "short_name": "9-H1", - "description": "H1 Type Quarters Flat nos. 97 - 108", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 640, - "pixel_y": 2329, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "1ec0a30a-a8cd-402d-a574-9870729a3f7f", - "fields": { - "str_id": "lch-foyer", - "time_of_creation": "2019-03-06T15:59:10.375Z", - "name": "LCH Foyer", - "short_name": "LCH Foyer", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "1f6d5d3d-9db0-44a4-92c4-33edf93a8a4d", - "fields": { - "str_id": "lt-006", - "time_of_creation": "2018-06-24T19:50:18.698Z", - "name": "LT 006", - "short_name": "LT 006", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Ground floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "1f86f053-dbc7-4508-b9d0-962fa1ccb2b6", - "fields": { - "str_id": "h15-front-lawn", - "time_of_creation": "2019-09-29T11:26:26.752Z", - "name": "H15 Front Lawn", - "short_name": "H15 Front Lawn", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "20064b97-6626-4242-913b-ed391b6033b8", - "fields": { - "str_id": "powai-udyaan", - "time_of_creation": "2019-10-30T09:56:59.626Z", - "name": "Powai Udyaan", - "short_name": "Powai Udyaan", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "20b9b8e3-2228-4921-8d6b-2d4ebee1d29b", - "fields": { - "str_id": "ncair", - "time_of_creation": "2018-06-24T19:50:19.539Z", - "name": "Proposed NCAIR", - "short_name": "NCAIR", - "description": "", - "parent": "e6eb8827-5107-4536-ab97-d7e367f3955f", - "parent_relation": "inside", - "group_id": 9, - "pixel_x": 4451, - "pixel_y": 2173, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "21542ae2-16b1-4681-90a0-511d70c6f07a", - "fields": { - "str_id": "b3", - "time_of_creation": "2018-06-24T19:50:19.078Z", - "name": "Type B-3", - "short_name": "B3", - "description": "B-Type Quarters Flat nos. 11 - 14", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2797, - "pixel_y": 2820, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "216c4173-c28e-42b3-8cdd-01ead6d3b59d", - "fields": { - "str_id": "8-h2", - "time_of_creation": "2018-06-24T19:50:19.297Z", - "name": "Type H2 - 8", - "short_name": "8-H2", - "description": "H2 Type Quarters Flat nos. 57 - 64", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 1059, - "pixel_y": 2719, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "21d97341-d00b-4fb7-a88b-329b395273f5", - "fields": { - "str_id": "mach-tool-lab", - "time_of_creation": "2018-06-24T19:50:18.529Z", - "name": "Machine Tool Lab", - "short_name": "Mach. Tool Lab", - "description": "Comes under Mechanical Engineering Department +912225764518 / +912225764537", - "parent": "c3545b3d-e33d-4c14-b04d-c369146391ec", - "parent_relation": "Near", - "group_id": 12, - "pixel_x": 4410, - "pixel_y": 1740, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "22ab9241-3799-4c1b-a5c8-f291723b8932", - "fields": { - "str_id": "old-sac", - "time_of_creation": "2019-10-11T19:05:58.819Z", - "name": "OLD SAC", - "short_name": "OLD SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "22b1efaa-f129-43bc-ad0a-fcd37b394546", - "fields": { - "str_id": "brews-and-bites", - "time_of_creation": "2018-09-18T18:36:00.480Z", - "name": "Brews and Bites", - "short_name": "Brews and Bites", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "23396793-3425-4f33-811b-d09f803a7b6c", - "fields": { - "str_id": "h2-tv-room", - "time_of_creation": "2019-08-12T12:27:27.659Z", - "name": "H2 TV Room", - "short_name": "H2 TV Room", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "24586039-1f7f-4c97-b4ce-c11c8bf72db4", - "fields": { - "str_id": "19-h2", - "time_of_creation": "2018-06-24T19:50:19.338Z", - "name": "Type H2 - 19", - "short_name": "19-H2", - "description": "H2 Type Quarters Flat nos. 145 - 152", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4377, - "pixel_y": 1329, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "25c09a2e-710b-4fb0-8bef-eec45e885f6e", - "fields": { - "str_id": "indoor-badminton-court", - "time_of_creation": "2019-07-29T17:57:16.664Z", - "name": "Indoor Badminton Court", - "short_name": "Indoor Badminton Court", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "2614d321-16c5-41a9-a78d-eb6d8a8ca2b3", - "fields": { - "str_id": "prints", - "time_of_creation": "2018-06-24T19:50:18.644Z", - "name": "Printing and photocopying Main Building", - "short_name": "Prints", - "description": "", - "parent": "0308d18d-03a2-40bb-8efd-b222b7f84001", - "parent_relation": "Inside", - "group_id": 11, - "pixel_x": 3628, - "pixel_y": 1640, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "26716cc2-3afc-4114-908a-3aa2e75376e6", - "fields": { - "str_id": "table-tennis-hallnew-sac", - "time_of_creation": "2018-08-26T13:51:16.641Z", - "name": "Table Tennis hall,New SAC", - "short_name": "Table Tennis hall,New SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "2709f7ec-8068-4c57-b08a-3adb76412128", - "fields": { - "str_id": "estate-office", - "time_of_creation": "2018-06-24T19:50:19.487Z", - "name": "Estate office", - "short_name": "Estate office", - "description": "Estate office tel: +9122257617991 1 Complaint registration by the occupants of the existing buildings at IIT Bombay and the rectification of the same. 2 Accommodation Allotment to the various staff at IIT Bombay. 3 Property registration. 4 Property Tax.", - "parent": null, - "parent_relation": "", - "group_id": 9, - "pixel_x": 0, - "pixel_y": 0, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "273f8f72-e6a7-400c-9967-81a6738a2795", - "fields": { - "str_id": "2b-9", - "time_of_creation": "2018-06-24T19:50:18.939Z", - "name": "Type 2B 9", - "short_name": "2B 9", - "description": "2B-Type Quarters, Flat nos 49 - 54", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 4384, - "pixel_y": 2192, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "278bc921-86c1-44e3-aa3d-26ef8eee5682", - "fields": { - "str_id": "hostel-5-cricket-ground", - "time_of_creation": "2019-08-23T12:29:09.736Z", - "name": "Hostel 5 Cricket Ground", - "short_name": "Hostel 5 Cricket Ground", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "27f6011a-58bf-4490-ad55-90c99164992f", - "fields": { - "str_id": "seminar-hall-physics-department", - "time_of_creation": "2020-01-18T16:30:56.235Z", - "name": "Seminar Hall, Physics Department", - "short_name": "Seminar Hall, Physics Department", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "281089d4-70fc-45fb-b920-117dcea73d8c", - "fields": { - "str_id": "shishu-vihar", - "time_of_creation": "2018-06-24T19:50:18.356Z", - "name": "Shishu Vihar", - "short_name": "Shishu Vihar", - "description": "Shishu Vihar is temporarily located at A5 Tel: +912225764978", - "parent": null, - "parent_relation": "", - "group_id": 9, - "pixel_x": 2318, - "pixel_y": 2851, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "28738cfb-5f0d-43e5-9916-9fb1202ec22e", - "fields": { - "str_id": "b14", - "time_of_creation": "2018-06-24T19:50:19.119Z", - "name": "Type B-14", - "short_name": "B14", - "description": "B-Type Quarters Flat nos. 55 - 58", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2470, - "pixel_y": 2291, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "294cb883-a836-412c-a9b4-6214c8738df9", - "fields": { - "str_id": "seminar-room-202-physics-department", - "time_of_creation": "2019-02-05T18:56:10.901Z", - "name": " Seminar Room (202), Physics Department", - "short_name": " Seminar Room (202), Physics Department", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "2a2361a4-9b8e-49da-b1ab-00fa6b14d49b", - "fields": { - "str_id": "idc-auditorium", - "time_of_creation": "2018-10-04T20:06:48.121Z", - "name": "IDC Auditorium", - "short_name": "IDC Auditorium", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "2a286324-ebe3-4698-930b-48216c0e868f", - "fields": { - "str_id": "fc-kohli-auditorium-kresit-buiding", - "time_of_creation": "2019-08-22T05:34:56.909Z", - "name": "F.C Kohli Auditorium, Kresit Buiding", - "short_name": "F.C Kohli Auditorium, Kresit Buiding", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "2ac54284-3038-44c4-9c00-e3a57ad5180a", - "fields": { - "str_id": "httpstinyurlcomy5zrp7ka", - "time_of_creation": "2020-09-04T08:13:25.101Z", - "name": "https://tinyurl.com/y5zrp7ka", - "short_name": "https://tinyurl.com/y5zrp7ka", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "2b7faf98-2bd4-4cb6-93ba-bf40bc293966", - "fields": { - "str_id": "lt-101", - "time_of_creation": "2018-06-24T19:50:18.702Z", - "name": "LT 101", - "short_name": "LT 101", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "First floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "2c37e321-ffc2-4a95-ae5a-ba09be829295", - "fields": { - "str_id": "mlr-convention-center-brigade-millenium-campus-jp-nagar", - "time_of_creation": "2018-07-16T16:38:52.379Z", - "name": "MLR Convention Center, Brigade Millenium Campus, JP Nagar", - "short_name": "MLR Convention Center, Brigade Millenium Campus, JP Nagar", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "2c5d22c3-6d85-4cc9-8f15-34f675872731", - "fields": { - "str_id": "sbi", - "time_of_creation": "2018-06-24T19:50:18.377Z", - "name": "State Bank of India, IIT Powai branch", - "short_name": "SBI", - "description": "Phone +912225722894 / +912225721103 work hours: 10:30 am to 4:30 pm", - "parent": null, - "parent_relation": "", - "group_id": 6, - "pixel_x": 2164, - "pixel_y": 3227, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "2ca48d1f-6eb3-4619-8a0a-921519c32671", - "fields": { - "str_id": "4-h2", - "time_of_creation": "2018-06-24T19:50:19.282Z", - "name": "Type H2 - 4", - "short_name": "4-H2", - "description": "H2 Type Quarters Flat nos. 25 - 32", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 1187, - "pixel_y": 2785, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "2d3faa59-99de-4794-b339-ae975b462395", - "fields": { - "str_id": "zoom", - "time_of_creation": "2020-12-19T02:52:56.708Z", - "name": "zoom", - "short_name": "zoom", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "2d493a03-2705-434d-ac04-fcdd5b97a453", - "fields": { - "str_id": "multipurpose-hall-3rd-floor-new-sac", - "time_of_creation": "2019-02-27T11:41:06.220Z", - "name": "Multipurpose Hall, 3rd floor, New SAC", - "short_name": "Multipurpose Hall, 3rd floor, New SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "2db87902-ea0a-4c4e-a9bc-e08941732c10", - "fields": { - "str_id": "ms-teams-code-3z121l1", - "time_of_creation": "2021-01-21T17:46:55.959Z", - "name": "MS Teams code: 3z121l1", - "short_name": "MS Teams code: 3z121l1", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "2dc3dabb-d84d-42a3-8a66-d136be5f10bf", - "fields": { - "str_id": "25-h2", - "time_of_creation": "2018-06-24T19:50:19.361Z", - "name": "Type H2 - 26", - "short_name": "25-H2", - "description": "H2 Type Quarters Flat nos. 201 - 208", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 746, - "pixel_y": 2246, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "2dc6e675-10b6-4507-9b90-a1a46adb01c8", - "fields": { - "str_id": "zoom-meet", - "time_of_creation": "2020-07-19T08:38:46.529Z", - "name": "Zoom Meet", - "short_name": "Zoom Meet", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "2debcdcc-72e9-4385-8552-a3f394d8a568", - "fields": { - "str_id": "room-118-chemical-engineering-department", - "time_of_creation": "2018-10-31T00:02:35.971Z", - "name": "Room 118, Chemical Engineering Department", - "short_name": "Room 118, Chemical Engineering Department", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "2e327725-7313-42f6-a7db-024af83b021a", - "fields": { - "str_id": "symphony-instagram-page", - "time_of_creation": "2020-08-08T10:25:54.645Z", - "name": "Symphony Instagram Page", - "short_name": "Symphony Instagram Page", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "2e932a48-0f97-4b1a-9398-a43f482a4f17", - "fields": { - "str_id": "som-ic-2", - "time_of_creation": "2022-09-22T19:17:49.459Z", - "name": "SOM IC 2", - "short_name": "SOM IC 2", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "2f04f408-6ec8-447c-b898-df0b58035a6b", - "fields": { - "str_id": "fluid-mech-lab", - "time_of_creation": "2018-06-24T19:50:18.478Z", - "name": "Fluid Mechanics and Fluid Power Lab", - "short_name": "Fluid Mech Lab", - "description": "Comes under Mechanical Engineering Department\nFluid Mechanics Lab Tel: +912225764232\nFluid Power Lab Tel: +912225764532 / +912225764549", - "parent": null, - "parent_relation": "", - "group_id": 12, - "pixel_x": 4060, - "pixel_y": 1585, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "2f25652d-2444-4123-a58d-02018b31debc", - "fields": { - "str_id": "microsoft-teams", - "time_of_creation": "2020-12-14T11:32:19.206Z", - "name": "MICROSOFT TEAMS", - "short_name": "MICROSOFT TEAMS", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "2fb1c97a-67ff-41fa-920c-3e8e024140c3", - "fields": { - "str_id": "theatre-room-old-sac", - "time_of_creation": "2018-08-25T18:57:50.106Z", - "name": "Theatre Room, old SAC", - "short_name": "Theatre Room, old SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "2fb57b39-9ce1-43c7-83e0-e183f3991b7a", - "fields": { - "str_id": "ic1-sj-som", - "time_of_creation": "2019-10-15T17:46:05.637Z", - "name": "IC1 SJ-SOM", - "short_name": "IC1 SJ-SOM", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "317c7a1d-1a39-499e-bb35-e5f7c3e0dbda", - "fields": { - "str_id": "12-h1", - "time_of_creation": "2018-06-24T19:50:19.255Z", - "name": "Type H1 - 12", - "short_name": "12-H1", - "description": "H1 Type Quarters Flat nos. 135 - 151", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4747, - "pixel_y": 1173, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "31c16085-02ce-4fdf-9d19-1870b86cd464", - "fields": { - "str_id": "rm-lab", - "time_of_creation": "2018-06-24T19:50:18.570Z", - "name": "RM Lab (Rapid manufacturing)", - "short_name": "RM Lab", - "description": "", - "parent": "cb002ce4-621b-46ac-ace8-1cf94229f725", - "parent_relation": "Near", - "group_id": 12, - "pixel_x": 4650, - "pixel_y": 1757, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "31d2a62d-8863-4982-b6fc-09a74a5b8b62", - "fields": { - "str_id": "httpstinyurlcomcsec-intro", - "time_of_creation": "2021-03-06T06:00:29.211Z", - "name": "https://tinyurl.com/csec-intro", - "short_name": "https://tinyurl.com/csec-intro", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "31fb5103-3fef-4a57-8461-10bf89b49bae", - "fields": { - "str_id": "lt-305", - "time_of_creation": "2018-06-24T19:50:18.761Z", - "name": "LT 305", - "short_name": "LT 305", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Third floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "3211f744-12f6-4017-8a32-6fd9e6e7a51e", - "fields": { - "str_id": "hybrid", - "time_of_creation": "2022-08-26T15:29:28.028Z", - "name": "Hybrid", - "short_name": "Hybrid", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "3232fb80-8d2d-4956-9b0d-2ee759b0c6e3", - "fields": { - "str_id": "lt", - "time_of_creation": "2019-01-11T19:32:57.060Z", - "name": "LT", - "short_name": "LT", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "32829c3d-871e-4665-a26b-fab62ab9555f", - "fields": { - "str_id": "ltpcsa", - "time_of_creation": "2018-08-18T12:26:10.638Z", - "name": "LTPCSA", - "short_name": "LTPCSA", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "32d1ed61-da25-4b73-8178-34521b16b1c9", - "fields": { - "str_id": "versova-beach", - "time_of_creation": "2019-10-01T11:12:09.307Z", - "name": "Versova Beach", - "short_name": "Versova Beach", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "330c7fdc-9d51-4054-afcf-f9fe29439cc8", - "fields": { - "str_id": "a6", - "time_of_creation": "2018-06-24T19:50:19.021Z", - "name": "Bungalow A6 ", - "short_name": "A6", - "description": "A-Type Bungalow", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2254, - "pixel_y": 2963, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "332cbdab-6419-4753-a4d7-ab726996a414", - "fields": { - "str_id": "volleyball-court", - "time_of_creation": "2020-03-12T21:20:11.508Z", - "name": "Volleyball Court", - "short_name": "Volleyball Court", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "333a7032-4c95-45b3-895a-eb4f840757d1", - "fields": { - "str_id": "httpsairmeetcomee643dbc0-cbfe-11ea-ba2b-4175708878ce", - "time_of_creation": "2020-07-22T17:02:19.482Z", - "name": "https://airmeet.com/e/e643dbc0-cbfe-11ea-ba2b-4175708878ce", - "short_name": "https://airmeet.com/e/e643dbc0-cbfe-11ea-ba2b-4175708878ce", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "34052436-a815-4c37-90ee-4cde0b9ddf73", - "fields": { - "str_id": "seminar-room-202-physics-department", - "time_of_creation": "2019-02-03T08:09:46.902Z", - "name": "Seminar Room (202), Physics Department", - "short_name": "Seminar Room (202), Physics Department", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "342b40d7-708e-4889-af4e-4f1a3aea2324", - "fields": { - "str_id": "h2-lounge", - "time_of_creation": "2019-10-02T15:33:36.723Z", - "name": "H2 lounge", - "short_name": "H2 lounge", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "34513a0d-1b20-4350-8d76-57c0883f10fe", - "fields": { - "str_id": "adv-microengg-lab", - "time_of_creation": "2018-06-24T19:50:18.609Z", - "name": "SMAmL Suman Mashruwala Advanced Microengineering Lab", - "short_name": "Adv. MicroEngg Lab", - "description": "Phone: +912225767519 / +912225764534\nFax:-+912225726875\nE-mail: gandhi@me.iitb.ac.in", - "parent": null, - "parent_relation": "", - "group_id": 12, - "pixel_x": 4431, - "pixel_y": 1615, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "347f9552-59d0-42ba-8418-d962cd5283e7", - "fields": { - "str_id": "3rd-floorscreening-hall-new-sac", - "time_of_creation": "2019-05-02T18:15:41.577Z", - "name": "3rd floor,Screening Hall, New SAC", - "short_name": "3rd floor,Screening Hall, New SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "34dc44d9-f7f4-473f-929e-7bc7b551551f", - "fields": { - "str_id": "photography-and-fine-arts-studio-old-sac", - "time_of_creation": "2018-10-08T14:48:56.861Z", - "name": "Photography and Fine Arts Studio, Old SAC", - "short_name": "Photography and Fine Arts Studio, Old SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "354d2964-3b44-4087-a751-05c66db5b1a2", - "fields": { - "str_id": "lc-101", - "time_of_creation": "2018-06-24T19:50:18.777Z", - "name": "LC 101", - "short_name": "LC 101", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "First floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "359d55fe-85db-469c-8fce-5098a457ec95", - "fields": { - "str_id": "aero-annx", - "time_of_creation": "2018-06-24T19:50:18.831Z", - "name": "Aerospace Engineering Annexe", - "short_name": "Aero Annx", - "description": "http://www.aero.iitb.ac.in Phone No.: +912225764111 Fax No.: +912225722602. Email: office@aero.iitb.ac.in The department offers academic programs for B. Tech, M. Tech, Ph. D. Specialization are offered: Aerodynamics, Control and Guidance, Propulsion, Structures, and Systems Engineering", - "parent": "44cb782e-b6f0-4e65-b35a-9c0b907fc9d0", - "parent_relation": "Inside", - "group_id": 1, - "pixel_x": 3911, - "pixel_y": 2171, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "3627e488-7960-40d4-b394-de8d40e86a9f", - "fields": { - "str_id": "2b-24", - "time_of_creation": "2018-06-24T19:50:19.001Z", - "name": "Type 2B 24", - "short_name": "2B 24", - "description": "2B-Type Quarters, Flat nos 193 - 220", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 4124, - "pixel_y": 1238, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "36392e9a-cec2-47a7-ba8d-6053f4c46b7a", - "fields": { - "str_id": "sac", - "time_of_creation": "2018-06-24T19:50:18.345Z", - "name": "Students Activity Centre", - "short_name": "SAC", - "description": "Tel: +912225768968", - "parent": null, - "parent_relation": "", - "group_id": 8, - "pixel_x": 3599, - "pixel_y": 1225, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "366a0ebe-77df-46d4-ac51-cedb5036b09c", - "fields": { - "str_id": "c-use", - "time_of_creation": "2018-06-24T19:50:18.437Z", - "name": "Centre for Urban Science and Engineering (inside civil)", - "short_name": "C-USE", - "description": "http://cuse.iitb.ac.in Tel: +912225769301 Ph. D program. Research areas include Planning and Design (Housing, Land use policies, Public Spaces, Risk Management) Policy and Governance (Housing Economics, Health, Education, Employment, Environment) Infrastructure (Buildings,Transportation & Land use, Urban water, Waste Management, Smart Energy); Informatics (Citizen Science, Cyber-Physical Systems, Urban Knowledge, Geo-Spatial Technologies)", - "parent": "39c0b4e7-ec49-45db-8f9e-3a64b500aa1f", - "parent_relation": "Inside", - "group_id": 1, - "pixel_x": 3879, - "pixel_y": 1804, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "36dbd8df-3126-451b-bdbc-0f662de367ee", - "fields": { - "str_id": "ms-teams", - "time_of_creation": "2020-09-18T04:05:38.317Z", - "name": "MS teams", - "short_name": "MS teams", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "36f8b6f7-3f2c-4950-b485-a7690ed781f0", - "fields": { - "str_id": "idp-climate-studies", - "time_of_creation": "2018-06-24T19:50:18.842Z", - "name": "Inter-disciplinary Programme in Climate Studies", - "short_name": "IDP Climate Studies", - "description": "http://www.climate.iitb.ac.in Office inside Civil Engineering building Tel:+912225767301 Fax:+912225767302 Ph.D. is offered in this programme. Research areas include Climate science and technology, Technology evaluation and assessment, Impacts, Vulnerability and Adaptation", - "parent": "39c0b4e7-ec49-45db-8f9e-3a64b500aa1f", - "parent_relation": "Inside", - "group_id": 1, - "pixel_x": 3879, - "pixel_y": 1804, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "37262f63-e4b3-4003-bdd2-06b690107b64", - "fields": { - "str_id": "new-yoga-room-sac", - "time_of_creation": "2018-07-29T18:27:45.642Z", - "name": "New Yoga Room, SAC", - "short_name": "New Yoga Room, SAC", - "description": "", - "parent": "36392e9a-cec2-47a7-ba8d-6053f4c46b7a", - "parent_relation": "Inside", - "group_id": 8, - "pixel_x": 3599, - "pixel_y": 1225, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "37a846e3-aa3c-4164-b2da-f01afb801955", - "fields": { - "str_id": "httpszoomusj98787912153pwdbjhgv1vfn1fqmzduuzfjwwtcvuh6dz09", - "time_of_creation": "2020-08-12T15:16:59.654Z", - "name": " https://zoom.us/j/98787912153?pwd=bjhGV1VFN1FQMzdUUzFJWWtCVUh6dz09", - "short_name": " https://zoom.us/j/98787912153?pwd=bjhGV1VFN1FQMzdUUzFJWWtCVUh6dz09", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "37ae5e60-97a5-49ca-acbc-584665d49d2f", - "fields": { - "str_id": "h3", - "time_of_creation": "2018-06-24T19:50:18.194Z", - "name": "Hostel 03 Vitruvians", - "short_name": "H3", - "description": "Hostel security: +912225762603 Hall Manager: +912225762703 G. Sec: Arvind Jangid +919820525369", - "parent": null, - "parent_relation": "", - "group_id": 2, - "pixel_x": 3435, - "pixel_y": 946, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "37d27973-3f1a-48d2-a8c2-4b92aedbff1b", - "fields": { - "str_id": "a4", - "time_of_creation": "2018-06-24T19:50:19.013Z", - "name": "Bungalow A4 ", - "short_name": "A4", - "description": "A-Type Bungalow", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2373, - "pixel_y": 2767, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "380c1d4a-602b-41c4-9572-f0e44c277742", - "fields": { - "str_id": "report-to-h15-mess", - "time_of_creation": "2022-02-25T13:59:37.399Z", - "name": "Report to H15 Mess", - "short_name": "Report to H15 Mess", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "39c0b4e7-ec49-45db-8f9e-3a64b500aa1f", - "fields": { - "str_id": "civil", - "time_of_creation": "2018-06-24T19:50:18.095Z", - "name": "Civil Engineering Department", - "short_name": "Civil", - "description": "http://www.civil.iitb.ac.in\nTel:+912225767301\nFax:+912225767302\n\nThe department offers academic programs for B Tech, Dual Degree (B Tech + M Tech), M Tech, MS and Ph.D across different divisions such as Building Technology and Construction Management (BTCM) Environmental and Water Resources Engineering (EWRE) Geotechnical Engineering (GT) Structural Engineering (ST) Transportation Engineering (TR)", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 3879, - "pixel_y": 1804, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "3a69d7f4-95d1-479d-bfee-a362547a5cca", - "fields": { - "str_id": "jayantia-b-19", - "time_of_creation": "2018-06-24T19:50:18.058Z", - "name": "Jayantia B-19", - "short_name": "Jayantia B-19", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 1413, - "pixel_y": 2885, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "3af710e8-ac44-4c1e-8129-5cc7247684fb", - "fields": { - "str_id": "zoom---httpszoomusj98440561173pwdctfsqlfqsfdmaklauvhvthv4ehexqt09", - "time_of_creation": "2021-04-12T11:46:36.765Z", - "name": "Zoom - https://zoom.us/j/98440561173?pwd=cTFSQlFqSFdmaklaUVhVTHV4eHExQT09", - "short_name": "Zoom - https://zoom.us/j/98440561173?pwd=cTFSQlFqSFdmaklaUVhVTHV4eHExQT09", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "3b946b1b-c39e-42fe-8a85-521e92f95890", - "fields": { - "str_id": "ongc-research-centre", - "time_of_creation": "2018-06-24T19:50:18.316Z", - "name": "ONGC Research Centre", - "short_name": "ONGC Research Centre", - "description": "Currently, the centre is working on a project titled \"Physical and Numerical Models for Un-conventional Flood Patterns\". The project relates to increasing country's currrent oil production by means of Enhanced Oil Recovery (EOR) processes. ", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 4234, - "pixel_y": 2162, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "3bb76da4-dc16-4a2d-bd2b-1c82d553b9d4", - "fields": { - "str_id": "osl", - "time_of_creation": "2018-06-24T19:50:18.821Z", - "name": "Old Software Lab", - "short_name": "OSL", - "description": "", - "parent": "8fcf8049-5a13-4e60-b5b1-993a4a554526", - "parent_relation": "Ground floor", - "group_id": 12, - "pixel_x": 3928, - "pixel_y": 1496, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "3c1475fe-1959-47b6-93e9-47b7a2768891", - "fields": { - "str_id": "virtual", - "time_of_creation": "2021-12-26T09:36:47.044Z", - "name": "Virtual", - "short_name": "Virtual", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "3c24c1aa-9a2e-430c-b195-83d774dff2ce", - "fields": { - "str_id": "corro-sci-paint-lab", - "time_of_creation": "2018-06-24T19:50:18.862Z", - "name": "Corrosion Science Paint Lab", - "short_name": "Corro Sci Paint Lab", - "description": "Tel: +912225764606", - "parent": "aa4fa9f4-40fa-4d99-bba8-bd985d11f67e", - "parent_relation": "Inside", - "group_id": 12, - "pixel_x": 3631, - "pixel_y": 2044, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "3c3af8a6-6aff-4d4d-8fac-f0f406a2700d", - "fields": { - "str_id": "convo-foyer", - "time_of_creation": "2019-01-11T16:56:52.443Z", - "name": "Convo foyer", - "short_name": "Convo foyer", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "3c3bd610-1e39-49e1-ae05-26f5cba62f52", - "fields": { - "str_id": "imagica", - "time_of_creation": "2018-09-30T15:24:52.032Z", - "name": "Imagica", - "short_name": "Imagica", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "3c3ef77f-ed33-4f42-a003-3550eec21c7a", - "fields": { - "str_id": "vihar-house", - "time_of_creation": "2018-06-24T19:50:18.405Z", - "name": "Vihar House", - "short_name": "Vihar House", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4558, - "pixel_y": 1429, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "3db68372-6bd9-4772-8c1d-855725a35f50", - "fields": { - "str_id": "new-seminar-hall-mems-dept", - "time_of_creation": "2020-01-31T07:43:28.425Z", - "name": "New Seminar Hall, MEMS Dept.", - "short_name": "New Seminar Hall, MEMS Dept.", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "3dd9599f-1228-4b23-b1c5-1268a93c9bef", - "fields": { - "str_id": "lt-104", - "time_of_creation": "2018-06-24T19:50:18.713Z", - "name": "LT 104", - "short_name": "LT 104", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "First floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "3deff9aa-7ff2-49fa-928a-49b76ab402ed", - "fields": { - "str_id": "la-202", - "time_of_creation": "2018-06-24T19:50:18.679Z", - "name": "LA 202", - "short_name": "LA 202", - "description": "The classroom has 4 entrance doors, two on second floor and two in third floor.", - "parent": "be8afcf1-c7f7-4d71-aaf5-0154081974dd", - "parent_relation": "Second and Third floors", - "group_id": 4, - "pixel_x": 3779, - "pixel_y": 2220, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "3e59233d-66ed-42f5-83d2-16a5e3ef4d16", - "fields": { - "str_id": "orthocad-lab", - "time_of_creation": "2018-06-24T19:50:18.555Z", - "name": "OrthoCad Lab", - "short_name": "OrthoCad Lab", - "description": "Comes under Mechanical Engineering Department +912225764399", - "parent": null, - "parent_relation": "", - "group_id": 12, - "pixel_x": 4683, - "pixel_y": 1702, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "3e8998f8-b534-437b-93d2-3e38d1f25511", - "fields": { - "str_id": "tennis-court-new", - "time_of_creation": "2018-06-24T19:50:18.391Z", - "name": "Tennis Court (new)", - "short_name": "Tennis Court (new)", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 8, - "pixel_x": 3046, - "pixel_y": 1513, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "3ec0add2-d8bf-4237-852d-798499bbdab5", - "fields": { - "str_id": "fc-kohli-auditorium-old-cse-building", - "time_of_creation": "2022-08-10T13:24:20.536Z", - "name": "F.C Kohli Auditorium Old CSE Building ", - "short_name": "F.C Kohli Auditorium Old CSE Building ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "3eeba406-f5ac-45ae-9870-32f6f58de138", - "fields": { - "str_id": "hostel-5-mess", - "time_of_creation": "2018-10-04T11:07:57.525Z", - "name": "Hostel-5 mess", - "short_name": "Hostel-5 mess", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "3f3fb2f8-caae-4f7b-8f2b-0c4cb37b2f92", - "fields": { - "str_id": "cummins", - "time_of_creation": "2018-06-24T19:50:18.466Z", - "name": "Cummins Engine Research facility", - "short_name": "Cummins", - "description": "Incharge: Prof. Anuradda Ganesh\nTel: +912225764506", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 4350, - "pixel_y": 1580, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "3f4859fd-f908-4cb8-8889-8e29c0166c86", - "fields": { - "str_id": "h15--h16-mess", - "time_of_creation": "2018-09-25T17:51:46.156Z", - "name": "H15 & H16 Mess", - "short_name": "H15 & H16 Mess", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "4054be4f-ebfb-49fa-8a0c-29c46b02c1b2", - "fields": { - "str_id": "11-type1", - "time_of_creation": "2018-06-24T19:50:19.429Z", - "name": "Type1 - 11", - "short_name": "11-Type1", - "description": "Type 1 Quarters Flat nos. 121 - 132", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3389, - "pixel_y": 803, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "40a0335c-cbd5-4849-bb18-87ef976824ed", - "fields": { - "str_id": "2b-1", - "time_of_creation": "2018-06-24T19:50:18.910Z", - "name": "Type 2B 1", - "short_name": "2B 1", - "description": "2B-Type Quarters, Flat nos 1 - 6", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 4421, - "pixel_y": 2264, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "412d646b-2aa6-4120-9d28-15316e0d365e", - "fields": { - "str_id": "youtube-live", - "time_of_creation": "2020-12-18T16:12:57.044Z", - "name": "Youtube Live", - "short_name": "Youtube Live", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "41762068-4df9-467d-ad0f-d0caf711b980", - "fields": { - "str_id": "squash-court-new-sac", - "time_of_creation": "2019-08-26T21:04:49.306Z", - "name": "Squash Court, New SAC", - "short_name": "Squash Court, New SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "41b4d43a-0a49-4fd7-b441-ea41004a2369", - "fields": { - "str_id": "math-centre", - "time_of_creation": "2018-06-24T19:50:19.564Z", - "name": "National Centre for Mathematics", - "short_name": "Math Centre", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 9, - "pixel_x": 2890, - "pixel_y": 1880, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "41d26c27-1a92-411c-a16a-7ae4f4f54aac", - "fields": { - "str_id": "tghh", - "time_of_creation": "2021-08-28T07:57:05.799Z", - "name": "Tghh", - "short_name": "Tghh", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "42422033-0fb0-4a62-aa55-133f1691997d", - "fields": { - "str_id": "old-cse", - "time_of_creation": "2018-06-24T19:50:18.309Z", - "name": "Old Computer Science Engineering Department", - "short_name": "Old CSE", - "description": "http://www.cse.iitb.ac.in\r\nTel: +912225767701 / +912225767702 / +912225762771\r\n\r\nThe department offers academic programs for B. Tech, Dual degree (B Tech + M Tech), Dual Degree PG (M. Tech + Ph. D) and Ph. D. Research areas include algorithms, programming languages and Compilers, database and information systems, artificial intelligence and natural language processing, software engineering, formal methods, distributed systems, computer networks, data mining, computer graphics, computer vision and image understanding, real-time and embedded systems, formal languages and bio-inspired computing", - "parent": null, - "parent_relation": null, - "group_id": 1, - "pixel_x": 4002, - "pixel_y": 1545, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "425d9456-6ba4-4970-9f32-039dabafc899", - "fields": { - "str_id": "lt-201", - "time_of_creation": "2018-06-24T19:50:18.723Z", - "name": "LT 201", - "short_name": "LT 201", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Second floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "42664559-5ea0-4670-b0c8-299f6d3eff81", - "fields": { - "str_id": "jam-off", - "time_of_creation": "2018-06-24T19:50:18.426Z", - "name": "Joint Admission Test for M.Sc. Office", - "short_name": "JAM Off.", - "description": "Tel: +91222576 2924", - "parent": "0308d18d-03a2-40bb-8efd-b222b7f84001", - "parent_relation": "Inside", - "group_id": 1, - "pixel_x": 3628, - "pixel_y": 1640, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "42cce33d-1c9c-4491-836d-c5052c31f283", - "fields": { - "str_id": "lakeside-gate", - "time_of_creation": "2018-06-24T19:50:18.245Z", - "name": "Lake Side Gate no. 1", - "short_name": "Lakeside Gate", - "description": "Tel: +912225761124", - "parent": null, - "parent_relation": "", - "group_id": 10, - "pixel_x": 792, - "pixel_y": 2777, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "42eb7098-9876-4609-9241-67a3b345572d", - "fields": { - "str_id": "httpsbitly3iejyxrin", - "time_of_creation": "2020-09-19T09:09:24.059Z", - "name": "https://bit.ly/3iEjYxrin", - "short_name": "https://bit.ly/3iEjYxrin", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "431b487b-1db7-4cc0-ae63-af19ad96dca9", - "fields": { - "str_id": "sitac", - "time_of_creation": "2018-06-24T19:50:18.597Z", - "name": "Structural integrity Testing and Analysis Centre", - "short_name": "SITAC", - "description": "Comes under Mechanical Engineering Department +912225764528", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 4355, - "pixel_y": 1750, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "434c029b-8c7e-4a7d-b892-7a55282b22e3", - "fields": { - "str_id": "3-type1", - "time_of_creation": "2018-06-24T19:50:19.403Z", - "name": "Type1 - 3", - "short_name": "3-Type1", - "description": "Type 1 Quarters Flat nos. 25 - 36", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4177, - "pixel_y": 2652, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "434cd6e5-4dcd-4254-8796-c216845efb84", - "fields": { - "str_id": "kampus-app", - "time_of_creation": "2020-09-23T14:22:25.265Z", - "name": "Kampus App", - "short_name": "Kampus App", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "4370f94f-aa75-457c-b3b2-b377d4678067", - "fields": { - "str_id": "vmcc", - "time_of_creation": "2018-06-24T19:50:18.398Z", - "name": "Victor Menezes Convention Centre", - "short_name": "VMCC", - "description": "Tel: +912225761125", - "parent": null, - "parent_relation": "", - "group_id": 4, - "pixel_x": 4110, - "pixel_y": 1847, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "4374fe70-8cf3-48dd-ab7a-c1a468fe79cf", - "fields": { - "str_id": "cisco-webex", - "time_of_creation": "2020-08-15T07:41:30.406Z", - "name": "Cisco WebEx", - "short_name": "Cisco WebEx", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "438250f8-6e59-4aee-8550-b1d83115d6b3", - "fields": { - "str_id": "iit-bombay", - "time_of_creation": "2018-06-24T21:51:24.848Z", - "name": "IIT Bombay", - "short_name": "IIT Bombay", - "description": "On the IIT Bombay Campus", - "parent": null, - "parent_relation": null, - "group_id": 0, - "pixel_x": 0, - "pixel_y": 0, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "44244dbc-9c3e-4090-87fc-cdc144b488a7", - "fields": { - "str_id": "fb-live-styleupiitb", - "time_of_creation": "2021-08-03T17:24:46.963Z", - "name": "FB Live @styleup.iitb ", - "short_name": "FB Live @styleup.iitb ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "44b8543a-5713-4ce6-b7ce-810712bd94d4", - "fields": { - "str_id": "lt-302", - "time_of_creation": "2018-06-24T19:50:18.749Z", - "name": "LT 302", - "short_name": "LT 302", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Third floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "44cb782e-b6f0-4e65-b35a-9c0b907fc9d0", - "fields": { - "str_id": "hss", - "time_of_creation": "2018-06-24T19:50:18.220Z", - "name": "Humanities and Social Sciences Department", - "short_name": "HSS", - "description": "http://www.hss.iitb.ac.in\r\n+912225767351 / +91222576 7351 / +912225767352\r\n\r\nThe department offers academic programs for B. Tech, M. Phil, Ph. D. Research areas include Economics, English, Philosophy, Psychology, Sociology", - "parent": null, - "parent_relation": null, - "group_id": 1, - "pixel_x": 3911, - "pixel_y": 2171, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "44d85bf9-5dac-4ef5-8767-d9f3c7779a0e", - "fields": { - "str_id": "refrigeration-ac-and-cryogenics-lab", - "time_of_creation": "2018-06-24T19:50:18.566Z", - "name": "Refrigeration, A/C and Cryogenics Lab", - "short_name": "Refrigeration, A/C and Cryogenics Lab", - "description": "Comes under Mechanical Engineering Department +912225764587", - "parent": "f5303dcd-b456-4147-a414-88a89815d826", - "parent_relation": "Near", - "group_id": 12, - "pixel_x": 4225, - "pixel_y": 1630, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "45116f0d-804d-4436-b081-45138dfe6ebd", - "fields": { - "str_id": "facebook-live", - "time_of_creation": "2021-02-07T07:40:00.371Z", - "name": "Facebook Live", - "short_name": "Facebook Live", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "452bf863-2dfe-4bb4-a040-5e6018de34e8", - "fields": { - "str_id": "youtube-live", - "time_of_creation": "2020-08-06T19:50:34.732Z", - "name": "YouTube Live ", - "short_name": "YouTube Live ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "45316648-6642-424e-97e8-72096999f268", - "fields": { - "str_id": "hydraulics-lab-workshop", - "time_of_creation": "2018-06-24T19:50:18.514Z", - "name": "Hydraulics Lab Workshop", - "short_name": "Hydraulics Lab Workshop", - "description": "", - "parent": "fa6f024a-87ae-4d06-903a-f77e05de7a27", - "parent_relation": "Near", - "group_id": 12, - "pixel_x": 4180, - "pixel_y": 1450, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "4561c2f3-0629-4837-8047-10899dcdebe6", - "fields": { - "str_id": "ic3-som", - "time_of_creation": "2019-09-30T04:51:03.433Z", - "name": "IC3 SOM", - "short_name": "IC3 SOM", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "45c7dfb0-ed3a-4683-8699-65d3b5ad0f06", - "fields": { - "str_id": "c2", - "time_of_creation": "2018-06-24T19:50:19.142Z", - "name": "Type C-2", - "short_name": "C2", - "description": "C-Type Quarters Flat nos. 13 - 18", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3108, - "pixel_y": 2552, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "462bdb2e-deb7-4c1c-9896-1226d68b6ce4", - "fields": { - "str_id": "screening-room-new-sac", - "time_of_creation": "2019-02-18T21:09:54.583Z", - "name": "Screening Room, New SAC", - "short_name": "Screening Room, New SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "463177f9-45bc-4841-a956-53e69955ade0", - "fields": { - "str_id": "sjm-som-bus-stand", - "time_of_creation": "2018-09-18T18:36:00.475Z", - "name": "SJM SOM bus stand", - "short_name": "SJM SOM bus stand", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "464f1cf2-4be4-4b67-8a57-3c186e5f020e", - "fields": { - "str_id": "lc-202", - "time_of_creation": "2018-06-24T19:50:18.788Z", - "name": "LC 202", - "short_name": "LC 202", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Second floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "47281aa0-b813-48e4-bc09-6c4c3de6caaa", - "fields": { - "str_id": "vmcc--seminar-hall-2", - "time_of_creation": "2019-10-19T08:24:45.638Z", - "name": "VMCC- Seminar Hall 2", - "short_name": "VMCC- Seminar Hall 2", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "47650bad-bd75-4212-ba34-4b4f739e8935", - "fields": { - "str_id": "hostel-5", - "time_of_creation": "2020-03-01T08:29:40.932Z", - "name": "Hostel 5", - "short_name": "Hostel 5", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "476931a1-d95e-4c0d-bb70-a4aade0d7eff", - "fields": { - "str_id": "zoom", - "time_of_creation": "2020-08-14T16:16:37.211Z", - "name": "Zoom", - "short_name": "Zoom", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "47858e97-f358-4fbd-b3f8-a70def5301bb", - "fields": { - "str_id": "white-house", - "time_of_creation": "2018-06-24T19:50:18.410Z", - "name": "White House", - "short_name": "White House", - "description": "B- 20, A wing Tel: +912225762885, Flat nos. 99-110 B- 20, B wing Tel: +912225762840, Flat nos.111-122", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 1909, - "pixel_y": 2799, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "48454e2b-f5ba-478d-bfb1-bb532bdf5f0e", - "fields": { - "str_id": "hostel-9-common-room", - "time_of_creation": "2019-08-20T13:01:12.296Z", - "name": "Hostel 9 common room", - "short_name": "Hostel 9 common room", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "4866ce7e-0ba0-499e-9123-917cc74111ec", - "fields": { - "str_id": "sbi", - "time_of_creation": "2018-06-24T19:50:18.384Z", - "name": "State Bank of India Branch", - "short_name": "SBI", - "description": "", - "parent": null, - "parent_relation": null, - "group_id": 8, - "pixel_x": 3742, - "pixel_y": 1229, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "48edd123-38d8-46cc-94fe-24aae94ab106", - "fields": { - "str_id": "football-deadlands-", - "time_of_creation": "2019-11-06T11:13:20.073Z", - "name": "Football Deadlands ?", - "short_name": "Football Deadlands ?", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "498e08e9-3143-4a71-ae5f-eda296317e3e", - "fields": { - "str_id": "2b-10", - "time_of_creation": "2018-06-24T19:50:19.498Z", - "name": "Type 2B 10", - "short_name": "2B 10", - "description": "", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 737, - "pixel_y": 2651, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "4a3043d5-7b9c-4a95-9496-f5655d714ad9", - "fields": { - "str_id": "theatre-room-sac", - "time_of_creation": "2018-07-29T07:34:11.367Z", - "name": "Theatre Room, SAC", - "short_name": "Theatre Room, SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "4a690796-6b41-4a1e-841d-2ae4d7b0a465", - "fields": { - "str_id": "gymkhana-grounds", - "time_of_creation": "2018-06-24T22:05:36.609Z", - "name": "Gymkhana Grounds", - "short_name": "Gymkhana Grounds", - "description": "The Gymkhana Grounds consist of a football field, a cricket field, basketball courts and more.", - "parent": null, - "parent_relation": null, - "group_id": 8, - "pixel_x": 3185, - "pixel_y": 1165, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "4acc75dd-1361-4c36-bc17-97a39bdfea24", - "fields": { - "str_id": "httpfacebookcomhostel9iitb", - "time_of_creation": "2021-01-25T03:02:53.633Z", - "name": "http://facebook.com/Hostel9.IITB", - "short_name": "http://facebook.com/Hostel9.IITB", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "4bc5da47-899e-42ae-a234-bf49678d4b66", - "fields": { - "str_id": "yoga-room--3rd-floor-new-sac-opposite-to-hostel-11", - "time_of_creation": "2019-05-20T06:53:51.667Z", - "name": " Yoga Room, , 3rd floor, New SAC, opposite to hostel 11", - "short_name": " Yoga Room, , 3rd floor, New SAC, opposite to hostel 11", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "4c6a2554-9431-466a-8545-79c0d3b6a1de", - "fields": { - "str_id": "oat-old-sac", - "time_of_creation": "2020-03-04T21:20:14.117Z", - "name": "OAT, Old SAC", - "short_name": "OAT, Old SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "4c7b4b94-4953-4d6f-98fd-c57e197f8232", - "fields": { - "str_id": "jhabua-madhya-pradesh", - "time_of_creation": "2018-11-18T17:04:49.058Z", - "name": "Jhabua, Madhya Pradesh ", - "short_name": "Jhabua, Madhya Pradesh ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "4c955153-fef0-4033-8e29-8351d3893b61", - "fields": { - "str_id": "ncc-t-point-road-near-convocation-hall", - "time_of_creation": "2020-03-03T06:44:36.924Z", - "name": "NCC T point road, near convocation hall", - "short_name": "NCC T point road, near convocation hall", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "4c9d289f-b133-41ec-adb4-6337e6cd7b6d", - "fields": { - "str_id": "a19", - "time_of_creation": "2018-06-24T19:50:19.068Z", - "name": "Bungalow A19 ", - "short_name": "A19", - "description": "A-Type Bungalow", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4280, - "pixel_y": 1110, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "4d379d25-f7e1-4d32-8834-620e22afe6ac", - "fields": { - "str_id": "nss-iitb-youtube-live", - "time_of_creation": "2020-08-25T12:33:23.864Z", - "name": "NSS IITB YouTube Live", - "short_name": "NSS IITB YouTube Live", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "4d786674-1d9d-4c03-89f2-e2a42c02f0a3", - "fields": { - "str_id": "c8", - "time_of_creation": "2018-06-24T19:50:19.157Z", - "name": "Type C-8", - "short_name": "C8", - "description": "C-Type Quarters Flat nos. 49 - 54", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3078, - "pixel_y": 2878, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "4ea5ddad-4d8f-4b96-94ee-efc2df04dbc6", - "fields": { - "str_id": "uphar", - "time_of_creation": "2018-06-24T19:50:18.889Z", - "name": "Uphar", - "short_name": "Uphar", - "description": "Upkar food joint Breakfast: 6:30 am to 12 pm Lunch: 12pm to 3 pm Evening snacks: 4 pm to 7:30 pm", - "parent": null, - "parent_relation": "", - "group_id": 5, - "pixel_x": 4052, - "pixel_y": 2815, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "4ff83bf6-82e3-4647-ae6d-3c59ec0f23d9", - "fields": { - "str_id": "canara-atm", - "time_of_creation": "2018-06-24T19:50:18.051Z", - "name": "ATM - Canara Bank near H6", - "short_name": "Canara ATM", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 6, - "pixel_x": 2543, - "pixel_y": 842, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "502f034a-7860-437d-a37f-7562f1d5340b", - "fields": { - "str_id": "zoom-meeting", - "time_of_creation": "2021-01-22T19:49:54.549Z", - "name": "Zoom meeting", - "short_name": "Zoom meeting", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "50e2e836-3974-4be9-b35d-3cb0de879652", - "fields": { - "str_id": "conference-room-sac", - "time_of_creation": "2019-01-14T15:49:20.570Z", - "name": "Conference room SAC", - "short_name": "Conference room SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "51839c0e-324f-413b-8edf-510df2927fb7", - "fields": { - "str_id": "s1-bay", - "time_of_creation": "2018-06-24T19:50:18.582Z", - "name": "S1 Bay", - "short_name": "S1 Bay", - "description": "", - "parent": "431b487b-1db7-4cc0-ae63-af19ad96dca9", - "parent_relation": "Near", - "group_id": 1, - "pixel_x": 4490, - "pixel_y": 1760, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "51c16b38-18d3-4920-97fa-7c17ec7697ad", - "fields": { - "str_id": "zoom", - "time_of_creation": "2020-07-03T10:04:07.168Z", - "name": "Zoom ", - "short_name": "Zoom ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "51d75d87-16f4-481b-93e4-bf38a0207c2c", - "fields": { - "str_id": "a13", - "time_of_creation": "2018-06-24T19:50:19.046Z", - "name": "Bungalow A13 ", - "short_name": "A13", - "description": "A-Type Bungalow", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2536, - "pixel_y": 2374, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "523d7fb8-d910-4ca0-bf97-320f23e95943", - "fields": { - "str_id": "vanvihar", - "time_of_creation": "2018-06-24T19:50:18.141Z", - "name": "Guest House / Vanvihar", - "short_name": "Vanvihar", - "description": "Tel: +912225761200 / +912225768945", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 2881, - "pixel_y": 2106, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "523ff44f-9f1e-48c6-aa62-6f804ff1bb2d", - "fields": { - "str_id": "c11", - "time_of_creation": "2018-06-24T19:50:19.169Z", - "name": "Type C-11", - "short_name": "C11", - "description": "C-Type Quarters Flat nos. 67 - 72", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2832, - "pixel_y": 3131, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "527a69c6-ec29-4d28-b496-b6c66d5fb587", - "fields": { - "str_id": "la-la-land", - "time_of_creation": "2019-02-11T19:29:27.248Z", - "name": "La La Land", - "short_name": "La La Land", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "52a2ab10-829b-49b3-a352-9bc730e935b8", - "fields": { - "str_id": "kshitij-udyan", - "time_of_creation": "2018-06-24T19:50:18.238Z", - "name": "Kshitij Udyan", - "short_name": "Kshitij Udyan", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 9, - "pixel_x": 2971, - "pixel_y": 1744, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "52d7624e-4fc1-41f1-a497-6b53f64e504d", - "fields": { - "str_id": "amul-parlour", - "time_of_creation": "2018-06-24T19:50:19.494Z", - "name": "Amul Parlour", - "short_name": "Amul Parlour", - "description": "Desserts and drinks", - "parent": "803f4611-9e9c-4120-b236-78cfbcd3f4b2", - "parent_relation": "Outside", - "group_id": 5, - "pixel_x": 2114, - "pixel_y": 800, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "52eaea20-818f-4c28-9132-e85a96a9b8be", - "fields": { - "str_id": "all-stationary-shops", - "time_of_creation": "2018-09-02T17:46:50.040Z", - "name": "All stationary shops", - "short_name": "All stationary shops", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "536c4c4c-52b2-4b4e-b3ce-2c6d2c92d036", - "fields": { - "str_id": "btr-a--b", - "time_of_creation": "2018-06-24T19:50:19.139Z", - "name": "BTR Building - A & B", - "short_name": "BTR A & B", - "description": "A new Type B building is proposed here.", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2002, - "pixel_y": 3087, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "538d1fd9-a1c7-431c-a8b8-0215d2941d12", - "fields": { - "str_id": "room-350-2nd-floor-department-of-chemistry", - "time_of_creation": "2019-02-07T18:14:51.838Z", - "name": " Room 350, 2nd Floor, Department of Chemistry", - "short_name": " Room 350, 2nd Floor, Department of Chemistry", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "53e2d1e1-4865-4c3f-b550-49028c595c43", - "fields": { - "str_id": "drdo", - "time_of_creation": "2018-06-24T19:50:18.114Z", - "name": "Defence Research & Development Organization", - "short_name": "DRDO", - "description": "Flat nos. 101 - 404", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4125, - "pixel_y": 1048, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "541dd2be-2621-49b5-bdd8-3a0797e82b4f", - "fields": { - "str_id": "16-type1", - "time_of_creation": "2018-06-24T19:50:19.444Z", - "name": "Type1 - 16", - "short_name": "16-Type1", - "description": "Type 1 Quarters Flat nos. 181 - 192", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4713, - "pixel_y": 1252, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "54512d14-5fad-4831-8327-0ca9ad35a961", - "fields": { - "str_id": "na", - "time_of_creation": "2021-03-12T14:41:28.423Z", - "name": "N/A", - "short_name": "N/A", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "54992188-e27a-4d05-9697-b880fe1bfcd4", - "fields": { - "str_id": "ircc", - "time_of_creation": "2018-06-24T19:50:18.231Z", - "name": "Industrial Research & Consultancy Centre", - "short_name": "IRCC", - "description": "Tel: +912225767030, +912225767039 www.ircc.iitb.ac.in The Industrial Research and Consultancy Centre (IRCC) co-ordinates and facilitates all research and development activities at the Institute.", - "parent": "c3a14998-23cb-4cbe-a6fa-70accc7069a1", - "parent_relation": "Level 2", - "group_id": 1, - "pixel_x": 3505, - "pixel_y": 1867, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "54b1610b-17b6-4fdf-be41-a246ae3f9148", - "fields": { - "str_id": "tinkerers-lab", - "time_of_creation": "2018-09-18T15:45:57.918Z", - "name": "Tinkerers Lab", - "short_name": "Tinkerers Lab", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "54c353ce-1f9a-4a29-9719-46ee7249d3ed", - "fields": { - "str_id": "room-no-109-01st-floor-new-csecc-building", - "time_of_creation": "2019-02-07T12:31:48.148Z", - "name": "Room No. 109, 01st Floor, New CSE/CC Building ", - "short_name": "Room No. 109, 01st Floor, New CSE/CC Building ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "54ce35bf-c391-44ed-8085-fc090377bba4", - "fields": { - "str_id": "facebook-live-culturalsiitb", - "time_of_creation": "2021-04-14T12:23:49.298Z", - "name": "Facebook Live @Culturalsiitb", - "short_name": "Facebook Live @Culturalsiitb", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "551bedf6-5d7e-42eb-a50a-6653a69752a8", - "fields": { - "str_id": "httpsformsgle4rhqprh8vtttapt6a", - "time_of_creation": "2020-09-24T10:03:40.735Z", - "name": "https://forms.gle/4rHQPrH8VtttaPt6A", - "short_name": "https://forms.gle/4rHQPrH8VtttaPt6A", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "55d59037-db62-4294-b68f-af105b470d35", - "fields": { - "str_id": "old-ongc-lab", - "time_of_creation": "2018-06-24T19:50:18.559Z", - "name": "Old ONGC Lab", - "short_name": "Old ONGC Lab", - "description": "", - "parent": "d483545a-95ba-438d-a218-20a8ee2946a1", - "parent_relation": "Near", - "group_id": 12, - "pixel_x": 4275, - "pixel_y": 1555, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "55fa58e9-ce44-41a6-9fff-3107038f0b7d", - "fields": { - "str_id": "padmavati-devi-temple", - "time_of_creation": "2018-06-24T19:50:18.323Z", - "name": "Padmavati Devi Temple", - "short_name": "Padmavati Devi Temple", - "description": "The word Powai is thought to have possibly been derived from the word Poumw, a corrupted form of Pouma which means Padma in Sanskrit. This is due to the fact that the Padmavati Devi Temple, dedicated to Goddess Padmavati and situated on the bank of the Powai lake inside IIT Bombay, dates back to the 10th century AD as per the Archeological Survey of India. http://www.iitbdevitemple.org", - "parent": null, - "parent_relation": "", - "group_id": 9, - "pixel_x": 946, - "pixel_y": 2178, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "56142045-7395-41d4-a58c-8f34c54425d1", - "fields": { - "str_id": "cl-118-chemical-engineering-department", - "time_of_creation": "2019-02-13T04:30:17.499Z", - "name": "CL-118, Chemical Engineering DEPARTMENT", - "short_name": "CL-118, Chemical Engineering DEPARTMENT", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "5682fdde-a1ba-4200-87e1-1ffd5a56397f", - "fields": { - "str_id": "2b-4", - "time_of_creation": "2018-06-24T19:50:18.921Z", - "name": "Type 2B 4", - "short_name": "2B 4", - "description": "2B-Type Quarters, Flat nos 19 - 24", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 4284, - "pixel_y": 2462, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "56f2219c-2eb7-455b-83f0-19ad5a1f7bd0", - "fields": { - "str_id": "n2-bay", - "time_of_creation": "2018-06-24T19:50:18.544Z", - "name": "N2 Bay", - "short_name": "N2 Bay", - "description": "", - "parent": "34513a0d-1b20-4350-8d76-57c0883f10fe", - "parent_relation": "Near", - "group_id": 1, - "pixel_x": 4445, - "pixel_y": 1669, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "571b762e-b756-4def-a968-ee114f28964b", - "fields": { - "str_id": "n1-bay", - "time_of_creation": "2018-06-24T19:50:18.539Z", - "name": "N1 Bay", - "short_name": "N1 Bay", - "description": "Comes under Chemical Engineering Department +912225764211", - "parent": "34513a0d-1b20-4350-8d76-57c0883f10fe", - "parent_relation": "Near", - "group_id": 1, - "pixel_x": 4525, - "pixel_y": 1680, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "57b11e17-cb16-4cb3-b0bb-345a838e5902", - "fields": { - "str_id": "seminar-hall-second-floor-vmcc", - "time_of_creation": "2019-10-31T17:02:29.832Z", - "name": "Seminar Hall, Second Floor, VMCC", - "short_name": "Seminar Hall, Second Floor, VMCC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "57be98ca-7e19-47c7-a249-64140e246f2b", - "fields": { - "str_id": "mech", - "time_of_creation": "2018-06-24T19:50:18.279Z", - "name": "Mechanical Engineering Department", - "short_name": "Mech", - "description": "http://www.me.iitb.ac.in\r\nTel: +912225762545\r\nExt. 7500, 7501, 2576 7500, 2576 7501.\r\n\r\nThe department offers academic programs for B. Tech, Dual degree, M. Tech and Ph. D. Research areas include design enggineering, manufacturing enggineering, thermal and fluid enggineering", - "parent": null, - "parent_relation": null, - "group_id": 1, - "pixel_x": 4009, - "pixel_y": 1645, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "57edc27d-fd06-4fcf-afff-5f2c6bdbdd75", - "fields": { - "str_id": "h2-lounge", - "time_of_creation": "2018-10-25T05:32:47.047Z", - "name": "H2 Lounge", - "short_name": "H2 Lounge", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "57f10642-0ec7-44db-8fd1-6d02f48fb79b", - "fields": { - "str_id": "ic-1-som", - "time_of_creation": "2019-01-11T17:10:53.487Z", - "name": "IC-1 (SOM)", - "short_name": "IC-1 (SOM)", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "581e6771-9841-4ed5-92dd-9f0e8dc44044", - "fields": { - "str_id": "ic1--som", - "time_of_creation": "2018-10-05T07:48:31.954Z", - "name": "IC1 | SOM", - "short_name": "IC1 | SOM", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "58889e47-a539-4193-8a30-1c5d0bcfb492", - "fields": { - "str_id": "lecture-hall", - "time_of_creation": "2019-09-12T05:19:25.364Z", - "name": "Lecture Hall", - "short_name": "Lecture Hall", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "58b0643c-a2cb-48be-bf5a-a9166fce6c35", - "fields": { - "str_id": "httpscuttlyqipn0xt", - "time_of_creation": "2022-01-22T14:36:20.496Z", - "name": "https://cutt.ly/QIPn0Xt", - "short_name": "https://cutt.ly/QIPn0Xt", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "58bea0b3-733b-45bf-a87b-4785b8e0d9e1", - "fields": { - "str_id": "semt-lab", - "time_of_creation": "2018-06-24T19:50:18.593Z", - "name": "Structural Evaluation & Material Technologies Lab", - "short_name": "SEMT Lab", - "description": "Comes under Civil Engineering Department +912225764318", - "parent": "fa6f024a-87ae-4d06-903a-f77e05de7a27", - "parent_relation": "Near", - "group_id": 12, - "pixel_x": 4280, - "pixel_y": 1510, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "5923e800-1e00-4f06-bd32-19c92c719567", - "fields": { - "str_id": "13-h2", - "time_of_creation": "2018-06-24T19:50:19.316Z", - "name": "Type H2 - 13", - "short_name": "13-H2", - "description": "H2 Type Quarters Flat nos. 97 - 104", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 753, - "pixel_y": 2520, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "5943e508-829b-414b-a236-4526263e3ec5", - "fields": { - "str_id": "tinkerers-lab", - "time_of_creation": "2018-06-24T19:50:18.620Z", - "name": "Tinkerers Lab", - "short_name": "Tinkerers Lab", - "description": "", - "parent": "f5303dcd-b456-4147-a414-88a89815d826", - "parent_relation": null, - "group_id": 12, - "pixel_x": 4225, - "pixel_y": 1630, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "598d1ab6-cc6d-4409-8363-f0e9a1fc81c6", - "fields": { - "str_id": "h11", - "time_of_creation": "2018-06-24T19:50:18.168Z", - "name": "Hostel 11 Athena (Girls Hostel)", - "short_name": "H11", - "description": "Hostel security: +912225762611 Hall Manager: +912225762711", - "parent": null, - "parent_relation": "", - "group_id": 2, - "pixel_x": 2987, - "pixel_y": 1368, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "5a1dbfec-f31e-44a3-ab64-5a5ea49a09b3", - "fields": { - "str_id": "microsoft-teams", - "time_of_creation": "2020-12-14T12:11:21.247Z", - "name": "Microsoft teams", - "short_name": "Microsoft teams", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "5a25b8e7-2572-497f-adff-38e7f24acf1d", - "fields": { - "str_id": "23-h2", - "time_of_creation": "2018-06-24T19:50:19.353Z", - "name": "Type H2 - 24", - "short_name": "23-H2", - "description": "H2 Type Quarters Flat nos. 185 - 192", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 522, - "pixel_y": 2424, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "5a673ce7-a18e-4929-824d-d6244a6f797d", - "fields": { - "str_id": "wadhwani-research-centre-bb", - "time_of_creation": "2018-06-24T19:50:18.828Z", - "name": "WRCBB Wadhwani Research Centre in Biosciences and Bioengineering ", - "short_name": "Wadhwani Research Centre BB", - "description": "", - "parent": "91091770-c141-486d-bfce-08247cc7286c", - "parent_relation": "Inside", - "group_id": 1, - "pixel_x": 3934, - "pixel_y": 2241, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "5aadf3a8-5e66-4d7e-be91-92658e22b2d7", - "fields": { - "str_id": "a14", - "time_of_creation": "2018-06-24T19:50:19.049Z", - "name": "Bungalow A14 ", - "short_name": "A14", - "description": "A-Type Bungalow", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3950, - "pixel_y": 1273, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "5b3c851c-a1c6-4a19-807e-8323f846ec79", - "fields": { - "str_id": "22-type1", - "time_of_creation": "2018-06-24T19:50:19.468Z", - "name": "Type1 - 22", - "short_name": "22-Type1", - "description": "Type 1 Quarters Flat nos. 310 - 321 Hostel for married PhD students", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2565, - "pixel_y": 680, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "5c185f66-558b-486e-9e39-1ab1ff2dc1b6", - "fields": { - "str_id": "airmeet", - "time_of_creation": "2020-07-10T13:53:30.251Z", - "name": "Airmeet", - "short_name": "Airmeet", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "5c6dff34-18f7-46f4-881d-c62e34463537", - "fields": { - "str_id": "hydraulic-test", - "time_of_creation": "2018-06-24T19:50:18.616Z", - "name": "Thermal Hydraulic Test Facility", - "short_name": "Hydraulic Test", - "description": "Comes under Mechanical Engineering Department +912225762545 Ext. 7500, 7501, 2576 7500, 2576 7501.", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 4463, - "pixel_y": 1536, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "5c74e39e-5878-4b08-859a-6b7a97aac3de", - "fields": { - "str_id": "httpsmonashzoomusj88641311179pwdcehvs2izszfrbxngmhbev", - "time_of_creation": "2022-01-22T04:46:26.406Z", - "name": "https://monash.zoom.us/j/88641311179?pwd=cEhvS2IzSzFRbXNGMHBEV", - "short_name": "https://monash.zoom.us/j/88641311179?pwd=cEhvS2IzSzFRbXNGMHBEV", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "5c88a59d-b3aa-4928-94a8-20a9f52e4f71", - "fields": { - "str_id": "stationery-shops", - "time_of_creation": "2019-10-15T05:53:20.122Z", - "name": "Stationery Shops", - "short_name": "Stationery Shops", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "5cb0bd89-416d-4c8a-978c-5eb919ba143d", - "fields": { - "str_id": "kresit-canteen", - "time_of_creation": "2018-06-24T19:50:18.652Z", - "name": "KReSIT Canteen", - "short_name": "KReSIT Canteen", - "description": "From 10 to 8. Samosas run out by 5:30ish though!", - "parent": "f3fbfd2b-36a0-46f2-9cb1-0bad97e60c28", - "parent_relation": "Inside", - "group_id": 5, - "pixel_x": 3301, - "pixel_y": 2106, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "5ce808c0-1085-405c-bce3-c1830c72082d", - "fields": { - "str_id": "campus-school", - "time_of_creation": "2018-06-24T19:50:18.080Z", - "name": "Campus School", - "short_name": "Campus School", - "description": "Principal: MS.BHAGWAT A.S +912225768992 Campus School began as a primary school on 29 June 1976. V to X standard was added by 1986 with 100% results in X std in 1986, 1987 and 1988. The junior college classes FYJC or XI Std and SYJC or XII Std were started in science stream under Principal Chandra Rao in 1989. The Primary to JC complex has about 400 students on its roll, 35 teachers and 20 non-teaching staff. Admission to all classes is restricted to children of IIT employees with some seats made available to the children of NITIE and SAMEER employees.", - "parent": null, - "parent_relation": "", - "group_id": 7, - "pixel_x": 3331, - "pixel_y": 2865, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "5d7d2bba-e553-4733-9515-c991ff9e0f37", - "fields": { - "str_id": "gulmohar", - "time_of_creation": "2018-06-24T22:13:45.814Z", - "name": "Gulmohar Building", - "short_name": "Gulmohar", - "description": "", - "parent": null, - "parent_relation": null, - "group_id": 6, - "pixel_x": 2989, - "pixel_y": 2154, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "5e039e21-27e7-44c0-96e6-436ec09c004a", - "fields": { - "str_id": "orthocad-lab", - "time_of_creation": "2018-06-24T19:50:18.320Z", - "name": "OrthoCad Lab", - "short_name": "OrthoCad Lab", - "description": "The OrthoCAD Network Research Cell was established in 2007 to jump-start indigenous research and development activities in orthopaedic reconstruction systems. The OrthoCAD Network addresses a critical need for mega-prostheses to reconstruct massive gaps or loss of bone from osteo-sarcoma (cancer), congenital (birth) defects or trauma (accidents).", - "parent": null, - "parent_relation": "", - "group_id": 12, - "pixel_x": 4644, - "pixel_y": 1767, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "5f4dccdd-dbd0-426c-a697-1d77ca5bca45", - "fields": { - "str_id": "seminar-room-2nd-floor-physics-department", - "time_of_creation": "2019-10-20T05:33:56.496Z", - "name": "Seminar Room, 2nd Floor, Physics Department", - "short_name": "Seminar Room, 2nd Floor, Physics Department", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "5f71fb4e-8138-4277-b7bb-dda501bd1df5", - "fields": { - "str_id": "17-type1", - "time_of_creation": "2018-06-24T19:50:19.448Z", - "name": "Type1 - 17", - "short_name": "17-Type1", - "description": "Type 1 Quarters Flat nos. 193 - 208", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4785, - "pixel_y": 1290, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "5fa0a841-42d5-42f4-ad6c-2a27052a00f7", - "fields": { - "str_id": "20-type1", - "time_of_creation": "2018-06-24T19:50:19.460Z", - "name": "Type1 - 20", - "short_name": "20-Type1", - "description": "Type 1 Quarters Flat nos. 260 - 289", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4328, - "pixel_y": 871, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "5ff031a1-04e7-455b-9cd4-205d1e6b85ff", - "fields": { - "str_id": "fc-kohli-auditorium", - "time_of_creation": "2019-01-03T15:46:12.367Z", - "name": "F.C Kohli Auditorium", - "short_name": "F.C Kohli Auditorium", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "5ff83777-7d46-43b3-aad2-584b99afa008", - "fields": { - "str_id": "gymkhana-ground-new-sac-entrance-only", - "time_of_creation": "2019-10-29T15:01:30.218Z", - "name": "Gymkhana Ground, New SAC Entrance only", - "short_name": "Gymkhana Ground, New SAC Entrance only", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "6027a7d7-f10a-4b8e-8d30-454331f2b1e9", - "fields": { - "str_id": "httpsecell-concordhubilocomcommunity", - "time_of_creation": "2020-08-26T20:37:37.828Z", - "name": "https://ecell-concord.hubilo.com/community", - "short_name": "https://ecell-concord.hubilo.com/community", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "605f62d2-0f3e-425f-beb2-87327cf53d96", - "fields": { - "str_id": "tulsi-c", - "time_of_creation": "2018-06-24T19:50:18.907Z", - "name": "Tulsi C", - "short_name": "Tulsi C", - "description": "PS Quarters", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4607, - "pixel_y": 1031, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "60af6853-3b1f-4cf4-bf84-f7752a95d615", - "fields": { - "str_id": "ms-teams", - "time_of_creation": "2020-09-30T13:26:51.801Z", - "name": "MS Teams", - "short_name": "MS Teams", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "60af899b-8ef7-4d23-9e00-9067a2542071", - "fields": { - "str_id": "new-yoga-room-old-sac", - "time_of_creation": "2018-08-07T07:38:28.503Z", - "name": "New Yoga Room, Old SAC", - "short_name": "New Yoga Room, Old SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "60d10900-67a0-4263-9a19-d3a04da4e8db", - "fields": { - "str_id": "zoom-meet", - "time_of_creation": "2020-07-03T12:53:38.411Z", - "name": "Zoom meet", - "short_name": "Zoom meet", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "60ef3a78-0cd0-467d-9343-ec8d5048adff", - "fields": { - "str_id": "enrgy-sys-lab", - "time_of_creation": "2018-06-24T19:50:18.475Z", - "name": "Energy Systems Lab", - "short_name": "Enrgy Sys Lab", - "description": "Comes under Energy Systems Engineering Department http://www.ese.iitb.ac.in +912225767890 The department offers academic programs in Dual degree (B Tech + M Tech), M Tech, M.Sc.-Ph.D and Ph.D. Research areas include Energy Efficiency and Conservation, Solar PV and Thermal, Battery and Storage Engineering, Hydrogen and Fuel Cells, Smart microgrids, Biomass and Bio-Fuels, Wind Energy, Nuclear", - "parent": "85c8b696-c6d6-40cc-bd20-e2fb4dd281c8", - "parent_relation": "Near", - "group_id": 12, - "pixel_x": 4230, - "pixel_y": 1435, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "611a3142-7f08-46aa-a0dc-3675fc9ead8a", - "fields": { - "str_id": "new-yoga-room", - "time_of_creation": "2018-08-13T20:50:23.106Z", - "name": "New Yoga Room", - "short_name": "New Yoga Room", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "612b6b84-0407-4f4e-9712-5684141f32ef", - "fields": { - "str_id": "frisbee-field", - "time_of_creation": "2019-02-21T23:18:13.112Z", - "name": "Frisbee field", - "short_name": "Frisbee field", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "61e53f4b-7b77-45f4-8cf4-ac1b90711071", - "fields": { - "str_id": "cisco-webex", - "time_of_creation": "2020-08-28T14:24:09.476Z", - "name": "Cisco Webex ", - "short_name": "Cisco Webex ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "62b1e1a7-54cf-43b1-bdab-d5615a8cb69c", - "fields": { - "str_id": "2b-6", - "time_of_creation": "2018-06-24T19:50:18.928Z", - "name": "Type 2B 6", - "short_name": "2B 6", - "description": "2B-Type Quarters, Flat nos 31 - 36", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 4243, - "pixel_y": 2391, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "62b79587-d11c-4034-9fba-79b4399b3deb", - "fields": { - "str_id": "2b-16", - "time_of_creation": "2018-06-24T19:50:18.972Z", - "name": "Type 2B 16", - "short_name": "2B 16", - "description": "2B-Type Quarters, Flat nos 91 - 96", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 908, - "pixel_y": 2798, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "62bddefc-0dec-4f93-9675-f67ce4adae32", - "fields": { - "str_id": "yoga-room-new-sac", - "time_of_creation": "2018-12-11T17:13:47.194Z", - "name": "Yoga Room, New SAC", - "short_name": "Yoga Room, New SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "62c16545-faab-4d36-bb7a-ab1259d6e2e9", - "fields": { - "str_id": "vmcc-auditorium", - "time_of_creation": "2018-10-26T05:21:47.087Z", - "name": "VMCC Auditorium ", - "short_name": "VMCC Auditorium ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "62d4a775-6b1d-47db-8a63-d382cd8b60d7", - "fields": { - "str_id": "cc109-1st-floor-new-cse-building", - "time_of_creation": "2022-06-15T19:29:25.364Z", - "name": "CC109 1st floor new CSE building", - "short_name": "CC109 1st floor new CSE building", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "62e7cc57-c904-45b2-a8a2-c17184e58b88", - "fields": { - "str_id": "c9", - "time_of_creation": "2018-06-24T19:50:19.161Z", - "name": "Type C-9", - "short_name": "C9", - "description": "C-Type Quarters Flat nos. 55 - 60", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2904, - "pixel_y": 2910, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "634713f0-0767-4ae7-a132-8cdb090e75ff", - "fields": { - "str_id": "roots-room-old-sac", - "time_of_creation": "2021-12-28T05:56:56.228Z", - "name": "Roots Room, Old SAC", - "short_name": "Roots Room, Old SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "634d937d-ceaa-40b2-a307-74978e64e7c9", - "fields": { - "str_id": "lc102", - "time_of_creation": "2018-08-30T13:46:57.825Z", - "name": "LC102", - "short_name": "LC102", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "63cfa355-26a3-4c3c-a223-b1be8024b508", - "fields": { - "str_id": "sustain--ts", - "time_of_creation": "2020-10-31T13:31:57.916Z", - "name": "Sustain- TS", - "short_name": "Sustain- TS", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "63d07e15-51a3-4f24-9eaa-5d526e635b64", - "fields": { - "str_id": "staff-hostel", - "time_of_creation": "2018-06-24T19:50:18.374Z", - "name": "Staff Hostel", - "short_name": "Staff Hostel", - "description": "Tel: +912225761113", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2872, - "pixel_y": 1472, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "644b277a-2ab2-4fa3-938b-d5139f6306ef", - "fields": { - "str_id": "s-pool-new", - "time_of_creation": "2018-06-24T19:50:18.381Z", - "name": "Swimming Pool (new)", - "short_name": "S. Pool new", - "description": "Tel: +912225762755", - "parent": null, - "parent_relation": "", - "group_id": 8, - "pixel_x": 3558, - "pixel_y": 1141, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "649d84d2-3fe1-4055-ad9d-0d5520c65afc", - "fields": { - "str_id": "ug-lab-1st-years", - "time_of_creation": "2018-06-24T19:50:18.631Z", - "name": "UG Lab (1st years)", - "short_name": "UG Lab (1st years)", - "description": "", - "parent": "a2fb1bdc-3df2-4e88-af3a-2a5a8ccc6236", - "parent_relation": null, - "group_id": 12, - "pixel_x": 4585, - "pixel_y": 1540, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "64bc8b79-7ff1-4c77-97b3-f9c158b63b4b", - "fields": { - "str_id": "staff-cant", - "time_of_creation": "2018-06-24T19:50:18.367Z", - "name": "Staff Canteen", - "short_name": "Staff Cant.", - "description": "Tel: +912225768952", - "parent": null, - "parent_relation": "", - "group_id": 5, - "pixel_x": 3622, - "pixel_y": 1547, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "64e4e7f2-4b09-447f-8bc6-c35877577e36", - "fields": { - "str_id": "wadhwai-electronics-lab-ee-department", - "time_of_creation": "2020-02-07T13:59:08.313Z", - "name": "Wadhwai Electronics Lab, EE Department", - "short_name": "Wadhwai Electronics Lab, EE Department", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "654b8054-8887-48a7-890b-46a3a3bd71e6", - "fields": { - "str_id": "online-event", - "time_of_creation": "2020-10-13T11:37:51.216Z", - "name": "Online Event", - "short_name": "Online Event", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "655401fd-ea1b-4dcb-b005-57c56d9e6005", - "fields": { - "str_id": "hostels", - "time_of_creation": "2022-10-12T10:53:37.040Z", - "name": "Hostels", - "short_name": "Hostels", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "655900f8-2907-40be-a43d-44964e54a024", - "fields": { - "str_id": "b8", - "time_of_creation": "2018-06-24T19:50:19.097Z", - "name": "Type B-8", - "short_name": "B8", - "description": "B-Type Quarters Flat nos. 31 - 34", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2600, - "pixel_y": 2867, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "656c89dd-4b0b-4588-8221-482bdd9066cd", - "fields": { - "str_id": "2b-8", - "time_of_creation": "2018-06-24T19:50:18.936Z", - "name": "Type 2B 8", - "short_name": "2B 8", - "description": "2B-Type Quarters, Flat nos 43 - 48", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 4348, - "pixel_y": 2247, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "657968c8-d6c2-427f-8d74-e2e6cd7cbdf8", - "fields": { - "str_id": "room-no-109-new-csecc-building", - "time_of_creation": "2018-10-18T00:19:20.495Z", - "name": "Room No. 109, New CSE/CC Building", - "short_name": "Room No. 109, New CSE/CC Building", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "65f64c6e-98f0-457c-b951-98e04087a51a", - "fields": { - "str_id": "zoom", - "time_of_creation": "2020-08-01T23:41:16.773Z", - "name": "ZOOM", - "short_name": "ZOOM", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "6621f825-6486-4e1b-b04c-6778da0f2ef6", - "fields": { - "str_id": "15-h2", - "time_of_creation": "2018-06-24T19:50:19.323Z", - "name": "Type H2 - 15", - "short_name": "15-H2", - "description": "H2 Type Quarters Flat nos. 113 - 120", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 695, - "pixel_y": 2461, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "669f1e7d-a04b-47db-a478-9b4aacb402e2", - "fields": { - "str_id": "mw-2", - "time_of_creation": "2018-06-24T19:50:19.392Z", - "name": "MW Quarters 2", - "short_name": "MW 2", - "description": "MW Quarters 33 - 68", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4124, - "pixel_y": 780, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "66c6b870-1606-4572-99be-c75994061e1b", - "fields": { - "str_id": "cs-101---lc201-bb101---lc202", - "time_of_creation": "2018-11-09T06:58:14.536Z", - "name": "Cs 101 - LC201. BB101 - LC202", - "short_name": "Cs 101 - LC201. BB101 - LC202", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "677ea31f-11b9-47ae-95f1-94752238a82d", - "fields": { - "str_id": "fb-live", - "time_of_creation": "2021-03-20T08:12:37.662Z", - "name": "FB Live", - "short_name": "FB Live", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "67c5ce8a-3564-4e62-9480-b9e32bbfe380", - "fields": { - "str_id": "bio-mech", - "time_of_creation": "2018-06-24T19:50:19.535Z", - "name": "Proposed Bio Mechanical Department", - "short_name": "Bio Mech", - "description": "", - "parent": "e6eb8827-5107-4536-ab97-d7e367f3955f", - "parent_relation": "inside", - "group_id": 1, - "pixel_x": 4451, - "pixel_y": 2173, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "6846d57d-d3a5-40e9-9408-7b3ee5ec5391", - "fields": { - "str_id": "swc", - "time_of_creation": "2020-03-12T12:50:28.478Z", - "name": "Student Wellness Center", - "short_name": "SWC", - "description": "", - "parent": null, - "parent_relation": null, - "group_id": 1, - "pixel_x": 3628, - "pixel_y": 1640, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "6886b357-c1c5-4688-b72b-8058894229e0", - "fields": { - "str_id": "abhyuday-instagram-page", - "time_of_creation": "2020-07-24T06:02:58.602Z", - "name": "Abhyuday Instagram page", - "short_name": "Abhyuday Instagram page", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "6893ed2e-0923-4ec9-97aa-3e158c0c96a4", - "fields": { - "str_id": "lt-205", - "time_of_creation": "2018-06-24T19:50:18.738Z", - "name": "LT 205", - "short_name": "LT 205", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Second floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "68a04d23-523f-473c-89ef-c6dd3263d4fd", - "fields": { - "str_id": "idp-edu-tech", - "time_of_creation": "2018-06-24T19:50:18.839Z", - "name": "Inter-disciplinary Programme in Educational Technology", - "short_name": "IDP Edu Tech", - "description": "http://www.et.iitb.ac.in Main Office: Mathematics Building, Near Central Library. Tel:+912225764820 Fax: +912225764812 Ph.D. is offered in this programme. Research areas include Pan-Domain Cognitive Abilities, Teacher Use of Educational Technology Tools and Strategies, Educational Technology Tools.", - "parent": "8fcf8049-5a13-4e60-b5b1-993a4a554526", - "parent_relation": "Inside", - "group_id": 1, - "pixel_x": 3928, - "pixel_y": 1496, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "6948d3b5-42dd-4971-afa3-4b6d92dc8e2c", - "fields": { - "str_id": "6-h2", - "time_of_creation": "2018-06-24T19:50:19.289Z", - "name": "Type H2 - 6", - "short_name": "6-H2", - "description": "H2 Type Quarters Flat nos. 41 - 48", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 1101, - "pixel_y": 2774, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "698a338e-d973-4b80-87f8-2bb04f5909f4", - "fields": { - "str_id": "8--h1", - "time_of_creation": "2018-06-24T19:50:19.240Z", - "name": "Type H1 - 8", - "short_name": "8- H1", - "description": "H1 Type Quarters Flat nos. 85 - 96", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4442, - "pixel_y": 1239, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "69c64c8b-a03a-4cbb-a6d9-dafdca17aa0d", - "fields": { - "str_id": "youtube", - "time_of_creation": "2020-10-29T13:40:36.365Z", - "name": "YouTube", - "short_name": "YouTube", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "69cf5c42-0800-4bee-a0b9-3a943392c047", - "fields": { - "str_id": "lt-pcsa-iit-bombay", - "time_of_creation": "2019-10-16T17:00:21.019Z", - "name": "LT PCSA IIT Bombay", - "short_name": "LT PCSA IIT Bombay", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "69cf91ae-9594-4e4c-8d99-dbd69b20db29", - "fields": { - "str_id": "theatre-room", - "time_of_creation": "2019-08-04T09:54:20.767Z", - "name": "Theatre Room", - "short_name": "Theatre Room", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "6a206606-0059-4750-8391-ac207ec30af3", - "fields": { - "str_id": "c15", - "time_of_creation": "2018-06-24T19:50:19.184Z", - "name": "Type C-15", - "short_name": "C15", - "description": "C-Type Quarters Flat nos. 91 - 96", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3360, - "pixel_y": 3033, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "6a6966e9-4d2d-4449-ad1e-d945c690c5f6", - "fields": { - "str_id": "yoga-room-3rd-floor-new-sac", - "time_of_creation": "2019-11-02T07:01:51.472Z", - "name": "Yoga room, 3rd Floor, New SAC", - "short_name": "Yoga room, 3rd Floor, New SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "6b24d130-92af-45b5-8f99-bc94081571a3", - "fields": { - "str_id": "mach-lab", - "time_of_creation": "2018-06-24T19:50:18.525Z", - "name": "Machine Lab", - "short_name": "Mach. Lab", - "description": "Comes under Electrical Engineering Department +912225764422", - "parent": "56f2219c-2eb7-455b-83f0-19ad5a1f7bd0", - "parent_relation": "Near", - "group_id": 12, - "pixel_x": 1445, - "pixel_y": 1669, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "6b7f20f2-b5ba-4912-af83-0ea7a788ef58", - "fields": { - "str_id": "a2", - "time_of_creation": "2018-06-24T19:50:19.005Z", - "name": "Bungalow A2 ", - "short_name": "A2", - "description": "A-Type Bungalow", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2491, - "pixel_y": 2581, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "6ba7c4d5-680e-40a5-87c6-26cde1de7ce3", - "fields": { - "str_id": "hostel-5-to-lake-side", - "time_of_creation": "2019-09-08T10:57:10.820Z", - "name": "Hostel 5 to Lake side", - "short_name": "Hostel 5 to Lake side", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "6ce8ce78-9db0-4c0e-bc22-29fd3d8e087b", - "fields": { - "str_id": "b9", - "time_of_creation": "2018-06-24T19:50:19.100Z", - "name": "Type B-9", - "short_name": "B9", - "description": "B-Type Quarters Flat nos. 35 - 38", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2653, - "pixel_y": 2748, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "6d579c21-e2e5-4503-9831-bb4d3815a295", - "fields": { - "str_id": "lecture-hall-no-21-vmcc", - "time_of_creation": "2019-08-03T19:25:15.514Z", - "name": "Lecture Hall no. 21, VMCC", - "short_name": "Lecture Hall no. 21, VMCC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "6d68ad04-9838-4561-9f2d-1e1069851ea2", - "fields": { - "str_id": "httpsmeetgooglecomfcr-wiue-ejh", - "time_of_creation": "2020-06-25T10:11:53.469Z", - "name": "https://meet.google.com/fcr-wiue-ejh", - "short_name": "https://meet.google.com/fcr-wiue-ejh", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "6e6b7ed1-a638-4137-bc90-af40a625d127", - "fields": { - "str_id": "som-well", - "time_of_creation": "2018-08-08T14:54:28.674Z", - "name": "SOM Well", - "short_name": "SOM Well", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "6f28f861-6d47-4847-b378-8c0673760b7a", - "fields": { - "str_id": "boat-house", - "time_of_creation": "2018-06-24T19:50:18.072Z", - "name": "Boat House", - "short_name": "Boat House", - "description": "Timings: 6 am to 6 pm", - "parent": null, - "parent_relation": null, - "group_id": 9, - "pixel_x": 1960, - "pixel_y": 1757, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "6fc18c7b-70da-4640-b71f-bc461a41eb3d", - "fields": { - "str_id": "24-h2", - "time_of_creation": "2018-06-24T19:50:19.357Z", - "name": "Type H2 - 25", - "short_name": "24-H2", - "description": "H2 Type Quarters Flat nos. 193 - 200", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 568, - "pixel_y": 2377, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "7070c6ed-cef8-42bc-9c66-7c67c891c79f", - "fields": { - "str_id": "all-hostel-stationery-shops-or-mess", - "time_of_creation": "2019-02-16T14:10:35.973Z", - "name": "All hostel stationery shops or mess", - "short_name": "All hostel stationery shops or mess", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "709b1b78-92ec-486b-b2cc-a69c59b3fff7", - "fields": { - "str_id": "2-h2", - "time_of_creation": "2018-06-24T19:50:19.275Z", - "name": "Type H2 - 2", - "short_name": "2-H2", - "description": "H2 Type Quarters Flat nos. 9 - 16", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 1344, - "pixel_y": 2832, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "7103ffb2-3c7f-4bf0-b49c-bc1302d1246f", - "fields": { - "str_id": "tba", - "time_of_creation": "2018-10-04T10:10:26.266Z", - "name": "TBA", - "short_name": "TBA", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "71f57e95-b13a-45ce-8189-ce8e4cb37249", - "fields": { - "str_id": "room-no-109-new-csecc-building", - "time_of_creation": "2018-10-18T00:31:13.784Z", - "name": "Room no. 109, New CSE/CC Building", - "short_name": "Room no. 109, New CSE/CC Building", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "720ea241-9446-4545-9c14-6978009dad05", - "fields": { - "str_id": "instagram-live", - "time_of_creation": "2020-07-12T07:52:49.096Z", - "name": "Instagram Live", - "short_name": "Instagram Live", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "731f8958-3d76-4b29-9ad4-7d5cbf0b4035", - "fields": { - "str_id": "lh", - "time_of_creation": "2020-01-11T09:26:10.316Z", - "name": "LH", - "short_name": "LH", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "732096da-1360-4653-8b26-bc7f9824f9c9", - "fields": { - "str_id": "lt-202", - "time_of_creation": "2018-06-24T19:50:18.727Z", - "name": "LT 202", - "short_name": "LT 202", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Second floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "73565672-4da0-4731-a217-fece8c5b03c3", - "fields": { - "str_id": "c16", - "time_of_creation": "2018-06-24T19:50:19.188Z", - "name": "Type C-16", - "short_name": "C16", - "description": "C-Type Quarters Flat nos. 97 - 102", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3162, - "pixel_y": 2991, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "73744250-30b9-4b64-9221-12ccfefe635f", - "fields": { - "str_id": "b17", - "time_of_creation": "2018-06-24T19:50:19.130Z", - "name": "Type B-17", - "short_name": "B17", - "description": "B-Type Quarters Flat nos. 67 - 72", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3040, - "pixel_y": 2461, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "74c9dcd4-d35e-410d-bba1-b28937480d5c", - "fields": { - "str_id": "lt-105", - "time_of_creation": "2018-06-24T19:50:18.716Z", - "name": "LT 105", - "short_name": "LT 105", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "First floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "74d42757-f194-4b61-b6bd-12c8c7a83152", - "fields": { - "str_id": "acre", - "time_of_creation": "2018-06-24T19:50:18.032Z", - "name": "Advanced Centre for Research in Electronics", - "short_name": "ACRE", - "description": "", - "parent": "c186690e-6970-49a3-b944-d73aae2cb6bd", - "parent_relation": "Inside", - "group_id": 1, - "pixel_x": 4081, - "pixel_y": 1344, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "74d6ce65-132e-48c7-8845-120e9b814c06", - "fields": { - "str_id": "steam-power-lab", - "time_of_creation": "2018-06-24T19:50:18.605Z", - "name": "Steam Power Lab", - "short_name": "Steam Power Lab", - "description": "Comes under Mechanical Engineering Department +912225764584", - "parent": "bba75c4c-0ad7-4d4b-bcdd-a3d1c9d1ea3e", - "parent_relation": "", - "group_id": 12, - "pixel_x": 4376, - "pixel_y": 1526, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "75dac40d-7456-4a65-9cc4-de46a423c0f1", - "fields": { - "str_id": "msteams", - "time_of_creation": "2021-08-27T13:54:53.414Z", - "name": "MSTeams", - "short_name": "MSTeams", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "760fcf99-9e17-4ca1-a180-d7bc53cb0fef", - "fields": { - "str_id": "18-h2", - "time_of_creation": "2018-06-24T19:50:19.334Z", - "name": "Type H2 - 18", - "short_name": "18-H2", - "description": "H2 Type Quarters Flat nos. 137 - 144", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4451, - "pixel_y": 1320, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "7615dcab-ff81-45b9-92f5-499f2092f91e", - "fields": { - "str_id": "a3", - "time_of_creation": "2018-06-24T19:50:19.008Z", - "name": "Bungalow A3 ", - "short_name": "A3", - "description": "A-Type Bungalow", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2415, - "pixel_y": 2682, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "76289056-7c8d-4ede-a3e5-0a8d3157c9dd", - "fields": { - "str_id": "la-foyer", - "time_of_creation": "2019-07-27T15:30:57.924Z", - "name": "LA Foyer", - "short_name": "LA Foyer", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "7652f65e-fa81-475e-a838-456d675763b1", - "fields": { - "str_id": "csre-c", - "time_of_creation": "2018-06-24T19:50:19.482Z", - "name": "CSRE C", - "short_name": "CSRE C", - "description": "CSRE Quarters D1, D2, D3, D4, D5, D6, D7, D8, D9, D10, D11, D12", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4270, - "pixel_y": 1188, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "76b6943b-ad8c-4377-aeb2-8b7a040b1ae2", - "fields": { - "str_id": "lc-302", - "time_of_creation": "2018-06-24T19:50:18.796Z", - "name": "LC 302", - "short_name": "LC 302", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Third floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "77607fc9-3f4d-4702-b412-2486f634d434", - "fields": { - "str_id": "bio-diesel-lab", - "time_of_creation": "2018-06-24T19:50:18.065Z", - "name": "Bio-diesel Lab", - "short_name": "Bio-diesel Lab", - "description": "www.che.iitb.ac.in/chea/biosynth/be-a-part.phpcontact@biosynthiitb.orgProject Biosynth is an initiative by the students of the Department of Chemical Engineering, IIT Bombay to install a Biodiesel plant. This student-managed initiative was started in 2008. The R & D activities at the plant include:the adaptation of the standard biodiesel production process to the available waste vegetable oil, the quality control for the biodiesel produced, allied issues pertaining to design and planning and research projects.", - "parent": "f5303dcd-b456-4147-a414-88a89815d826", - "parent_relation": "Backside", - "group_id": 12, - "pixel_x": 4220, - "pixel_y": 1558, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "78556ec8-306d-4203-9710-61fe662a7bcc", - "fields": { - "str_id": "football-field-new-sac", - "time_of_creation": "2019-04-04T17:50:26.938Z", - "name": "Football Field, New SAC", - "short_name": "Football Field, New SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "788f52ea-e769-4ba7-aa63-9d995bf7d428", - "fields": { - "str_id": "idc-cant", - "time_of_creation": "2018-06-24T19:50:18.656Z", - "name": "IDC Canteen", - "short_name": "IDC Cant.", - "description": "Santosh bhaiya's Canteen +918652423193 9am to 5:30 pm, weekdays only Menu: Tea, Coffee, Upma, Poha, Idli Chutney, Meduwada, Samosa, manchurian roll, paneer roll, chicken roll, Vada Paav, biscuits, Maggi, Tropicana, cold drinks", - "parent": "d467330f-a3a7-484b-8eca-b23815a0a3a7", - "parent_relation": "Inside", - "group_id": 5, - "pixel_x": 4207, - "pixel_y": 1732, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "795a7316-4330-4623-8766-fec23baf7c5c", - "fields": { - "str_id": "webex-meet", - "time_of_creation": "2020-10-22T03:19:03.645Z", - "name": "Webex Meet", - "short_name": "Webex Meet", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "7965606a-46f6-4c41-8830-366da25a5dfe", - "fields": { - "str_id": "fc-kohli-auditorium-kresit-building", - "time_of_creation": "2019-06-05T06:51:16.164Z", - "name": "FC Kohli Auditorium, KResit Building", - "short_name": "FC Kohli Auditorium, KResit Building", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "7991b800-8c8b-426c-9cee-928c896df843", - "fields": { - "str_id": "3-h1", - "time_of_creation": "2018-06-24T19:50:19.221Z", - "name": "Type H1 - 3", - "short_name": "3-H1", - "description": "H1 Type Quarters Flat nos. 25 - 36", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 867, - "pixel_y": 2575, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "799683c1-4f68-46d1-9465-05c3cac77a49", - "fields": { - "str_id": "bb-h1", - "time_of_creation": "2018-06-24T19:50:19.267Z", - "name": "Type H1 - BB", - "short_name": "BB-H1", - "description": "H1 BB Type Quarters Flat nos. 1 - 26", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 921, - "pixel_y": 2122, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "79c489b9-cb9a-4f14-b9aa-700de5f52705", - "fields": { - "str_id": "s3-bay", - "time_of_creation": "2018-06-24T19:50:18.590Z", - "name": "S3 Bay", - "short_name": "S3 Bay", - "description": "", - "parent": "431b487b-1db7-4cc0-ae63-af19ad96dca9", - "parent_relation": "Near", - "group_id": 1, - "pixel_x": 4325, - "pixel_y": 1720, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "79f29d0c-f8f0-4f24-984d-0fc5506267e2", - "fields": { - "str_id": "room-201-idc", - "time_of_creation": "2020-01-15T13:34:11.580Z", - "name": "Room 201, IDC", - "short_name": "Room 201, IDC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "7aa2ce2d-888c-4891-84c1-449698f044b4", - "fields": { - "str_id": "gulmohar-cafetaria", - "time_of_creation": "2018-06-24T22:16:29.695Z", - "name": "Gulmohar Garden Cafetaria", - "short_name": "Gulmohar Cafetaria", - "description": "", - "parent": "5d7d2bba-e553-4733-9515-c991ff9e0f37", - "parent_relation": "Outside", - "group_id": 5, - "pixel_x": 3040, - "pixel_y": 2130, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "7ac88c8b-84fa-415a-9bad-fa930879e314", - "fields": { - "str_id": "2b-14", - "time_of_creation": "2018-06-24T19:50:18.959Z", - "name": "Type 2B 14", - "short_name": "2B 14", - "description": "2B-Type Quarters, Flat nos 79 - 84", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 1144, - "pixel_y": 2866, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "7bf5e2c3-e013-4e6c-b890-3fa85c696d8b", - "fields": { - "str_id": "11-h2", - "time_of_creation": "2018-06-24T19:50:19.308Z", - "name": "Type H2 - 11", - "short_name": "11-H2", - "description": "H2 Type Quarters Flat nos. 81 - 88", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 1049, - "pixel_y": 2666, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "7c041ab0-69f6-4ac4-971e-99e884de3f35", - "fields": { - "str_id": "register-asap", - "time_of_creation": "2020-09-03T09:43:36.196Z", - "name": "Register ASAP!", - "short_name": "Register ASAP!", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "7c20f22f-112e-4080-a765-fe7ddffcc952", - "fields": { - "str_id": "ic-1--som", - "time_of_creation": "2018-10-05T07:44:58.060Z", - "name": "IC 1 | SOM", - "short_name": "IC 1 | SOM", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "7cc15811-3c3e-455a-8c83-c312586cdcfe", - "fields": { - "str_id": "corro-lab-1", - "time_of_creation": "2018-06-24T19:50:18.859Z", - "name": "Corrosion Lab 1", - "short_name": "Corro Lab 1", - "description": "Tel: +912225764618", - "parent": "aa4fa9f4-40fa-4d99-bba8-bd985d11f67e", - "parent_relation": "Inside", - "group_id": 12, - "pixel_x": 3631, - "pixel_y": 2044, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "7cc9bc0c-764c-4b98-a670-87372c859849", - "fields": { - "str_id": "yoga-room-sac", - "time_of_creation": "2018-08-01T07:57:39.680Z", - "name": "Yoga Room, SAC", - "short_name": "Yoga Room, SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "7cdfee1f-3561-4ef1-af10-2300f07b672e", - "fields": { - "str_id": "physics", - "time_of_creation": "2018-06-24T19:50:18.331Z", - "name": "Physics Department", - "short_name": "Physics", - "description": "The department offers academic programs for B.Tech Engineering Physics (through JEE), Dual degree B.Tech + M.Tech in Engineering Physics with specialisation in Nanoscience (through JEE), MSc Physics 2 Years programme (through JAM), Dual degree programme of MSc and PhD in physics (through JAM). Research areas include Condensed Matter Physics, Photonics and Optics, Nuclear Physics, High Energy Physics, Statistical Physics", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 3479, - "pixel_y": 2247, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "7dbd1ceb-802b-4763-92c9-9a5c93b08faf", - "fields": { - "str_id": "20-h2", - "time_of_creation": "2018-06-24T19:50:19.341Z", - "name": "Type H2 - 20", - "short_name": "20-H2", - "description": "H2 Type Quarters Flat nos. 153 - 160", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4307, - "pixel_y": 1320, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "8010e8d1-8155-4f89-9b4e-a74c3c53c734", - "fields": { - "str_id": "typea", - "time_of_creation": "2018-06-24T19:50:19.557Z", - "name": "Proposed TypeA Building", - "short_name": "TypeA", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 1942, - "pixel_y": 2646, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "803f4611-9e9c-4120-b236-78cfbcd3f4b2", - "fields": { - "str_id": "h14", - "time_of_creation": "2018-06-24T19:50:18.179Z", - "name": "Hostel 14 Silicon Ship", - "short_name": "H14", - "description": "Hostel security: +912225762614 Hall Manager: 022-25762714 G. Sec: Mayuresh Pant +919730694513", - "parent": null, - "parent_relation": null, - "group_id": 2, - "pixel_x": 2114, - "pixel_y": 800, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "806a19fe-db5d-4c3c-9ccf-dc5b3a34db8e", - "fields": { - "str_id": "httpszoomusj97679784047pwdztrpvvbmnlzwk1zlbne4as82dk5lqt09", - "time_of_creation": "2020-07-09T04:17:35.520Z", - "name": "https://zoom.us/j/97679784047?pwd=ZTRpVVBmNlZwK1ZLbnE4aS82dk5LQT09", - "short_name": "https://zoom.us/j/97679784047?pwd=ZTRpVVBmNlZwK1ZLbnE4aS82dk5LQT09", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "80ccb7f2-435f-4236-a2fa-a4639f35037f", - "fields": { - "str_id": "google-meets", - "time_of_creation": "2021-01-14T10:48:53.282Z", - "name": "Google Meets ", - "short_name": "Google Meets ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "816d66e3-b4a8-4c4b-acec-642790175b78", - "fields": { - "str_id": "official-fb-page-iitbpgsports", - "time_of_creation": "2020-05-19T03:24:38.936Z", - "name": "Official fb page @iitbpgsports", - "short_name": "Official fb page @iitbpgsports", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "81979aec-598d-408e-9042-606a50432ee7", - "fields": { - "str_id": "press", - "time_of_creation": "2018-06-24T19:50:18.342Z", - "name": "Printing Press", - "short_name": "Press", - "description": "Tel: +912225768961", - "parent": "dca613da-2467-4e9f-b238-601a122df5dd", - "parent_relation": "Inside", - "group_id": 9, - "pixel_x": 4326, - "pixel_y": 1896, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "81fa5c67-9ba1-4335-91ab-abf1c88166c8", - "fields": { - "str_id": "homi-bhabha-auditorium-colaba", - "time_of_creation": "2018-10-13T06:20:57.926Z", - "name": "Homi Bhabha Auditorium, Colaba", - "short_name": "Homi Bhabha Auditorium, Colaba", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "8207f41c-d619-49c5-b7e7-43a455155c9e", - "fields": { - "str_id": "lt-304", - "time_of_creation": "2018-06-24T19:50:18.757Z", - "name": "LT 304", - "short_name": "LT 304", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Third floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "8256a888-0a56-4891-9250-cb20cd08a93a", - "fields": { - "str_id": "hostel-3-lounge", - "time_of_creation": "2018-08-16T18:44:25.700Z", - "name": "Hostel 3 Lounge", - "short_name": "Hostel 3 Lounge", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "82a023d6-147d-45cf-b7a5-e60621172733", - "fields": { - "str_id": "vmcc-hall-22", - "time_of_creation": "2019-09-03T13:09:21.570Z", - "name": "VMCC Hall 22", - "short_name": "VMCC Hall 22", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "82a36e07-1644-42be-878d-43357312b332", - "fields": { - "str_id": "a18", - "time_of_creation": "2018-06-24T19:50:19.064Z", - "name": "Bungalow A18 ", - "short_name": "A18", - "description": "A-Type Bungalow", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4220, - "pixel_y": 1142, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "82e7e32c-66ee-465c-a197-98790d7213dc", - "fields": { - "str_id": "seminar-hall", - "time_of_creation": "2018-06-24T19:50:18.352Z", - "name": "Seminar Hall", - "short_name": "Seminar Hall", - "description": "Tel: +912225764912, for booking +912225764420", - "parent": null, - "parent_relation": "", - "group_id": 4, - "pixel_x": 3792, - "pixel_y": 2025, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "8325f07f-f283-4164-be1a-7d9d7bca43b6", - "fields": { - "str_id": "2b-12", - "time_of_creation": "2018-06-24T19:50:18.947Z", - "name": "Type 2B 12", - "short_name": "2B 12", - "description": "2B-Type Quarters, Flat nos 67 - 72", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 701, - "pixel_y": 2615, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "834a689d-12f2-4e3f-8880-619766dd2446", - "fields": { - "str_id": "h16-mess", - "time_of_creation": "2018-07-26T18:30:38.468Z", - "name": "Hostel 16 Mess", - "short_name": "H16 Mess", - "description": "", - "parent": "0e79535d-f1a6-478b-9799-663d0dd54d9a", - "parent_relation": "Ground Floor", - "group_id": 8, - "pixel_x": 0, - "pixel_y": 0, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "8486a8f3-a25e-4b7e-acdf-8d7931302fad", - "fields": { - "str_id": "httpsbitly3k3tjjp", - "time_of_creation": "2020-11-07T11:53:59.282Z", - "name": "https://bit.ly/3k3TJjP", - "short_name": "https://bit.ly/3k3TJjP", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "8516ff20-92c5-41bb-815c-bf172c5c3dd6", - "fields": { - "str_id": "cc", - "time_of_creation": "2018-06-24T19:50:18.301Z", - "name": "Computer Centre", - "short_name": "CC", - "description": "http://www.cse.iitb.ac.in\r\nTel: +912225767901/02\r\n\r\nThe department offers academic programs for B. Tech, Dual degree (B Tech + M Tech), M Tech, Dual Degree PG (M. Tech + Ph. D) and Ph. D. Research areas include algorithms, programming languages and Compilers, database and information systems, artificial intelligence and natural language processing, software engineering, formal methods, distributed systems, computer networks, data mining, computer graphics, computer vision and image understanding, real-time and embedded systems, formal languages and bio-inspired computing", - "parent": null, - "parent_relation": null, - "group_id": 1, - "pixel_x": 3422, - "pixel_y": 1986, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "8537fb15-818c-4d5f-b8bf-3dba012e8410", - "fields": { - "str_id": "seminar-hall-3-first-floor-vmcc", - "time_of_creation": "2019-10-10T14:21:36.454Z", - "name": "Seminar Hall 3, first floor, VMCC", - "short_name": "Seminar Hall 3, first floor, VMCC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "85c8b696-c6d6-40cc-bd20-e2fb4dd281c8", - "fields": { - "str_id": "geotech-lab", - "time_of_creation": "2018-06-24T19:50:18.485Z", - "name": "Geotechnical Engg. Lab", - "short_name": "GeoTech Lab", - "description": "Comes under Civil Engineering Department +912225764320", - "parent": null, - "parent_relation": "", - "group_id": 12, - "pixel_x": 4280, - "pixel_y": 1425, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "85d2f82c-3002-4c68-9c5f-0d6753b65e38", - "fields": { - "str_id": "cese", - "time_of_creation": "2018-06-24T19:50:18.087Z", - "name": "Centre for Environmental Science and Engineering", - "short_name": "CESE", - "description": "http://www.cese.iitb.ac.in\r\nTel +912225767851\r\nFax +912225764650\r\n\r\nThe Centre offers M.Tech. and Ph.D. programmes, which are interdisciplinary in nature and consists of course work followed by a research project. The duration of the Ph.D. programme varies depending upon the background of the candidate.", - "parent": null, - "parent_relation": null, - "group_id": 1, - "pixel_x": 4340, - "pixel_y": 1985, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "86698f93-b89d-433a-90df-3796613f7a8b", - "fields": { - "str_id": "gmfl-lab", - "time_of_creation": "2018-06-24T19:50:18.489Z", - "name": "GMFL Lab / Geophysical and multiphase Flows Lab", - "short_name": "GMFL Lab", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 12, - "pixel_x": 4530, - "pixel_y": 1485, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "866dde4e-4667-446f-969e-ee4035b766a5", - "fields": { - "str_id": "dese-cese", - "time_of_creation": "2018-06-24T19:50:19.550Z", - "name": "DESE & CESE New Building", - "short_name": "DESE CESE", - "description": "New building for the Department of Energy Science and Engineering and Center for Environmental Science and Engineering", - "parent": null, - "parent_relation": null, - "group_id": 9, - "pixel_x": 3979, - "pixel_y": 2467, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "86d51626-2b1a-450f-a60c-be4dc6a7e153", - "fields": { - "str_id": "c12", - "time_of_creation": "2018-06-24T19:50:19.173Z", - "name": "Type C-12", - "short_name": "C12", - "description": "C-Type Quarters Flat nos. 73 - 78", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2867, - "pixel_y": 3006, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "fields": { - "str_id": "lec-hall-1--2", - "time_of_creation": "2018-06-24T19:50:18.258Z", - "name": "Lecture Hall Complex - 1 & 2", - "short_name": "Lec Hall 1 & 2", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "874b540d-94cc-479d-9621-916552a3c02b", - "fields": { - "str_id": "csre", - "time_of_creation": "2018-06-24T19:50:18.106Z", - "name": "Centre of Studies in Resources Engineering", - "short_name": "CSRE", - "description": "http://www.csre.iitb.ac.in\r\nTel:+912225767662\r\n\r\nThe centre offers Ph.D, M Tech, UG Minor and institute elective. Research areas include Spatial Analysis, Digital Image Processing, Global Positioning System (GPS) and Photogrammetry, Geocomputational Systems, Microwave Remote Sensing, Snow and Glacier Studies, Geology and Mineral Resources, Agro-Informatics and rural development, Terrain evaluation group, Environment, natural hazards and disaster management, Coastal and marine sciences", - "parent": null, - "parent_relation": null, - "group_id": 1, - "pixel_x": 4096, - "pixel_y": 1993, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "8791d3f0-d0c3-445c-823a-0738c0f4da19", - "fields": { - "str_id": "b4", - "time_of_creation": "2018-06-24T19:50:19.082Z", - "name": "Type B-4", - "short_name": "B4", - "description": "B-Type Quarters Flat nos. 15 - 18", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2743, - "pixel_y": 2947, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "87cce91e-c008-452d-b580-e9bc233e2c6a", - "fields": { - "str_id": "zoom-meet--httpszoomusj94770566170pwdcefkz2pttferck42uxk3vgp2qxhpdz09", - "time_of_creation": "2021-08-10T14:55:36.479Z", - "name": "Zoom Meet : https://zoom.us/j/94770566170?pwd=cEFKZ2ptTFErck42UXk3VGp2QXhpdz09", - "short_name": "Zoom Meet : https://zoom.us/j/94770566170?pwd=cEFKZ2ptTFErck42UXk3VGp2QXhpdz09", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "87e2a2b9-b922-4184-adee-10dbbb707f05", - "fields": { - "str_id": "heavy-structure-lab", - "time_of_creation": "2018-06-24T19:50:18.503Z", - "name": "Heavy Structure Lab", - "short_name": "Heavy Structure Lab", - "description": "Comes under Structural Engineering Laboratories of Civil Engineering Department +912225764323", - "parent": "fa6f024a-87ae-4d06-903a-f77e05de7a27", - "parent_relation": "Near", - "group_id": 12, - "pixel_x": 4330, - "pixel_y": 1495, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "887ecb32-a2a5-49df-932b-389db27c6320", - "fields": { - "str_id": "sac-conference-room", - "time_of_creation": "2019-01-22T05:33:27.656Z", - "name": "Sac conference room", - "short_name": "Sac conference room", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "889abc9e-9d30-4e2e-8e8e-53295ca46380", - "fields": { - "str_id": "mw-1", - "time_of_creation": "2018-06-24T19:50:19.388Z", - "name": "MW Quarters 1", - "short_name": "MW 1", - "description": "MW Quarters 1 - 32", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4267, - "pixel_y": 752, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "8946e59d-b065-463f-adf1-3dae1d986cac", - "fields": { - "str_id": "in-front-of-theatre-room-old-sac", - "time_of_creation": "2018-09-23T05:08:04.356Z", - "name": "In front of Theatre Room, Old SAC ", - "short_name": "In front of Theatre Room, Old SAC ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "897c294e-95c4-42de-ae55-26575e84c197", - "fields": { - "str_id": "lc-001", - "time_of_creation": "2018-06-24T19:50:18.769Z", - "name": "LC 001", - "short_name": "LC 001", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Ground floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "89841b84-4de4-4f33-a9a2-814d7e02303a", - "fields": { - "str_id": "youtube-live", - "time_of_creation": "2020-12-15T13:10:28.247Z", - "name": "YouTube Live", - "short_name": "YouTube Live", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "898f95d5-f987-4588-86ae-a8cd184836d0", - "fields": { - "str_id": "h15-mess", - "time_of_creation": "2018-07-26T18:30:38.462Z", - "name": "H15 Mess", - "short_name": "H15 Mess", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "89bcd0af-a808-468e-a26a-381292f32421", - "fields": { - "str_id": "httpseventwebinarjamcomchannelodysseyofcareers", - "time_of_creation": "2021-01-23T08:19:33.719Z", - "name": "https://event.webinarjam.com/channel/OdysseyofCareers", - "short_name": "https://event.webinarjam.com/channel/OdysseyofCareers", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "8a53546e-916f-4b2a-9ef6-1bde0ce16a40", - "fields": { - "str_id": "1-type1", - "time_of_creation": "2018-06-24T19:50:19.396Z", - "name": "Type1 - 1", - "short_name": "1-Type1", - "description": "Type 1 Quarters Flat nos. 1 - 12", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4113, - "pixel_y": 2583, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "8ab194eb-dcf6-4a29-bbe2-238f74c79049", - "fields": { - "str_id": "your-home", - "time_of_creation": "2020-06-18T16:13:40.401Z", - "name": "Your Home ", - "short_name": "Your Home ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "8ada0dd4-f9aa-4902-a7c5-749b1fd5707d", - "fields": { - "str_id": "lh302-lecture-hall-complex", - "time_of_creation": "2022-07-28T20:10:24.991Z", - "name": "LH302, Lecture Hall Complex", - "short_name": "LH302, Lecture Hall Complex", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "8b4f4d28-edf6-4dd3-8b66-0e588a0b7df3", - "fields": { - "str_id": "yoga-room-3rd-floor-new-sac", - "time_of_creation": "2019-12-19T13:04:56.213Z", - "name": "Yoga room, 3rd floor, New SAC", - "short_name": "Yoga room, 3rd floor, New SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "8b4f7618-a7da-48c8-87ab-e3cd5005fa53", - "fields": { - "str_id": "hostel-cricket-ground", - "time_of_creation": "2019-08-23T12:15:21.537Z", - "name": "Hostel Cricket Ground", - "short_name": "Hostel Cricket Ground", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "8b8366e0-bdf0-49c4-acb2-e27dbf2c59d0", - "fields": { - "str_id": "theatre-room-old-sac", - "time_of_creation": "2018-10-31T17:04:32.463Z", - "name": "Theatre Room, Old SAC", - "short_name": "Theatre Room, Old SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "8c600997-23a7-4453-a6e0-d22e5f3801b2", - "fields": { - "str_id": "post-office", - "time_of_creation": "2018-06-24T19:50:18.335Z", - "name": "Post Office", - "short_name": "Post Office", - "description": "Tel: +912225762774", - "parent": null, - "parent_relation": "", - "group_id": 9, - "pixel_x": 3918, - "pixel_y": 2846, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "8c843750-8320-41c7-b2e2-48366a14982a", - "fields": { - "str_id": "lt-pcsa", - "time_of_creation": "2018-08-18T12:33:45.746Z", - "name": "LT PCSA", - "short_name": "LT PCSA", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "8ca4b0f3-e3b5-4694-89f0-de750cfc6065", - "fields": { - "str_id": "2b-17", - "time_of_creation": "2018-06-24T19:50:18.975Z", - "name": "Type 2B 17", - "short_name": "2B 17", - "description": "2B-Type Quarters, Flat nos 97 - 102", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 878, - "pixel_y": 2756, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "8ccb786c-48e0-492a-bbbe-43974bbce905", - "fields": { - "str_id": "h1", - "time_of_creation": "2018-06-24T19:50:18.152Z", - "name": "Hostel 01 Queen of the campus", - "short_name": "H1", - "description": "Hostel security: +912225762601 Hall Manager: +912225762701 G. Sec: Ratikant +919930836852", - "parent": null, - "parent_relation": "", - "group_id": 2, - "pixel_x": 3908, - "pixel_y": 1077, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "8dc3f7ea-952d-4a33-b4c0-44bd2a7c52e2", - "fields": { - "str_id": "new-yoga-room-old-sac", - "time_of_creation": "2018-08-07T07:37:41.914Z", - "name": "New Yoga Room, Old SAC", - "short_name": "New Yoga Room, Old SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "8e17fbf3-7b22-4733-8b83-fdef95381196", - "fields": { - "str_id": "ms-teams", - "time_of_creation": "2020-12-18T10:13:59.094Z", - "name": "MS TEAMS ", - "short_name": "MS TEAMS ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "8e2ca11f-dbef-4d26-88a9-10f92ad64f6b", - "fields": { - "str_id": "b12", - "time_of_creation": "2018-06-24T19:50:19.112Z", - "name": "Type B-12", - "short_name": "B12", - "description": "B-Type Quarters Flat nos. 47 - 50", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2080, - "pixel_y": 2631, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "8e957c64-eb05-48ba-abb0-57252fabcead", - "fields": { - "str_id": "h8-tv-room", - "time_of_creation": "2018-06-25T06:49:37.517Z", - "name": "Hostel 8 TV Room", - "short_name": "H8 TV Room", - "description": "", - "parent": "0e2c2a32-5356-48d8-94ef-b06bff458064", - "parent_relation": "Inside", - "group_id": 8, - "pixel_x": 2834, - "pixel_y": 1257, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "8f0edd03-327b-40ef-8a2d-7ffeb2245a39", - "fields": { - "str_id": "csre-b", - "time_of_creation": "2018-06-24T19:50:19.479Z", - "name": "CSRE B", - "short_name": "CSRE B", - "description": "CSRE Quarters C141, C142, C145, C146, C149, C150", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4251, - "pixel_y": 1179, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "8f699c05-e021-4f6c-82e0-ffa52d35c1db", - "fields": { - "str_id": "n3-bay", - "time_of_creation": "2018-06-24T19:50:18.548Z", - "name": "N3 Bay", - "short_name": "N3 Bay", - "description": "", - "parent": "34513a0d-1b20-4350-8d76-57c0883f10fe", - "parent_relation": "Near", - "group_id": 1, - "pixel_x": 4360, - "pixel_y": 1645, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "8f868c14-081b-44f2-99cc-e71b1708e826", - "fields": { - "str_id": "idp-sys--cntrl-engg", - "time_of_creation": "2018-06-24T19:50:18.824Z", - "name": "Inter-disciplinary Programme in Systems and Control Engineering", - "short_name": "IDP Sys & Cntrl Engg.", - "description": "http://www.sc.iitb.ac.in Tel: +912225767884, +912225722545 Fax:+912225720057 M Tech and Ph D offered in this programme. Research ares include nonlinear control, robotics, path-planning, embedded control, coordination of autonomous vehicles, multi-agent systems, game theory, information theory, combinatorics, sliding mode control and applications, fractional-order modelling and control, optimization and optimization-based control, and stochastic processes. In addition, research in the areas of process control, identification, behavioural theory, matrix computation, automotive control are being pursued by the associate faculty members. ", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 4011, - "pixel_y": 1411, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "8fcf8049-5a13-4e60-b5b1-993a4a554526", - "fields": { - "str_id": "maths", - "time_of_creation": "2018-06-24T19:50:18.275Z", - "name": "Mathematics Department", - "short_name": "Maths", - "description": "http://www.math.iitb.ac.in\r\nTel: +912225767451\r\n\r\nB Tech (core courses), MSc (ASI, Maths), Ph D", - "parent": null, - "parent_relation": null, - "group_id": 1, - "pixel_x": 3928, - "pixel_y": 1496, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "90629a63-a762-42e3-9e4e-67834ea7a118", - "fields": { - "str_id": "a7", - "time_of_creation": "2018-06-24T19:50:19.024Z", - "name": "Bungalow A7 ", - "short_name": "A7", - "description": "A-Type Bungalow", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2211, - "pixel_y": 3055, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "90a68340-721b-4bd2-861e-d36d8e09f9d8", - "fields": { - "str_id": "h9", - "time_of_creation": "2018-06-24T19:50:18.216Z", - "name": "Hostel 09 Nawaabon Ki Basti", - "short_name": "H9", - "description": "Hostel security: +912225762609 Hall Manager: +912225762709 G. Sec: Shubham Meena +919619835583", - "parent": null, - "parent_relation": null, - "group_id": 2, - "pixel_x": 2693, - "pixel_y": 858, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "90e980d3-7668-44b2-888c-341190c05e44", - "fields": { - "str_id": "jalvihar", - "time_of_creation": "2018-06-24T19:50:18.137Z", - "name": "Guest House / Jalvihar", - "short_name": "Jalvihar", - "description": "Tel: +912225768940 / +912225768942 / +912225768943", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 2610, - "pixel_y": 2138, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "91091770-c141-486d-bfce-08247cc7286c", - "fields": { - "str_id": "bsbe", - "time_of_creation": "2018-06-24T19:50:18.069Z", - "name": "Biosciences and Bioengineering Department", - "short_name": "BSBE", - "description": "Phone: +912225767771\r\nFax: +912225767771\r\nE-mail: office.bio@iitb.ac.in\r\n\r\nThe department offers academic programs in MSc (Biotechnology), MTech (Biomedical Engineering), MSc-PhD Dual Degree Program, PhD Program", - "parent": null, - "parent_relation": null, - "group_id": 1, - "pixel_x": 3934, - "pixel_y": 2241, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "911a6892-5444-419c-b23e-c4c5de03daeb", - "fields": { - "str_id": "elec-engg-anx", - "time_of_creation": "2018-06-24T19:50:18.121Z", - "name": "Electrical Engineering Annexe Building", - "short_name": "Elec engg Anx", - "description": "http://www.ee.iitb.ac.in +912225764408 ", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 3932, - "pixel_y": 1997, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "911c89b3-0400-4d2f-9e95-ef3ab79c15c8", - "fields": { - "str_id": "gg-conference-room-department-of-electrical-engineering", - "time_of_creation": "2018-10-19T11:44:26.980Z", - "name": "GG Conference Room, Department of Electrical Engineering", - "short_name": "GG Conference Room, Department of Electrical Engineering", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "935c4851-9d62-49f7-80ca-144b575c3370", - "fields": { - "str_id": "wwwlichessorg", - "time_of_creation": "2019-09-29T19:28:22.871Z", - "name": "www.lichess.org", - "short_name": "www.lichess.org", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "936e944c-dd74-44c2-a350-28520c0bdb90", - "fields": { - "str_id": "ms-teams-code-cvlz22v", - "time_of_creation": "2021-10-08T07:20:03.761Z", - "name": "MS Teams (code: cvlz22v)", - "short_name": "MS Teams (code: cvlz22v)", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "936ed800-b3d6-48cb-bc2c-cff0032d03a7", - "fields": { - "str_id": "h3-tv-room", - "time_of_creation": "2019-10-11T06:15:38.021Z", - "name": "H3 TV Room", - "short_name": "H3 TV Room", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "937b062b-b66c-4969-bdbf-75ba79f94c90", - "fields": { - "str_id": "vmcc--seminar-hall-1", - "time_of_creation": "2019-10-17T17:08:35.475Z", - "name": "VMCC | Seminar Hall 1", - "short_name": "VMCC | Seminar Hall 1", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "93ba3eea-cf19-49fa-bbf7-e631b1cc8ff6", - "fields": { - "str_id": "lh-101-lh102", - "time_of_creation": "2019-01-18T17:38:21.096Z", - "name": "LH 101, LH102", - "short_name": "LH 101, LH102", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "94f86837-7215-4059-89bd-1d7220a9bd03", - "fields": { - "str_id": "la-001", - "time_of_creation": "2018-06-24T19:50:18.667Z", - "name": "LA 001", - "short_name": "LA 001", - "description": "The classroom has 4 entrance doors, two on ground floor and two in first floor.", - "parent": "be8afcf1-c7f7-4d71-aaf5-0154081974dd", - "parent_relation": "Ground and First floors", - "group_id": 4, - "pixel_x": 3779, - "pixel_y": 2220, - "lat": "19.130984", - "lng": "72.917451", - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "952d386e-5da3-458a-9752-fdb20861e47c", - "fields": { - "str_id": "cs-101---lc201-bb101---lc202", - "time_of_creation": "2018-11-09T08:48:26.401Z", - "name": "CS 101 - LC201. BB101 - LC202", - "short_name": "CS 101 - LC201. BB101 - LC202", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "957a0f4a-2cd1-4611-b250-e767a32c6c70", - "fields": { - "str_id": "mlr-convention-center-bengaluru", - "time_of_creation": "2018-07-16T16:59:34.881Z", - "name": "MLR Convention Center, Bengaluru", - "short_name": "MLR Convention Center, Bengaluru", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "962bdedb-ded0-42ff-8407-b48d5037ca16", - "fields": { - "str_id": "lc-301", - "time_of_creation": "2018-06-24T19:50:18.791Z", - "name": "LC 301", - "short_name": "LC 301", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Third floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "96a74240-57a5-4be0-a4fa-83784abbe650", - "fields": { - "str_id": "2nd-floor-board-games-room-new-gymkhana", - "time_of_creation": "2019-02-09T13:46:58.263Z", - "name": "2nd floor, Board Games Room, New Gymkhana", - "short_name": "2nd floor, Board Games Room, New Gymkhana", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "96b1941c-0d9f-471a-b70b-9a9fd48d97e0", - "fields": { - "str_id": "som-auditorium", - "time_of_creation": "2022-07-28T14:14:24.915Z", - "name": "SOM Auditorium", - "short_name": "SOM Auditorium", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "973e3f96-cf7e-42ea-929a-3eca87c7d422", - "fields": { - "str_id": "lt-204", - "time_of_creation": "2018-06-24T19:50:18.734Z", - "name": "LT 204", - "short_name": "LT 204", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Second floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "97f27a75-81b1-435e-a494-1dc14536935c", - "fields": { - "str_id": "earth-sci", - "time_of_creation": "2018-06-24T19:50:18.117Z", - "name": "Earth Science Department", - "short_name": "Earth Sci", - "description": "http://www.geos.iitb.ac.in +912225767251,+912225767265 The department offers academic programs for M.Sc (Applied Geology, Applied Geophysics, Geoexploration), M Tech (Petroleum Geoscience) and Ph.D. Research areas include Mineralogy, Geochemistry and Ore Deposits Structural Geology Igneous and Metamorphic Petrology Engineering geology, Hydro-geology Sedimentology Stratigraphy and Micro-Paleontology Mathematical Geology/ Ore Deposit Modelling Rock Magnetism and Marine Geology Seismology, Geothermics", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 4038, - "pixel_y": 2123, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "98a3c8d6-d988-464f-bff5-6ba09590e8b7", - "fields": { - "str_id": "sbi-atm", - "time_of_creation": "2018-06-24T19:50:18.648Z", - "name": "ATM - State Bank Main Gate", - "short_name": "SBI ATM", - "description": "", - "parent": null, - "parent_relation": null, - "group_id": 6, - "pixel_x": 2164, - "pixel_y": 3227, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "98c72ca2-c7c8-4c40-95c0-fc54c0926f7d", - "fields": { - "str_id": "indoor-basketball-courts", - "time_of_creation": "2019-09-08T06:08:24.335Z", - "name": "Indoor Basketball Courts", - "short_name": "Indoor Basketball Courts", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "98fc20ad-cfbb-4fd8-ba85-77fc5fb00da3", - "fields": { - "str_id": "2b-15", - "time_of_creation": "2018-06-24T19:50:18.968Z", - "name": "Type 2B 15", - "short_name": "2B 15", - "description": "2B-Type Quarters, Flat nos 85 - 90", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 1076, - "pixel_y": 2833, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "9929a0b3-64d6-4bef-91c6-7d8202836d66", - "fields": { - "str_id": "cl-118", - "time_of_creation": "2019-01-31T08:13:07.127Z", - "name": "CL 118", - "short_name": "CL 118", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "9962262a-4c11-4385-822f-228b0f7d3379", - "fields": { - "str_id": "hockey-ground", - "time_of_creation": "2018-06-24T19:50:19.579Z", - "name": "Hockey Ground", - "short_name": "Hockey Ground", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 8, - "pixel_x": 3303, - "pixel_y": 1368, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "9982150c-f1d6-4bab-bd1e-ac99958cc071", - "fields": { - "str_id": "la-002", - "time_of_creation": "2018-06-24T19:50:18.671Z", - "name": "LA 002", - "short_name": "LA 002", - "description": "The classroom has 4 entrance doors, two on ground floor and two in first floor.", - "parent": "be8afcf1-c7f7-4d71-aaf5-0154081974dd", - "parent_relation": "Ground and First floors", - "group_id": 4, - "pixel_x": 3779, - "pixel_y": 2220, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "99d0616b-37f9-4175-bc41-ca3319622e30", - "fields": { - "str_id": "h5-football-grounds", - "time_of_creation": "2019-10-22T13:45:58.340Z", - "name": "H5 Football Grounds", - "short_name": "H5 Football Grounds", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "99ea94a1-0b72-4467-a5f1-ef95e24f3bf8", - "fields": { - "str_id": "rock-powdering-lab", - "time_of_creation": "2018-06-24T19:50:18.577Z", - "name": "Rock Powdering Lab", - "short_name": "Rock Powdering Lab", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 12, - "pixel_x": 3921, - "pixel_y": 2095, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "9a12eaea-210e-40f1-b68a-d1c1d9ef1844", - "fields": { - "str_id": "lc", - "time_of_creation": "2020-01-11T09:04:35.299Z", - "name": "LC", - "short_name": "LC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "9ae531a0-d969-4383-81b2-3e246fafbc26", - "fields": { - "str_id": "lh102", - "time_of_creation": "2018-10-19T21:06:25.060Z", - "name": "LH102", - "short_name": "LH102", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "9b0a998c-ecaf-4974-848d-83444838c5e7", - "fields": { - "str_id": "frisbee-field-hostel-2", - "time_of_creation": "2020-02-09T08:41:54.793Z", - "name": "Frisbee Field, Hostel 2", - "short_name": "Frisbee Field, Hostel 2", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "9b1f6038-948e-4330-9f87-20b8432752e8", - "fields": { - "str_id": "h15--h16", - "time_of_creation": "2019-03-13T12:37:40.691Z", - "name": "H15 & H16", - "short_name": "H15 & H16", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "9c40f2d7-0491-44d9-86fb-ae8e42d46450", - "fields": { - "str_id": "instagram-page--energy-club", - "time_of_creation": "2020-09-02T16:12:39.266Z", - "name": "Instagram Page | Energy Club", - "short_name": "Instagram Page | Energy Club", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "9caed95c-3cb6-435b-9938-33b279009b8f", - "fields": { - "str_id": "shivalik-c-23", - "time_of_creation": "2018-06-24T19:50:18.360Z", - "name": "Shivalik C 23 (187-240)", - "short_name": "Shivalik C 23", - "description": "C- Type Quartera Flat nos. 187 - 240", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3129, - "pixel_y": 2612, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "9cbe0f43-5740-47d9-99e2-ba1400812394", - "fields": { - "str_id": "h12", - "time_of_creation": "2018-06-24T19:50:18.171Z", - "name": "Hostel 12 Crown of the Campus", - "short_name": "H12", - "description": "Hostel security: +912225762612 Hall Manager: +912225762712 G. Sec: Ashutosh +919167782489", - "parent": null, - "parent_relation": null, - "group_id": 2, - "pixel_x": 2096, - "pixel_y": 667, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "9d1fce95-c6e9-4998-851e-2094058b71fc", - "fields": { - "str_id": "2b-21", - "time_of_creation": "2018-06-24T19:50:18.990Z", - "name": "Type 2B 21", - "short_name": "2B 21", - "description": "2B-Type Quarters, Flat nos 135 - 140", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 4720, - "pixel_y": 1371, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "9d52d7c6-a85e-402e-9bc1-fc39b48f7039", - "fields": { - "str_id": "kg-school", - "time_of_creation": "2018-06-24T19:50:18.866Z", - "name": "Kindergarten School", - "short_name": "K.G. School", - "description": "Principal: Ms. Lata P. Jagdeesh http://www.iitb.ac.in/facilities/kgschool School Office: +912225768991 In Charge's Office: +912225768913 Email: kgschool@iitb.ac.in In 1963 for the benefit of the children of the staff members staying in the campus of IIT Bombay, a School consisting of K.G. and primary classes commenced functioning from 10th June 1963. This School had one Nursery class, one Kindergarten class and one class each of I and II (4 classes). From a small number of 53 students at the start today the School has 250 children on roll, 7 teaching staff, 12 supporting staff and one office staff working with the School In Charge. ", - "parent": "5ce808c0-1085-405c-bce3-c1830c72082d", - "parent_relation": "Inside", - "group_id": 7, - "pixel_x": 3331, - "pixel_y": 2865, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "9d7a43d5-7076-406c-8768-6e8bcffe6908", - "fields": { - "str_id": "2-type1", - "time_of_creation": "2018-06-24T19:50:19.400Z", - "name": "Type1 - 2", - "short_name": "2-Type1", - "description": "Type 1 Quarters Flat nos. 13 - 24", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4214, - "pixel_y": 2586, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "9dc65ead-7371-4536-907e-44791b20cf23", - "fields": { - "str_id": "c13", - "time_of_creation": "2018-06-24T19:50:19.177Z", - "name": "Type C-13", - "short_name": "C13", - "description": "C-Type Quarters Flat nos. 79 - 84", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2974, - "pixel_y": 3070, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "9e17f3a8-1c28-4a2e-b728-edf7290db982", - "fields": { - "str_id": "1-h2", - "time_of_creation": "2018-06-24T19:50:19.271Z", - "name": "Type H2 1", - "short_name": "1-H2", - "description": "H2 Type Quarters Flat nos. 1 - 8", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 1257, - "pixel_y": 2812, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "9e19a24e-8b90-46e4-b29c-fc5673b9121c", - "fields": { - "str_id": "google-forms", - "time_of_creation": "2020-09-29T15:27:11.624Z", - "name": "Google Forms", - "short_name": "Google Forms", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "9e421dd1-3e51-4fd6-afc2-c6b13a322b6d", - "fields": { - "str_id": "7-h2", - "time_of_creation": "2018-06-24T19:50:19.293Z", - "name": "Type H2 - 7", - "short_name": "7-H2", - "description": "H2 Type Quarters Flat nos. 49 - 56", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 1211, - "pixel_y": 2702, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "9e7b028d-e975-4cc7-9360-38085c448c34", - "fields": { - "str_id": "instagram-live---insynciitb", - "time_of_creation": "2020-07-26T12:06:14.900Z", - "name": "Instagram Live - @insync_iitb ", - "short_name": "Instagram Live - @insync_iitb ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "9e8a8fae-4993-4d6a-a2c6-6d99a02f479a", - "fields": { - "str_id": "h2", - "time_of_creation": "2018-06-24T19:50:18.190Z", - "name": "Hostel 02 The Wild Ones", - "short_name": "H2", - "description": "Hostel security:+912225762602 Hall Manager: +912225762702 G. Sec: Manohar Reddy Devarpalli +918796879949", - "parent": null, - "parent_relation": null, - "group_id": 2, - "pixel_x": 3672, - "pixel_y": 1000, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "9eaba236-529a-40eb-90aa-c599e0bb30f3", - "fields": { - "str_id": "lh-301--lh-302", - "time_of_creation": "2019-01-16T15:44:04.109Z", - "name": "LH 301 , LH 302", - "short_name": "LH 301 , LH 302", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "9f078117-e97f-4345-a4f2-6cfb1c378f9b", - "fields": { - "str_id": "2b-23", - "time_of_creation": "2018-06-24T19:50:18.997Z", - "name": "Type 2B 23", - "short_name": "2B 23", - "description": "2B-Type Quarters, Flat nos 165 - 192", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 4365, - "pixel_y": 1180, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "9f4f3d3f-d159-45b5-a9c8-a27f2e2e1c0a", - "fields": { - "str_id": "lt-pcsa", - "time_of_creation": "2018-06-24T19:50:18.328Z", - "name": "PC Saxena Auditorium / Lecture Theatre", - "short_name": "LT PCSA", - "description": "022 2576 4999", - "parent": null, - "parent_relation": null, - "group_id": 4, - "pixel_x": 3648, - "pixel_y": 1790, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "9fff223e-89e4-4eb3-944f-2b9dac894ebe", - "fields": { - "str_id": "c17", - "time_of_creation": "2018-06-24T19:50:19.192Z", - "name": "Type C-17", - "short_name": "C17", - "description": "C-Type Quarters Flat nos. 103 - 108", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3453, - "pixel_y": 2987, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "a08be164-f9b6-42d8-b582-74281416eac8", - "fields": { - "str_id": "lt-106", - "time_of_creation": "2018-06-24T19:50:18.720Z", - "name": "LT 106", - "short_name": "LT 106", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "First floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "a0aa7145-0efa-45ce-9e2b-c6e57fac4942", - "fields": { - "str_id": "cl-112-old-cl-118-creativity-hall-chemical-engineering-department", - "time_of_creation": "2020-01-30T12:45:41.862Z", - "name": "CL 112 (Old CL 118-Creativity Hall), Chemical Engineering Department", - "short_name": "CL 112 (Old CL 118-Creativity Hall), Chemical Engineering Department", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "a0ac9dda-b31f-4bd2-964b-5b4a5797c9e7", - "fields": { - "str_id": "lhc", - "time_of_creation": "2019-01-11T17:12:46.410Z", - "name": "LHC", - "short_name": "LHC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "a0d57b10-28fe-4288-9f04-e42f38b8cc48", - "fields": { - "str_id": "google-meet", - "time_of_creation": "2020-07-19T10:11:35.159Z", - "name": "Google Meet", - "short_name": "Google Meet", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "a10e49a4-09fa-48f2-8578-716f860d12f6", - "fields": { - "str_id": "h5-football-field", - "time_of_creation": "2018-11-02T13:28:35.528Z", - "name": "H5 Football Field", - "short_name": "H5 Football Field", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "a1232173-393b-47af-a8d7-f94b27143542", - "fields": { - "str_id": "2b-11", - "time_of_creation": "2018-06-24T19:50:18.943Z", - "name": "Type 2B 11", - "short_name": "2B 11", - "description": "2B-Type Quarters, Flat nos 61 - 66", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 808, - "pixel_y": 2612, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "a125b4ae-609f-4c36-a3e7-332df6182bc4", - "fields": { - "str_id": "sac-conference-room", - "time_of_creation": "2020-01-28T15:32:38.862Z", - "name": "SAC conference room", - "short_name": "SAC conference room", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "a1370540-fc28-43b9-a415-4e94b9719474", - "fields": { - "str_id": "2b-2", - "time_of_creation": "2018-06-24T19:50:18.914Z", - "name": "Type 2B 2", - "short_name": "2B 2", - "description": "2B-Type Quarters, Flat nos 7 - 12", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 4381, - "pixel_y": 2311, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "a2247c54-e8dd-405e-8ad3-1454f325e528", - "fields": { - "str_id": "21-h2", - "time_of_creation": "2018-06-24T19:50:19.345Z", - "name": "Type H2 - 21", - "short_name": "21-H2", - "description": "H2 Type Quarters Flat nos. 161 - 168", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4304, - "pixel_y": 1260, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "a280088b-fae2-4384-be64-399d924a4514", - "fields": { - "str_id": "lh-301", - "time_of_creation": "2018-06-24T19:50:18.808Z", - "name": "LH 301", - "short_name": "LH 301", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Third floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "a2a92db7-8485-43ab-ab1b-e84d1a573eb9", - "fields": { - "str_id": "httpstinyurlcomcsec-reveng", - "time_of_creation": "2021-10-23T09:27:04.086Z", - "name": "https://tinyurl.com/csec-reveng", - "short_name": "https://tinyurl.com/csec-reveng", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "a2fb1bdc-3df2-4e88-af3a-2a5a8ccc6236", - "fields": { - "str_id": "phy-lab-1-yr", - "time_of_creation": "2018-06-24T19:50:18.563Z", - "name": "Physics Lab (Ist Years)", - "short_name": "Phy Lab (1 Yr)", - "description": "Comes under Physics department", - "parent": null, - "parent_relation": "", - "group_id": 12, - "pixel_x": 4585, - "pixel_y": 1540, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "a30aaf64-48a0-4ee5-b973-c9f8001bad57", - "fields": { - "str_id": "hospital", - "time_of_creation": "2018-06-24T19:50:18.149Z", - "name": "Hospital", - "short_name": "Hospital", - "description": "Hospital Tel: +912225767051, Ambulance Tel: +912225761101", - "parent": null, - "parent_relation": null, - "group_id": 9, - "pixel_x": 3018, - "pixel_y": 1917, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "a3c684e3-5581-4830-ad02-27053bf89d59", - "fields": { - "str_id": "cisco-webex", - "time_of_creation": "2020-08-04T09:08:36.543Z", - "name": "Cisco Webex", - "short_name": "Cisco Webex", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "a40e2585-3aa6-4448-ad0b-a4faa31adb20", - "fields": { - "str_id": "badminton-court--opposite-to-hostel-2", - "time_of_creation": "2019-06-17T10:06:44.421Z", - "name": "Badminton Court ( opposite to hostel 2)", - "short_name": "Badminton Court ( opposite to hostel 2)", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "a498414e-d89e-4462-8b79-5bc10a91e96e", - "fields": { - "str_id": "itc-room-aka-stab-room-old-sac", - "time_of_creation": "2019-01-11T12:17:02.971Z", - "name": "ITC Room (aka STAB room), Old SAC", - "short_name": "ITC Room (aka STAB room), Old SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "a5306738-dfc3-4ba1-846e-2d337aa9905a", - "fields": { - "str_id": "zoom-meetings", - "time_of_creation": "2020-10-15T13:33:08.574Z", - "name": "Zoom Meetings", - "short_name": "Zoom Meetings", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "a5bd85a4-a281-44cb-925f-49a50f8a7070", - "fields": { - "str_id": "h13", - "time_of_creation": "2018-06-24T19:50:18.175Z", - "name": "Hostel 13 House of Titans", - "short_name": "H13", - "description": "Hostel security: +912225762613 Hall Manager: +912225762713 G. Sec: Raj Kumar Yadav +919769484219", - "parent": null, - "parent_relation": "", - "group_id": 2, - "pixel_x": 1918, - "pixel_y": 745, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "a5d23588-38aa-42ad-b8a8-686b18707b9b", - "fields": { - "str_id": "httpseventwebinarjamcomchannelvsm", - "time_of_creation": "2020-08-10T11:23:29.043Z", - "name": "https://event.webinarjam.com/channel/vsm", - "short_name": "https://event.webinarjam.com/channel/vsm", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "a5ee8c37-d016-4f77-b404-facb476001cb", - "fields": { - "str_id": "httpsus02webzoomusj89823207326pwdr1ridmh1nxavqxpzn3fycznit2hvdz09", - "time_of_creation": "2020-12-25T15:46:06.422Z", - "name": "https://us02web.zoom.us/j/89823207326?pwd=R1RIdmh1NXAvQXpZN3FYczNiT2hvdz09", - "short_name": "https://us02web.zoom.us/j/89823207326?pwd=R1RIdmh1NXAvQXpZN3FYczNiT2hvdz09", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "a5f7a4ff-abd0-43a5-972a-05904a82e470", - "fields": { - "str_id": "casde", - "time_of_creation": "2018-06-24T19:50:18.455Z", - "name": "Centre for Aerospace Systems Design and Engineering", - "short_name": "CASDE", - "description": "http://www.casde.iitb.ac.in/aboutus Tel: +912225767840", - "parent": "cd0dc47f-5286-45cd-a17d-d1867df08f69", - "parent_relation": "Inside", - "group_id": 1, - "pixel_x": 4153, - "pixel_y": 2249, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "a64aee78-8aa0-4af0-976b-e22c0fec74d6", - "fields": { - "str_id": "room-no-21-vmcc", - "time_of_creation": "2019-03-30T11:03:44.329Z", - "name": "Room No 21, VMCC", - "short_name": "Room No 21, VMCC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "a68e2e07-bec6-4664-961f-bf412cb0c6b9", - "fields": { - "str_id": "central-library", - "time_of_creation": "2018-06-24T19:50:18.083Z", - "name": "Central Library", - "short_name": "Central Library", - "description": "http://www.library.iitb.ac.in\n+912225768921\n\nLibrary Working Hours:\nMonday through Friday: 0900 - 2300 hrs \nMonday through Friday: 0900 - 0100 hrs (during examination)\nHolidays: 1000 - 1700 hrs\n\nCirculation Hours:\nMonday through Friday 0900-2000 hrs\nHolidays: 1100-1300 hrs\n\nSelf Issue / self Check out, any time till library is open. Study room books issued for overnight, one hour before closing of the library on all days", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 3820, - "pixel_y": 1455, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "a75c2a8d-b7c0-43ce-b324-72091642338f", - "fields": { - "str_id": "30-january-2021-11-am-online", - "time_of_creation": "2021-01-27T02:35:20.708Z", - "name": "30 January 2021, 11 am Online ", - "short_name": "30 January 2021, 11 am Online ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "a764ea8e-2d6b-4cdc-9641-7a4fae64b1b6", - "fields": { - "str_id": "webinar-jam", - "time_of_creation": "2020-11-29T08:22:54.902Z", - "name": "Webinar jam", - "short_name": "Webinar jam", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "a8283e37-983e-4214-b0e7-80900504b3a3", - "fields": { - "str_id": "prints", - "time_of_creation": "2018-06-24T19:50:18.635Z", - "name": "Printing and photocopying H11", - "short_name": "Prints", - "description": "", - "parent": "598d1ab6-cc6d-4409-8363-f0e9a1fc81c6", - "parent_relation": "Inside", - "group_id": 11, - "pixel_x": 2987, - "pixel_y": 1368, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "a8d6f1b1-aa19-4f9d-adc0-f34ac7b7443e", - "fields": { - "str_id": "h6", - "time_of_creation": "2018-06-24T19:50:18.205Z", - "name": "Hostel 06 Vikings", - "short_name": "H6", - "description": "Hostel security: +912225762606 Hall Manager:+912225762706 G. Sec: Anil Reddy +919022623186", - "parent": null, - "parent_relation": null, - "group_id": 2, - "pixel_x": 2546, - "pixel_y": 769, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "a8e0dbe5-79dd-44c6-a16f-807c21befd73", - "fields": { - "str_id": "hostel-8---tv-room", - "time_of_creation": "2018-09-27T19:28:25.235Z", - "name": "Hostel 8 - TV Room", - "short_name": "Hostel 8 - TV Room", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "a90f8bef-e300-47eb-b26f-35bf8cb302df", - "fields": { - "str_id": "press", - "time_of_creation": "2018-06-24T19:50:19.547Z", - "name": "Proposed Press ", - "short_name": "Press", - "description": "", - "parent": "e6eb8827-5107-4536-ab97-d7e367f3955f", - "parent_relation": "inside", - "group_id": 9, - "pixel_x": 4451, - "pixel_y": 2173, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "a9519692-c611-4c58-85b1-3a1713fd6264", - "fields": { - "str_id": "10-h1", - "time_of_creation": "2018-06-24T19:50:19.247Z", - "name": "Type H1 - 10", - "short_name": "10-H1", - "description": "H1 Type Quarters Flat nos. 109 - 120", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 703, - "pixel_y": 2275, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "a985dda9-4c63-4a44-bda3-4253613e35c4", - "fields": { - "str_id": "b-24-nilgiri", - "time_of_creation": "2018-06-24T19:50:18.305Z", - "name": "B 24 Nilgiri", - "short_name": "B 24 Nilgiri", - "description": "Flat nos. 268-326 ", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3318, - "pixel_y": 2324, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "a9bd0a1e-0e53-4a2c-8b1d-925e43480f7e", - "fields": { - "str_id": "httpsyoutubeldpjvg18j6s", - "time_of_creation": "2020-09-08T13:32:56.306Z", - "name": "https://youtu.be/LdPJvG18j6s", - "short_name": "https://youtu.be/LdPJvG18j6s", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "aa0ea9a0-8324-44c1-8454-bcbdcc5bcfb8", - "fields": { - "str_id": "cl-237-computational-lab-chemical-department", - "time_of_creation": "2019-09-28T11:42:26.851Z", - "name": "CL 237 Computational Lab, Chemical Department", - "short_name": "CL 237 Computational Lab, Chemical Department", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "aa4fa9f4-40fa-4d99-bba8-bd985d11f67e", - "fields": { - "str_id": "mems", - "time_of_creation": "2018-06-24T19:50:18.287Z", - "name": "Metallurgical Engineering and Material Science Department", - "short_name": "MEMS", - "description": "http://www.met.iitb.ac.in\r\nTel: +912225767601 / +912225767602\r\n\r\nThe department offers academic programs for B. Tech, Dual degree (B Tech + M Tech), M. Tech and Ph. D. Dual degree specializations include Ceramics and Composites and Metallurgical Process Engineering. M Tech specializations include Materials Science, Steel Technology, Process Engineering and Corrosion Science.", - "parent": null, - "parent_relation": null, - "group_id": 1, - "pixel_x": 3631, - "pixel_y": 2044, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "aa7a87c3-bcfc-4364-aa8b-86b8db299022", - "fields": { - "str_id": "vmcc-33", - "time_of_creation": "2020-01-07T11:53:38.915Z", - "name": "VMCC 33", - "short_name": "VMCC 33", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "aad1d082-064b-4175-a59b-47f843ba5007", - "fields": { - "str_id": "board-games-room-new-sac", - "time_of_creation": "2019-08-22T05:56:50.942Z", - "name": "Board Games Room, New Sac", - "short_name": "Board Games Room, New Sac", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "aaf55c39-1b2f-4a5c-9fb5-2da764bcc88f", - "fields": { - "str_id": "new-gymkhana-building-3rd-floor-opposite-hostel-11", - "time_of_creation": "2018-07-30T12:51:57.471Z", - "name": "New Gymkhana Building, 3rd Floor, Opposite Hostel 11", - "short_name": "New Gymkhana Building, 3rd Floor, Opposite Hostel 11", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "acd9e87f-26c9-410f-bf4d-57c7367f87c5", - "fields": { - "str_id": "flexiloans-technologies-pvt-ltd-matunga-west-mumbai", - "time_of_creation": "2018-08-29T17:33:33.245Z", - "name": "FlexiLoans Technologies Pvt. Ltd., Matunga West, Mumbai", - "short_name": "FlexiLoans Technologies Pvt. Ltd., Matunga West, Mumbai", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "ad376d38-f817-4224-99c3-15de288ece8d", - "fields": { - "str_id": "h15-16-gate", - "time_of_creation": "2019-08-23T13:02:17.366Z", - "name": "H15-16 Gate", - "short_name": "H15-16 Gate", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "ad5cf6e1-69f3-4a1a-b4dd-99483c3610a8", - "fields": { - "str_id": "fc-kohli-auditorium-kresit-building", - "time_of_creation": "2019-12-15T11:04:26.850Z", - "name": "F.C Kohli Auditorium, KReSIT Building", - "short_name": "F.C Kohli Auditorium, KReSIT Building", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "ad8f15b6-d946-4d20-958a-7cf2a4a59058", - "fields": { - "str_id": "httpszoomusj99677697540pwdr21bbknnt3vkvhp6ztloy3zpeks4ut09", - "time_of_creation": "2021-06-30T10:31:10.898Z", - "name": "https://zoom.us/j/99677697540?pwd=R21BbkNNT3VKVHp6ZTloY3Zpeks4UT09", - "short_name": "https://zoom.us/j/99677697540?pwd=R21BbkNNT3VKVHp6ZTloY3Zpeks4UT09", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "ade90eb3-ce30-47ff-8f7f-285734d23017", - "fields": { - "str_id": "httpsiit-techambitinpan-iit-editorial-onboarding", - "time_of_creation": "2020-10-18T16:49:19.542Z", - "name": "https://iit-techambit.in/pan-iit-editorial-onboarding/", - "short_name": "https://iit-techambit.in/pan-iit-editorial-onboarding/", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "adf317b3-7f62-479f-af07-3f0e512d3caa", - "fields": { - "str_id": "h15-and-h16-mess", - "time_of_creation": "2018-07-26T18:27:22.055Z", - "name": "H15 and H16 Mess", - "short_name": "H15 and H16 Mess", - "description": "", - "parent": "12c0c3f6-8e0d-430f-accc-c876986cf622", - "parent_relation": null, - "group_id": 8, - "pixel_x": 3599, - "pixel_y": 1225, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "ae635b75-df27-4df0-a9b8-c933501e50ab", - "fields": { - "str_id": "ese", - "time_of_creation": "2018-06-24T19:50:18.434Z", - "name": "Energy Science and Engineering", - "short_name": "ESE", - "description": "http://www.ese.iitb.ac.in\nTel: +912225767890\n\nThe department offers academic programs in Dual degree (B Tech + M Tech), M Tech, M.Sc.-Ph.D and Ph.D. Research areas include Energy Efficiency and Conservation, Solar PV and Thermal, Battery and Storage Engineering, Hydrogen and Fuel Cells, Smart microgrids, Biomass and Bio-Fuels, Wind Energy, Nuclear", - "parent": null, - "parent_relation": null, - "group_id": 1, - "pixel_x": 4239, - "pixel_y": 2028, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "aec4d748-d6a2-4c05-a6a2-b3964459d62c", - "fields": { - "str_id": "b13", - "time_of_creation": "2018-06-24T19:50:19.115Z", - "name": "Type B-13", - "short_name": "B13", - "description": "B-Type Quarters Flat nos. 51 - 54", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2356, - "pixel_y": 2478, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "aef07612-581c-4f05-9f6c-faf65a61eec4", - "fields": { - "str_id": "vmcc-lecture-hall-22", - "time_of_creation": "2018-08-14T12:05:46.948Z", - "name": "VMCC Lecture Hall-22", - "short_name": "VMCC Lecture Hall-22", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b006bf9a-58a9-4e3d-8886-e2b192bdb467", - "fields": { - "str_id": "discord", - "time_of_creation": "2021-01-10T13:45:03.700Z", - "name": "Discord", - "short_name": "Discord", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b0e83bb6-80dd-4e87-8b80-6ae8cf03d985", - "fields": { - "str_id": "instagraminsynciitb-and-facebook", - "time_of_creation": "2020-12-08T10:17:38.433Z", - "name": "Instagram(@insync_iitb) and Facebook", - "short_name": "Instagram(@insync_iitb) and Facebook", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b10f60bc-30a0-41f2-8928-0ddd0dede17b", - "fields": { - "str_id": "b2", - "time_of_creation": "2018-06-24T19:50:19.075Z", - "name": "Type B-2", - "short_name": "B2", - "description": "B-Type Quarters Flat nos. 7 - 10", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2848, - "pixel_y": 2685, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "b15f619e-d6c2-45af-b254-ffaa8c70844e", - "fields": { - "str_id": "4-h1", - "time_of_creation": "2018-06-24T19:50:19.225Z", - "name": "Type H1 - 4", - "short_name": "4-H1", - "description": "H1 Type Quarters Flat nos. 37 - 48", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 812, - "pixel_y": 2560, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "b1e5aa36-eb00-440b-a254-d49711f93103", - "fields": { - "str_id": "dir-bunglw", - "time_of_creation": "2018-06-24T19:50:18.110Z", - "name": "A1 Director Bungalow", - "short_name": "Dir. Bunglw.", - "description": "", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 2594, - "pixel_y": 2495, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "b1e5b6a3-5bf6-4ac5-a48a-3f866b85dddb", - "fields": { - "str_id": "forms", - "time_of_creation": "2021-08-08T13:57:54.222Z", - "name": "Forms", - "short_name": "Forms", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b1f93a00-49ea-4a53-bfc9-dbaa30cd1d3c", - "fields": { - "str_id": "12-h2", - "time_of_creation": "2018-06-24T19:50:19.312Z", - "name": "Type H2 - 12", - "short_name": "12-H2", - "description": "H2 Type Quarters Flat nos. 89 - 96", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 960, - "pixel_y": 2640, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "b236a1df-31be-4a81-8a1d-cf67b3a07223", - "fields": { - "str_id": "board-games-room-2nd-floor-new-gymkhana-building", - "time_of_creation": "2019-01-14T15:05:02.401Z", - "name": "Board games Room, 2nd floor, New Gymkhana Building", - "short_name": "Board games Room, 2nd floor, New Gymkhana Building", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b239dcc9-8d85-4555-9399-ab27d3276a54", - "fields": { - "str_id": "register-asap", - "time_of_creation": "2020-09-18T15:19:18.176Z", - "name": "REGISTER ASAP ", - "short_name": "REGISTER ASAP ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b25ca3c2-bf35-4167-a4c5-3127cb5af7f1", - "fields": { - "str_id": "h8-lounge", - "time_of_creation": "2019-01-27T08:40:53.158Z", - "name": "H8 Lounge", - "short_name": "H8 Lounge", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b2b6e406-d148-4db2-aaf4-c2de718eec27", - "fields": { - "str_id": "screening-room-3rd-floor-new-sac-opposite-to-hostel-11", - "time_of_creation": "2019-05-13T15:57:10.183Z", - "name": "Screening Room, 3rd floor, New SAC, opposite to Hostel 11", - "short_name": "Screening Room, 3rd floor, New SAC, opposite to Hostel 11", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b4c43ce8-5cc5-40aa-83e8-6e8bd1ab2a88", - "fields": { - "str_id": "b1", - "time_of_creation": "2018-06-24T19:50:19.071Z", - "name": "Type B-1", - "short_name": "B1", - "description": "B-Type Quarters Flat nos. 1 - 6", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2680, - "pixel_y": 2368, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "b4e17da4-6aad-46c4-b799-3fe9de7a18a3", - "fields": { - "str_id": "b16", - "time_of_creation": "2018-06-24T19:50:19.126Z", - "name": "Type B-16", - "short_name": "B16", - "description": "B-Type Quarters Flat nos. 63 - 66", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2085, - "pixel_y": 2719, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "b4f2c8f6-3d50-4f22-813b-f2578cdf8b06", - "fields": { - "str_id": "facebook-live---culturalsiitb", - "time_of_creation": "2020-11-05T11:46:42.120Z", - "name": "Facebook Live - Culturals@iitb", - "short_name": "Facebook Live - Culturals@iitb", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b4f6367a-950a-4280-b8fe-ce00985f7db8", - "fields": { - "str_id": "csre-d", - "time_of_creation": "2018-06-24T19:50:19.583Z", - "name": "CSRE D", - "short_name": "CSRE D", - "description": "CSRE Quarters D1, D2, D3, D4, D5, D6, D7, D8, D9, D10, D11, D12", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4302, - "pixel_y": 1171, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "b50583af-c835-4030-90c1-d16271e62217", - "fields": { - "str_id": "hcu", - "time_of_creation": "2018-06-24T19:50:18.418Z", - "name": "Hostel Coordinating Unit", - "short_name": "HCU", - "description": "Chairman Tel: +91222576 8901, OfficeTel: +91222576 8900", - "parent": "0308d18d-03a2-40bb-8efd-b222b7f84001", - "parent_relation": "Inside", - "group_id": 1, - "pixel_x": 3628, - "pixel_y": 1640, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "b52ba7b4-277b-4207-ae6d-dd14f392dd8d", - "fields": { - "str_id": "multi-purpose-hall-3rd-floor-new-sac", - "time_of_creation": "2019-03-18T12:36:16.136Z", - "name": "Multi purpose Hall, 3rd floor, New SAC", - "short_name": "Multi purpose Hall, 3rd floor, New SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b565f4f8-0862-4d16-ba5b-6bc2f42e9933", - "fields": { - "str_id": "sustain--ts-online", - "time_of_creation": "2020-10-26T09:29:59.339Z", - "name": "Sustain- TS online", - "short_name": "Sustain- TS online", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b594b49b-3d07-4847-a6c2-4702122b8e53", - "fields": { - "str_id": "your-homes", - "time_of_creation": "2020-05-21T09:24:46.154Z", - "name": "Your Homes", - "short_name": "Your Homes", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b59f3e02-09ac-4f7c-94d4-39332f9e2196", - "fields": { - "str_id": "paspoli-gate", - "time_of_creation": "2018-06-24T19:50:19.513Z", - "name": "Paspoli Gate no. 4 ", - "short_name": "Paspoli Gate", - "description": "This gate is not used regularly", - "parent": null, - "parent_relation": "", - "group_id": 10, - "pixel_x": 2247, - "pixel_y": 196, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "b5d88d5d-20c2-4adf-89bc-dda50ded092f", - "fields": { - "str_id": "hostel-11", - "time_of_creation": "2020-03-04T11:00:09.209Z", - "name": "Hostel 11", - "short_name": "Hostel 11", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b60f8967-aeb9-4cb2-8781-2658556661d5", - "fields": { - "str_id": "lt-102", - "time_of_creation": "2018-06-24T19:50:18.705Z", - "name": "LT 102", - "short_name": "LT 102", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "First floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "b65f77a6-df7b-4034-ade1-ecc360e93a6a", - "fields": { - "str_id": "elec-maint", - "time_of_creation": "2018-06-24T19:50:18.134Z", - "name": "Electrical Maintenence", - "short_name": "Elec Maint", - "description": "Tel: +912225767971/ +912225764077", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 4544, - "pixel_y": 1830, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "b6b7c7dd-9093-4452-b296-8128517a2298", - "fields": { - "str_id": "room-21-vmcc", - "time_of_creation": "2019-03-10T14:09:30.007Z", - "name": "Room 21, VMCC", - "short_name": "Room 21, VMCC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b6e1cef3-704f-4c8c-bd9a-44294c9920ba", - "fields": { - "str_id": "new-ese", - "time_of_creation": "2019-02-05T08:03:01.452Z", - "name": "Energy Science and Engineering (New Building)", - "short_name": "New ESE", - "description": "http://www.ese.iitb.ac.in\r\nTel: +912225767890\r\n\r\nThe department offers academic programs in Dual degree (B Tech + M Tech), M Tech, M.Sc.-Ph.D and Ph.D. Research areas include Energy Efficiency and Conservation, Solar PV and Thermal, Battery and Storage Engineering, Hydrogen and Fuel Cells, Smart microgrids, Biomass and Bio-Fuels, Wind Energy, Nuclear", - "parent": "866dde4e-4667-446f-969e-ee4035b766a5", - "parent_relation": "inside", - "group_id": 1, - "pixel_x": 3979, - "pixel_y": 2467, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "b6f05fac-d82e-4815-905a-aa44216c6b98", - "fields": { - "str_id": "g-form", - "time_of_creation": "2021-12-07T10:44:21.029Z", - "name": "G-form", - "short_name": "G-form", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b74329f6-3816-4daf-a7a2-4bdc54282da0", - "fields": { - "str_id": "hostel-12-lounge", - "time_of_creation": "2019-04-11T21:12:32.103Z", - "name": "Hostel 12 Lounge", - "short_name": "Hostel 12 Lounge", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b7af300a-dddf-4bdf-b342-e0f7df0e4f6a", - "fields": { - "str_id": "16-h2", - "time_of_creation": "2018-06-24T19:50:19.326Z", - "name": "Type H2 - 16", - "short_name": "16-H2", - "description": "H2 Type Quarters Flat nos. 121 - 128", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 774, - "pixel_y": 2412, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "b7ccef18-0330-4871-bb95-4bb523344287", - "fields": { - "str_id": "2b-13", - "time_of_creation": "2018-06-24T19:50:18.950Z", - "name": "Type 2B 13", - "short_name": "2B 13", - "description": "2B-Type Quarters, Flat nos 73 - 78", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 691, - "pixel_y": 2555, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "b7dd5c67-a1a3-4ce9-b336-da92ec966032", - "fields": { - "str_id": "vmcc-lecture-hall-22", - "time_of_creation": "2018-10-26T05:17:25.302Z", - "name": "VMCC Lecture Hall 22 ", - "short_name": "VMCC Lecture Hall 22 ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b869092b-7705-41c4-8672-64b2271ade0a", - "fields": { - "str_id": "b18", - "time_of_creation": "2018-06-24T19:50:19.134Z", - "name": "Type B-18", - "short_name": "B18", - "description": "B-Type Quarters Flat nos. 73 - 74 and 73A - 74A ", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3159, - "pixel_y": 2368, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "b8b3c83f-84ba-46bf-8a36-ff228cb8d75a", - "fields": { - "str_id": "ms-teams---knwwwcx", - "time_of_creation": "2021-01-19T18:38:29.528Z", - "name": "MS Teams - KNWWWCX", - "short_name": "MS Teams - KNWWWCX", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b8db6df3-6f37-4dd5-9b19-133a05101518", - "fields": { - "str_id": "convocation-foyer", - "time_of_creation": "2019-01-18T16:01:27.715Z", - "name": "Convocation Foyer", - "short_name": "Convocation Foyer", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b8e05a24-1e3f-4926-b91e-b2e3cd3a2a55", - "fields": { - "str_id": "2b-3", - "time_of_creation": "2018-06-24T19:50:18.918Z", - "name": "Type 2B 3", - "short_name": "2B 3", - "description": "2B-Type Quarters, Flat nos 13 - 18", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 4331, - "pixel_y": 2388, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "b975408c-933c-4ffa-9b2d-27850edfe195", - "fields": { - "str_id": "b5", - "time_of_creation": "2018-06-24T19:50:19.086Z", - "name": "Type B-5", - "short_name": "B5", - "description": "B-Type Quarters Flat nos. 19 - 22", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2687, - "pixel_y": 3079, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "b980d0b5-f88b-4315-9500-ac3228cee585", - "fields": { - "str_id": "avenues-sjmsom-iit-bombay", - "time_of_creation": "2019-10-16T19:25:11.059Z", - "name": "Avenues, SJMSOM, IIT Bombay ", - "short_name": "Avenues, SJMSOM, IIT Bombay ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b98a3030-ea72-486c-b94d-28120eb39a7e", - "fields": { - "str_id": "hostel-15-16-mess", - "time_of_creation": "2019-07-25T07:32:47.571Z", - "name": "Hostel 15 &16 mess", - "short_name": "Hostel 15 &16 mess", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b98eea0b-f1b6-442d-8c84-a546f7e977d0", - "fields": { - "str_id": "lc-101", - "time_of_creation": "2019-01-11T17:31:09.195Z", - "name": " LC 101", - "short_name": " LC 101", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b9eac8fe-ea56-48d4-b466-3651a45875a0", - "fields": { - "str_id": "a15", - "time_of_creation": "2018-06-24T19:50:19.053Z", - "name": "Bungalow A15 ", - "short_name": "A15", - "description": "A-Type Bungalow", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4017, - "pixel_y": 1243, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "ba9872e9-7438-4ad9-81bb-16261d2d60c7", - "fields": { - "str_id": "h5-mess", - "time_of_creation": "2019-09-27T19:44:54.163Z", - "name": "H5 Mess", - "short_name": "H5 Mess", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "bb09ec9c-e49e-4cab-853b-cf7022fd83fe", - "fields": { - "str_id": "powai-lake", - "time_of_creation": "2019-06-01T16:18:02.277Z", - "name": "Powai Lake", - "short_name": "Powai Lake", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "bba75c4c-0ad7-4d4b-bcdd-a3d1c9d1ea3e", - "fields": { - "str_id": "heat-trans-lab", - "time_of_creation": "2018-06-24T19:50:18.500Z", - "name": "Heat Transfer and Thermodynamic Lab", - "short_name": "Heat Trans Lab", - "description": "Comes under Mechanical Engineering Department +912225764533", - "parent": null, - "parent_relation": "", - "group_id": 12, - "pixel_x": 4390, - "pixel_y": 1550, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "bbd5ca5e-e1e1-4d28-a862-02edd1ccef22", - "fields": { - "str_id": "fuel-cell-re-fac", - "time_of_creation": "2018-06-24T19:50:18.482Z", - "name": "Fuel Cell Research Facility", - "short_name": "Fuel Cell Re. Fac.", - "description": "Comes under Energy Systems Engineering Department http://www.ese.iitb.ac.in +912225764897", - "parent": "571b762e-b756-4def-a968-ee114f28964b", - "parent_relation": "Inside", - "group_id": 1, - "pixel_x": 4525, - "pixel_y": 1680, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "bc319d21-2852-4d4a-9dd5-e4c8cd4ce9f7", - "fields": { - "str_id": "theater-room-sac", - "time_of_creation": "2019-10-11T15:59:15.160Z", - "name": "Theater room, SAC", - "short_name": "Theater room, SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "bc594c03-f74e-4b42-8fe6-9614ac7a6e95", - "fields": { - "str_id": "aq-corro-lab", - "time_of_creation": "2018-06-24T19:50:18.855Z", - "name": "Aqueous Corrosion Lab", - "short_name": "Aq Corro Lab", - "description": "Tel: +912225764607", - "parent": "aa4fa9f4-40fa-4d99-bba8-bd985d11f67e", - "parent_relation": "Inside", - "group_id": 12, - "pixel_x": 3631, - "pixel_y": 2044, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "bc5a6f5d-2def-4791-953c-103333802548", - "fields": { - "str_id": "hall-no-32-vmcc", - "time_of_creation": "2018-10-23T11:07:08.017Z", - "name": "Hall No. 32, VMCC", - "short_name": "Hall No. 32, VMCC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "bc78928a-2e85-41a2-a40d-93056d951791", - "fields": { - "str_id": "cl-118-chemical-department", - "time_of_creation": "2019-02-12T18:49:29.655Z", - "name": "CL-118, CHEMICAL DEPARTMENT", - "short_name": "CL-118, CHEMICAL DEPARTMENT", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "bc8ec523-410a-49dc-bb80-ec8c335688bf", - "fields": { - "str_id": "h4-security-desk", - "time_of_creation": "2018-10-24T19:54:12.539Z", - "name": "H4 Security Desk", - "short_name": "H4 Security Desk", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "bd1fb0c2-8e89-47fe-981c-5556fbbab6fb", - "fields": { - "str_id": "old-sac", - "time_of_creation": "2018-08-26T08:40:20.065Z", - "name": "Old SAC", - "short_name": "Old SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "bd2d4d75-7561-4b2d-b1d7-0dd6294c2015", - "fields": { - "str_id": "lt-001", - "time_of_creation": "2018-06-24T19:50:18.683Z", - "name": "LT 001", - "short_name": "LT 001", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Ground floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "bd3c5abd-5845-4934-873e-b6f6f27d223e", - "fields": { - "str_id": "google-meet---httpsmeetgooglecomrbu-qdaq-bvt", - "time_of_creation": "2020-09-25T16:31:51.669Z", - "name": "Google Meet - https://meet.google.com/rbu-qdaq-bvt", - "short_name": "Google Meet - https://meet.google.com/rbu-qdaq-bvt", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "bd54d157-c3a1-43a1-b05d-e724ddc76f1e", - "fields": { - "str_id": "sustain--team-shunya-online", - "time_of_creation": "2020-10-26T05:49:40.681Z", - "name": "Sustain- Team Shunya Online", - "short_name": "Sustain- Team Shunya Online", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "bd67f0af-b039-44ae-a86e-0d9480d3fe90", - "fields": { - "str_id": "ncpa-theatre", - "time_of_creation": "2018-06-24T22:02:28.756Z", - "name": "NCPA Theatre", - "short_name": "NCPA Theatre", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "bddeb9d2-1c06-4eac-a2e9-d2ebac2207b1", - "fields": { - "str_id": "ug-lab--s2-bay", - "time_of_creation": "2018-06-24T19:50:18.627Z", - "name": "UG Lab / S2 Bay", - "short_name": "UG Lab / S2 Bay", - "description": "Comes under Chemical Engineering Department +912225764207", - "parent": "c3545b3d-e33d-4c14-b04d-c369146391ec", - "parent_relation": "", - "group_id": 12, - "pixel_x": 4410, - "pixel_y": 1740, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "bdecb6e1-9cd6-4fac-82bd-bb7212fa4fc4", - "fields": { - "str_id": "cdeep", - "time_of_creation": "2018-06-24T19:50:18.448Z", - "name": "Centre for Distance Engineering Education Programme", - "short_name": "CDEEP", - "description": "http://www.cdeep.iitb.ac.in Tel: +912225764820/4812", - "parent": "8fcf8049-5a13-4e60-b5b1-993a4a554526", - "parent_relation": "Ground floor", - "group_id": 1, - "pixel_x": 3928, - "pixel_y": 1496, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "be0c6f4e-b1d7-47dd-9e72-de3e720a1c29", - "fields": { - "str_id": "music-room", - "time_of_creation": "2018-06-24T19:50:19.505Z", - "name": "Institute Music Room", - "short_name": "Music Room", - "description": "", - "parent": "1007b63e-4c44-485d-a4c8-c8d89c3603c6", - "parent_relation": "Backside", - "group_id": 9, - "pixel_x": 3255, - "pixel_y": 1711, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "be22dec9-07a1-45f0-b1d2-9920712f09ae", - "fields": { - "str_id": "coffee-shack", - "time_of_creation": "2018-06-24T19:50:18.298Z", - "name": "Nestle Cafe (Coffee Shack)", - "short_name": "Coffee Shack", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 5, - "pixel_x": 3492, - "pixel_y": 1784, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "be8afcf1-c7f7-4d71-aaf5-0154081974dd", - "fields": { - "str_id": "lec-hall-3", - "time_of_creation": "2018-06-24T19:50:18.261Z", - "name": "Lecture Hall Complex - 3", - "short_name": "Lec Hall 3", - "description": "", - "parent": null, - "parent_relation": null, - "group_id": 4, - "pixel_x": 3779, - "pixel_y": 2220, - "lat": "19.130780", - "lng": "72.917487", - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "beb923e6-ecea-4cd9-915f-753fbf66a579", - "fields": { - "str_id": "sustain-ts-online", - "time_of_creation": "2020-10-26T12:59:18.885Z", - "name": "Sustain-TS online", - "short_name": "Sustain-TS online", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "bedaac81-e6fe-40d3-8a51-4839ad83515b", - "fields": { - "str_id": "prints", - "time_of_creation": "2018-06-24T19:50:18.639Z", - "name": "Printing and photocopying H8", - "short_name": "Prints", - "description": "", - "parent": "0e2c2a32-5356-48d8-94ef-b06bff458064", - "parent_relation": "Inside", - "group_id": 11, - "pixel_x": 2834, - "pixel_y": 1257, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "bf203d00-279e-4683-b5ba-16b14c520622", - "fields": { - "str_id": "film-room-sac", - "time_of_creation": "2018-09-19T14:47:36.253Z", - "name": "Film Room, SAC", - "short_name": "Film Room, SAC", - "description": "", - "parent": "36392e9a-cec2-47a7-ba8d-6053f4c46b7a", - "parent_relation": "Inside", - "group_id": 8, - "pixel_x": 3599, - "pixel_y": 1225, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c02d0f36-cbb2-4f66-b7e2-b2517a095e52", - "fields": { - "str_id": "lch", - "time_of_creation": "2020-01-12T06:07:36.819Z", - "name": "LCH", - "short_name": "LCH", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "c14459e4-d6e7-4297-8ef3-39f00d8bb46c", - "fields": { - "str_id": "ctara", - "time_of_creation": "2018-06-24T19:50:18.444Z", - "name": "Centre for Technology Alternatives for Rural Areas", - "short_name": "CTARA", - "description": "http://www.ctara.iitb.ac.in Tel: +912225767870 Offers M. Tech, Ph D and TDSL (Minor for UG). Research areas include agriculture and food, appropriate technology, drinking water, environment, energy and health", - "parent": "42422033-0fb0-4a62-aa55-133f1691997d", - "parent_relation": "Inside", - "group_id": 1, - "pixel_x": 4002, - "pixel_y": 1545, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c156035c-c217-4a56-a329-c1ce7c65b239", - "fields": { - "str_id": "gulmohar-restaurant", - "time_of_creation": "2018-06-24T19:50:18.145Z", - "name": "Gulmohar Restaurant", - "short_name": "Gulmohar Restaurant", - "description": "Tel: +912225762783 / Tel: +912225762786", - "parent": "5d7d2bba-e553-4733-9515-c991ff9e0f37", - "parent_relation": "Second floor", - "group_id": 5, - "pixel_x": 2989, - "pixel_y": 2154, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c1582589-e08e-47d1-b343-abfed9f1889b", - "fields": { - "str_id": "ctr-20", - "time_of_creation": "2018-06-24T19:50:19.208Z", - "name": "CTR 20", - "short_name": "CTR 20", - "description": "CTR Quarters Flat nos. 127 - 138", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 1749, - "pixel_y": 2959, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c186690e-6970-49a3-b944-d73aae2cb6bd", - "fields": { - "str_id": "crnts", - "time_of_creation": "2018-06-24T19:50:18.103Z", - "name": "NanoTech. & Science Research Centre", - "short_name": "CRNTS", - "description": "http://www.iitb.ac.in/~crnts Tel:+912225767691 CRNTS offers programs such as Dual degree programme-1 (B.Tech. Engg. Physics & M.Tech. Engg. Physics with specialization in Nanoscience. Admission Through: JEE. Offered by: Department of Physics. Duration: 5 years) Dual degree programme-2 (M.Sc. Physics & M.Tech. in Materials Science with specialization in Nanoscience., Input : B.Sc. (Physics), Admission through: J.A.M. Jointly offered by Department of Physics & Department of Metallurgical Engg. & Materials Science) Ph.D ( Interdisciplinary program. Research Domains include Nanomaterials, Nanobiotechnology, Nanofluidics, Nanoelectronics, Nanomanufacturing, Nanosensors, Computational research in Nanosystems)", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 4081, - "pixel_y": 1344, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c1aba77e-a844-44af-844b-eca83a357226", - "fields": { - "str_id": "area-51", - "time_of_creation": "2019-02-24T16:49:25.451Z", - "name": "Area 51", - "short_name": "Area 51", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "c25129ab-97fd-47e6-b074-8fb2c7887e71", - "fields": { - "str_id": "youtube-live", - "time_of_creation": "2020-10-31T06:08:47.764Z", - "name": "YouTube live", - "short_name": "YouTube live", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "c269ca35-15c0-47e0-beb4-adfb21f9f970", - "fields": { - "str_id": "httpszoomusj93348372344pwdzdlos2dtqlfir0i2ohzmswvfy0u0qt09", - "time_of_creation": "2021-07-05T13:20:38.028Z", - "name": "https://zoom.us/j/93348372344?pwd=ZDlOS2dtQlFIR0I2OHZMSWVFY0U0QT09", - "short_name": "https://zoom.us/j/93348372344?pwd=ZDlOS2dtQlFIR0I2OHZMSWVFY0U0QT09", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "c2a8f379-1a40-4357-9015-423e3702483e", - "fields": { - "str_id": "chem-engg", - "time_of_creation": "2018-06-24T19:50:18.130Z", - "name": "Chemical Engineering Department", - "short_name": "Chem Engg", - "description": "http://www.che.iitb.ac.in\r\n+912225767201, +912225767202\r\n\r\nPrograms offered in B Tech, M Tech, Dual Degree (M Tech + Ph D) and Ph D. Research areas include Biological Systems Engineering, Energy & Environment, Materials Engineering, Process Systems Engineering, Reactor Engineering, and Transport Phenomena and Complex Fluids", - "parent": null, - "parent_relation": null, - "group_id": 1, - "pixel_x": 3788, - "pixel_y": 2350, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c2ac410a-5ebf-4b15-8eb1-5406d3495c74", - "fields": { - "str_id": "13--h1", - "time_of_creation": "2018-06-24T19:50:19.259Z", - "name": "Type H1 - 13", - "short_name": "13- H1", - "description": "H1 Type Quarters Flat nos. 152 - 168", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4786, - "pixel_y": 1218, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c2fa488e-a9b2-4175-aeef-84b0bfc982bc", - "fields": { - "str_id": "1--h1", - "time_of_creation": "2018-06-24T19:50:19.212Z", - "name": "Type H1 - 1", - "short_name": "1- H1", - "description": "H1 Type Quarters Flat nos. 1 - 12", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 866, - "pixel_y": 2684, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c32c861b-9407-44c0-a83c-2e47a4886598", - "fields": { - "str_id": "c18", - "time_of_creation": "2018-06-24T19:50:19.196Z", - "name": "Type C-18", - "short_name": "C18", - "description": "C-Type Quarters Flat nos. 109 - 114", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3537, - "pixel_y": 2963, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c3545b3d-e33d-4c14-b04d-c369146391ec", - "fields": { - "str_id": "s2-bay", - "time_of_creation": "2018-06-24T19:50:18.586Z", - "name": "S2 Bay", - "short_name": "S2 Bay", - "description": "Tel:+912225764213", - "parent": "431b487b-1db7-4cc0-ae63-af19ad96dca9", - "parent_relation": "Near", - "group_id": 1, - "pixel_x": 4410, - "pixel_y": 1740, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c3581052-4ffb-4276-b3ea-c8933a58d062", - "fields": { - "str_id": "mobile", - "time_of_creation": "2019-02-08T11:54:24.847Z", - "name": "Mobile", - "short_name": "Mobile", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "c3a14998-23cb-4cbe-a6fa-70accc7069a1", - "fields": { - "str_id": "som", - "time_of_creation": "2018-06-24T19:50:18.363Z", - "name": "School of Management", - "short_name": "SOM", - "description": "http://www.som.iitb.ac.in\nOffice - +912225767781\nPh. D. admissions - +912225767782\nM. Mgt. admissions - +912225768781 \n\nThe department offers academic programs in Master Of Management Programme - Full Time, Doctoral Programme in Management - PhD Degree, Management Development Programme - For Corporate Executives", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 3505, - "pixel_y": 1867, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c4042869-13ef-40b2-9d77-ae39bee31d03", - "fields": { - "str_id": "gg-bldg", - "time_of_creation": "2018-06-24T19:50:18.884Z", - "name": "Girish Gaitonde Building", - "short_name": "GG Bldg", - "description": "Contact persons: Madhumati Shetty +912225767401 Vaishali Deshpande +912225767402 Santosh S. Kharat +912225767402 Tanvi D. Shelatkar +912225767402", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 3668, - "pixel_y": 1937, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c443e517-6f5f-45c5-b1e4-0bea66ab7ed9", - "fields": { - "str_id": "h10", - "time_of_creation": "2018-06-24T19:50:18.160Z", - "name": "Hostel 10 Phoenix (Girls Hostel)", - "short_name": "H10", - "description": "Hostel security: +912225762610\nHall Manager: +912225762710\nG. Sec: Madhu Lekha +919769372532", - "parent": null, - "parent_relation": null, - "group_id": 2, - "pixel_x": 3005, - "pixel_y": 2342, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c46242a6-8ffa-4f14-8489-3a2a2773ebd9", - "fields": { - "str_id": "theatre-room", - "time_of_creation": "2019-08-04T18:52:18.110Z", - "name": "THEATRE ROOM", - "short_name": "THEATRE ROOM", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "c46e695e-5553-465d-8802-96b9d1261f14", - "fields": { - "str_id": "11-h1", - "time_of_creation": "2018-06-24T19:50:19.251Z", - "name": "Type H1 - 11", - "short_name": "11-H1", - "description": "H1 Type Quarters Flat nos. 121 - 134", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 849, - "pixel_y": 2249, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c4987713-8aad-420b-b4a5-e98813c7d330", - "fields": { - "str_id": "b15", - "time_of_creation": "2018-06-24T19:50:19.123Z", - "name": "Type B-15", - "short_name": "B15", - "description": "B-Type Quarters Flat nos. 59 - 62", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2192, - "pixel_y": 2665, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c4f435a1-d7a0-44a4-86c9-6f3e933a1e04", - "fields": { - "str_id": "2b-7", - "time_of_creation": "2018-06-24T19:50:18.932Z", - "name": "Type 2B 7", - "short_name": "2B 7", - "description": "2B-Type Quarters, Flat nos 37 - 42", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 4296, - "pixel_y": 2312, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c4f4e5e3-f5fb-43f6-9825-52e92415b6c7", - "fields": { - "str_id": "h15-16-street", - "time_of_creation": "2018-08-08T14:53:05.242Z", - "name": "H15-16 Street", - "short_name": "H15-16 Street", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "c4f78d67-ac0f-461b-a8e2-9b0319ba07a4", - "fields": { - "str_id": "httpsbitlyevalfi", - "time_of_creation": "2020-07-17T09:21:58.907Z", - "name": "https://bit.ly/evalfi", - "short_name": "https://bit.ly/evalfi", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "c673927a-3e77-4e00-9165-849593fad848", - "fields": { - "str_id": "first-floor-conference-hall-civil-department", - "time_of_creation": "2018-11-16T14:13:58.590Z", - "name": "First floor Conference Hall, Civil Department", - "short_name": "First floor Conference Hall, Civil Department", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "c77979b7-3ce4-473a-a43b-07e48430b33c", - "fields": { - "str_id": "team-shunya-online", - "time_of_creation": "2020-09-17T06:56:17.738Z", - "name": "Team Shunya Online", - "short_name": "Team Shunya Online", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "c7d1e9f5-4c26-4d3c-b791-a175b939dcfa", - "fields": { - "str_id": "lt-203", - "time_of_creation": "2018-06-24T19:50:18.731Z", - "name": "LT 203", - "short_name": "LT 203", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Second floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c80bf19d-1bcb-4521-87f2-044386b7eb81", - "fields": { - "str_id": "lc201", - "time_of_creation": "2019-10-16T12:32:56.824Z", - "name": "LC201", - "short_name": "LC201", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "c82574af-fd46-4662-8bc4-aa823fdabaf8", - "fields": { - "str_id": "7-type1", - "time_of_creation": "2018-06-24T19:50:19.414Z", - "name": "Type1 - 7", - "short_name": "7-Type1", - "description": "Type 1 Quarters Flat nos. 73 - 84", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4600, - "pixel_y": 1351, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c83b0d4c-8193-472c-9424-af4e7692f5ce", - "fields": { - "str_id": "shakti", - "time_of_creation": "2018-06-24T19:50:18.660Z", - "name": "IDC Shakti", - "short_name": "Shakti", - "description": "Piping hot, home style food between 1 pm and 2:30 pm, weekdays only! Call Mr. Gaikwad to order a tiffin at +919833575881", - "parent": "d467330f-a3a7-484b-8eca-b23815a0a3a7", - "parent_relation": "Inside", - "group_id": 5, - "pixel_x": 4207, - "pixel_y": 1732, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c8d2acf1-3616-4a11-be5c-903a4219510e", - "fields": { - "str_id": "online-meet", - "time_of_creation": "2021-10-02T09:51:35.545Z", - "name": "Online meet", - "short_name": "Online meet", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "c9104777-7b53-4e78-a7f0-43704f066497", - "fields": { - "str_id": "online", - "time_of_creation": "2018-06-24T21:51:50.186Z", - "name": "Online", - "short_name": "Online", - "description": "", - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": 0, - "pixel_y": 0, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c967e833-4c43-42ff-bd33-1ce2774db62e", - "fields": { - "str_id": "lt-005", - "time_of_creation": "2018-06-24T19:50:18.694Z", - "name": "LT 005", - "short_name": "LT 005", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Ground floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c9d30a36-6a79-43ad-89a1-f348955bdcf7", - "fields": { - "str_id": "aravali", - "time_of_creation": "2018-06-24T19:50:18.043Z", - "name": "B 23 Aravali", - "short_name": "Aravali", - "description": "Flat nos. 207-267", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 4415, - "pixel_y": 936, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "ca18b41e-234c-476f-9c4d-c95994727389", - "fields": { - "str_id": "hybrid-mode", - "time_of_creation": "2021-12-25T16:07:17.020Z", - "name": "Hybrid Mode", - "short_name": "Hybrid Mode", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "caefc809-3aed-4b51-beda-9ae2fe4f9dfd", - "fields": { - "str_id": "sac-library", - "time_of_creation": "2018-09-24T22:09:57.992Z", - "name": "SAC Library", - "short_name": "SAC Library", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "cb002ce4-621b-46ac-ace8-1cf94229f725", - "fields": { - "str_id": "micro-fluidics-lab", - "time_of_creation": "2018-06-24T19:50:18.536Z", - "name": "Micro Fluidics Lab", - "short_name": "Micro Fluidics Lab", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 12, - "pixel_x": 4620, - "pixel_y": 1783, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "cb4e638a-c39b-47ea-921d-1f533c19051d", - "fields": { - "str_id": "sameer", - "time_of_creation": "2018-06-24T19:50:18.870Z", - "name": "Society for Applied Microwave Electronics Engineering & Research", - "short_name": "SAMEER ", - "description": "http://www.sameer.gov.in Phone: +912225727100 Fax: +912225723254 SAMEER was set up as an autonomous R & D laboratory at Mumbai under the then Department of Electronics, Government of India with a broad mandate to undertake R & D work in the areas of Microwave Engineering and Electromagnetic Engineering Technology. It is an offshoot of the special microwave products unit (SMPU) set up in 1977 at the TATA INSTITUTE OF FUNDAMENTAL RESEARCH (TIFR), Mumbai. SAMEER, Mumbai was setup in 1984.", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 4538, - "pixel_y": 837, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "cc1c7851-a456-418e-81d0-a4ac595297b6", - "fields": { - "str_id": "squash-court", - "time_of_creation": "2018-06-24T19:50:19.572Z", - "name": "Squash Court", - "short_name": "Squash Court", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 8, - "pixel_x": 3115, - "pixel_y": 1485, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "cc670ac3-a58f-4a2e-aaba-ee3d6ea9258b", - "fields": { - "str_id": "webex-events", - "time_of_creation": "2020-07-30T06:15:34.170Z", - "name": "WebEx Events", - "short_name": "WebEx Events", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "cc810641-c50f-4fb2-92a9-5e093b2a4240", - "fields": { - "str_id": "from-home", - "time_of_creation": "2021-01-17T14:54:56.537Z", - "name": "From Home", - "short_name": "From Home", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "ccc12ac3-b73e-40d1-8a2d-7c0e9e8c59d5", - "fields": { - "str_id": "h18", - "time_of_creation": "2018-06-24T19:50:19.509Z", - "name": "Hostel 18", - "short_name": "H18", - "description": "Multi storeyed student residential facility", - "parent": null, - "parent_relation": null, - "group_id": 2, - "pixel_x": 2897, - "pixel_y": 727, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "ccd5c8e3-4e93-4816-a87e-416ee0d051d5", - "fields": { - "str_id": "indoor-badminton-courts", - "time_of_creation": "2019-08-03T06:32:10.638Z", - "name": "Indoor Badminton Courts", - "short_name": "Indoor Badminton Courts", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "ccefdca7-e40e-4256-bddb-350f415283ac", - "fields": { - "str_id": "lakeside-jal-vihar", - "time_of_creation": "2018-08-21T13:46:55.100Z", - "name": "Lakeside, Jal Vihar", - "short_name": "Lakeside, Jal Vihar", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "cd01eed0-b1dc-4921-aa3f-1b88081492b2", - "fields": { - "str_id": "h4", - "time_of_creation": "2018-06-24T19:50:18.198Z", - "name": "Hostel 04 MadHouse", - "short_name": "H4", - "description": "Hostel security: +912225762604 Hall Manager: +912225762704 G. Sec: Kumar Gaurav +919969800320", - "parent": null, - "parent_relation": null, - "group_id": 2, - "pixel_x": 3176, - "pixel_y": 867, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "cd0dc47f-5286-45cd-a17d-d1867df08f69", - "fields": { - "str_id": "aero-engg", - "time_of_creation": "2018-06-24T19:50:18.036Z", - "name": "Aerospace Engineering Department", - "short_name": "Aero engg", - "description": "http://www.aero.iitb.ac.in\r\nPhone No.: +912225767101 / +912225767102\r\nFax No.: +91222572 2602.\r\nEmail: office@aero.iitb.ac.in \r\n\r\nThe department offers academic programs for B. Tech, M. Tech, Ph. D. Specialization are offered: Aerodynamics, Control and Guidance, Propulsion, Structures, and Systems Engineering", - "parent": null, - "parent_relation": null, - "group_id": 1, - "pixel_x": 4153, - "pixel_y": 2249, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "cd35be33-81a8-481c-a5ac-507fb5dbcef2", - "fields": { - "str_id": "ncc-office", - "time_of_creation": "2018-06-24T19:50:18.294Z", - "name": "NCC Office", - "short_name": "NCC Office", - "description": "Tel: +912225768917", - "parent": null, - "parent_relation": "", - "group_id": 9, - "pixel_x": 3387, - "pixel_y": 1421, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "cedfdafd-c5c3-4142-b6b2-63a8ac35e3bb", - "fields": { - "str_id": "h10-annx", - "time_of_creation": "2018-06-24T19:50:18.156Z", - "name": "Hostel 10 Annexe (Girls Hostel)", - "short_name": "H10 Annx", - "description": "Hostel security: +912225762610 Hall Manager: +912225762710 G. Sec: Madhu Lekha +919769372532", - "parent": null, - "parent_relation": "", - "group_id": 2, - "pixel_x": 2886, - "pixel_y": 2452, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "cee94b99-0fc1-4920-9a40-85660d2ad2b7", - "fields": { - "str_id": "sbi-atm", - "time_of_creation": "2018-06-24T19:50:18.054Z", - "name": "ATM - State Bank near Tansa", - "short_name": "SBI ATM", - "description": "", - "parent": "e57586cc-f018-47ef-bf69-9d34244be9f1", - "parent_relation": "Near", - "group_id": 6, - "pixel_x": 3028, - "pixel_y": 989, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "cf2f6dd3-4fa2-436b-8cf0-ca3bcdcdbd29", - "fields": { - "str_id": "22-h2", - "time_of_creation": "2018-06-24T19:50:19.350Z", - "name": "Type H2 - 22", - "short_name": "22-H2", - "description": "H2 Type Quarters Flat nos. 169 - 176", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4231, - "pixel_y": 1259, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "cfd56b98-4785-44c7-8905-bb1e6544e743", - "fields": { - "str_id": "google-meets", - "time_of_creation": "2020-09-04T12:12:41.669Z", - "name": "Google Meets", - "short_name": "Google Meets", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "d028d244-e087-4a98-a3a3-296e26ae5245", - "fields": { - "str_id": "h5", - "time_of_creation": "2018-06-24T19:50:18.202Z", - "name": "Hostel 05 Penthouse", - "short_name": "H5", - "description": "Hostel security: +912225762605 Hall Manager: +912225762705 G. Sec: Shashank Patidar +919820717487", - "parent": null, - "parent_relation": "", - "group_id": 2, - "pixel_x": 2820, - "pixel_y": 970, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "d02d58b0-d504-43ef-a5d3-4d8436ed996d", - "fields": { - "str_id": "lt-301", - "time_of_creation": "2018-06-24T19:50:18.745Z", - "name": "LT 301", - "short_name": "LT 301", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Third floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "d2316bc8-881d-4b13-8afb-6c429dbe6995", - "fields": { - "str_id": "the-link-to-the-meeting-will-be-posted-before-the-event", - "time_of_creation": "2020-05-05T09:22:15.687Z", - "name": "The link to the meeting will be posted before the event", - "short_name": "The link to the meeting will be posted before the event", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "d236696e-39bb-4a67-92d1-aaff0482c8ed", - "fields": { - "str_id": "facebook-page-of-ncc-iitb", - "time_of_creation": "2020-07-06T07:12:40.287Z", - "name": "Facebook page of NCC IITB", - "short_name": "Facebook page of NCC IITB", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "d23888fb-cd7c-4b4f-a7b3-9ef8770f9d12", - "fields": { - "str_id": "httpszoomusj95729038877pwdulyxq1npswhjekrwrytsufcrsfhjdz09", - "time_of_creation": "2020-07-09T04:17:35.583Z", - "name": "https://zoom.us/j/95729038877?pwd=UlYxQ1NpSWhJekRwRytsUFcrSFhjdz09", - "short_name": "https://zoom.us/j/95729038877?pwd=UlYxQ1NpSWhJekRwRytsUFcrSFhjdz09", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "d238d809-728f-4067-937c-8494fcd3383d", - "fields": { - "str_id": "room-350-2nd-floor-department-of-chemistry", - "time_of_creation": "2019-01-31T04:11:03.312Z", - "name": "Room 350, 2nd floor, Department of Chemistry", - "short_name": "Room 350, 2nd floor, Department of Chemistry", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "d2bd40a4-e663-44e4-8039-bddb6441636f", - "fields": { - "str_id": "19-type1", - "time_of_creation": "2018-06-24T19:50:19.456Z", - "name": "Type1 - 19", - "short_name": "19-Type1", - "description": "Type 1 Quarters Flat nos. 225 - 259", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4340, - "pixel_y": 815, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "d2fec675-44b9-48f5-a779-878d97640c95", - "fields": { - "str_id": "lt-003", - "time_of_creation": "2018-06-24T19:50:19.590Z", - "name": "LT 003", - "short_name": "LT 003", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Ground floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "d3244c33-3f5e-466b-8fac-fe540afa4530", - "fields": { - "str_id": "yoga-room-3rd-floor-new-sac-opposite-to-hostel-11", - "time_of_creation": "2019-05-30T13:51:37.822Z", - "name": "Yoga room, 3rd floor, New SAC, opposite to hostel 11", - "short_name": "Yoga room, 3rd floor, New SAC, opposite to hostel 11", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "d39bab65-7802-49d6-b129-b5c325511dde", - "fields": { - "str_id": "2b-22", - "time_of_creation": "2018-06-24T19:50:18.994Z", - "name": "Type 2B 22", - "short_name": "2B 22", - "description": "2B-Type Quarters, Flat nos 141 - 164", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 4761, - "pixel_y": 1315, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "d42c795a-9171-4f98-b66a-446d5ee2b2e1", - "fields": { - "str_id": "convocation-hall-foyer", - "time_of_creation": "2019-10-11T16:34:42.840Z", - "name": "Convocation Hall Foyer", - "short_name": "Convocation Hall Foyer", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "d467330f-a3a7-484b-8eca-b23815a0a3a7", - "fields": { - "str_id": "idc", - "time_of_creation": "2018-06-24T19:50:18.223Z", - "name": "Industrial Design Centre", - "short_name": "IDC", - "description": "http://www.idc.iitb.ac.in\n+91222576 7801\n\nThe department offers academic programs for M. Des and Ph. D. Sub-disciplines include Product Design, Industrial Design, Visual Communication, Animation, Interaction Design, Mobility and vehicle design", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 4207, - "pixel_y": 1732, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "d483545a-95ba-438d-a218-20a8ee2946a1", - "fields": { - "str_id": "combustion-lab", - "time_of_creation": "2018-06-24T19:50:18.518Z", - "name": "IC Engine and Combustion Lab", - "short_name": "Combustion Lab", - "description": "Comes under Mechanical Engineering Department +912225764586", - "parent": "f5303dcd-b456-4147-a414-88a89815d826", - "parent_relation": "Backside", - "group_id": 12, - "pixel_x": 4295, - "pixel_y": 1570, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "d526aa95-3fb6-4770-8229-bf6ac50f8a68", - "fields": { - "str_id": "ananta", - "time_of_creation": "2018-06-24T19:50:18.040Z", - "name": "B 22 Ananta", - "short_name": "Ananta", - "description": "Flat nos. 147-206", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 4709, - "pixel_y": 865, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "d590e065-755e-41d8-b9ed-630feb4770f2", - "fields": { - "str_id": "a17", - "time_of_creation": "2018-06-24T19:50:19.060Z", - "name": "Bungalow A17 ", - "short_name": "A17", - "description": "A-Type Bungalow", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4155, - "pixel_y": 1175, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "d66064b5-28c8-4684-9db3-c63e22b04410", - "fields": { - "str_id": "conference-room-01st-floor-kresit", - "time_of_creation": "2018-11-27T07:34:53.319Z", - "name": "Conference Room, 01st Floor, KReSIT", - "short_name": "Conference Room, 01st Floor, KReSIT", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "d6937d50-0d67-46dc-8ec0-5a98def59be2", - "fields": { - "str_id": "badminton-court", - "time_of_creation": "2018-06-24T19:50:18.061Z", - "name": "Badminton Court", - "short_name": "Badminton Court", - "description": "", - "parent": "dc4c5b70-1ab2-4d3d-9906-e61140ce7d51", - "parent_relation": "Inside", - "group_id": 8, - "pixel_x": 3480, - "pixel_y": 1081, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "d6a97579-ac84-4f59-baa8-a989295924b3", - "fields": { - "str_id": "vindya", - "time_of_creation": "2018-06-24T19:50:18.896Z", - "name": "C22, B wing, Vindya", - "short_name": "Vindya", - "description": "Hill side, Flat nos. 169 - 186", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4646, - "pixel_y": 1110, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "d6bc5e7b-3390-43b9-b3c9-efb814f7f8b7", - "fields": { - "str_id": "room-no-109-new-csecc-building", - "time_of_creation": "2019-02-07T12:38:30.424Z", - "name": "Room No. 109, New CSE/CC Building ", - "short_name": "Room No. 109, New CSE/CC Building ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "d73053a0-7729-45af-ac3e-cf15c2a43409", - "fields": { - "str_id": "bkc", - "time_of_creation": "2019-09-26T16:54:06.461Z", - "name": "BKC", - "short_name": "BKC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "d764cffc-d184-4707-a695-a6efb62d2b31", - "fields": { - "str_id": "oat", - "time_of_creation": "2018-06-24T19:50:18.835Z", - "name": "Open Air Theatre", - "short_name": "OAT", - "description": "Tel: +912225768968", - "parent": "36392e9a-cec2-47a7-ba8d-6053f4c46b7a", - "parent_relation": "Inside", - "group_id": 8, - "pixel_x": 3599, - "pixel_y": 1225, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "d786b3c4-e8ee-4119-a2d8-c8d3b5387f2a", - "fields": { - "str_id": "a12", - "time_of_creation": "2018-06-24T19:50:19.042Z", - "name": "Bungalow A12 ", - "short_name": "A12", - "description": "A-Type Bungalow", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2157, - "pixel_y": 2855, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "d7a98325-4b30-4502-a099-3dfc6683bafd", - "fields": { - "str_id": "yoga-room-new-sac", - "time_of_creation": "2018-12-04T04:19:41.962Z", - "name": "Yoga Room, New SAC.", - "short_name": "Yoga Room, New SAC.", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "d7b2176f-42bc-4523-8a35-6457134db7d2", - "fields": { - "str_id": "csre-a", - "time_of_creation": "2018-06-24T19:50:19.199Z", - "name": "CSRE A", - "short_name": "CSRE A", - "description": "CSRE Quarters C139, C140, C143. C144. C147, C148", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4283, - "pixel_y": 1163, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "d7ec7b7b-5e2b-4fe6-879e-96aeb4ceba17", - "fields": { - "str_id": "27-h2", - "time_of_creation": "2018-06-24T19:50:19.368Z", - "name": "Type H2 - 28", - "short_name": "27-H2", - "description": "H2 Type Quarters Flat nos. 217 - 232", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4193, - "pixel_y": 1295, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "d877428e-cf7d-411e-9210-4960b2f997ef", - "fields": { - "str_id": "hostel-10-terrace", - "time_of_creation": "2020-02-28T06:35:55.091Z", - "name": "Hostel 10 Terrace", - "short_name": "Hostel 10 Terrace", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "d879656f-74fc-472d-84d8-adecf3de8182", - "fields": { - "str_id": "seminar-hall-civil-department", - "time_of_creation": "2019-01-16T21:44:49.434Z", - "name": "Seminar Hall, Civil Department ", - "short_name": "Seminar Hall, Civil Department ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "d8842021-716a-4fcd-b0b1-b7fbc36b3158", - "fields": { - "str_id": "iit-bombay", - "time_of_creation": "2018-06-24T21:41:38.235Z", - "name": "IIT Bombay", - "short_name": "IIT Bombay", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "d9155381-e668-43ab-965d-80f4d626fef2", - "fields": { - "str_id": "h15", - "time_of_creation": "2018-06-24T19:50:18.182Z", - "name": "Hostel 15 Trident", - "short_name": "H15", - "description": "Hostel security: +912225762715 Hall Manager: G. Sec:", - "parent": null, - "parent_relation": null, - "group_id": 2, - "pixel_x": 4196, - "pixel_y": 870, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "d940761e-4c7d-4d6d-b185-072abf22866b", - "fields": { - "str_id": "9-h2", - "time_of_creation": "2018-06-24T19:50:19.301Z", - "name": "Type H2 - 9", - "short_name": "9-H2", - "description": "H2 Type Quarters Flat nos. 65 - 72", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 1145, - "pixel_y": 2682, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "d9b044c4-50e3-4287-a868-16bdde8e7bac", - "fields": { - "str_id": "25techfestorg", - "time_of_creation": "2021-12-11T14:15:33.652Z", - "name": "25.techfest.org", - "short_name": "25.techfest.org", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "d9fe75c9-d31b-4847-9dc1-27ece2dc4d16", - "fields": { - "str_id": "discord-server", - "time_of_creation": "2022-02-11T10:59:05.650Z", - "name": "Discord Server", - "short_name": "Discord Server", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "da0b901b-e6f6-447e-ae5b-2f9b518778df", - "fields": { - "str_id": "-", - "time_of_creation": "2022-02-17T15:23:54.471Z", - "name": "-", - "short_name": "-", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "db017a69-fb2c-4a5f-be1e-7b53218e2d83", - "fields": { - "str_id": "room-cl149-ground-floor-department-of-chemistry", - "time_of_creation": "2019-02-13T18:26:45.621Z", - "name": "Room CL149, Ground Floor, Department of Chemistry", - "short_name": "Room CL149, Ground Floor, Department of Chemistry", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "db0c6848-36fe-427d-9be6-afad234f4b64", - "fields": { - "str_id": "b7", - "time_of_creation": "2018-06-24T19:50:19.093Z", - "name": "Type B-7", - "short_name": "B7", - "description": "B-Type Quarters Flat nos. 27 - 30", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2529, - "pixel_y": 3009, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "db6f65c0-e0df-4175-bfc3-deba8dcb71eb", - "fields": { - "str_id": "tulsi-b", - "time_of_creation": "2018-06-24T19:50:18.903Z", - "name": "Tulsi B", - "short_name": "Tulsi B", - "description": "PS Quarters", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4573, - "pixel_y": 987, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "dbcfb1df-c87c-4c13-a0b2-d9b96751a5b3", - "fields": { - "str_id": "idp-corro-sci--engg", - "time_of_creation": "2018-06-24T19:50:18.848Z", - "name": "Inter-disciplinary Programme in Corrosion Science & Engineering", - "short_name": "IDP Corro Sci & Engg", - "description": "http://www.iitb.ac.in/~corrsci Office inside Metallurgical Engineering and Material Science building Tel: +912225767601 / +912225767602 Ph. D and M.Tech offered in this programme. Research focuses on corrosion and its control with applications in industris such as Oil and gas industry, Marine and aerospace industry, Automobile industry, Building and constructions, General engineering industry, Power plants, etc.", - "parent": "aa4fa9f4-40fa-4d99-bba8-bd985d11f67e", - "parent_relation": "Inside", - "group_id": 1, - "pixel_x": 3631, - "pixel_y": 2044, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "dbfc81ea-1b1a-4ebf-9446-883e7e6c7cbd", - "fields": { - "str_id": "21-type1", - "time_of_creation": "2018-06-24T19:50:19.464Z", - "name": "Type1 - 21", - "short_name": "21-Type1", - "description": "Type 1 Quarters Flat nos. 290 - 309", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4521, - "pixel_y": 1346, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "dbfd5d7b-72d8-4224-be0b-3680c7664255", - "fields": { - "str_id": "yoga-room-new-sac", - "time_of_creation": "2018-08-16T10:54:30.706Z", - "name": "Yoga Room, new SAC", - "short_name": "Yoga Room, new SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "dc2055c4-4844-468a-ac1d-2cbe04b30115", - "fields": { - "str_id": "a16", - "time_of_creation": "2018-06-24T19:50:19.056Z", - "name": "Bungalow A16 ", - "short_name": "A16", - "description": "A-Type Bungalow", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4085, - "pixel_y": 1210, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "dc3fcf5f-e41d-44be-a32f-7da92ef76756", - "fields": { - "str_id": "17-h2", - "time_of_creation": "2018-06-24T19:50:19.330Z", - "name": "Type H2 - 17", - "short_name": "17-H2", - "description": "H2 Type Quarters Flat nos. 129 - 136", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3110, - "pixel_y": 1832, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "dc4c5b70-1ab2-4d3d-9906-e61140ce7d51", - "fields": { - "str_id": "indoor-stadium", - "time_of_creation": "2018-06-24T19:50:18.227Z", - "name": "Indoor Stadium", - "short_name": "Indoor Stadium", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 8, - "pixel_x": 3480, - "pixel_y": 1081, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "dca613da-2467-4e9f-b238-601a122df5dd", - "fields": { - "str_id": "nasa", - "time_of_creation": "2018-06-24T19:50:18.291Z", - "name": "Non- Academic Staff Association", - "short_name": "NASA", - "description": "Tel: +912225768919", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 4326, - "pixel_y": 1896, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "dcaf5f4d-cf0b-4535-b425-9bb5ef27d1c2", - "fields": { - "str_id": "a10", - "time_of_creation": "2018-06-24T19:50:19.035Z", - "name": "Bungalow A10 ", - "short_name": "A10", - "description": "A-Type Bungalow", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 1962, - "pixel_y": 2928, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "dcdbc389-fdb5-4ba3-aa9b-7ba3b46200ab", - "fields": { - "str_id": "sustan--ts-online", - "time_of_creation": "2020-10-27T05:43:37.502Z", - "name": "Sustan- TS online", - "short_name": "Sustan- TS online", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "dcf95d9c-613f-427b-ba0f-e785a87e96fb", - "fields": { - "str_id": "fluid-processing", - "time_of_creation": "2018-06-24T19:50:18.612Z", - "name": "Supercritical fluid Processing facility (Chemical Engg.)", - "short_name": "Fluid Processing", - "description": "Comes under Chemical Engineering Department +912225767201 / +912225767202", - "parent": "51839c0e-324f-413b-8edf-510df2927fb7", - "parent_relation": "", - "group_id": 1, - "pixel_x": 4490, - "pixel_y": 1760, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "dcfdb8e1-b859-4244-96b7-f548e85fdcb2", - "fields": { - "str_id": "theater-room-sac", - "time_of_creation": "2019-09-29T14:08:24.134Z", - "name": "Theater Room, SAC", - "short_name": "Theater Room, SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "ddd2cd17-860e-4468-a02f-dbc36133b6cd", - "fields": { - "str_id": "b11", - "time_of_creation": "2018-06-24T19:50:19.108Z", - "name": "Type B-11", - "short_name": "B11", - "description": "B-Type Quarters Flat nos. 43 - 46", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2232, - "pixel_y": 2552, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "dde00d7c-72ee-4871-8ee4-60466a65b4c9", - "fields": { - "str_id": "dance-room", - "time_of_creation": "2019-08-14T11:54:47.943Z", - "name": "Dance Room", - "short_name": "Dance Room", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "de1f68af-8487-465e-9635-7467d5df0bc0", - "fields": { - "str_id": "gymkhana", - "time_of_creation": "2018-06-24T22:07:44.719Z", - "name": "Gymkhana Building", - "short_name": "Gymkhana", - "description": "New building for student sport activities.", - "parent": null, - "parent_relation": null, - "group_id": 8, - "pixel_x": 3058, - "pixel_y": 1237, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "de31d3d3-f39f-4a2e-aac0-a9d849fa0bde", - "fields": { - "str_id": "home", - "time_of_creation": "2020-04-30T13:15:09.914Z", - "name": "Home", - "short_name": "Home", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "de7ef4c4-47b7-48c9-8408-7cd78dc41d7e", - "fields": { - "str_id": "qip-1", - "time_of_creation": "2018-06-24T19:50:19.472Z", - "name": "QIP 1", - "short_name": "QIP 1", - "description": "QIP Quarters Flat nos. 1 - 16", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4830, - "pixel_y": 1376, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "de93bc1e-9dcb-47bd-953c-4ab5b4c477c3", - "fields": { - "str_id": "idp-ieor", - "time_of_creation": "2018-06-24T19:50:18.851Z", - "name": "Industrial Engineering and Operations Research", - "short_name": "IDP IEOR", - "description": "http://www.ieor.iitb.ac.in Room 308A, Mechanical Engineering Building, Indian Institute of Technology Bombay, Powai, Mumbai (INDIA), PIN: 400076, Fax: +912225726875, +912225723480 M.Tech, Dual Degree (MSc-PhD) and PhD offered in this programme. Research areas include Optimization: Models, theory and algorithms, Stochastic models, Stochastic control, Simulation Modeling and Analysis, Artificial Intelligence based methods, Game theory, Logistics and Transportation, Supply Chain, Analysis and Inventory Planning, Financial Engineering, Optimization, Planning and Control in Manufacturing and Robotics, Scheduling and ERP", - "parent": "57be98ca-7e19-47c7-a249-64140e246f2b", - "parent_relation": "Inside", - "group_id": 1, - "pixel_x": 4009, - "pixel_y": 1645, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "deb1e01f-13a4-4491-bcea-5b313e0138c5", - "fields": { - "str_id": "room-105-idc", - "time_of_creation": "2020-01-15T13:22:44.775Z", - "name": "Room 105, IDC", - "short_name": "Room 105, IDC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "deea6dae-cb0e-4f0d-8a32-258eefabb960", - "fields": { - "str_id": "2b-20", - "time_of_creation": "2018-06-24T19:50:18.986Z", - "name": "Type 2B 20", - "short_name": "2B 20", - "description": "2B-Type Quarters, Flat nos 115 - 134", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 4786, - "pixel_y": 1431, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "deeb8004-d462-409b-a83d-f91c94072626", - "fields": { - "str_id": "c6", - "time_of_creation": "2018-06-24T19:50:19.149Z", - "name": "Type C-6", - "short_name": "C6", - "description": "C-Type Quarters Flat nos. 37 - 42", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3547, - "pixel_y": 2771, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "df735571-14c0-4422-aea7-8e95b0b0bbed", - "fields": { - "str_id": "hostels-kv-som-campus-school-ncc-ground", - "time_of_creation": "2019-08-14T06:31:03.270Z", - "name": "Hostels, KV, SOM, Campus school, NCC ground", - "short_name": "Hostels, KV, SOM, Campus school, NCC ground", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "dfdd3a88-6544-44b1-9c74-80c5b8b339ac", - "fields": { - "str_id": "ce-233", - "time_of_creation": "2018-10-01T08:05:06.510Z", - "name": "CE 233", - "short_name": "CE 233", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "dfe1fe8e-40ff-47c4-8893-70dc8584352d", - "fields": { - "str_id": "lt-206", - "time_of_creation": "2018-06-24T19:50:18.741Z", - "name": "LT 206", - "short_name": "LT 206", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Second floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "dfe35072-f951-4a35-b19f-a515ace13e59", - "fields": { - "str_id": "4-type1", - "time_of_creation": "2018-06-24T19:50:19.407Z", - "name": "Type1 - 4", - "short_name": "4-Type1", - "description": "Type 1 Quarters Flat nos. 37 - 48", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4067, - "pixel_y": 2658, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e037ccea-d527-4299-97ad-aa5bc8395350", - "fields": { - "str_id": "httpsbitly3ktsg20", - "time_of_creation": "2020-09-19T13:52:39.763Z", - "name": "https://bit.ly/3ktsG20", - "short_name": "https://bit.ly/3ktsG20", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "e03d1515-8cff-4c0d-a439-cd9ff1c9b467", - "fields": { - "str_id": "market-gate", - "time_of_creation": "2018-06-24T19:50:18.272Z", - "name": "Market Gate, Y point Gate no. 3", - "short_name": "Market Gate", - "description": "Tel: +912225768979 / +912225761121", - "parent": null, - "parent_relation": "", - "group_id": 10, - "pixel_x": 3829, - "pixel_y": 2972, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e15ad8b5-ee62-4d0d-b3aa-aea1391adb9d", - "fields": { - "str_id": "brewberrys", - "time_of_creation": "2018-06-24T19:50:18.076Z", - "name": "Brewberrys Cafe", - "short_name": "Brewberrys", - "description": "Ph no: +912265641001,\nHostel 8, IIT Bombay, Powai, Mumbai", - "parent": null, - "parent_relation": "", - "group_id": 5, - "pixel_x": 2967, - "pixel_y": 1271, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e1827c34-679c-4c54-9f0b-da20aa98114c", - "fields": { - "str_id": "15-type1", - "time_of_creation": "2018-06-24T19:50:19.440Z", - "name": "Type1 - 15", - "short_name": "15-Type1", - "description": "Type 1 Quarters Flat nos. 169 - 180", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3151, - "pixel_y": 1798, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e1a9e241-d6e8-4d80-91b5-76921186c600", - "fields": { - "str_id": "lh-102", - "time_of_creation": "2018-06-24T19:50:18.803Z", - "name": "LH 102", - "short_name": "LH 102", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "First floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e2f0549e-11ed-4f03-abae-e2d9bc5eab20", - "fields": { - "str_id": "h5-common-room", - "time_of_creation": "2019-04-12T07:46:05.592Z", - "name": "H5 Common Room", - "short_name": "H5 Common Room", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "e319e68f-124d-4c69-b89f-d188ffa7385f", - "fields": { - "str_id": "httpstinyurlcomcsec-club-intro", - "time_of_creation": "2021-08-06T16:15:48.247Z", - "name": "https://tinyurl.com/csec-club-intro", - "short_name": "https://tinyurl.com/csec-club-intro", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "e332103d-4dbe-44d3-adbc-08866c77f2ee", - "fields": { - "str_id": "webinar-jam", - "time_of_creation": "2020-09-04T13:10:12.981Z", - "name": "Webinar Jam", - "short_name": "Webinar Jam", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "e41e1806-5763-4ebd-8ced-6572e2e5b4c1", - "fields": { - "str_id": "lh-foyerfirst-floor", - "time_of_creation": "2018-09-24T03:50:32.798Z", - "name": "LH Foyer(first floor) ", - "short_name": "LH Foyer(first floor) ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "e42503eb-f06d-42ec-8ddc-140cba44f851", - "fields": { - "str_id": "lt-103", - "time_of_creation": "2018-06-24T19:50:18.709Z", - "name": "LT 103", - "short_name": "LT 103", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "First floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e46d7546-67c6-4942-a9d4-1ad121c36ee6", - "fields": { - "str_id": "6-type1", - "time_of_creation": "2018-06-24T19:50:19.411Z", - "name": "Type1 - 6", - "short_name": "6-Type1", - "description": "Type 1 Quarters Flat nos. 61 - 72", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4660, - "pixel_y": 1367, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e483e17b-007e-465b-95a2-6df7834fed02", - "fields": { - "str_id": "work-from-home", - "time_of_creation": "2020-03-27T08:48:37.659Z", - "name": "Work from Home", - "short_name": "Work from Home", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "e4a3a170-9b36-46d1-bf75-48c35478f0d6", - "fields": { - "str_id": "h10a-qip", - "time_of_creation": "2018-06-24T19:50:18.163Z", - "name": "Hostel 10A QIP (Girls Hostel)", - "short_name": "H10A QIP", - "description": "Hostel security: +912225762619 Hall Manager: +912225762719 G. Sec: Sagarika Kumar +919167273231", - "parent": null, - "parent_relation": null, - "group_id": 2, - "pixel_x": 4716, - "pixel_y": 1448, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e5125a9d-6305-480b-bc74-1ced68227356", - "fields": { - "str_id": "lt-306", - "time_of_creation": "2018-06-24T19:50:18.765Z", - "name": "LT 306", - "short_name": "LT 306", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Third floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e536c5fb-95ba-4e25-8d58-62bb8ccef2c5", - "fields": { - "str_id": "vadodara", - "time_of_creation": "2019-09-05T03:13:38.212Z", - "name": "Vadodara", - "short_name": "Vadodara", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "e5734960-5c89-4040-834f-e44d559f92f6", - "fields": { - "str_id": "energy-club", - "time_of_creation": "2020-10-31T13:31:57.920Z", - "name": "Energy Club", - "short_name": "Energy Club", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "e57586cc-f018-47ef-bf69-9d34244be9f1", - "fields": { - "str_id": "tansa", - "time_of_creation": "2018-06-24T19:50:18.388Z", - "name": "Tansa House King of campus (Proj. Staff Boys)", - "short_name": "Tansa", - "description": "Tel: +912225762620", - "parent": null, - "parent_relation": "", - "group_id": 2, - "pixel_x": 3028, - "pixel_y": 932, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e57734a7-bfde-49a2-9d69-75991c9e2d89", - "fields": { - "str_id": "h7", - "time_of_creation": "2018-06-24T19:50:18.208Z", - "name": "Hostel 07 Lady of the Lake", - "short_name": "H7", - "description": "Legacy", - "parent": null, - "parent_relation": null, - "group_id": 2, - "pixel_x": 2454, - "pixel_y": 942, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e5993d0b-6e6d-4217-8bb8-d042b33a0d98", - "fields": { - "str_id": "c10", - "time_of_creation": "2018-06-24T19:50:19.165Z", - "name": "Type C-10", - "short_name": "C10", - "description": "C-Type Quarters Flat nos. 61 - 66", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2944, - "pixel_y": 2820, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e5dfc4df-6421-458c-adc5-ffbb12b4cd84", - "fields": { - "str_id": "conference-room-sac", - "time_of_creation": "2019-04-08T12:35:31.202Z", - "name": "Conference room, SAC", - "short_name": "Conference room, SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "e5e33e20-80ed-4bd1-9ce1-c9d32ed69e24", - "fields": { - "str_id": "2-h1", - "time_of_creation": "2018-06-24T19:50:19.216Z", - "name": "Type H1 - 2", - "short_name": "2-H1", - "description": "H1 Type Quarters Flat nos. 13 - 24", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 910, - "pixel_y": 2613, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e6eb8827-5107-4536-ab97-d7e367f3955f", - "fields": { - "str_id": "tata-centre", - "time_of_creation": "2018-06-24T19:50:19.531Z", - "name": "Proposed Building for Tata Centre for Technology", - "short_name": "Tata Centre", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 9, - "pixel_x": 4451, - "pixel_y": 2173, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e70aa487-8f24-4b51-884f-306c736c6d4a", - "fields": { - "str_id": "lc101", - "time_of_creation": "2019-06-07T12:56:18.409Z", - "name": "LC101", - "short_name": "LC101", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "e71b55e3-b431-4390-8c6f-8ad6bf524b14", - "fields": { - "str_id": "cisco-webex", - "time_of_creation": "2020-09-02T13:37:45.909Z", - "name": "Cisco WebEx ", - "short_name": "Cisco WebEx ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "e723efd5-90e6-4bd7-8541-d1f563863495", - "fields": { - "str_id": "staff-club", - "time_of_creation": "2018-06-24T19:50:18.370Z", - "name": "Staff Club", - "short_name": "Staff Club", - "description": "Tel: +912235764075", - "parent": null, - "parent_relation": "", - "group_id": 8, - "pixel_x": 2931, - "pixel_y": 2027, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e729b463-b315-4d1d-9852-b537dacaafe5", - "fields": { - "str_id": "cc103", - "time_of_creation": "2018-08-23T15:03:38.714Z", - "name": "CC103", - "short_name": "CC103", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "e72fc98b-f57d-409b-a548-e1a1584af57c", - "fields": { - "str_id": "main-building-lawns", - "time_of_creation": "2019-08-26T06:19:19.199Z", - "name": "Main Building Lawns", - "short_name": "Main Building Lawns", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "e732e21d-1e82-4f88-aace-257e6fe73f03", - "fields": { - "str_id": "zoom-link-in-description", - "time_of_creation": "2020-12-19T10:21:23.136Z", - "name": "Zoom Link in Description ", - "short_name": "Zoom Link in Description ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "e8342d74-dcab-489d-86a5-6ff5d7ae4887", - "fields": { - "str_id": "9-type1", - "time_of_creation": "2018-06-24T19:50:19.422Z", - "name": "Type1 - 9", - "short_name": "9-Type1", - "description": "Type 1 Quarters Flat nos. 97 - 108", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4675, - "pixel_y": 1293, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e886baf5-c610-42c6-a5db-85ff75f6422f", - "fields": { - "str_id": "canara-bank", - "time_of_creation": "2018-06-24T19:50:18.414Z", - "name": "Canara Bank", - "short_name": "Canara Bank", - "description": "Tel: +912225762797", - "parent": "5d7d2bba-e553-4733-9515-c991ff9e0f37", - "parent_relation": "First Floor", - "group_id": 6, - "pixel_x": 2989, - "pixel_y": 2154, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e8911eed-09a1-40d8-bfb4-f50e011ac296", - "fields": { - "str_id": "yoga-room-new-sac", - "time_of_creation": "2018-12-11T17:09:08.684Z", - "name": " Yoga Room, New SAC", - "short_name": " Yoga Room, New SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "e8921d19-0736-4e51-861a-53117fc80511", - "fields": { - "str_id": "10-type1", - "time_of_creation": "2018-06-24T19:50:19.425Z", - "name": "Type1 - 10", - "short_name": "10-Type1", - "description": "Type 1 Quarters Flat nos. 109 - 120", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4373, - "pixel_y": 758, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e8d20256-5395-4365-9a4b-673f9b74d52a", - "fields": { - "str_id": "a8", - "time_of_creation": "2018-06-24T19:50:19.028Z", - "name": "Bungalow A8 ", - "short_name": "A8", - "description": "A-Type Bungalow", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2176, - "pixel_y": 3135, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e92f2023-dd44-41bb-a349-38cf058b6f94", - "fields": { - "str_id": "link-in-caption", - "time_of_creation": "2021-04-09T15:18:50.450Z", - "name": "Link in Caption", - "short_name": "Link in Caption", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "e93b10ee-1c22-49d1-9653-7f5422e198ca", - "fields": { - "str_id": "ms-teams-td72dbz", - "time_of_creation": "2021-10-12T08:21:53.805Z", - "name": "MS Teams (td72dbz)", - "short_name": "MS Teams (td72dbz)", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "e966e602-b2be-45f8-a3f0-dbc81d7c28a8", - "fields": { - "str_id": "lc-102", - "time_of_creation": "2018-06-24T19:50:18.780Z", - "name": "LC 102", - "short_name": "LC 102", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "First floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e98f1818-b44b-4ec2-b1c6-035714295f07", - "fields": { - "str_id": "gender-cell-office-3rd-floor-beside-swc-main-building", - "time_of_creation": "2019-08-26T06:55:33.440Z", - "name": "Gender cell office, 3rd floor, beside SWC, Main Building", - "short_name": "Gender cell office, 3rd floor, beside SWC, Main Building", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "ea364c0b-71fd-420d-9b19-aab9c0051852", - "fields": { - "str_id": "lh-101-lecture-hall-complex-iit-bombay", - "time_of_creation": "2019-08-27T05:42:28.862Z", - "name": "LH 101, Lecture Hall Complex, IIT Bombay", - "short_name": "LH 101, Lecture Hall Complex, IIT Bombay", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "ea6132a6-0438-4cf5-b9af-00e231e40a2d", - "fields": { - "str_id": "hostel-15-and-16-mess", - "time_of_creation": "2018-08-23T12:10:38.547Z", - "name": "Hostel 15 and 16 mess", - "short_name": "Hostel 15 and 16 mess", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "ea71fa79-96b2-44f1-ab11-151f15b982ef", - "fields": { - "str_id": "sine", - "time_of_creation": "2018-06-24T19:50:19.587Z", - "name": "Society for Innovation and Entrepreneurship", - "short_name": "SINE", - "description": "", - "parent": "874b540d-94cc-479d-9621-916552a3c02b", - "parent_relation": "Third Floor", - "group_id": 1, - "pixel_x": 4096, - "pixel_y": 1993, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "eb933817-ed0d-4047-90f2-ec8835639e81", - "fields": { - "str_id": "hackerank", - "time_of_creation": "2021-04-09T14:53:41.253Z", - "name": "Hackerank", - "short_name": "Hackerank", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "ebe9c23a-a414-4992-a92e-410250b471c6", - "fields": { - "str_id": "insight-discussion-forum", - "time_of_creation": "2021-01-27T07:37:11.953Z", - "name": "Insight Discussion Forum", - "short_name": "Insight Discussion Forum", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "ec0fced5-def8-4561-8282-41ce0d1dd4a7", - "fields": { - "str_id": "2b-18", - "time_of_creation": "2018-06-24T19:50:18.979Z", - "name": "Type 2B 18", - "short_name": "2B 18", - "description": "2B-Type Quarters, Flat nos 103 - 108", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 615, - "pixel_y": 2492, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "ecccdbd3-d9a6-4873-8d71-400f24f49a39", - "fields": { - "str_id": "h15--h16-mess", - "time_of_creation": "2018-09-25T07:23:46.303Z", - "name": "H15 & H16 Mess", - "short_name": "H15 & H16 Mess", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "ed0b73d6-6712-4fc9-999b-0bb4a9b59956", - "fields": { - "str_id": "dsf", - "time_of_creation": "2018-06-24T19:50:19.543Z", - "name": "Proposed D.S Foundation", - "short_name": "DSF", - "description": "", - "parent": "e6eb8827-5107-4536-ab97-d7e367f3955f", - "parent_relation": "inside", - "group_id": 9, - "pixel_x": 4451, - "pixel_y": 2173, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "ed18ba3e-5afb-49a4-8626-0977ab0d62be", - "fields": { - "str_id": "tulsi-a", - "time_of_creation": "2018-06-24T19:50:18.900Z", - "name": "Tulsi A", - "short_name": "Tulsi A", - "description": "PS Quarters", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4515, - "pixel_y": 952, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "ed6b9196-b8a8-488f-add2-a081e8d71c2a", - "fields": { - "str_id": "26-h2", - "time_of_creation": "2018-06-24T19:50:19.365Z", - "name": "Type H2 - 27", - "short_name": "26-H2", - "description": "H2 Type Quarters Flat nos. 209 - 216", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 793, - "pixel_y": 2214, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "ed961661-58e7-4a22-a37b-039c359ba759", - "fields": { - "str_id": "yoga-room-new-sac-opposite-hostel-11", - "time_of_creation": "2020-02-14T06:59:06.170Z", - "name": "Yoga Room, New SAC, Opposite Hostel 11", - "short_name": "Yoga Room, New SAC, Opposite Hostel 11", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "ee2a5dbb-4bbe-40d3-8f90-7498022b46b6", - "fields": { - "str_id": "seminar-hall-second-floor-vmcc", - "time_of_creation": "2019-10-31T17:05:57.268Z", - "name": "Seminar Hall, Second floor, VMCC", - "short_name": "Seminar Hall, Second floor, VMCC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "ee616b24-4ea1-4be7-bd83-0ad5d1252fcb", - "fields": { - "str_id": "zoom-live-and-yt-live", - "time_of_creation": "2021-01-15T13:58:16.869Z", - "name": "Zoom Live and YT Live", - "short_name": "Zoom Live and YT Live", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "ee6bc1c1-6b29-4ee6-9e64-1d7d1b480224", - "fields": { - "str_id": "hydraulics-lab-new", - "time_of_creation": "2018-06-24T19:50:18.510Z", - "name": "Hydraulics Lab (New)", - "short_name": "Hydraulics Lab (New)", - "description": "Comes under Civil Engineering Department HYDRAULICS LAB (VMCC) +912225764301", - "parent": "2f04f408-6ec8-447c-b898-df0b58035a6b", - "parent_relation": "Inside", - "group_id": 12, - "pixel_x": 4110, - "pixel_y": 1525, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "eeb2cb01-b7e9-42c8-a3fd-14cbbe047e65", - "fields": { - "str_id": "nag-auditorium-vmcc", - "time_of_creation": "2019-08-26T08:25:37.698Z", - "name": "Nag Auditorium, VMCC", - "short_name": "Nag Auditorium, VMCC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "eee814d6-8b03-45fa-a82d-1a8a87a6ba6c", - "fields": { - "str_id": "front-of-old-sac", - "time_of_creation": "2018-09-18T18:36:00.485Z", - "name": "Front of old SAC", - "short_name": "Front of old SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "ef24f4ae-2f7e-4d6f-a46f-f0cd730bc607", - "fields": { - "str_id": "lh-101", - "time_of_creation": "2018-06-24T19:50:18.800Z", - "name": "LH 101", - "short_name": "LH 101", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "First floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "f01dab99-bec0-4b41-9b7f-f9eff99c716c", - "fields": { - "str_id": "concrete-tech-lab", - "time_of_creation": "2018-06-24T19:50:18.463Z", - "name": "Concrete Technology Lab", - "short_name": "Concrete Tech Lab", - "description": "Comes under Structural Engineering Laboratories of Civil Engineering Department ", - "parent": "87e2a2b9-b922-4184-adee-10dbbb707f05", - "parent_relation": "Near", - "group_id": 12, - "pixel_x": 4330, - "pixel_y": 1495, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "f0778d6e-5ab5-4962-97eb-465b6f1c1f3b", - "fields": { - "str_id": "a11", - "time_of_creation": "2018-06-24T19:50:19.039Z", - "name": "Bungalow A11 ", - "short_name": "A11", - "description": "A-Type Bungalow", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2074, - "pixel_y": 2885, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "f0ebc61f-7154-4a8d-9d0f-7dab68e8f9b4", - "fields": { - "str_id": "cfdvs", - "time_of_creation": "2018-06-24T19:50:18.441Z", - "name": "Centre for Formal Design and Verification of Software", - "short_name": "CFDVS", - "description": "http://www.cfdvs.iitb.ac.in +912225768701", - "parent": "8fcf8049-5a13-4e60-b5b1-993a4a554526", - "parent_relation": "In basement", - "group_id": 1, - "pixel_x": 3928, - "pixel_y": 1496, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "f11d1f82-63b1-4a64-9b48-7cc3b967b2c8", - "fields": { - "str_id": "med-store", - "time_of_creation": "2018-06-24T19:50:18.284Z", - "name": "Medical Store", - "short_name": "Med. Store", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 9, - "pixel_x": 4000, - "pixel_y": 2808, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "f12cc4b8-0f0d-4e1c-bf38-b8edb7d6ead5", - "fields": { - "str_id": "main-gate", - "time_of_creation": "2018-06-24T19:50:18.268Z", - "name": "Main Gate no. 2", - "short_name": "Main Gate", - "description": "Tel: +9125768978 / +9125761123. Tum Tum coupons available at Main Gate", - "parent": null, - "parent_relation": "", - "group_id": 10, - "pixel_x": 2259, - "pixel_y": 3237, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "f146c25f-34c9-4436-8b19-296c239214d7", - "fields": { - "str_id": "c7", - "time_of_creation": "2018-06-24T19:50:19.153Z", - "name": "Type C-7", - "short_name": "C7", - "description": "C-Type Quarters Flat nos. 43 - 48", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3440, - "pixel_y": 2787, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "f1515b1f-505e-4218-a0ce-7f103da03c32", - "fields": { - "str_id": "lecture-hall-complex", - "time_of_creation": "2022-10-13T18:34:42.216Z", - "name": "Lecture Hall Complex", - "short_name": "Lecture Hall Complex", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "f1b71bae-84d0-4002-b5bc-31b7925be935", - "fields": { - "str_id": "lt-004", - "time_of_creation": "2018-06-24T19:50:18.690Z", - "name": "LT 004", - "short_name": "LT 004", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Ground floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "f21fe4c6-f8a6-4cd5-9d1d-cb9386088711", - "fields": { - "str_id": "styleups-youtube-live", - "time_of_creation": "2020-12-10T12:25:54.805Z", - "name": "StyleUp's YouTube Live", - "short_name": "StyleUp's YouTube Live", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "f23dd119-418e-4207-86c8-0182ef6bfc96", - "fields": { - "str_id": "chemical-engineering-department--cl-112-old-cl-118", - "time_of_creation": "2020-02-07T06:07:13.279Z", - "name": "Chemical Engineering Department- CL 112 (Old CL 118)", - "short_name": "Chemical Engineering Department- CL 112 (Old CL 118)", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "f25ed34b-698d-45fd-8492-a809a16622d2", - "fields": { - "str_id": "ncc-t-point", - "time_of_creation": "2019-03-03T10:17:28.707Z", - "name": "NCC T-Point ", - "short_name": "NCC T-Point ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "f3288cac-8ebd-4a42-a88b-d0ae624359c9", - "fields": { - "str_id": "heat-pump-lab", - "time_of_creation": "2018-06-24T19:50:18.496Z", - "name": "Heat Pump Lab", - "short_name": "Heat Pump Lab", - "description": "Comes under Mechanical Engineering Department +912225764527 / +912225764593", - "parent": null, - "parent_relation": "", - "group_id": 12, - "pixel_x": 4153, - "pixel_y": 1539, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "f36a1f18-8b64-4084-9b29-1beddef2a551", - "fields": { - "str_id": "ctr-19", - "time_of_creation": "2018-06-24T19:50:19.203Z", - "name": "CTR 19", - "short_name": "CTR 19", - "description": "CTR Quarters Flat nos. 115 - 126", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 1815, - "pixel_y": 3040, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "f3fbfd2b-36a0-46f2-9cb1-0bad97e60c28", - "fields": { - "str_id": "kresit", - "time_of_creation": "2018-06-24T19:50:18.234Z", - "name": "Kanwal Rekhi School of Information Technology", - "short_name": "KReSIT", - "description": "For admission / general queries +9125767967 / +9125767977\nOffice +9125767901 / +9125767902 \nSecurity +912225762784", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 3301, - "pixel_y": 2106, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "f4579126-c78f-46e4-b56a-18d63a01d6ae", - "fields": { - "str_id": "instagram-live---insynciitb", - "time_of_creation": "2020-06-30T08:00:24.094Z", - "name": "Instagram Live - @insync_iitb", - "short_name": "Instagram Live - @insync_iitb", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "f4b7fbab-6373-4880-9c36-4105d618df35", - "fields": { - "str_id": "14-h1", - "time_of_creation": "2018-06-24T19:50:19.263Z", - "name": "Type H1 - 14", - "short_name": "14-H1", - "description": "H1 Type Quarters Flat nos. 169 - 176 and 1A - 2A", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4645, - "pixel_y": 1407, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "f4e51539-d12d-4b9d-89b5-561f95fcebf3", - "fields": { - "str_id": "padmavihar", - "time_of_creation": "2018-06-24T19:50:19.561Z", - "name": "Guest House / Padmavihar", - "short_name": "Padmavihar", - "description": "", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 2776, - "pixel_y": 1936, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "f5303dcd-b456-4147-a414-88a89815d826", - "fields": { - "str_id": "treelabs", - "time_of_creation": "2018-06-24T19:50:18.624Z", - "name": "Treelabs", - "short_name": "Treelabs", - "description": "TreeLabs is an 'inventions factory' to nurture and encourage inventors and innovations, leading to entrepreneurship Address: Electrical Engineering Dept, N-5 Bay (near Mech Engg Dept), I.I.T.Bombay, Powai, Mumbai - 400076, India. Phone: +912225723001 / +912225764410 Email: Prof. Dipankar : dipankar@iitbombay.org", - "parent": null, - "parent_relation": "", - "group_id": 9, - "pixel_x": 4225, - "pixel_y": 1630, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "f56fff0b-5293-436d-9f74-0e973b679b04", - "fields": { - "str_id": "som-ic01", - "time_of_creation": "2018-07-28T10:19:29.075Z", - "name": "SOM IC01", - "short_name": "SOM IC01", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "f60a3b0a-4923-4672-a31f-5725f07777a9", - "fields": { - "str_id": "10-h2", - "time_of_creation": "2018-06-24T19:50:19.304Z", - "name": "Type H2 - 10", - "short_name": "10-H2", - "description": "H2 Type Quarters Flat nos. 73 - 80", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 978, - "pixel_y": 2702, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "f6361380-2a5e-443c-a4de-95bf48f838fc", - "fields": { - "str_id": "sac-guitar-room", - "time_of_creation": "2018-07-29T07:32:07.590Z", - "name": "SAC Guitar Room", - "short_name": "SAC Guitar Room", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "f651597e-17e6-47b7-9a06-6faaf7898d00", - "fields": { - "str_id": "c5", - "time_of_creation": "2018-06-24T19:50:19.146Z", - "name": "Type C-5", - "short_name": "C5", - "description": "C-Type Quarters Flat nos. 31 - 36", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3464, - "pixel_y": 2708, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "f676f101-89b1-48f4-868a-e74fa856dd5d", - "fields": { - "str_id": "nsl", - "time_of_creation": "2018-06-24T19:50:18.816Z", - "name": "New Software Lab", - "short_name": "NSL", - "description": "", - "parent": "42422033-0fb0-4a62-aa55-133f1691997d", - "parent_relation": "Ground floor", - "group_id": 12, - "pixel_x": 4002, - "pixel_y": 1545, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "f6887970-7bad-472d-8614-524c1c393c8c", - "fields": { - "str_id": "dance-room-sac", - "time_of_creation": "2022-10-12T16:38:27.002Z", - "name": "Dance Room, SAC", - "short_name": "Dance Room, SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "f695944b-930f-476d-8c6d-5037203c3993", - "fields": { - "str_id": "your-home", - "time_of_creation": "2020-05-21T09:47:02.406Z", - "name": "Your Home", - "short_name": "Your Home", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "f764a508-bbd5-4b1b-a4dc-f444d0757dfc", - "fields": { - "str_id": "lc-002", - "time_of_creation": "2018-06-24T19:50:18.773Z", - "name": "LC 002", - "short_name": "LC 002", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Ground floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "f76cb1e0-f17c-4833-9a61-9919ca645394", - "fields": { - "str_id": "lcs-lhs-lt-pcsa-convocation-hall--ics-oat-sac", - "time_of_creation": "2019-01-08T20:10:43.198Z", - "name": "LCs, LHs, LT-PCSA, Convocation hall , ICs, OAT, SAC", - "short_name": "LCs, LHs, LT-PCSA, Convocation hall , ICs, OAT, SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "f7a35c0d-f5e3-4254-bca7-96a09e846072", - "fields": { - "str_id": "c14", - "time_of_creation": "2018-06-24T19:50:19.181Z", - "name": "Type C-14", - "short_name": "C14", - "description": "C-Type Quarters Flat nos. 85 - 90", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3140, - "pixel_y": 3047, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "f9edd33a-eb7f-4d99-a59e-798478a24c74", - "fields": { - "str_id": "board-games-room-new-sac", - "time_of_creation": "2020-01-15T13:52:18.330Z", - "name": "Board Games Room, New SAC", - "short_name": "Board Games Room, New SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "fa5df469-65c1-4743-8039-0d702a795c56", - "fields": { - "str_id": "sahyadri", - "time_of_creation": "2018-06-24T19:50:18.877Z", - "name": "C22, A wing, Sahyadri", - "short_name": "Sahyadri", - "description": "Hill side, Flat nos. 151 - 168", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4673, - "pixel_y": 1077, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "fa6b95bb-a520-49d3-8393-0b6a5f543029", - "fields": { - "str_id": "old-swimming-pool-area", - "time_of_creation": "2020-02-08T18:38:20.230Z", - "name": "Old Swimming Pool Area", - "short_name": "Old Swimming Pool Area", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "fa6f024a-87ae-4d06-903a-f77e05de7a27", - "fields": { - "str_id": "hydraulics-lab", - "time_of_creation": "2018-06-24T19:50:18.507Z", - "name": "Hydraulics Lab", - "short_name": "Hydraulics Lab", - "description": "Comes under Civil Engineering Department Water Resources Hydraulics Lab +912225764303", - "parent": "fa6f024a-87ae-4d06-903a-f77e05de7a27", - "parent_relation": "Near", - "group_id": 12, - "pixel_x": 4215, - "pixel_y": 1490, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "fa7cb05f-2b00-47b9-b629-9e37a056ee0b", - "fields": { - "str_id": "hostel-15-and-hostel-16-mess", - "time_of_creation": "2018-08-21T15:59:16.159Z", - "name": "Hostel 15 and Hostel 16 Mess", - "short_name": "Hostel 15 and Hostel 16 Mess", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "fa99dab1-2473-42e0-9b6a-1b93e07137f8", - "fields": { - "str_id": "canara-atm", - "time_of_creation": "2018-06-24T19:50:18.047Z", - "name": "ATM - Canara Bank near Gulmohar", - "short_name": "Canara ATM", - "description": "", - "parent": "e886baf5-c610-42c6-a5db-85ff75f6422f", - "parent_relation": "First floor", - "group_id": 6, - "pixel_x": 2989, - "pixel_y": 2154, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "faae7c2d-3d2e-4766-8fd4-1d37fbd0d586", - "fields": { - "str_id": "hostels-kv-sommain-building-campus-school-ncc-ground", - "time_of_creation": "2019-08-14T06:32:41.284Z", - "name": "Hostels, KV, SOM,Main building, Campus school, NCC ground", - "short_name": "Hostels, KV, SOM,Main building, Campus school, NCC ground", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "fb13b3c7-7cc0-4fca-9f18-8f8473b41123", - "fields": { - "str_id": "kv-1", - "time_of_creation": "2018-06-24T19:50:19.380Z", - "name": "Kendriya Vidyalay Quarters 1", - "short_name": "KV 1", - "description": "KV Quarters 1 - 5", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3592, - "pixel_y": 2817, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "fc233dda-08e4-4b42-a4aa-da2eb6512a62", - "fields": { - "str_id": "cc", - "time_of_creation": "2018-06-24T19:50:18.452Z", - "name": "Computer Centre", - "short_name": "CC", - "description": "http://www.cc.iitb.ac.in Tel: +912225767751", - "parent": "0c4c56dc-a5e3-4a32-af3c-8f3f3472dd6d", - "parent_relation": "In room 243", - "group_id": 1, - "pixel_x": 3932, - "pixel_y": 1997, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "fc35389a-ad47-4645-8392-681c85099830", - "fields": { - "str_id": "backside-lawns-of-main-building", - "time_of_creation": "2018-10-30T19:29:33.251Z", - "name": "Backside lawns of Main Building", - "short_name": "Backside lawns of Main Building", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "fcc5a892-f4e2-4254-acf8-0e34d3966829", - "fields": { - "str_id": "a5", - "time_of_creation": "2018-06-24T19:50:19.017Z", - "name": "Bungalow A5 ", - "short_name": "A5", - "description": "A-Type Bungalow", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2319, - "pixel_y": 2848, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "fd33deb4-4282-4c67-8bfb-d765bffca6be", - "fields": { - "str_id": "football-ground", - "time_of_creation": "2019-01-28T08:54:54.272Z", - "name": "Football Ground", - "short_name": "Football Ground", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "fd3ff97c-62bb-445c-9805-ae32af6671e6", - "fields": { - "str_id": "saif", - "time_of_creation": "2018-06-24T19:50:18.349Z", - "name": "Sophisticated Analytical Instruments Facility", - "short_name": "SAIF", - "description": "Tel: +912225767691 / +912225767692", - "parent": "c186690e-6970-49a3-b944-d73aae2cb6bd", - "parent_relation": "Inside", - "group_id": 1, - "pixel_x": 4081, - "pixel_y": 1344, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "fd6cc42e-e580-43d3-8a9a-bae60b901559", - "fields": { - "str_id": "8-type1", - "time_of_creation": "2018-06-24T19:50:19.418Z", - "name": "Type1 - 8", - "short_name": "8-Type1", - "description": "Type 1 Quarters Flat nos. 85 - 96", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4616, - "pixel_y": 1271, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "fd7f2ff0-cce1-4249-897f-f395a909d47d", - "fields": { - "str_id": "b-19", - "time_of_creation": "2018-06-24T19:50:18.313Z", - "name": "B 19 Old Multistoried Building- Residence ", - "short_name": "B 19", - "description": "Building lift phone Tel: +912225762884 Flat nos. 75-98", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 1413, - "pixel_y": 2885, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "fddbd572-f75c-4d44-985e-ce45bee2cd4e", - "fields": { - "str_id": "flexiloans-technologies-pvt-ltd-matunga-west-mumbai", - "time_of_creation": "2018-08-29T17:33:18.067Z", - "name": "FlexiLoans Technologies Pvt. Ltd., Matunga West, Mumbai,", - "short_name": "FlexiLoans Technologies Pvt. Ltd., Matunga West, Mumbai,", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "fe6d4897-1da8-409d-9ac2-5db3b18512bd", - "fields": { - "str_id": "snow-kingdom-r-city", - "time_of_creation": "2019-08-05T06:06:38.056Z", - "name": "Snow Kingdom, R-City", - "short_name": "Snow Kingdom, R-City", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "febe07a6-3711-45b6-bf55-9e4b56f346ae", - "fields": { - "str_id": "lh-102", - "time_of_creation": "2019-09-27T17:10:38.511Z", - "name": "LH 102 ", - "short_name": "LH 102 ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "feed3cb4-52a6-42ce-baa3-fe09ff2275df", - "fields": { - "str_id": "new-sac", - "time_of_creation": "2019-08-06T14:30:44.202Z", - "name": "NEW SAC", - "short_name": "NEW SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "feeeb19a-dcb6-45da-b131-ddfc52757a6c", - "fields": { - "str_id": "b6", - "time_of_creation": "2018-06-24T19:50:19.090Z", - "name": "Type B-6", - "short_name": "B6", - "description": "B-Type Quarters Flat nos. 23 - 26", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2508, - "pixel_y": 3189, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "ff82adc8-d636-490d-be6a-a86118fc0565", - "fields": { - "str_id": "14-type1", - "time_of_creation": "2018-06-24T19:50:19.436Z", - "name": "Type1 - 14", - "short_name": "14-Type1", - "description": "Type 1 Quarters Flat nos. 157 - 168", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4670, - "pixel_y": 1198, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "ffaeefc7-ebe4-4e35-8c3f-f524d0f608ee", - "fields": { - "str_id": "lt-303", - "time_of_creation": "2018-06-24T19:50:18.754Z", - "name": "LT 303", - "short_name": "LT 303", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Third floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "00337ebe-da3e-407b-978c-561084575ab5", - "fields": { - "str_id": "18-type1", - "time_of_creation": "2018-06-24T19:50:19.451Z", - "name": "Type1 - 18", - "short_name": "18-Type1", - "description": "Type 1 Quarters Flat nos. 209 - 224", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4801, - "pixel_y": 1269, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "003cf4f5-b64c-46ac-8ffa-4bb73e2b2db3", - "fields": { - "str_id": "httpsmeetgooglecomyzy-avxo-zpk", - "time_of_creation": "2021-03-18T19:38:40.254Z", - "name": "https://meet.google.com/yzy-avxo-zpk", - "short_name": "https://meet.google.com/yzy-avxo-zpk", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "0073afdf-3641-4791-9448-1efedb5d63f3", - "fields": { - "str_id": "bb-h2", - "time_of_creation": "2018-06-24T19:50:19.377Z", - "name": "Type H2 - BB", - "short_name": "BB-H2", - "description": "H2 BB Type Quarters Flat nos. 1 - 18", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 840, - "pixel_y": 2180, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "0104ab1a-60ef-4a4f-a246-6a31272f16af", - "fields": { - "str_id": "h15-mess", - "time_of_creation": "2018-09-30T19:16:42.003Z", - "name": "Hostel 15 Mess", - "short_name": "H15 Mess", - "description": "", - "parent": "d9155381-e668-43ab-965d-80f4d626fef2", - "parent_relation": "Ground Floor", - "group_id": 8, - "pixel_x": 0, - "pixel_y": 0, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "01405842-52b6-437d-b8b1-608a8230273d", - "fields": { - "str_id": "b-21", - "time_of_creation": "2018-06-24T19:50:18.880Z", - "name": "B 21 Satpura", - "short_name": "B 21", - "description": "", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 3332, - "pixel_y": 2602, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "0183abd1-a46d-4134-9b42-2a55ef9e2b04", - "fields": { - "str_id": "conference-hall-civil-department", - "time_of_creation": "2019-01-30T07:08:24.947Z", - "name": "Conference Hall, Civil Department ", - "short_name": "Conference Hall, Civil Department ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "01de8231-9254-49ba-a66a-69f58f509b20", - "fields": { - "str_id": "12-13-14-mess", - "time_of_creation": "2018-06-24T19:50:19.502Z", - "name": "Mess for hostels 12 | 13 | 14", - "short_name": "12-13-14 Mess", - "description": "", - "parent": null, - "parent_relation": null, - "group_id": 5, - "pixel_x": 2044, - "pixel_y": 734, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "0308d18d-03a2-40bb-8efd-b222b7f84001", - "fields": { - "str_id": "main-building", - "time_of_creation": "2018-06-24T19:50:18.265Z", - "name": "Main Building", - "short_name": "Main Building", - "description": "", - "parent": null, - "parent_relation": null, - "group_id": 1, - "pixel_x": 3628, - "pixel_y": 1640, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "03caa589-1b26-4794-bfbe-85266a4b2309", - "fields": { - "str_id": "baskey-court", - "time_of_creation": "2018-06-24T19:50:19.575Z", - "name": "Basketball Court", - "short_name": "Baskey Court", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 8, - "pixel_x": 3161, - "pixel_y": 1338, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "03f4680c-e404-40ed-89c4-69033b70b1cc", - "fields": { - "str_id": "httpsmeetgooglecombju-ypps-muahs122authuser2", - "time_of_creation": "2020-09-04T05:00:30.551Z", - "name": "https://meet.google.com/bju-ypps-mua?hs=122&authuser=2", - "short_name": "https://meet.google.com/bju-ypps-mua?hs=122&authuser=2", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "04084246-b9b0-4784-bbdf-576cd7db863b", - "fields": { - "str_id": "centrifugal-lab", - "time_of_creation": "2018-06-24T19:50:18.459Z", - "name": "Centrifugal Lab", - "short_name": "Centrifugal Lab", - "description": "", - "parent": "07adc7db-e51f-45df-b4bf-12c44746b0ba", - "parent_relation": "Near", - "group_id": 12, - "pixel_x": 4370, - "pixel_y": 1395, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "04abaf8d-a117-43cc-b774-9679c6afb92e", - "fields": { - "str_id": "conference-room-old-sac", - "time_of_creation": "2018-10-28T06:52:46.256Z", - "name": "Conference room, Old SAC", - "short_name": "Conference room, Old SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "04d2e020-0846-480e-8be4-637c48e1b88d", - "fields": { - "str_id": "github", - "time_of_creation": "2020-12-20T09:57:02.493Z", - "name": "Github", - "short_name": "Github", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "04d719e4-8862-4bbe-b35b-e3b4a7031860", - "fields": { - "str_id": "5-h2", - "time_of_creation": "2018-06-24T19:50:19.286Z", - "name": "Type H2 - 5", - "short_name": "5-H2", - "description": "H2 Type Quarters Flat nos. 33 - 40", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 1302, - "pixel_y": 2738, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "04e60ea6-22b8-421a-bb6b-054adfd17444", - "fields": { - "str_id": "greenhouse-lab", - "time_of_creation": "2018-06-24T19:50:18.493Z", - "name": "Greenhouse Lab", - "short_name": "Greenhouse Lab", - "description": "", - "parent": "12228198-b261-4c02-bea0-7eb5c80a7096", - "parent_relation": "Inside", - "group_id": 12, - "pixel_x": 4790, - "pixel_y": 1055, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "061d5c92-e544-4bce-90c3-ba0b9ce5d708", - "fields": { - "str_id": "yoga-room-new-sac", - "time_of_creation": "2019-01-14T06:10:05.832Z", - "name": "Yoga Room, New SAC", - "short_name": "Yoga Room, New SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "06bbc544-2477-4bf6-9758-a3cd394cb60b", - "fields": { - "str_id": "kv-2", - "time_of_creation": "2018-06-24T19:50:19.384Z", - "name": "Kendriya Vidyalay Quarters 2", - "short_name": "KV 2", - "description": "KV Quarters 6 - 11", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3498, - "pixel_y": 2854, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "06f63a9a-3b83-4faa-b84a-0d9fc41c3b35", - "fields": { - "str_id": "yoga-room-3rd-floor-new-sac", - "time_of_creation": "2020-03-05T19:16:10.162Z", - "name": "Yoga Room, 3rd Floor, New SAC", - "short_name": "Yoga Room, 3rd Floor, New SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "077e9c80-d3fb-4797-a1c0-cc9d6464b9f0", - "fields": { - "str_id": "old-swimming-pool", - "time_of_creation": "2022-04-01T21:08:34.508Z", - "name": "Old Swimming Pool", - "short_name": "Old Swimming Pool", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "07adc7db-e51f-45df-b4bf-12c44746b0ba", - "fields": { - "str_id": "geotech-centrifuge", - "time_of_creation": "2018-06-24T19:50:18.552Z", - "name": "National Geotechnical Centrifuge Facility", - "short_name": "GeoTech Centrifuge", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 4370, - "pixel_y": 1395, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "0800d0cd-9ea8-427a-8c6c-3474a4370f49", - "fields": { - "str_id": "outdoor-sports", - "time_of_creation": "2018-06-24T19:50:19.568Z", - "name": "Outdoor Sports Facility", - "short_name": "Outdoor Sports", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 8, - "pixel_x": 3294, - "pixel_y": 1031, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "0829c9a2-3dd9-4c11-963c-183d7cce2e0e", - "fields": { - "str_id": "7-h1", - "time_of_creation": "2018-06-24T19:50:19.236Z", - "name": "Type H1 - 7", - "short_name": "7-H1", - "description": "H1 Type Quarters Flat nos. 73 - 84", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4542, - "pixel_y": 1238, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "0846e7e1-7ad4-45e2-ad10-70c357bcac72", - "fields": { - "str_id": "2b-5", - "time_of_creation": "2018-06-24T19:50:18.925Z", - "name": "Type 2B 5", - "short_name": "2B 5", - "description": "2B-Type Quarters, Flat nos 25 - 30", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 4196, - "pixel_y": 2455, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "088ba891-7667-4581-8418-89ec6f53f769", - "fields": { - "str_id": "gate-off", - "time_of_creation": "2018-06-24T19:50:18.422Z", - "name": "Graduate apptitude test in engineering Office", - "short_name": "GATE Off.", - "description": "Tel: +91222576 2924", - "parent": "0308d18d-03a2-40bb-8efd-b222b7f84001", - "parent_relation": "Inside", - "group_id": 1, - "pixel_x": 3628, - "pixel_y": 1640, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "088ecfc0-baae-4f83-9817-37ca1a2dbee6", - "fields": { - "str_id": "httpwebexcomkakshajphpmtidm785583590104d3f1dea1aa7a7a11c1c6", - "time_of_creation": "2021-12-31T18:37:32.599Z", - "name": "http://webex.com/kaksha/j.php?MTID=m785583590104d3f1dea1aa7a7a11c1c6", - "short_name": "http://webex.com/kaksha/j.php?MTID=m785583590104d3f1dea1aa7a7a11c1c6", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "09520a24-683f-4655-9e0c-3788722596a2", - "fields": { - "str_id": "lt-002", - "time_of_creation": "2018-06-24T19:50:18.687Z", - "name": "LT 002", - "short_name": "LT 002", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Ground floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "095c90f9-4c8a-408b-9f24-69fdb81c85b6", - "fields": { - "str_id": "tennis-court-old", - "time_of_creation": "2018-06-24T19:50:18.394Z", - "name": "Tennis Court (old)", - "short_name": "Tennis Court (old)", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 8, - "pixel_x": 3177, - "pixel_y": 1624, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "0972ce1c-0226-4ed0-a49f-f3cb4b78f8e5", - "fields": { - "str_id": "solar-lab", - "time_of_creation": "2018-06-24T19:50:18.601Z", - "name": "Solar Lab", - "short_name": "Solar Lab", - "description": "Comes under Chemistry Department +912225764887 SOLAR LAB (308) Phone: +912225764173 ", - "parent": "60ef3a78-0cd0-467d-9343-ec8d5048adff", - "parent_relation": "", - "group_id": 12, - "pixel_x": 4230, - "pixel_y": 1435, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "09a1f1e0-61cc-486a-ad50-471d27729e3b", - "fields": { - "str_id": "a9", - "time_of_creation": "2018-06-24T19:50:19.032Z", - "name": "Bungalow A9 ", - "short_name": "A9", - "description": "A-Type Bungalow", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 1888, - "pixel_y": 2960, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "09fdc045-bc1a-424b-b458-a89aa63dec46", - "fields": { - "str_id": "new-cese", - "time_of_creation": "2018-06-24T19:50:19.553Z", - "name": "Centre for Environmental Science and Engineering (New Building)", - "short_name": "New CESE", - "description": "http://www.cese.iitb.ac.in\r\nTel +912225767851\r\nFax +912225764650\r\n\r\nThe Centre offers M.Tech. and Ph.D. programmes, which are interdisciplinary in nature and consists of course work followed by a research project. The duration of the Ph.D. programme varies depending upon the background of the candidate.", - "parent": "866dde4e-4667-446f-969e-ee4035b766a5", - "parent_relation": "inside", - "group_id": 9, - "pixel_x": 3979, - "pixel_y": 2467, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "0a425d6a-1366-40c6-abae-28440ba43b23", - "fields": { - "str_id": "rock-cutting-lab", - "time_of_creation": "2018-06-24T19:50:18.574Z", - "name": "Rock Cutting Lab", - "short_name": "Rock Cutting Lab", - "description": "", - "parent": "99ea94a1-0b72-4467-a5f1-ef95e24f3bf8", - "parent_relation": "Near", - "group_id": 12, - "pixel_x": 3921, - "pixel_y": 2095, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "0a46881d-39c0-48fc-aa54-f8354b8c7933", - "fields": { - "str_id": "jee-off", - "time_of_creation": "2018-06-24T19:50:18.430Z", - "name": "Joint Entrance Examination Office", - "short_name": "JEE Off.", - "description": "Tel: +91222576 4063", - "parent": "0308d18d-03a2-40bb-8efd-b222b7f84001", - "parent_relation": "Inside", - "group_id": 1, - "pixel_x": 3628, - "pixel_y": 1640, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "0b4c86dc-7248-4ccd-903c-1c3c31c7b3d9", - "fields": { - "str_id": "theatre-room-sac", - "time_of_creation": "2019-03-08T18:19:07.718Z", - "name": "Theatre room, SAC", - "short_name": "Theatre room, SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "0b61dd10-ff14-4071-a8a3-350ddb4a3636", - "fields": { - "str_id": "lh-foyer", - "time_of_creation": "2019-01-11T17:24:07.716Z", - "name": "LH Foyer", - "short_name": "LH Foyer", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "0ba7057b-b9db-4876-8655-8725cfcbdf3e", - "fields": { - "str_id": "auditorium", - "time_of_creation": "2019-02-12T14:28:44.494Z", - "name": "Auditorium", - "short_name": "Auditorium", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "0c0a5022-c439-4d30-bebd-1fe6a20e9343", - "fields": { - "str_id": "gg-conference-room--electrical-department", - "time_of_creation": "2022-09-28T13:03:44.777Z", - "name": "GG Conference Room , Electrical department", - "short_name": "GG Conference Room , Electrical department", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "0c320f01-cb8d-45a5-a4f4-bafdf881109e", - "fields": { - "str_id": "fc-kohli", - "time_of_creation": "2018-06-24T19:50:19.491Z", - "name": "Faqir Chand Kohli Auditorium", - "short_name": "F.C Kohli", - "description": "Named after Faqir Chand Kohli, who is often reffered as Father of Indian Software Industry", - "parent": "f3fbfd2b-36a0-46f2-9cb1-0bad97e60c28", - "parent_relation": "First floor", - "group_id": 4, - "pixel_x": 3301, - "pixel_y": 2106, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "0c4c1638-6d99-4d9f-9995-9c1b10092e15", - "fields": { - "str_id": "teams-code-pc5mf1o", - "time_of_creation": "2022-05-16T03:20:59.937Z", - "name": "Teams code: pc5mf1o", - "short_name": "Teams code: pc5mf1o", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "0c4c56dc-a5e3-4a32-af3c-8f3f3472dd6d", - "fields": { - "str_id": "elec-engg", - "time_of_creation": "2018-06-24T19:50:18.125Z", - "name": "Electrical Engineering Department", - "short_name": "Elec engg", - "description": "http://www.ee.iitb.ac.in\r\nMain office is inside GG Building on second floor\r\n\r\nContact persons:\r\nMadhumati Shetty +912225767401\r\nVaishali Deshpande +912225767402\r\nSantosh S. Kharat +912225767402\r\nTanvi D. Shelatkar +912225767402\r\n\r\nB Tech, B Tech Honors, Dual Degree Program (B Tech + M Tech), M Tech (Full time 2 yrs, Part time 3yrs with specializations such as Communications, Engineering (termed as EE1), Control and Computing (EE2), Power Electronics and Power System (EE3), Microelectronics and VLSI (EE4), Electronic Systems (EE5)) and Ph D", - "parent": null, - "parent_relation": null, - "group_id": 1, - "pixel_x": 3780, - "pixel_y": 1900, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "0c87b881-7733-4e51-9b5b-1323b75ad283", - "fields": { - "str_id": "3-h2", - "time_of_creation": "2018-06-24T19:50:19.278Z", - "name": "Type H2 - 3", - "short_name": "3-H2", - "description": "H2 Type Quarters Flat nos. 17 - 24", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 1417, - "pixel_y": 2797, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "0ca148f8-da44-481f-ac31-27e1a79d7814", - "fields": { - "str_id": "lh-302", - "time_of_creation": "2018-06-24T19:50:18.812Z", - "name": "LH 302", - "short_name": "LH 302", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Third floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "0cb56461-a98d-44ff-8fdf-6f13f400263c", - "fields": { - "str_id": "power-house", - "time_of_creation": "2018-06-24T19:50:18.339Z", - "name": "Power House", - "short_name": "Power House", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 9, - "pixel_x": 4671, - "pixel_y": 1590, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "0d5be149-30a2-44e5-b4b1-68f61ad33e20", - "fields": { - "str_id": "kv", - "time_of_creation": "2018-06-24T19:50:18.241Z", - "name": "Kendriya Vidyalaya ", - "short_name": "KV", - "description": "Tel: +912225768983", - "parent": null, - "parent_relation": "", - "group_id": 7, - "pixel_x": 3883, - "pixel_y": 2714, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "0d64123d-9704-4f3c-bf78-c7b2172e8705", - "fields": { - "str_id": "nso-guitar-room-new-sac", - "time_of_creation": "2018-09-28T14:16:49.969Z", - "name": "NSO Guitar Room New SAC", - "short_name": "NSO Guitar Room New SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "0e2c2a32-5356-48d8-94ef-b06bff458064", - "fields": { - "str_id": "h8", - "time_of_creation": "2018-06-24T19:50:18.212Z", - "name": "Hostel 08 Woodland", - "short_name": "H8", - "description": "Hostel security: +912225762608 Hall Manager:+912225762708 G. Sec: Mayur Kalambe +919920147585", - "parent": null, - "parent_relation": "", - "group_id": 2, - "pixel_x": 2834, - "pixel_y": 1257, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "0e79535d-f1a6-478b-9799-663d0dd54d9a", - "fields": { - "str_id": "h16", - "time_of_creation": "2018-06-24T19:50:18.186Z", - "name": "Hostel 16 Olympus", - "short_name": "H16", - "description": "Hostel security: +91222576 2716 Hall Manager: 022-2576 G. Sec:", - "parent": null, - "parent_relation": null, - "group_id": 2, - "pixel_x": 3972, - "pixel_y": 849, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "0fbdb6d4-ea59-4673-9e30-41137599f944", - "fields": { - "str_id": "theatre-room-old-sac", - "time_of_creation": "2018-09-30T09:31:20.864Z", - "name": "Theatre Room, Old SAC ", - "short_name": "Theatre Room, Old SAC ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "1007b63e-4c44-485d-a4c8-c8d89c3603c6", - "fields": { - "str_id": "convocation-hall", - "time_of_creation": "2018-06-24T19:50:18.099Z", - "name": "Convocation Hall", - "short_name": "Convocation Hall", - "description": "Tel: +912225762781", - "parent": null, - "parent_relation": null, - "group_id": 4, - "pixel_x": 3255, - "pixel_y": 1711, - "lat": "19.131973", - "lng": "72.914285", - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "10134e84-1f85-4212-8f3d-a6de70004604", - "fields": { - "str_id": "lc-102", - "time_of_creation": "2018-08-31T15:13:35.198Z", - "name": "LC 102 ", - "short_name": "LC 102 ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "10543381-7bb4-4d8e-812a-3574c0a39298", - "fields": { - "str_id": "yoga-room-3rd-floor-new-sac-opposite-to-hostel-11", - "time_of_creation": "2019-05-26T10:30:48.072Z", - "name": "Yoga room, 3rd floor, New SAC, Opposite to hostel 11", - "short_name": "Yoga room, 3rd floor, New SAC, Opposite to hostel 11", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "10e47646-da66-43e8-bf51-05f93aedee22", - "fields": { - "str_id": "science-park", - "time_of_creation": "2018-06-24T19:50:19.520Z", - "name": "Proposed Science Park", - "short_name": "Science Park", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 9, - "pixel_x": 2140, - "pixel_y": 259, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "11688c98-ba18-43a6-ab63-a699e7cc6e0a", - "fields": { - "str_id": "type-h1", - "time_of_creation": "2018-06-24T19:50:19.524Z", - "name": "Proposed Type H1 Building", - "short_name": "Type H1", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4943, - "pixel_y": 1193, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "1172c3c0-0d9a-4849-81ab-93609dc3153b", - "fields": { - "str_id": "la-201", - "time_of_creation": "2018-06-24T19:50:18.675Z", - "name": "LA 201", - "short_name": "LA 201", - "description": "The classroom has 4 entrance doors, two on second floor and two in third floor.", - "parent": "be8afcf1-c7f7-4d71-aaf5-0154081974dd", - "parent_relation": "Second and Third floors", - "group_id": 4, - "pixel_x": 3779, - "pixel_y": 2220, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "11fd6f6d-6b87-4d51-9923-c28318d97fc8", - "fields": { - "str_id": "sarcs-facebook-page", - "time_of_creation": "2021-10-24T06:36:29.756Z", - "name": "SARC's Facebook Page ", - "short_name": "SARC's Facebook Page ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "12228198-b261-4c02-bea0-7eb5c80a7096", - "fields": { - "str_id": "k-yantra", - "time_of_creation": "2018-06-24T19:50:18.521Z", - "name": "K-Yantra Lab (CSE Dept.)", - "short_name": "K-Yantra", - "description": "ERTS Lab First Floor, KReSIT Building, CSE Department IIT Bombay - Powai, Mumbai 400076 helpdesk@e-yantra.org", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 4790, - "pixel_y": 1055, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "12b7133f-4631-4bdb-b599-7f63e682c4d7", - "fields": { - "str_id": "football-field-hostel-5", - "time_of_creation": "2019-04-09T17:17:00.049Z", - "name": "Football Field, Hostel 5", - "short_name": "Football Field, Hostel 5", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "12c0c3f6-8e0d-430f-accc-c876986cf622", - "fields": { - "str_id": "h13-night-cant", - "time_of_creation": "2018-06-24T19:50:18.664Z", - "name": "H13 Night Canteen", - "short_name": "H13 Night Cant.", - "description": "Open till 3 am, recomended for night-outs!", - "parent": "a5bd85a4-a281-44cb-925f-49a50f8a7070", - "parent_relation": "Inside", - "group_id": 5, - "pixel_x": 1918, - "pixel_y": 745, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "1347e755-c11b-4ad8-8568-4fca554dc66f", - "fields": { - "str_id": "pg-cult-fb-live", - "time_of_creation": "2021-07-30T05:15:40.832Z", - "name": "PG Cult Fb live", - "short_name": "PG Cult Fb live", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "13b2d533-53d5-4050-bd1f-16989a0f770e", - "fields": { - "str_id": "qip-2", - "time_of_creation": "2018-06-24T19:50:19.475Z", - "name": "QIP 2", - "short_name": "QIP 2", - "description": "QIP Quarters Flat nos. 17 - 35", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4869, - "pixel_y": 1328, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "13d12d75-c5b3-4fb6-b1c1-98d2079ad1a4", - "fields": { - "str_id": "2b-19", - "time_of_creation": "2018-06-24T19:50:18.983Z", - "name": "Type 2B 19", - "short_name": "2B 19", - "description": "2B-Type Quarters, Flat nos 109 - 114", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 2573, - "pixel_y": 2468, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "13e7b7a4-1b28-4ba7-86fb-e360ffde6990", - "fields": { - "str_id": "seminar-hall-civil-department", - "time_of_creation": "2019-02-02T16:17:54.878Z", - "name": "Seminar Hall, Civil department ", - "short_name": "Seminar Hall, Civil department ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "1408d43c-7774-4031-b490-08f66e850cce", - "fields": { - "str_id": "enelek", - "time_of_creation": "2018-06-24T19:50:18.470Z", - "name": "ENELEK Power Sine", - "short_name": "ENELEK", - "description": "Enelek is a technology driven company, dedicated to delivery to quality and affordability through state-of-the art solar thermal & solar power products, systems and providing technology solutions & services. Address: CM-06, SINE Office 3rd Floor, CSRE Building IIT Bombay Powai, Mumbai - 400076 Contact No. - +919167939941 | info@enelek.com Careers Enquiry - career@enelek.com", - "parent": "f5303dcd-b456-4147-a414-88a89815d826", - "parent_relation": "Beside", - "group_id": 9, - "pixel_x": 4160, - "pixel_y": 1620, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "14bb96e1-47f1-46ec-907b-aefc07ccca0f", - "fields": { - "str_id": "metal-forming-lab", - "time_of_creation": "2018-06-24T19:50:18.532Z", - "name": "Metal Forming Lab", - "short_name": "Metal Forming Lab", - "description": "Comes under Mechanical Engineering Department +912225764561", - "parent": "58bea0b3-733b-45bf-a87b-4785b8e0d9e1", - "parent_relation": "Near", - "group_id": 12, - "pixel_x": 4290, - "pixel_y": 1470, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "1512ba5c-6311-4ae2-87d3-ec9ede65c1b2", - "fields": { - "str_id": "khodad-pune", - "time_of_creation": "2019-01-22T17:08:03.970Z", - "name": "Khodad, Pune", - "short_name": "Khodad, Pune", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "1518d3d0-29fe-4409-9352-d283401c2016", - "fields": { - "str_id": "14-h2", - "time_of_creation": "2018-06-24T19:50:19.319Z", - "name": "Type H2 - 14", - "short_name": "14-H2", - "description": "H2 Type Quarters Flat nos. 105 - 112", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 717, - "pixel_y": 2510, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "15649951-36e4-4acb-bd98-8a018385f5de", - "fields": { - "str_id": "httpssarcasmsarc-iitborglogin", - "time_of_creation": "2022-01-21T17:04:38.239Z", - "name": "https://sarcasm.sarc-iitb.org/login", - "short_name": "https://sarcasm.sarc-iitb.org/login", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "15ceb9e8-81af-475e-a00c-5fe5970e3b4d", - "fields": { - "str_id": "5-h1", - "time_of_creation": "2018-06-24T19:50:19.228Z", - "name": "Type H1 - 5", - "short_name": "5-H1", - "description": "H1 Type Quarters Flat nos. 49 - 60", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4552, - "pixel_y": 1173, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "15dac3ab-da84-470a-a3bd-d691c1edfd0c", - "fields": { - "str_id": "13-type1", - "time_of_creation": "2018-06-24T19:50:19.433Z", - "name": "Type1 - 13", - "short_name": "13-Type1", - "description": "Type 1 Quarters Flat nos. 145 - 156", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4637, - "pixel_y": 1237, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "15fca3e0-8c45-43fb-a5b0-568bc8f517ad", - "fields": { - "str_id": "b10", - "time_of_creation": "2018-06-24T19:50:19.104Z", - "name": "Type B-10", - "short_name": "B10", - "description": "B-Type Quarters Flat nos. 39 - 42", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2726, - "pixel_y": 2634, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "16a39766-682b-4d7f-9fcc-3fca038a5cdd", - "fields": { - "str_id": "sameer-hill", - "time_of_creation": "2018-06-24T19:50:18.873Z", - "name": "Sameer Hill", - "short_name": "Sameer Hill", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 9, - "pixel_x": 4830, - "pixel_y": 675, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "16c65ffa-589d-4313-87ee-c8be1bb898bc", - "fields": { - "str_id": "chemistry", - "time_of_creation": "2018-06-24T19:50:18.092Z", - "name": "Chemistry Department", - "short_name": "Chemistry", - "description": "http://www.chem.iitb.ac.in\r\nPhone: +912225767151\r\nFax: +912225723480, +912225767152\r\n\r\nThe department offers academic programs for M.Sc, Ph.D, (M.Sc + Ph.D) Dual Degree Courses, 4 year BS degree course (From 2014, the 5 year Integrated M.Sc course has been replaced by the 4 year B.S course).", - "parent": "c2a8f379-1a40-4357-9015-423e3702483e", - "parent_relation": null, - "group_id": 1, - "pixel_x": 3788, - "pixel_y": 2350, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "16ebb030-2c57-4602-80bb-fe0c2a6949fa", - "fields": { - "str_id": "vidya-niwas", - "time_of_creation": "2018-06-24T19:50:18.402Z", - "name": "Vidya Niwas", - "short_name": "Vidya Niwas", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4911, - "pixel_y": 1111, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "1881e054-e7df-431d-ad92-52d4208dc192", - "fields": { - "str_id": "b-nag-auditorium-iit-bombay", - "time_of_creation": "2018-09-18T18:22:32.448Z", - "name": "B. Nag auditorium, IIT Bombay", - "short_name": "B. Nag auditorium, IIT Bombay", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "18f66d29-d67e-4d95-873c-1c4cdd963423", - "fields": { - "str_id": "wel-lab-electrical-department", - "time_of_creation": "2019-01-11T09:13:48.798Z", - "name": "WEL lab, Electrical department", - "short_name": "WEL lab, Electrical department", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "1994fc34-8cca-4038-9e42-d4343fa65ead", - "fields": { - "str_id": "som", - "time_of_creation": "2019-02-07T15:34:57.032Z", - "name": "SOM ", - "short_name": "SOM ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "19fbe27e-d38a-487b-a581-3b45a9a01161", - "fields": { - "str_id": "check-point", - "time_of_creation": "2018-06-24T19:50:19.517Z", - "name": "Security Check Point", - "short_name": "Check Point", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 10, - "pixel_x": 2744, - "pixel_y": 399, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "1a047777-10a4-45d0-bffc-da4096539ac8", - "fields": { - "str_id": "lc-201", - "time_of_creation": "2018-06-24T19:50:18.784Z", - "name": "LC 201", - "short_name": "LC 201", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Second floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "1a09f9d8-7ed1-4ad7-b2e5-0553c64448c4", - "fields": { - "str_id": "cisco-webex", - "time_of_creation": "2020-09-05T13:25:20.518Z", - "name": "Cisco WebEX", - "short_name": "Cisco WebEX", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "1a373a3f-d335-47d8-9c4a-32bfb575e1b1", - "fields": { - "str_id": "seminar-hall-civil-department", - "time_of_creation": "2018-11-12T14:50:24.628Z", - "name": "Seminar Hall Civil Department ", - "short_name": "Seminar Hall Civil Department ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "1a465e27-cf97-42c6-9d55-f0855f067124", - "fields": { - "str_id": "tf-room", - "time_of_creation": "2019-02-12T09:30:17.264Z", - "name": "TF Room", - "short_name": "TF Room", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "1ae34315-a0d7-43f6-9a07-a3e734abca79", - "fields": { - "str_id": "literati-discord-server", - "time_of_creation": "2020-10-28T15:06:14.843Z", - "name": "Literati Discord Server", - "short_name": "Literati Discord Server", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "1b47aa07-a1de-4883-bd25-ba2a1fbe865f", - "fields": { - "str_id": "httpwwwabhyudayiitborgfest", - "time_of_creation": "2021-01-22T17:45:36.543Z", - "name": "http://www.abhyudayiitb.org/fest", - "short_name": "http://www.abhyudayiitb.org/fest", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "1b76a9fd-24b6-4ddb-bea4-681744cf93c5", - "fields": { - "str_id": "28-h2", - "time_of_creation": "2018-06-24T19:50:19.373Z", - "name": "Type H2 - 29", - "short_name": "28-H2", - "description": "H2 Type Quarters Flat nos. 233 - 248", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 691, - "pixel_y": 2410, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "1c4c094f-502b-4a5b-962d-1d4768e7b04f", - "fields": { - "str_id": "staff-hostel", - "time_of_creation": "2018-06-24T19:50:19.527Z", - "name": "Proposed Hostel for Project Staff", - "short_name": "Staff Hostel", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4935, - "pixel_y": 1391, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "1d1edac2-ec2b-423b-905f-0d0fa9582956", - "fields": { - "str_id": "ms-teams---join-team-at-httpscuttlygjbdnks", - "time_of_creation": "2021-01-15T07:05:35.853Z", - "name": "MS Teams - join team at https://cutt.ly/GjbdNKs", - "short_name": "MS Teams - join team at https://cutt.ly/GjbdNKs", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "1d25cff6-8bdd-42a5-9d30-9af61382ccec", - "fields": { - "str_id": "6--h1", - "time_of_creation": "2018-06-24T19:50:19.232Z", - "name": "Type H1 - 6", - "short_name": "6- H1", - "description": "H1 Type Quarters Flat nos. 61 - 72", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4468, - "pixel_y": 1189, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "1dd8b968-3692-4f2a-8e24-d76b46b4305c", - "fields": { - "str_id": "wadhwani-electronics-lab-3rd-floor-ee-dept", - "time_of_creation": "2020-02-07T14:04:58.279Z", - "name": "Wadhwani Electronics Lab, 3rd Floor, EE Dept.", - "short_name": "Wadhwani Electronics Lab, 3rd Floor, EE Dept.", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "1e9de2de-1377-4765-8599-4402301a3c03", - "fields": { - "str_id": "9-h1", - "time_of_creation": "2018-06-24T19:50:19.243Z", - "name": "Type H1 - 9", - "short_name": "9-H1", - "description": "H1 Type Quarters Flat nos. 97 - 108", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 640, - "pixel_y": 2329, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "1ec0a30a-a8cd-402d-a574-9870729a3f7f", - "fields": { - "str_id": "lch-foyer", - "time_of_creation": "2019-03-06T15:59:10.375Z", - "name": "LCH Foyer", - "short_name": "LCH Foyer", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "1f6d5d3d-9db0-44a4-92c4-33edf93a8a4d", - "fields": { - "str_id": "lt-006", - "time_of_creation": "2018-06-24T19:50:18.698Z", - "name": "LT 006", - "short_name": "LT 006", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Ground floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "1f86f053-dbc7-4508-b9d0-962fa1ccb2b6", - "fields": { - "str_id": "h15-front-lawn", - "time_of_creation": "2019-09-29T11:26:26.752Z", - "name": "H15 Front Lawn", - "short_name": "H15 Front Lawn", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "20064b97-6626-4242-913b-ed391b6033b8", - "fields": { - "str_id": "powai-udyaan", - "time_of_creation": "2019-10-30T09:56:59.626Z", - "name": "Powai Udyaan", - "short_name": "Powai Udyaan", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "20b9b8e3-2228-4921-8d6b-2d4ebee1d29b", - "fields": { - "str_id": "ncair", - "time_of_creation": "2018-06-24T19:50:19.539Z", - "name": "Proposed NCAIR", - "short_name": "NCAIR", - "description": "", - "parent": "e6eb8827-5107-4536-ab97-d7e367f3955f", - "parent_relation": "inside", - "group_id": 9, - "pixel_x": 4451, - "pixel_y": 2173, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "21542ae2-16b1-4681-90a0-511d70c6f07a", - "fields": { - "str_id": "b3", - "time_of_creation": "2018-06-24T19:50:19.078Z", - "name": "Type B-3", - "short_name": "B3", - "description": "B-Type Quarters Flat nos. 11 - 14", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2797, - "pixel_y": 2820, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "216c4173-c28e-42b3-8cdd-01ead6d3b59d", - "fields": { - "str_id": "8-h2", - "time_of_creation": "2018-06-24T19:50:19.297Z", - "name": "Type H2 - 8", - "short_name": "8-H2", - "description": "H2 Type Quarters Flat nos. 57 - 64", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 1059, - "pixel_y": 2719, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "21d97341-d00b-4fb7-a88b-329b395273f5", - "fields": { - "str_id": "mach-tool-lab", - "time_of_creation": "2018-06-24T19:50:18.529Z", - "name": "Machine Tool Lab", - "short_name": "Mach. Tool Lab", - "description": "Comes under Mechanical Engineering Department +912225764518 / +912225764537", - "parent": "c3545b3d-e33d-4c14-b04d-c369146391ec", - "parent_relation": "Near", - "group_id": 12, - "pixel_x": 4410, - "pixel_y": 1740, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "22ab9241-3799-4c1b-a5c8-f291723b8932", - "fields": { - "str_id": "old-sac", - "time_of_creation": "2019-10-11T19:05:58.819Z", - "name": "OLD SAC", - "short_name": "OLD SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "22b1efaa-f129-43bc-ad0a-fcd37b394546", - "fields": { - "str_id": "brews-and-bites", - "time_of_creation": "2018-09-18T18:36:00.480Z", - "name": "Brews and Bites", - "short_name": "Brews and Bites", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "23396793-3425-4f33-811b-d09f803a7b6c", - "fields": { - "str_id": "h2-tv-room", - "time_of_creation": "2019-08-12T12:27:27.659Z", - "name": "H2 TV Room", - "short_name": "H2 TV Room", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "24586039-1f7f-4c97-b4ce-c11c8bf72db4", - "fields": { - "str_id": "19-h2", - "time_of_creation": "2018-06-24T19:50:19.338Z", - "name": "Type H2 - 19", - "short_name": "19-H2", - "description": "H2 Type Quarters Flat nos. 145 - 152", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4377, - "pixel_y": 1329, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "25c09a2e-710b-4fb0-8bef-eec45e885f6e", - "fields": { - "str_id": "indoor-badminton-court", - "time_of_creation": "2019-07-29T17:57:16.664Z", - "name": "Indoor Badminton Court", - "short_name": "Indoor Badminton Court", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "2614d321-16c5-41a9-a78d-eb6d8a8ca2b3", - "fields": { - "str_id": "prints", - "time_of_creation": "2018-06-24T19:50:18.644Z", - "name": "Printing and photocopying Main Building", - "short_name": "Prints", - "description": "", - "parent": "0308d18d-03a2-40bb-8efd-b222b7f84001", - "parent_relation": "Inside", - "group_id": 11, - "pixel_x": 3628, - "pixel_y": 1640, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "26716cc2-3afc-4114-908a-3aa2e75376e6", - "fields": { - "str_id": "table-tennis-hallnew-sac", - "time_of_creation": "2018-08-26T13:51:16.641Z", - "name": "Table Tennis hall,New SAC", - "short_name": "Table Tennis hall,New SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "2709f7ec-8068-4c57-b08a-3adb76412128", - "fields": { - "str_id": "estate-office", - "time_of_creation": "2018-06-24T19:50:19.487Z", - "name": "Estate office", - "short_name": "Estate office", - "description": "Estate office tel: +9122257617991 1 Complaint registration by the occupants of the existing buildings at IIT Bombay and the rectification of the same. 2 Accommodation Allotment to the various staff at IIT Bombay. 3 Property registration. 4 Property Tax.", - "parent": null, - "parent_relation": "", - "group_id": 9, - "pixel_x": 0, - "pixel_y": 0, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "273f8f72-e6a7-400c-9967-81a6738a2795", - "fields": { - "str_id": "2b-9", - "time_of_creation": "2018-06-24T19:50:18.939Z", - "name": "Type 2B 9", - "short_name": "2B 9", - "description": "2B-Type Quarters, Flat nos 49 - 54", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 4384, - "pixel_y": 2192, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "278bc921-86c1-44e3-aa3d-26ef8eee5682", - "fields": { - "str_id": "hostel-5-cricket-ground", - "time_of_creation": "2019-08-23T12:29:09.736Z", - "name": "Hostel 5 Cricket Ground", - "short_name": "Hostel 5 Cricket Ground", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "27f6011a-58bf-4490-ad55-90c99164992f", - "fields": { - "str_id": "seminar-hall-physics-department", - "time_of_creation": "2020-01-18T16:30:56.235Z", - "name": "Seminar Hall, Physics Department", - "short_name": "Seminar Hall, Physics Department", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "281089d4-70fc-45fb-b920-117dcea73d8c", - "fields": { - "str_id": "shishu-vihar", - "time_of_creation": "2018-06-24T19:50:18.356Z", - "name": "Shishu Vihar", - "short_name": "Shishu Vihar", - "description": "Shishu Vihar is temporarily located at A5 Tel: +912225764978", - "parent": null, - "parent_relation": "", - "group_id": 9, - "pixel_x": 2318, - "pixel_y": 2851, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "28738cfb-5f0d-43e5-9916-9fb1202ec22e", - "fields": { - "str_id": "b14", - "time_of_creation": "2018-06-24T19:50:19.119Z", - "name": "Type B-14", - "short_name": "B14", - "description": "B-Type Quarters Flat nos. 55 - 58", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2470, - "pixel_y": 2291, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "294cb883-a836-412c-a9b4-6214c8738df9", - "fields": { - "str_id": "seminar-room-202-physics-department", - "time_of_creation": "2019-02-05T18:56:10.901Z", - "name": " Seminar Room (202), Physics Department", - "short_name": " Seminar Room (202), Physics Department", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "2a2361a4-9b8e-49da-b1ab-00fa6b14d49b", - "fields": { - "str_id": "idc-auditorium", - "time_of_creation": "2018-10-04T20:06:48.121Z", - "name": "IDC Auditorium", - "short_name": "IDC Auditorium", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "2a286324-ebe3-4698-930b-48216c0e868f", - "fields": { - "str_id": "fc-kohli-auditorium-kresit-buiding", - "time_of_creation": "2019-08-22T05:34:56.909Z", - "name": "F.C Kohli Auditorium, Kresit Buiding", - "short_name": "F.C Kohli Auditorium, Kresit Buiding", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "2ac54284-3038-44c4-9c00-e3a57ad5180a", - "fields": { - "str_id": "httpstinyurlcomy5zrp7ka", - "time_of_creation": "2020-09-04T08:13:25.101Z", - "name": "https://tinyurl.com/y5zrp7ka", - "short_name": "https://tinyurl.com/y5zrp7ka", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "2b7faf98-2bd4-4cb6-93ba-bf40bc293966", - "fields": { - "str_id": "lt-101", - "time_of_creation": "2018-06-24T19:50:18.702Z", - "name": "LT 101", - "short_name": "LT 101", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "First floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "2c37e321-ffc2-4a95-ae5a-ba09be829295", - "fields": { - "str_id": "mlr-convention-center-brigade-millenium-campus-jp-nagar", - "time_of_creation": "2018-07-16T16:38:52.379Z", - "name": "MLR Convention Center, Brigade Millenium Campus, JP Nagar", - "short_name": "MLR Convention Center, Brigade Millenium Campus, JP Nagar", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "2c5d22c3-6d85-4cc9-8f15-34f675872731", - "fields": { - "str_id": "sbi", - "time_of_creation": "2018-06-24T19:50:18.377Z", - "name": "State Bank of India, IIT Powai branch", - "short_name": "SBI", - "description": "Phone +912225722894 / +912225721103 work hours: 10:30 am to 4:30 pm", - "parent": null, - "parent_relation": "", - "group_id": 6, - "pixel_x": 2164, - "pixel_y": 3227, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "2ca48d1f-6eb3-4619-8a0a-921519c32671", - "fields": { - "str_id": "4-h2", - "time_of_creation": "2018-06-24T19:50:19.282Z", - "name": "Type H2 - 4", - "short_name": "4-H2", - "description": "H2 Type Quarters Flat nos. 25 - 32", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 1187, - "pixel_y": 2785, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "2d3faa59-99de-4794-b339-ae975b462395", - "fields": { - "str_id": "zoom", - "time_of_creation": "2020-12-19T02:52:56.708Z", - "name": "zoom", - "short_name": "zoom", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "2d493a03-2705-434d-ac04-fcdd5b97a453", - "fields": { - "str_id": "multipurpose-hall-3rd-floor-new-sac", - "time_of_creation": "2019-02-27T11:41:06.220Z", - "name": "Multipurpose Hall, 3rd floor, New SAC", - "short_name": "Multipurpose Hall, 3rd floor, New SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "2db87902-ea0a-4c4e-a9bc-e08941732c10", - "fields": { - "str_id": "ms-teams-code-3z121l1", - "time_of_creation": "2021-01-21T17:46:55.959Z", - "name": "MS Teams code: 3z121l1", - "short_name": "MS Teams code: 3z121l1", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "2dc3dabb-d84d-42a3-8a66-d136be5f10bf", - "fields": { - "str_id": "25-h2", - "time_of_creation": "2018-06-24T19:50:19.361Z", - "name": "Type H2 - 26", - "short_name": "25-H2", - "description": "H2 Type Quarters Flat nos. 201 - 208", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 746, - "pixel_y": 2246, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "2dc6e675-10b6-4507-9b90-a1a46adb01c8", - "fields": { - "str_id": "zoom-meet", - "time_of_creation": "2020-07-19T08:38:46.529Z", - "name": "Zoom Meet", - "short_name": "Zoom Meet", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "2debcdcc-72e9-4385-8552-a3f394d8a568", - "fields": { - "str_id": "room-118-chemical-engineering-department", - "time_of_creation": "2018-10-31T00:02:35.971Z", - "name": "Room 118, Chemical Engineering Department", - "short_name": "Room 118, Chemical Engineering Department", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "2e327725-7313-42f6-a7db-024af83b021a", - "fields": { - "str_id": "symphony-instagram-page", - "time_of_creation": "2020-08-08T10:25:54.645Z", - "name": "Symphony Instagram Page", - "short_name": "Symphony Instagram Page", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "2e932a48-0f97-4b1a-9398-a43f482a4f17", - "fields": { - "str_id": "som-ic-2", - "time_of_creation": "2022-09-22T19:17:49.459Z", - "name": "SOM IC 2", - "short_name": "SOM IC 2", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "2f04f408-6ec8-447c-b898-df0b58035a6b", - "fields": { - "str_id": "fluid-mech-lab", - "time_of_creation": "2018-06-24T19:50:18.478Z", - "name": "Fluid Mechanics and Fluid Power Lab", - "short_name": "Fluid Mech Lab", - "description": "Comes under Mechanical Engineering Department\nFluid Mechanics Lab Tel: +912225764232\nFluid Power Lab Tel: +912225764532 / +912225764549", - "parent": null, - "parent_relation": "", - "group_id": 12, - "pixel_x": 4060, - "pixel_y": 1585, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "2f25652d-2444-4123-a58d-02018b31debc", - "fields": { - "str_id": "microsoft-teams", - "time_of_creation": "2020-12-14T11:32:19.206Z", - "name": "MICROSOFT TEAMS", - "short_name": "MICROSOFT TEAMS", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "2f72f71e-98c0-4230-bb92-89238497013b", - "fields": { - "str_id": "cafe-92", - "time_of_creation": "2023-04-28T12:54:09.737Z", - "name": "Cafe 92", - "short_name": "Cafe 92", - "description": "Cafe", - "parent": null, - "parent_relation": null, - "group_id": 4, - "pixel_x": 3614, - "pixel_y": 1824, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "2fb1c97a-67ff-41fa-920c-3e8e024140c3", - "fields": { - "str_id": "theatre-room-old-sac", - "time_of_creation": "2018-08-25T18:57:50.106Z", - "name": "Theatre Room, old SAC", - "short_name": "Theatre Room, old SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "2fb57b39-9ce1-43c7-83e0-e183f3991b7a", - "fields": { - "str_id": "ic1-sj-som", - "time_of_creation": "2019-10-15T17:46:05.637Z", - "name": "IC1 SJ-SOM", - "short_name": "IC1 SJ-SOM", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "317c7a1d-1a39-499e-bb35-e5f7c3e0dbda", - "fields": { - "str_id": "12-h1", - "time_of_creation": "2018-06-24T19:50:19.255Z", - "name": "Type H1 - 12", - "short_name": "12-H1", - "description": "H1 Type Quarters Flat nos. 135 - 151", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4747, - "pixel_y": 1173, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "31c16085-02ce-4fdf-9d19-1870b86cd464", - "fields": { - "str_id": "rm-lab", - "time_of_creation": "2018-06-24T19:50:18.570Z", - "name": "RM Lab (Rapid manufacturing)", - "short_name": "RM Lab", - "description": "", - "parent": "cb002ce4-621b-46ac-ace8-1cf94229f725", - "parent_relation": "Near", - "group_id": 12, - "pixel_x": 4650, - "pixel_y": 1757, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "31d2a62d-8863-4982-b6fc-09a74a5b8b62", - "fields": { - "str_id": "httpstinyurlcomcsec-intro", - "time_of_creation": "2021-03-06T06:00:29.211Z", - "name": "https://tinyurl.com/csec-intro", - "short_name": "https://tinyurl.com/csec-intro", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "31fb5103-3fef-4a57-8461-10bf89b49bae", - "fields": { - "str_id": "lt-305", - "time_of_creation": "2018-06-24T19:50:18.761Z", - "name": "LT 305", - "short_name": "LT 305", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Third floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "3211f744-12f6-4017-8a32-6fd9e6e7a51e", - "fields": { - "str_id": "hybrid", - "time_of_creation": "2022-08-26T15:29:28.028Z", - "name": "Hybrid", - "short_name": "Hybrid", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "3232fb80-8d2d-4956-9b0d-2ee759b0c6e3", - "fields": { - "str_id": "lt", - "time_of_creation": "2019-01-11T19:32:57.060Z", - "name": "LT", - "short_name": "LT", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "32829c3d-871e-4665-a26b-fab62ab9555f", - "fields": { - "str_id": "ltpcsa", - "time_of_creation": "2018-08-18T12:26:10.638Z", - "name": "LTPCSA", - "short_name": "LTPCSA", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "32d1ed61-da25-4b73-8178-34521b16b1c9", - "fields": { - "str_id": "versova-beach", - "time_of_creation": "2019-10-01T11:12:09.307Z", - "name": "Versova Beach", - "short_name": "Versova Beach", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "330c7fdc-9d51-4054-afcf-f9fe29439cc8", - "fields": { - "str_id": "a6", - "time_of_creation": "2018-06-24T19:50:19.021Z", - "name": "Bungalow A6 ", - "short_name": "A6", - "description": "A-Type Bungalow", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2254, - "pixel_y": 2963, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "332cbdab-6419-4753-a4d7-ab726996a414", - "fields": { - "str_id": "volleyball-court", - "time_of_creation": "2020-03-12T21:20:11.508Z", - "name": "Volleyball Court", - "short_name": "Volleyball Court", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "333a7032-4c95-45b3-895a-eb4f840757d1", - "fields": { - "str_id": "httpsairmeetcomee643dbc0-cbfe-11ea-ba2b-4175708878ce", - "time_of_creation": "2020-07-22T17:02:19.482Z", - "name": "https://airmeet.com/e/e643dbc0-cbfe-11ea-ba2b-4175708878ce", - "short_name": "https://airmeet.com/e/e643dbc0-cbfe-11ea-ba2b-4175708878ce", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "34052436-a815-4c37-90ee-4cde0b9ddf73", - "fields": { - "str_id": "seminar-room-202-physics-department", - "time_of_creation": "2019-02-03T08:09:46.902Z", - "name": "Seminar Room (202), Physics Department", - "short_name": "Seminar Room (202), Physics Department", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "342b40d7-708e-4889-af4e-4f1a3aea2324", - "fields": { - "str_id": "h2-lounge", - "time_of_creation": "2019-10-02T15:33:36.723Z", - "name": "H2 lounge", - "short_name": "H2 lounge", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "34513a0d-1b20-4350-8d76-57c0883f10fe", - "fields": { - "str_id": "adv-microengg-lab", - "time_of_creation": "2018-06-24T19:50:18.609Z", - "name": "SMAmL Suman Mashruwala Advanced Microengineering Lab", - "short_name": "Adv. MicroEngg Lab", - "description": "Phone: +912225767519 / +912225764534\nFax:-+912225726875\nE-mail: gandhi@me.iitb.ac.in", - "parent": null, - "parent_relation": "", - "group_id": 12, - "pixel_x": 4431, - "pixel_y": 1615, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "347f9552-59d0-42ba-8418-d962cd5283e7", - "fields": { - "str_id": "3rd-floorscreening-hall-new-sac", - "time_of_creation": "2019-05-02T18:15:41.577Z", - "name": "3rd floor,Screening Hall, New SAC", - "short_name": "3rd floor,Screening Hall, New SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "34dc44d9-f7f4-473f-929e-7bc7b551551f", - "fields": { - "str_id": "photography-and-fine-arts-studio-old-sac", - "time_of_creation": "2018-10-08T14:48:56.861Z", - "name": "Photography and Fine Arts Studio, Old SAC", - "short_name": "Photography and Fine Arts Studio, Old SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "354d2964-3b44-4087-a751-05c66db5b1a2", - "fields": { - "str_id": "lc-101", - "time_of_creation": "2018-06-24T19:50:18.777Z", - "name": "LC 101", - "short_name": "LC 101", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "First floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "359d55fe-85db-469c-8fce-5098a457ec95", - "fields": { - "str_id": "aero-annx", - "time_of_creation": "2018-06-24T19:50:18.831Z", - "name": "Aerospace Engineering Annexe", - "short_name": "Aero Annx", - "description": "http://www.aero.iitb.ac.in Phone No.: +912225764111 Fax No.: +912225722602. Email: office@aero.iitb.ac.in The department offers academic programs for B. Tech, M. Tech, Ph. D. Specialization are offered: Aerodynamics, Control and Guidance, Propulsion, Structures, and Systems Engineering", - "parent": "44cb782e-b6f0-4e65-b35a-9c0b907fc9d0", - "parent_relation": "Inside", - "group_id": 1, - "pixel_x": 3911, - "pixel_y": 2171, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "3627e488-7960-40d4-b394-de8d40e86a9f", - "fields": { - "str_id": "2b-24", - "time_of_creation": "2018-06-24T19:50:19.001Z", - "name": "Type 2B 24", - "short_name": "2B 24", - "description": "2B-Type Quarters, Flat nos 193 - 220", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 4124, - "pixel_y": 1238, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "36392e9a-cec2-47a7-ba8d-6053f4c46b7a", - "fields": { - "str_id": "sac", - "time_of_creation": "2018-06-24T19:50:18.345Z", - "name": "Students Activity Centre", - "short_name": "SAC", - "description": "Tel: +912225768968", - "parent": null, - "parent_relation": "", - "group_id": 8, - "pixel_x": 3599, - "pixel_y": 1225, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "366a0ebe-77df-46d4-ac51-cedb5036b09c", - "fields": { - "str_id": "c-use", - "time_of_creation": "2018-06-24T19:50:18.437Z", - "name": "Centre for Urban Science and Engineering (inside civil)", - "short_name": "C-USE", - "description": "http://cuse.iitb.ac.in Tel: +912225769301 Ph. D program. Research areas include Planning and Design (Housing, Land use policies, Public Spaces, Risk Management) Policy and Governance (Housing Economics, Health, Education, Employment, Environment) Infrastructure (Buildings,Transportation & Land use, Urban water, Waste Management, Smart Energy); Informatics (Citizen Science, Cyber-Physical Systems, Urban Knowledge, Geo-Spatial Technologies)", - "parent": "39c0b4e7-ec49-45db-8f9e-3a64b500aa1f", - "parent_relation": "Inside", - "group_id": 1, - "pixel_x": 3879, - "pixel_y": 1804, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "36dbd8df-3126-451b-bdbc-0f662de367ee", - "fields": { - "str_id": "ms-teams", - "time_of_creation": "2020-09-18T04:05:38.317Z", - "name": "MS teams", - "short_name": "MS teams", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "36f8b6f7-3f2c-4950-b485-a7690ed781f0", - "fields": { - "str_id": "idp-climate-studies", - "time_of_creation": "2018-06-24T19:50:18.842Z", - "name": "Inter-disciplinary Programme in Climate Studies", - "short_name": "IDP Climate Studies", - "description": "http://www.climate.iitb.ac.in Office inside Civil Engineering building Tel:+912225767301 Fax:+912225767302 Ph.D. is offered in this programme. Research areas include Climate science and technology, Technology evaluation and assessment, Impacts, Vulnerability and Adaptation", - "parent": "39c0b4e7-ec49-45db-8f9e-3a64b500aa1f", - "parent_relation": "Inside", - "group_id": 1, - "pixel_x": 3879, - "pixel_y": 1804, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "37262f63-e4b3-4003-bdd2-06b690107b64", - "fields": { - "str_id": "new-yoga-room-sac", - "time_of_creation": "2018-07-29T18:27:45.642Z", - "name": "New Yoga Room, SAC", - "short_name": "New Yoga Room, SAC", - "description": "", - "parent": "36392e9a-cec2-47a7-ba8d-6053f4c46b7a", - "parent_relation": "Inside", - "group_id": 8, - "pixel_x": 3599, - "pixel_y": 1225, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "37a846e3-aa3c-4164-b2da-f01afb801955", - "fields": { - "str_id": "httpszoomusj98787912153pwdbjhgv1vfn1fqmzduuzfjwwtcvuh6dz09", - "time_of_creation": "2020-08-12T15:16:59.654Z", - "name": " https://zoom.us/j/98787912153?pwd=bjhGV1VFN1FQMzdUUzFJWWtCVUh6dz09", - "short_name": " https://zoom.us/j/98787912153?pwd=bjhGV1VFN1FQMzdUUzFJWWtCVUh6dz09", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "37ae5e60-97a5-49ca-acbc-584665d49d2f", - "fields": { - "str_id": "h3", - "time_of_creation": "2018-06-24T19:50:18.194Z", - "name": "Hostel 03 Vitruvians", - "short_name": "H3", - "description": "Hostel security: +912225762603 Hall Manager: +912225762703 G. Sec: Arvind Jangid +919820525369", - "parent": null, - "parent_relation": "", - "group_id": 2, - "pixel_x": 3435, - "pixel_y": 946, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "37d27973-3f1a-48d2-a8c2-4b92aedbff1b", - "fields": { - "str_id": "a4", - "time_of_creation": "2018-06-24T19:50:19.013Z", - "name": "Bungalow A4 ", - "short_name": "A4", - "description": "A-Type Bungalow", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2373, - "pixel_y": 2767, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "380c1d4a-602b-41c4-9572-f0e44c277742", - "fields": { - "str_id": "report-to-h15-mess", - "time_of_creation": "2022-02-25T13:59:37.399Z", - "name": "Report to H15 Mess", - "short_name": "Report to H15 Mess", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "39c0b4e7-ec49-45db-8f9e-3a64b500aa1f", - "fields": { - "str_id": "civil", - "time_of_creation": "2018-06-24T19:50:18.095Z", - "name": "Civil Engineering Department", - "short_name": "Civil", - "description": "http://www.civil.iitb.ac.in\nTel:+912225767301\nFax:+912225767302\n\nThe department offers academic programs for B Tech, Dual Degree (B Tech + M Tech), M Tech, MS and Ph.D across different divisions such as Building Technology and Construction Management (BTCM) Environmental and Water Resources Engineering (EWRE) Geotechnical Engineering (GT) Structural Engineering (ST) Transportation Engineering (TR)", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 3879, - "pixel_y": 1804, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "3a69d7f4-95d1-479d-bfee-a362547a5cca", - "fields": { - "str_id": "jayantia-b-19", - "time_of_creation": "2018-06-24T19:50:18.058Z", - "name": "Jayantia B-19", - "short_name": "Jayantia B-19", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 1413, - "pixel_y": 2885, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "3af710e8-ac44-4c1e-8129-5cc7247684fb", - "fields": { - "str_id": "zoom---httpszoomusj98440561173pwdctfsqlfqsfdmaklauvhvthv4ehexqt09", - "time_of_creation": "2021-04-12T11:46:36.765Z", - "name": "Zoom - https://zoom.us/j/98440561173?pwd=cTFSQlFqSFdmaklaUVhVTHV4eHExQT09", - "short_name": "Zoom - https://zoom.us/j/98440561173?pwd=cTFSQlFqSFdmaklaUVhVTHV4eHExQT09", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "3b946b1b-c39e-42fe-8a85-521e92f95890", - "fields": { - "str_id": "ongc-research-centre", - "time_of_creation": "2018-06-24T19:50:18.316Z", - "name": "ONGC Research Centre", - "short_name": "ONGC Research Centre", - "description": "Currently, the centre is working on a project titled \"Physical and Numerical Models for Un-conventional Flood Patterns\". The project relates to increasing country's currrent oil production by means of Enhanced Oil Recovery (EOR) processes. ", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 4234, - "pixel_y": 2162, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "3bb76da4-dc16-4a2d-bd2b-1c82d553b9d4", - "fields": { - "str_id": "osl", - "time_of_creation": "2018-06-24T19:50:18.821Z", - "name": "Old Software Lab", - "short_name": "OSL", - "description": "", - "parent": "8fcf8049-5a13-4e60-b5b1-993a4a554526", - "parent_relation": "Ground floor", - "group_id": 12, - "pixel_x": 3928, - "pixel_y": 1496, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "3c1475fe-1959-47b6-93e9-47b7a2768891", - "fields": { - "str_id": "virtual", - "time_of_creation": "2021-12-26T09:36:47.044Z", - "name": "Virtual", - "short_name": "Virtual", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "3c24c1aa-9a2e-430c-b195-83d774dff2ce", - "fields": { - "str_id": "corro-sci-paint-lab", - "time_of_creation": "2018-06-24T19:50:18.862Z", - "name": "Corrosion Science Paint Lab", - "short_name": "Corro Sci Paint Lab", - "description": "Tel: +912225764606", - "parent": "aa4fa9f4-40fa-4d99-bba8-bd985d11f67e", - "parent_relation": "Inside", - "group_id": 12, - "pixel_x": 3631, - "pixel_y": 2044, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "3c3af8a6-6aff-4d4d-8fac-f0f406a2700d", - "fields": { - "str_id": "convo-foyer", - "time_of_creation": "2019-01-11T16:56:52.443Z", - "name": "Convo foyer", - "short_name": "Convo foyer", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "3c3bd610-1e39-49e1-ae05-26f5cba62f52", - "fields": { - "str_id": "imagica", - "time_of_creation": "2018-09-30T15:24:52.032Z", - "name": "Imagica", - "short_name": "Imagica", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "3c3ef77f-ed33-4f42-a003-3550eec21c7a", - "fields": { - "str_id": "vihar-house", - "time_of_creation": "2018-06-24T19:50:18.405Z", - "name": "Vihar House", - "short_name": "Vihar House", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4558, - "pixel_y": 1429, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "3db68372-6bd9-4772-8c1d-855725a35f50", - "fields": { - "str_id": "new-seminar-hall-mems-dept", - "time_of_creation": "2020-01-31T07:43:28.425Z", - "name": "New Seminar Hall, MEMS Dept.", - "short_name": "New Seminar Hall, MEMS Dept.", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "3dd9599f-1228-4b23-b1c5-1268a93c9bef", - "fields": { - "str_id": "lt-104", - "time_of_creation": "2018-06-24T19:50:18.713Z", - "name": "LT 104", - "short_name": "LT 104", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "First floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "3deff9aa-7ff2-49fa-928a-49b76ab402ed", - "fields": { - "str_id": "la-202", - "time_of_creation": "2018-06-24T19:50:18.679Z", - "name": "LA 202", - "short_name": "LA 202", - "description": "The classroom has 4 entrance doors, two on second floor and two in third floor.", - "parent": "be8afcf1-c7f7-4d71-aaf5-0154081974dd", - "parent_relation": "Second and Third floors", - "group_id": 4, - "pixel_x": 3779, - "pixel_y": 2220, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "3e59233d-66ed-42f5-83d2-16a5e3ef4d16", - "fields": { - "str_id": "orthocad-lab", - "time_of_creation": "2018-06-24T19:50:18.555Z", - "name": "OrthoCad Lab", - "short_name": "OrthoCad Lab", - "description": "Comes under Mechanical Engineering Department +912225764399", - "parent": null, - "parent_relation": "", - "group_id": 12, - "pixel_x": 4683, - "pixel_y": 1702, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "3e8998f8-b534-437b-93d2-3e38d1f25511", - "fields": { - "str_id": "tennis-court-new", - "time_of_creation": "2018-06-24T19:50:18.391Z", - "name": "Tennis Court (new)", - "short_name": "Tennis Court (new)", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 8, - "pixel_x": 3046, - "pixel_y": 1513, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "3ec0add2-d8bf-4237-852d-798499bbdab5", - "fields": { - "str_id": "fc-kohli-auditorium-old-cse-building", - "time_of_creation": "2022-08-10T13:24:20.536Z", - "name": "F.C Kohli Auditorium Old CSE Building ", - "short_name": "F.C Kohli Auditorium Old CSE Building ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "3eeba406-f5ac-45ae-9870-32f6f58de138", - "fields": { - "str_id": "hostel-5-mess", - "time_of_creation": "2018-10-04T11:07:57.525Z", - "name": "Hostel-5 mess", - "short_name": "Hostel-5 mess", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "3f3fb2f8-caae-4f7b-8f2b-0c4cb37b2f92", - "fields": { - "str_id": "cummins", - "time_of_creation": "2018-06-24T19:50:18.466Z", - "name": "Cummins Engine Research facility", - "short_name": "Cummins", - "description": "Incharge: Prof. Anuradda Ganesh\nTel: +912225764506", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 4350, - "pixel_y": 1580, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "3f4859fd-f908-4cb8-8889-8e29c0166c86", - "fields": { - "str_id": "h15--h16-mess", - "time_of_creation": "2018-09-25T17:51:46.156Z", - "name": "H15 & H16 Mess", - "short_name": "H15 & H16 Mess", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "4054be4f-ebfb-49fa-8a0c-29c46b02c1b2", - "fields": { - "str_id": "11-type1", - "time_of_creation": "2018-06-24T19:50:19.429Z", - "name": "Type1 - 11", - "short_name": "11-Type1", - "description": "Type 1 Quarters Flat nos. 121 - 132", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3389, - "pixel_y": 803, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "40a0335c-cbd5-4849-bb18-87ef976824ed", - "fields": { - "str_id": "2b-1", - "time_of_creation": "2018-06-24T19:50:18.910Z", - "name": "Type 2B 1", - "short_name": "2B 1", - "description": "2B-Type Quarters, Flat nos 1 - 6", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 4421, - "pixel_y": 2264, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "412d646b-2aa6-4120-9d28-15316e0d365e", - "fields": { - "str_id": "youtube-live", - "time_of_creation": "2020-12-18T16:12:57.044Z", - "name": "Youtube Live", - "short_name": "Youtube Live", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "41762068-4df9-467d-ad0f-d0caf711b980", - "fields": { - "str_id": "squash-court-new-sac", - "time_of_creation": "2019-08-26T21:04:49.306Z", - "name": "Squash Court, New SAC", - "short_name": "Squash Court, New SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "41b4d43a-0a49-4fd7-b441-ea41004a2369", - "fields": { - "str_id": "math-centre", - "time_of_creation": "2018-06-24T19:50:19.564Z", - "name": "National Centre for Mathematics", - "short_name": "Math Centre", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 9, - "pixel_x": 2890, - "pixel_y": 1880, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "41d26c27-1a92-411c-a16a-7ae4f4f54aac", - "fields": { - "str_id": "tghh", - "time_of_creation": "2021-08-28T07:57:05.799Z", - "name": "Tghh", - "short_name": "Tghh", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "42422033-0fb0-4a62-aa55-133f1691997d", - "fields": { - "str_id": "old-cse", - "time_of_creation": "2018-06-24T19:50:18.309Z", - "name": "Old Computer Science Engineering Department", - "short_name": "Old CSE", - "description": "http://www.cse.iitb.ac.in\r\nTel: +912225767701 / +912225767702 / +912225762771\r\n\r\nThe department offers academic programs for B. Tech, Dual degree (B Tech + M Tech), Dual Degree PG (M. Tech + Ph. D) and Ph. D. Research areas include algorithms, programming languages and Compilers, database and information systems, artificial intelligence and natural language processing, software engineering, formal methods, distributed systems, computer networks, data mining, computer graphics, computer vision and image understanding, real-time and embedded systems, formal languages and bio-inspired computing", - "parent": null, - "parent_relation": null, - "group_id": 1, - "pixel_x": 4002, - "pixel_y": 1545, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "425d9456-6ba4-4970-9f32-039dabafc899", - "fields": { - "str_id": "lt-201", - "time_of_creation": "2018-06-24T19:50:18.723Z", - "name": "LT 201", - "short_name": "LT 201", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Second floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "42664559-5ea0-4670-b0c8-299f6d3eff81", - "fields": { - "str_id": "jam-off", - "time_of_creation": "2018-06-24T19:50:18.426Z", - "name": "Joint Admission Test for M.Sc. Office", - "short_name": "JAM Off.", - "description": "Tel: +91222576 2924", - "parent": "0308d18d-03a2-40bb-8efd-b222b7f84001", - "parent_relation": "Inside", - "group_id": 1, - "pixel_x": 3628, - "pixel_y": 1640, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "42cce33d-1c9c-4491-836d-c5052c31f283", - "fields": { - "str_id": "lakeside-gate", - "time_of_creation": "2018-06-24T19:50:18.245Z", - "name": "Lake Side Gate no. 1", - "short_name": "Lakeside Gate", - "description": "Tel: +912225761124", - "parent": null, - "parent_relation": "", - "group_id": 10, - "pixel_x": 792, - "pixel_y": 2777, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "42eb7098-9876-4609-9241-67a3b345572d", - "fields": { - "str_id": "httpsbitly3iejyxrin", - "time_of_creation": "2020-09-19T09:09:24.059Z", - "name": "https://bit.ly/3iEjYxrin", - "short_name": "https://bit.ly/3iEjYxrin", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "431b487b-1db7-4cc0-ae63-af19ad96dca9", - "fields": { - "str_id": "sitac", - "time_of_creation": "2018-06-24T19:50:18.597Z", - "name": "Structural integrity Testing and Analysis Centre", - "short_name": "SITAC", - "description": "Comes under Mechanical Engineering Department +912225764528", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 4355, - "pixel_y": 1750, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "434c029b-8c7e-4a7d-b892-7a55282b22e3", - "fields": { - "str_id": "3-type1", - "time_of_creation": "2018-06-24T19:50:19.403Z", - "name": "Type1 - 3", - "short_name": "3-Type1", - "description": "Type 1 Quarters Flat nos. 25 - 36", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4177, - "pixel_y": 2652, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "434cd6e5-4dcd-4254-8796-c216845efb84", - "fields": { - "str_id": "kampus-app", - "time_of_creation": "2020-09-23T14:22:25.265Z", - "name": "Kampus App", - "short_name": "Kampus App", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "4370f94f-aa75-457c-b3b2-b377d4678067", - "fields": { - "str_id": "vmcc", - "time_of_creation": "2018-06-24T19:50:18.398Z", - "name": "Victor Menezes Convention Centre", - "short_name": "VMCC", - "description": "Tel: +912225761125", - "parent": null, - "parent_relation": "", - "group_id": 4, - "pixel_x": 4110, - "pixel_y": 1847, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "4374fe70-8cf3-48dd-ab7a-c1a468fe79cf", - "fields": { - "str_id": "cisco-webex", - "time_of_creation": "2020-08-15T07:41:30.406Z", - "name": "Cisco WebEx", - "short_name": "Cisco WebEx", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "438250f8-6e59-4aee-8550-b1d83115d6b3", - "fields": { - "str_id": "iit-bombay", - "time_of_creation": "2018-06-24T21:51:24.848Z", - "name": "IIT Bombay", - "short_name": "IIT Bombay", - "description": "On the IIT Bombay Campus", - "parent": null, - "parent_relation": null, - "group_id": 0, - "pixel_x": 0, - "pixel_y": 0, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "44244dbc-9c3e-4090-87fc-cdc144b488a7", - "fields": { - "str_id": "fb-live-styleupiitb", - "time_of_creation": "2021-08-03T17:24:46.963Z", - "name": "FB Live @styleup.iitb ", - "short_name": "FB Live @styleup.iitb ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "44b8543a-5713-4ce6-b7ce-810712bd94d4", - "fields": { - "str_id": "lt-302", - "time_of_creation": "2018-06-24T19:50:18.749Z", - "name": "LT 302", - "short_name": "LT 302", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Third floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "44cb782e-b6f0-4e65-b35a-9c0b907fc9d0", - "fields": { - "str_id": "hss", - "time_of_creation": "2018-06-24T19:50:18.220Z", - "name": "Humanities and Social Sciences Department", - "short_name": "HSS", - "description": "http://www.hss.iitb.ac.in\r\n+912225767351 / +91222576 7351 / +912225767352\r\n\r\nThe department offers academic programs for B. Tech, M. Phil, Ph. D. Research areas include Economics, English, Philosophy, Psychology, Sociology", - "parent": null, - "parent_relation": null, - "group_id": 1, - "pixel_x": 3911, - "pixel_y": 2171, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "44d85bf9-5dac-4ef5-8767-d9f3c7779a0e", - "fields": { - "str_id": "refrigeration-ac-and-cryogenics-lab", - "time_of_creation": "2018-06-24T19:50:18.566Z", - "name": "Refrigeration, A/C and Cryogenics Lab", - "short_name": "Refrigeration, A/C and Cryogenics Lab", - "description": "Comes under Mechanical Engineering Department +912225764587", - "parent": "f5303dcd-b456-4147-a414-88a89815d826", - "parent_relation": "Near", - "group_id": 12, - "pixel_x": 4225, - "pixel_y": 1630, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "45116f0d-804d-4436-b081-45138dfe6ebd", - "fields": { - "str_id": "facebook-live", - "time_of_creation": "2021-02-07T07:40:00.371Z", - "name": "Facebook Live", - "short_name": "Facebook Live", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "452bf863-2dfe-4bb4-a040-5e6018de34e8", - "fields": { - "str_id": "youtube-live", - "time_of_creation": "2020-08-06T19:50:34.732Z", - "name": "YouTube Live ", - "short_name": "YouTube Live ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "45316648-6642-424e-97e8-72096999f268", - "fields": { - "str_id": "hydraulics-lab-workshop", - "time_of_creation": "2018-06-24T19:50:18.514Z", - "name": "Hydraulics Lab Workshop", - "short_name": "Hydraulics Lab Workshop", - "description": "", - "parent": "fa6f024a-87ae-4d06-903a-f77e05de7a27", - "parent_relation": "Near", - "group_id": 12, - "pixel_x": 4180, - "pixel_y": 1450, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "4561c2f3-0629-4837-8047-10899dcdebe6", - "fields": { - "str_id": "ic3-som", - "time_of_creation": "2019-09-30T04:51:03.433Z", - "name": "IC3 SOM", - "short_name": "IC3 SOM", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "45c7dfb0-ed3a-4683-8699-65d3b5ad0f06", - "fields": { - "str_id": "c2", - "time_of_creation": "2018-06-24T19:50:19.142Z", - "name": "Type C-2", - "short_name": "C2", - "description": "C-Type Quarters Flat nos. 13 - 18", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3108, - "pixel_y": 2552, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "462bdb2e-deb7-4c1c-9896-1226d68b6ce4", - "fields": { - "str_id": "screening-room-new-sac", - "time_of_creation": "2019-02-18T21:09:54.583Z", - "name": "Screening Room, New SAC", - "short_name": "Screening Room, New SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "463177f9-45bc-4841-a956-53e69955ade0", - "fields": { - "str_id": "sjm-som-bus-stand", - "time_of_creation": "2018-09-18T18:36:00.475Z", - "name": "SJM SOM bus stand", - "short_name": "SJM SOM bus stand", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "464f1cf2-4be4-4b67-8a57-3c186e5f020e", - "fields": { - "str_id": "lc-202", - "time_of_creation": "2018-06-24T19:50:18.788Z", - "name": "LC 202", - "short_name": "LC 202", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Second floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "47281aa0-b813-48e4-bc09-6c4c3de6caaa", - "fields": { - "str_id": "vmcc--seminar-hall-2", - "time_of_creation": "2019-10-19T08:24:45.638Z", - "name": "VMCC- Seminar Hall 2", - "short_name": "VMCC- Seminar Hall 2", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "47650bad-bd75-4212-ba34-4b4f739e8935", - "fields": { - "str_id": "hostel-5", - "time_of_creation": "2020-03-01T08:29:40.932Z", - "name": "Hostel 5", - "short_name": "Hostel 5", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "476931a1-d95e-4c0d-bb70-a4aade0d7eff", - "fields": { - "str_id": "zoom", - "time_of_creation": "2020-08-14T16:16:37.211Z", - "name": "Zoom", - "short_name": "Zoom", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "47858e97-f358-4fbd-b3f8-a70def5301bb", - "fields": { - "str_id": "white-house", - "time_of_creation": "2018-06-24T19:50:18.410Z", - "name": "White House", - "short_name": "White House", - "description": "B- 20, A wing Tel: +912225762885, Flat nos. 99-110 B- 20, B wing Tel: +912225762840, Flat nos.111-122", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 1909, - "pixel_y": 2799, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "48454e2b-f5ba-478d-bfb1-bb532bdf5f0e", - "fields": { - "str_id": "hostel-9-common-room", - "time_of_creation": "2019-08-20T13:01:12.296Z", - "name": "Hostel 9 common room", - "short_name": "Hostel 9 common room", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "4866ce7e-0ba0-499e-9123-917cc74111ec", - "fields": { - "str_id": "sbi", - "time_of_creation": "2018-06-24T19:50:18.384Z", - "name": "State Bank of India Branch", - "short_name": "SBI", - "description": "", - "parent": null, - "parent_relation": null, - "group_id": 8, - "pixel_x": 3742, - "pixel_y": 1229, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "48edd123-38d8-46cc-94fe-24aae94ab106", - "fields": { - "str_id": "football-deadlands-", - "time_of_creation": "2019-11-06T11:13:20.073Z", - "name": "Football Deadlands ?", - "short_name": "Football Deadlands ?", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "49590c92-1e98-4bfd-8439-ec3a8554bc17", - "fields": { - "str_id": "h17", - "time_of_creation": "2023-04-28T12:58:50.362Z", - "name": "Hostel 17", - "short_name": "H17", - "description": "", - "parent": null, - "parent_relation": null, - "group_id": 2, - "pixel_x": 2643, - "pixel_y": 1059, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "498e08e9-3143-4a71-ae5f-eda296317e3e", - "fields": { - "str_id": "2b-10", - "time_of_creation": "2018-06-24T19:50:19.498Z", - "name": "Type 2B 10", - "short_name": "2B 10", - "description": "", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 737, - "pixel_y": 2651, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "4a3043d5-7b9c-4a95-9496-f5655d714ad9", - "fields": { - "str_id": "theatre-room-sac", - "time_of_creation": "2018-07-29T07:34:11.367Z", - "name": "Theatre Room, SAC", - "short_name": "Theatre Room, SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "4a690796-6b41-4a1e-841d-2ae4d7b0a465", - "fields": { - "str_id": "gymkhana-grounds", - "time_of_creation": "2018-06-24T22:05:36.609Z", - "name": "Gymkhana Grounds", - "short_name": "Gymkhana Grounds", - "description": "The Gymkhana Grounds consist of a football field, a cricket field, basketball courts and more.", - "parent": null, - "parent_relation": null, - "group_id": 8, - "pixel_x": 3185, - "pixel_y": 1165, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "4acc75dd-1361-4c36-bc17-97a39bdfea24", - "fields": { - "str_id": "httpfacebookcomhostel9iitb", - "time_of_creation": "2021-01-25T03:02:53.633Z", - "name": "http://facebook.com/Hostel9.IITB", - "short_name": "http://facebook.com/Hostel9.IITB", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "4bc5da47-899e-42ae-a234-bf49678d4b66", - "fields": { - "str_id": "yoga-room--3rd-floor-new-sac-opposite-to-hostel-11", - "time_of_creation": "2019-05-20T06:53:51.667Z", - "name": " Yoga Room, , 3rd floor, New SAC, opposite to hostel 11", - "short_name": " Yoga Room, , 3rd floor, New SAC, opposite to hostel 11", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "4c6a2554-9431-466a-8545-79c0d3b6a1de", - "fields": { - "str_id": "oat-old-sac", - "time_of_creation": "2020-03-04T21:20:14.117Z", - "name": "OAT, Old SAC", - "short_name": "OAT, Old SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "4c7b4b94-4953-4d6f-98fd-c57e197f8232", - "fields": { - "str_id": "jhabua-madhya-pradesh", - "time_of_creation": "2018-11-18T17:04:49.058Z", - "name": "Jhabua, Madhya Pradesh ", - "short_name": "Jhabua, Madhya Pradesh ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "4c955153-fef0-4033-8e29-8351d3893b61", - "fields": { - "str_id": "ncc-t-point-road-near-convocation-hall", - "time_of_creation": "2020-03-03T06:44:36.924Z", - "name": "NCC T point road, near convocation hall", - "short_name": "NCC T point road, near convocation hall", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "4c9d289f-b133-41ec-adb4-6337e6cd7b6d", - "fields": { - "str_id": "a19", - "time_of_creation": "2018-06-24T19:50:19.068Z", - "name": "Bungalow A19 ", - "short_name": "A19", - "description": "A-Type Bungalow", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4280, - "pixel_y": 1110, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "4d379d25-f7e1-4d32-8834-620e22afe6ac", - "fields": { - "str_id": "nss-iitb-youtube-live", - "time_of_creation": "2020-08-25T12:33:23.864Z", - "name": "NSS IITB YouTube Live", - "short_name": "NSS IITB YouTube Live", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "4d786674-1d9d-4c03-89f2-e2a42c02f0a3", - "fields": { - "str_id": "c8", - "time_of_creation": "2018-06-24T19:50:19.157Z", - "name": "Type C-8", - "short_name": "C8", - "description": "C-Type Quarters Flat nos. 49 - 54", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3078, - "pixel_y": 2878, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "4ea5ddad-4d8f-4b96-94ee-efc2df04dbc6", - "fields": { - "str_id": "uphar", - "time_of_creation": "2018-06-24T19:50:18.889Z", - "name": "Uphar", - "short_name": "Uphar", - "description": "Upkar food joint Breakfast: 6:30 am to 12 pm Lunch: 12pm to 3 pm Evening snacks: 4 pm to 7:30 pm", - "parent": null, - "parent_relation": "", - "group_id": 5, - "pixel_x": 4052, - "pixel_y": 2815, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "4ff83bf6-82e3-4647-ae6d-3c59ec0f23d9", - "fields": { - "str_id": "canara-atm", - "time_of_creation": "2018-06-24T19:50:18.051Z", - "name": "ATM - Canara Bank near H6", - "short_name": "Canara ATM", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 6, - "pixel_x": 2543, - "pixel_y": 842, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "502f034a-7860-437d-a37f-7562f1d5340b", - "fields": { - "str_id": "zoom-meeting", - "time_of_creation": "2021-01-22T19:49:54.549Z", - "name": "Zoom meeting", - "short_name": "Zoom meeting", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "50e2e836-3974-4be9-b35d-3cb0de879652", - "fields": { - "str_id": "conference-room-sac", - "time_of_creation": "2019-01-14T15:49:20.570Z", - "name": "Conference room SAC", - "short_name": "Conference room SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "51839c0e-324f-413b-8edf-510df2927fb7", - "fields": { - "str_id": "s1-bay", - "time_of_creation": "2018-06-24T19:50:18.582Z", - "name": "S1 Bay", - "short_name": "S1 Bay", - "description": "", - "parent": "431b487b-1db7-4cc0-ae63-af19ad96dca9", - "parent_relation": "Near", - "group_id": 1, - "pixel_x": 4490, - "pixel_y": 1760, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "51c16b38-18d3-4920-97fa-7c17ec7697ad", - "fields": { - "str_id": "zoom", - "time_of_creation": "2020-07-03T10:04:07.168Z", - "name": "Zoom ", - "short_name": "Zoom ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "51d75d87-16f4-481b-93e4-bf38a0207c2c", - "fields": { - "str_id": "a13", - "time_of_creation": "2018-06-24T19:50:19.046Z", - "name": "Bungalow A13 ", - "short_name": "A13", - "description": "A-Type Bungalow", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2536, - "pixel_y": 2374, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "523d7fb8-d910-4ca0-bf97-320f23e95943", - "fields": { - "str_id": "vanvihar", - "time_of_creation": "2018-06-24T19:50:18.141Z", - "name": "Guest House / Vanvihar", - "short_name": "Vanvihar", - "description": "Tel: +912225761200 / +912225768945", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 2881, - "pixel_y": 2106, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "523ff44f-9f1e-48c6-aa62-6f804ff1bb2d", - "fields": { - "str_id": "c11", - "time_of_creation": "2018-06-24T19:50:19.169Z", - "name": "Type C-11", - "short_name": "C11", - "description": "C-Type Quarters Flat nos. 67 - 72", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2832, - "pixel_y": 3131, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "527a69c6-ec29-4d28-b496-b6c66d5fb587", - "fields": { - "str_id": "la-la-land", - "time_of_creation": "2019-02-11T19:29:27.248Z", - "name": "La La Land", - "short_name": "La La Land", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "52a2ab10-829b-49b3-a352-9bc730e935b8", - "fields": { - "str_id": "kshitij-udyan", - "time_of_creation": "2018-06-24T19:50:18.238Z", - "name": "Kshitij Udyan", - "short_name": "Kshitij Udyan", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 9, - "pixel_x": 2971, - "pixel_y": 1744, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "52d7624e-4fc1-41f1-a497-6b53f64e504d", - "fields": { - "str_id": "amul-parlour", - "time_of_creation": "2018-06-24T19:50:19.494Z", - "name": "Amul Parlour", - "short_name": "Amul Parlour", - "description": "Desserts and drinks", - "parent": "803f4611-9e9c-4120-b236-78cfbcd3f4b2", - "parent_relation": "Outside", - "group_id": 5, - "pixel_x": 2114, - "pixel_y": 800, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "52eaea20-818f-4c28-9132-e85a96a9b8be", - "fields": { - "str_id": "all-stationary-shops", - "time_of_creation": "2018-09-02T17:46:50.040Z", - "name": "All stationary shops", - "short_name": "All stationary shops", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "536c4c4c-52b2-4b4e-b3ce-2c6d2c92d036", - "fields": { - "str_id": "btr-a--b", - "time_of_creation": "2018-06-24T19:50:19.139Z", - "name": "BTR Building - A & B", - "short_name": "BTR A & B", - "description": "A new Type B building is proposed here.", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2002, - "pixel_y": 3087, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "538d1fd9-a1c7-431c-a8b8-0215d2941d12", - "fields": { - "str_id": "room-350-2nd-floor-department-of-chemistry", - "time_of_creation": "2019-02-07T18:14:51.838Z", - "name": " Room 350, 2nd Floor, Department of Chemistry", - "short_name": " Room 350, 2nd Floor, Department of Chemistry", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "53e2d1e1-4865-4c3f-b550-49028c595c43", - "fields": { - "str_id": "drdo", - "time_of_creation": "2018-06-24T19:50:18.114Z", - "name": "Defence Research & Development Organization", - "short_name": "DRDO", - "description": "Flat nos. 101 - 404", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4125, - "pixel_y": 1048, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "541dd2be-2621-49b5-bdd8-3a0797e82b4f", - "fields": { - "str_id": "16-type1", - "time_of_creation": "2018-06-24T19:50:19.444Z", - "name": "Type1 - 16", - "short_name": "16-Type1", - "description": "Type 1 Quarters Flat nos. 181 - 192", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4713, - "pixel_y": 1252, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "54512d14-5fad-4831-8327-0ca9ad35a961", - "fields": { - "str_id": "na", - "time_of_creation": "2021-03-12T14:41:28.423Z", - "name": "N/A", - "short_name": "N/A", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "54992188-e27a-4d05-9697-b880fe1bfcd4", - "fields": { - "str_id": "ircc", - "time_of_creation": "2018-06-24T19:50:18.231Z", - "name": "Industrial Research & Consultancy Centre", - "short_name": "IRCC", - "description": "Tel: +912225767030, +912225767039 www.ircc.iitb.ac.in The Industrial Research and Consultancy Centre (IRCC) co-ordinates and facilitates all research and development activities at the Institute.", - "parent": "c3a14998-23cb-4cbe-a6fa-70accc7069a1", - "parent_relation": "Level 2", - "group_id": 1, - "pixel_x": 3505, - "pixel_y": 1867, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "54b1610b-17b6-4fdf-be41-a246ae3f9148", - "fields": { - "str_id": "tinkerers-lab", - "time_of_creation": "2018-09-18T15:45:57.918Z", - "name": "Tinkerers Lab", - "short_name": "Tinkerers Lab", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "54c353ce-1f9a-4a29-9719-46ee7249d3ed", - "fields": { - "str_id": "room-no-109-01st-floor-new-csecc-building", - "time_of_creation": "2019-02-07T12:31:48.148Z", - "name": "Room No. 109, 01st Floor, New CSE/CC Building ", - "short_name": "Room No. 109, 01st Floor, New CSE/CC Building ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "54ce35bf-c391-44ed-8085-fc090377bba4", - "fields": { - "str_id": "facebook-live-culturalsiitb", - "time_of_creation": "2021-04-14T12:23:49.298Z", - "name": "Facebook Live @Culturalsiitb", - "short_name": "Facebook Live @Culturalsiitb", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "551bedf6-5d7e-42eb-a50a-6653a69752a8", - "fields": { - "str_id": "httpsformsgle4rhqprh8vtttapt6a", - "time_of_creation": "2020-09-24T10:03:40.735Z", - "name": "https://forms.gle/4rHQPrH8VtttaPt6A", - "short_name": "https://forms.gle/4rHQPrH8VtttaPt6A", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "55d59037-db62-4294-b68f-af105b470d35", - "fields": { - "str_id": "old-ongc-lab", - "time_of_creation": "2018-06-24T19:50:18.559Z", - "name": "Old ONGC Lab", - "short_name": "Old ONGC Lab", - "description": "", - "parent": "d483545a-95ba-438d-a218-20a8ee2946a1", - "parent_relation": "Near", - "group_id": 12, - "pixel_x": 4275, - "pixel_y": 1555, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "55fa58e9-ce44-41a6-9fff-3107038f0b7d", - "fields": { - "str_id": "padmavati-devi-temple", - "time_of_creation": "2018-06-24T19:50:18.323Z", - "name": "Padmavati Devi Temple", - "short_name": "Padmavati Devi Temple", - "description": "The word Powai is thought to have possibly been derived from the word Poumw, a corrupted form of Pouma which means Padma in Sanskrit. This is due to the fact that the Padmavati Devi Temple, dedicated to Goddess Padmavati and situated on the bank of the Powai lake inside IIT Bombay, dates back to the 10th century AD as per the Archeological Survey of India. http://www.iitbdevitemple.org", - "parent": null, - "parent_relation": "", - "group_id": 9, - "pixel_x": 946, - "pixel_y": 2178, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "56142045-7395-41d4-a58c-8f34c54425d1", - "fields": { - "str_id": "cl-118-chemical-engineering-department", - "time_of_creation": "2019-02-13T04:30:17.499Z", - "name": "CL-118, Chemical Engineering DEPARTMENT", - "short_name": "CL-118, Chemical Engineering DEPARTMENT", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "5682fdde-a1ba-4200-87e1-1ffd5a56397f", - "fields": { - "str_id": "2b-4", - "time_of_creation": "2018-06-24T19:50:18.921Z", - "name": "Type 2B 4", - "short_name": "2B 4", - "description": "2B-Type Quarters, Flat nos 19 - 24", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 4284, - "pixel_y": 2462, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "56f2219c-2eb7-455b-83f0-19ad5a1f7bd0", - "fields": { - "str_id": "n2-bay", - "time_of_creation": "2018-06-24T19:50:18.544Z", - "name": "N2 Bay", - "short_name": "N2 Bay", - "description": "", - "parent": "34513a0d-1b20-4350-8d76-57c0883f10fe", - "parent_relation": "Near", - "group_id": 1, - "pixel_x": 4445, - "pixel_y": 1669, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "571b762e-b756-4def-a968-ee114f28964b", - "fields": { - "str_id": "n1-bay", - "time_of_creation": "2018-06-24T19:50:18.539Z", - "name": "N1 Bay", - "short_name": "N1 Bay", - "description": "Comes under Chemical Engineering Department +912225764211", - "parent": "34513a0d-1b20-4350-8d76-57c0883f10fe", - "parent_relation": "Near", - "group_id": 1, - "pixel_x": 4525, - "pixel_y": 1680, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "57b11e17-cb16-4cb3-b0bb-345a838e5902", - "fields": { - "str_id": "seminar-hall-second-floor-vmcc", - "time_of_creation": "2019-10-31T17:02:29.832Z", - "name": "Seminar Hall, Second Floor, VMCC", - "short_name": "Seminar Hall, Second Floor, VMCC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "57be98ca-7e19-47c7-a249-64140e246f2b", - "fields": { - "str_id": "mech", - "time_of_creation": "2018-06-24T19:50:18.279Z", - "name": "Mechanical Engineering Department", - "short_name": "Mech", - "description": "http://www.me.iitb.ac.in\r\nTel: +912225762545\r\nExt. 7500, 7501, 2576 7500, 2576 7501.\r\n\r\nThe department offers academic programs for B. Tech, Dual degree, M. Tech and Ph. D. Research areas include design enggineering, manufacturing enggineering, thermal and fluid enggineering", - "parent": null, - "parent_relation": null, - "group_id": 1, - "pixel_x": 4009, - "pixel_y": 1645, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "57edc27d-fd06-4fcf-afff-5f2c6bdbdd75", - "fields": { - "str_id": "h2-lounge", - "time_of_creation": "2018-10-25T05:32:47.047Z", - "name": "H2 Lounge", - "short_name": "H2 Lounge", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "57f10642-0ec7-44db-8fd1-6d02f48fb79b", - "fields": { - "str_id": "ic-1-som", - "time_of_creation": "2019-01-11T17:10:53.487Z", - "name": "IC-1 (SOM)", - "short_name": "IC-1 (SOM)", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "581e6771-9841-4ed5-92dd-9f0e8dc44044", - "fields": { - "str_id": "ic1--som", - "time_of_creation": "2018-10-05T07:48:31.954Z", - "name": "IC1 | SOM", - "short_name": "IC1 | SOM", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "58889e47-a539-4193-8a30-1c5d0bcfb492", - "fields": { - "str_id": "lecture-hall", - "time_of_creation": "2019-09-12T05:19:25.364Z", - "name": "Lecture Hall", - "short_name": "Lecture Hall", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "58b0643c-a2cb-48be-bf5a-a9166fce6c35", - "fields": { - "str_id": "httpscuttlyqipn0xt", - "time_of_creation": "2022-01-22T14:36:20.496Z", - "name": "https://cutt.ly/QIPn0Xt", - "short_name": "https://cutt.ly/QIPn0Xt", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "58bea0b3-733b-45bf-a87b-4785b8e0d9e1", - "fields": { - "str_id": "semt-lab", - "time_of_creation": "2018-06-24T19:50:18.593Z", - "name": "Structural Evaluation & Material Technologies Lab", - "short_name": "SEMT Lab", - "description": "Comes under Civil Engineering Department +912225764318", - "parent": "fa6f024a-87ae-4d06-903a-f77e05de7a27", - "parent_relation": "Near", - "group_id": 12, - "pixel_x": 4280, - "pixel_y": 1510, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "5923e800-1e00-4f06-bd32-19c92c719567", - "fields": { - "str_id": "13-h2", - "time_of_creation": "2018-06-24T19:50:19.316Z", - "name": "Type H2 - 13", - "short_name": "13-H2", - "description": "H2 Type Quarters Flat nos. 97 - 104", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 753, - "pixel_y": 2520, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "5943e508-829b-414b-a236-4526263e3ec5", - "fields": { - "str_id": "tinkerers-lab", - "time_of_creation": "2018-06-24T19:50:18.620Z", - "name": "Tinkerers Lab", - "short_name": "Tinkerers Lab", - "description": "", - "parent": "f5303dcd-b456-4147-a414-88a89815d826", - "parent_relation": null, - "group_id": 12, - "pixel_x": 4225, - "pixel_y": 1630, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "598d1ab6-cc6d-4409-8363-f0e9a1fc81c6", - "fields": { - "str_id": "h11", - "time_of_creation": "2018-06-24T19:50:18.168Z", - "name": "Hostel 11 Athena (Girls Hostel)", - "short_name": "H11", - "description": "Hostel security: +912225762611 Hall Manager: +912225762711", - "parent": null, - "parent_relation": "", - "group_id": 2, - "pixel_x": 2987, - "pixel_y": 1368, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "5a1dbfec-f31e-44a3-ab64-5a5ea49a09b3", - "fields": { - "str_id": "microsoft-teams", - "time_of_creation": "2020-12-14T12:11:21.247Z", - "name": "Microsoft teams", - "short_name": "Microsoft teams", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "5a25b8e7-2572-497f-adff-38e7f24acf1d", - "fields": { - "str_id": "23-h2", - "time_of_creation": "2018-06-24T19:50:19.353Z", - "name": "Type H2 - 24", - "short_name": "23-H2", - "description": "H2 Type Quarters Flat nos. 185 - 192", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 522, - "pixel_y": 2424, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "5a673ce7-a18e-4929-824d-d6244a6f797d", - "fields": { - "str_id": "wadhwani-research-centre-bb", - "time_of_creation": "2018-06-24T19:50:18.828Z", - "name": "WRCBB Wadhwani Research Centre in Biosciences and Bioengineering ", - "short_name": "Wadhwani Research Centre BB", - "description": "", - "parent": "91091770-c141-486d-bfce-08247cc7286c", - "parent_relation": "Inside", - "group_id": 1, - "pixel_x": 3934, - "pixel_y": 2241, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "5aadf3a8-5e66-4d7e-be91-92658e22b2d7", - "fields": { - "str_id": "a14", - "time_of_creation": "2018-06-24T19:50:19.049Z", - "name": "Bungalow A14 ", - "short_name": "A14", - "description": "A-Type Bungalow", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3950, - "pixel_y": 1273, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "5b3c851c-a1c6-4a19-807e-8323f846ec79", - "fields": { - "str_id": "22-type1", - "time_of_creation": "2018-06-24T19:50:19.468Z", - "name": "Type1 - 22", - "short_name": "22-Type1", - "description": "Type 1 Quarters Flat nos. 310 - 321 Hostel for married PhD students", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2565, - "pixel_y": 680, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "5c185f66-558b-486e-9e39-1ab1ff2dc1b6", - "fields": { - "str_id": "airmeet", - "time_of_creation": "2020-07-10T13:53:30.251Z", - "name": "Airmeet", - "short_name": "Airmeet", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "5c6dff34-18f7-46f4-881d-c62e34463537", - "fields": { - "str_id": "hydraulic-test", - "time_of_creation": "2018-06-24T19:50:18.616Z", - "name": "Thermal Hydraulic Test Facility", - "short_name": "Hydraulic Test", - "description": "Comes under Mechanical Engineering Department +912225762545 Ext. 7500, 7501, 2576 7500, 2576 7501.", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 4463, - "pixel_y": 1536, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "5c74e39e-5878-4b08-859a-6b7a97aac3de", - "fields": { - "str_id": "httpsmonashzoomusj88641311179pwdcehvs2izszfrbxngmhbev", - "time_of_creation": "2022-01-22T04:46:26.406Z", - "name": "https://monash.zoom.us/j/88641311179?pwd=cEhvS2IzSzFRbXNGMHBEV", - "short_name": "https://monash.zoom.us/j/88641311179?pwd=cEhvS2IzSzFRbXNGMHBEV", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "5c88a59d-b3aa-4928-94a8-20a9f52e4f71", - "fields": { - "str_id": "stationery-shops", - "time_of_creation": "2019-10-15T05:53:20.122Z", - "name": "Stationery Shops", - "short_name": "Stationery Shops", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "5cb0bd89-416d-4c8a-978c-5eb919ba143d", - "fields": { - "str_id": "kresit-canteen", - "time_of_creation": "2018-06-24T19:50:18.652Z", - "name": "KReSIT Canteen", - "short_name": "KReSIT Canteen", - "description": "From 10 to 8. Samosas run out by 5:30ish though!", - "parent": "f3fbfd2b-36a0-46f2-9cb1-0bad97e60c28", - "parent_relation": "Inside", - "group_id": 5, - "pixel_x": 3301, - "pixel_y": 2106, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "5ce808c0-1085-405c-bce3-c1830c72082d", - "fields": { - "str_id": "campus-school", - "time_of_creation": "2018-06-24T19:50:18.080Z", - "name": "Campus School", - "short_name": "Campus School", - "description": "Principal: MS.BHAGWAT A.S +912225768992 Campus School began as a primary school on 29 June 1976. V to X standard was added by 1986 with 100% results in X std in 1986, 1987 and 1988. The junior college classes FYJC or XI Std and SYJC or XII Std were started in science stream under Principal Chandra Rao in 1989. The Primary to JC complex has about 400 students on its roll, 35 teachers and 20 non-teaching staff. Admission to all classes is restricted to children of IIT employees with some seats made available to the children of NITIE and SAMEER employees.", - "parent": null, - "parent_relation": "", - "group_id": 7, - "pixel_x": 3331, - "pixel_y": 2865, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "5d7d2bba-e553-4733-9515-c991ff9e0f37", - "fields": { - "str_id": "gulmohar", - "time_of_creation": "2018-06-24T22:13:45.814Z", - "name": "Gulmohar Building", - "short_name": "Gulmohar", - "description": "", - "parent": null, - "parent_relation": null, - "group_id": 6, - "pixel_x": 2989, - "pixel_y": 2154, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "5e039e21-27e7-44c0-96e6-436ec09c004a", - "fields": { - "str_id": "orthocad-lab", - "time_of_creation": "2018-06-24T19:50:18.320Z", - "name": "OrthoCad Lab", - "short_name": "OrthoCad Lab", - "description": "The OrthoCAD Network Research Cell was established in 2007 to jump-start indigenous research and development activities in orthopaedic reconstruction systems. The OrthoCAD Network addresses a critical need for mega-prostheses to reconstruct massive gaps or loss of bone from osteo-sarcoma (cancer), congenital (birth) defects or trauma (accidents).", - "parent": null, - "parent_relation": "", - "group_id": 12, - "pixel_x": 4644, - "pixel_y": 1767, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "5e6c018d-6af7-467d-b178-38ea87828126", - "fields": { - "str_id": "chaayos", - "time_of_creation": "2023-04-28T12:58:10.938Z", - "name": "Chaayos Cafe", - "short_name": "Chaayos", - "description": "", - "parent": null, - "parent_relation": null, - "group_id": 2, - "pixel_x": 2821, - "pixel_y": 1050, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "5f4dccdd-dbd0-426c-a697-1d77ca5bca45", - "fields": { - "str_id": "seminar-room-2nd-floor-physics-department", - "time_of_creation": "2019-10-20T05:33:56.496Z", - "name": "Seminar Room, 2nd Floor, Physics Department", - "short_name": "Seminar Room, 2nd Floor, Physics Department", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "5f71fb4e-8138-4277-b7bb-dda501bd1df5", - "fields": { - "str_id": "17-type1", - "time_of_creation": "2018-06-24T19:50:19.448Z", - "name": "Type1 - 17", - "short_name": "17-Type1", - "description": "Type 1 Quarters Flat nos. 193 - 208", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4785, - "pixel_y": 1290, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "5fa0a841-42d5-42f4-ad6c-2a27052a00f7", - "fields": { - "str_id": "20-type1", - "time_of_creation": "2018-06-24T19:50:19.460Z", - "name": "Type1 - 20", - "short_name": "20-Type1", - "description": "Type 1 Quarters Flat nos. 260 - 289", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4328, - "pixel_y": 871, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "5ff031a1-04e7-455b-9cd4-205d1e6b85ff", - "fields": { - "str_id": "fc-kohli-auditorium", - "time_of_creation": "2019-01-03T15:46:12.367Z", - "name": "F.C Kohli Auditorium", - "short_name": "F.C Kohli Auditorium", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "5ff83777-7d46-43b3-aad2-584b99afa008", - "fields": { - "str_id": "gymkhana-ground-new-sac-entrance-only", - "time_of_creation": "2019-10-29T15:01:30.218Z", - "name": "Gymkhana Ground, New SAC Entrance only", - "short_name": "Gymkhana Ground, New SAC Entrance only", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "6027a7d7-f10a-4b8e-8d30-454331f2b1e9", - "fields": { - "str_id": "httpsecell-concordhubilocomcommunity", - "time_of_creation": "2020-08-26T20:37:37.828Z", - "name": "https://ecell-concord.hubilo.com/community", - "short_name": "https://ecell-concord.hubilo.com/community", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "605f62d2-0f3e-425f-beb2-87327cf53d96", - "fields": { - "str_id": "tulsi-c", - "time_of_creation": "2018-06-24T19:50:18.907Z", - "name": "Tulsi C", - "short_name": "Tulsi C", - "description": "PS Quarters", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4607, - "pixel_y": 1031, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "60af6853-3b1f-4cf4-bf84-f7752a95d615", - "fields": { - "str_id": "ms-teams", - "time_of_creation": "2020-09-30T13:26:51.801Z", - "name": "MS Teams", - "short_name": "MS Teams", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "60af899b-8ef7-4d23-9e00-9067a2542071", - "fields": { - "str_id": "new-yoga-room-old-sac", - "time_of_creation": "2018-08-07T07:38:28.503Z", - "name": "New Yoga Room, Old SAC", - "short_name": "New Yoga Room, Old SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "60d10900-67a0-4263-9a19-d3a04da4e8db", - "fields": { - "str_id": "zoom-meet", - "time_of_creation": "2020-07-03T12:53:38.411Z", - "name": "Zoom meet", - "short_name": "Zoom meet", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "60ef3a78-0cd0-467d-9343-ec8d5048adff", - "fields": { - "str_id": "enrgy-sys-lab", - "time_of_creation": "2018-06-24T19:50:18.475Z", - "name": "Energy Systems Lab", - "short_name": "Enrgy Sys Lab", - "description": "Comes under Energy Systems Engineering Department http://www.ese.iitb.ac.in +912225767890 The department offers academic programs in Dual degree (B Tech + M Tech), M Tech, M.Sc.-Ph.D and Ph.D. Research areas include Energy Efficiency and Conservation, Solar PV and Thermal, Battery and Storage Engineering, Hydrogen and Fuel Cells, Smart microgrids, Biomass and Bio-Fuels, Wind Energy, Nuclear", - "parent": "85c8b696-c6d6-40cc-bd20-e2fb4dd281c8", - "parent_relation": "Near", - "group_id": 12, - "pixel_x": 4230, - "pixel_y": 1435, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "611a3142-7f08-46aa-a0dc-3675fc9ead8a", - "fields": { - "str_id": "new-yoga-room", - "time_of_creation": "2018-08-13T20:50:23.106Z", - "name": "New Yoga Room", - "short_name": "New Yoga Room", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "612b6b84-0407-4f4e-9712-5684141f32ef", - "fields": { - "str_id": "frisbee-field", - "time_of_creation": "2019-02-21T23:18:13.112Z", - "name": "Frisbee field", - "short_name": "Frisbee field", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "61e53f4b-7b77-45f4-8cf4-ac1b90711071", - "fields": { - "str_id": "cisco-webex", - "time_of_creation": "2020-08-28T14:24:09.476Z", - "name": "Cisco Webex ", - "short_name": "Cisco Webex ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "62b1e1a7-54cf-43b1-bdab-d5615a8cb69c", - "fields": { - "str_id": "2b-6", - "time_of_creation": "2018-06-24T19:50:18.928Z", - "name": "Type 2B 6", - "short_name": "2B 6", - "description": "2B-Type Quarters, Flat nos 31 - 36", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 4243, - "pixel_y": 2391, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "62b79587-d11c-4034-9fba-79b4399b3deb", - "fields": { - "str_id": "2b-16", - "time_of_creation": "2018-06-24T19:50:18.972Z", - "name": "Type 2B 16", - "short_name": "2B 16", - "description": "2B-Type Quarters, Flat nos 91 - 96", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 908, - "pixel_y": 2798, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "62bddefc-0dec-4f93-9675-f67ce4adae32", - "fields": { - "str_id": "yoga-room-new-sac", - "time_of_creation": "2018-12-11T17:13:47.194Z", - "name": "Yoga Room, New SAC", - "short_name": "Yoga Room, New SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "62c16545-faab-4d36-bb7a-ab1259d6e2e9", - "fields": { - "str_id": "vmcc-auditorium", - "time_of_creation": "2018-10-26T05:21:47.087Z", - "name": "VMCC Auditorium ", - "short_name": "VMCC Auditorium ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "62d4a775-6b1d-47db-8a63-d382cd8b60d7", - "fields": { - "str_id": "cc109-1st-floor-new-cse-building", - "time_of_creation": "2022-06-15T19:29:25.364Z", - "name": "CC109 1st floor new CSE building", - "short_name": "CC109 1st floor new CSE building", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "62e7cc57-c904-45b2-a8a2-c17184e58b88", - "fields": { - "str_id": "c9", - "time_of_creation": "2018-06-24T19:50:19.161Z", - "name": "Type C-9", - "short_name": "C9", - "description": "C-Type Quarters Flat nos. 55 - 60", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2904, - "pixel_y": 2910, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "634713f0-0767-4ae7-a132-8cdb090e75ff", - "fields": { - "str_id": "roots-room-old-sac", - "time_of_creation": "2021-12-28T05:56:56.228Z", - "name": "Roots Room, Old SAC", - "short_name": "Roots Room, Old SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "634d937d-ceaa-40b2-a307-74978e64e7c9", - "fields": { - "str_id": "lc102", - "time_of_creation": "2018-08-30T13:46:57.825Z", - "name": "LC102", - "short_name": "LC102", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "63cfa355-26a3-4c3c-a223-b1be8024b508", - "fields": { - "str_id": "sustain--ts", - "time_of_creation": "2020-10-31T13:31:57.916Z", - "name": "Sustain- TS", - "short_name": "Sustain- TS", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "63d07e15-51a3-4f24-9eaa-5d526e635b64", - "fields": { - "str_id": "staff-hostel", - "time_of_creation": "2018-06-24T19:50:18.374Z", - "name": "Staff Hostel", - "short_name": "Staff Hostel", - "description": "Tel: +912225761113", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2872, - "pixel_y": 1472, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "644b277a-2ab2-4fa3-938b-d5139f6306ef", - "fields": { - "str_id": "s-pool-new", - "time_of_creation": "2018-06-24T19:50:18.381Z", - "name": "Swimming Pool (new)", - "short_name": "S. Pool new", - "description": "Tel: +912225762755", - "parent": null, - "parent_relation": "", - "group_id": 8, - "pixel_x": 3558, - "pixel_y": 1141, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "649d84d2-3fe1-4055-ad9d-0d5520c65afc", - "fields": { - "str_id": "ug-lab-1st-years", - "time_of_creation": "2018-06-24T19:50:18.631Z", - "name": "UG Lab (1st years)", - "short_name": "UG Lab (1st years)", - "description": "", - "parent": "a2fb1bdc-3df2-4e88-af3a-2a5a8ccc6236", - "parent_relation": null, - "group_id": 12, - "pixel_x": 4585, - "pixel_y": 1540, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "64bc8b79-7ff1-4c77-97b3-f9c158b63b4b", - "fields": { - "str_id": "staff-cant", - "time_of_creation": "2018-06-24T19:50:18.367Z", - "name": "Staff Canteen", - "short_name": "Staff Cant.", - "description": "Tel: +912225768952", - "parent": null, - "parent_relation": "", - "group_id": 5, - "pixel_x": 3622, - "pixel_y": 1547, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "64e4e7f2-4b09-447f-8bc6-c35877577e36", - "fields": { - "str_id": "wadhwai-electronics-lab-ee-department", - "time_of_creation": "2020-02-07T13:59:08.313Z", - "name": "Wadhwai Electronics Lab, EE Department", - "short_name": "Wadhwai Electronics Lab, EE Department", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "654b8054-8887-48a7-890b-46a3a3bd71e6", - "fields": { - "str_id": "online-event", - "time_of_creation": "2020-10-13T11:37:51.216Z", - "name": "Online Event", - "short_name": "Online Event", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "655401fd-ea1b-4dcb-b005-57c56d9e6005", - "fields": { - "str_id": "hostels", - "time_of_creation": "2022-10-12T10:53:37.040Z", - "name": "Hostels", - "short_name": "Hostels", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "655900f8-2907-40be-a43d-44964e54a024", - "fields": { - "str_id": "b8", - "time_of_creation": "2018-06-24T19:50:19.097Z", - "name": "Type B-8", - "short_name": "B8", - "description": "B-Type Quarters Flat nos. 31 - 34", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2600, - "pixel_y": 2867, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "656c89dd-4b0b-4588-8221-482bdd9066cd", - "fields": { - "str_id": "2b-8", - "time_of_creation": "2018-06-24T19:50:18.936Z", - "name": "Type 2B 8", - "short_name": "2B 8", - "description": "2B-Type Quarters, Flat nos 43 - 48", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 4348, - "pixel_y": 2247, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "657968c8-d6c2-427f-8d74-e2e6cd7cbdf8", - "fields": { - "str_id": "room-no-109-new-csecc-building", - "time_of_creation": "2018-10-18T00:19:20.495Z", - "name": "Room No. 109, New CSE/CC Building", - "short_name": "Room No. 109, New CSE/CC Building", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "65f64c6e-98f0-457c-b951-98e04087a51a", - "fields": { - "str_id": "zoom", - "time_of_creation": "2020-08-01T23:41:16.773Z", - "name": "ZOOM", - "short_name": "ZOOM", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "6621f825-6486-4e1b-b04c-6778da0f2ef6", - "fields": { - "str_id": "15-h2", - "time_of_creation": "2018-06-24T19:50:19.323Z", - "name": "Type H2 - 15", - "short_name": "15-H2", - "description": "H2 Type Quarters Flat nos. 113 - 120", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 695, - "pixel_y": 2461, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "669f1e7d-a04b-47db-a478-9b4aacb402e2", - "fields": { - "str_id": "mw-2", - "time_of_creation": "2018-06-24T19:50:19.392Z", - "name": "MW Quarters 2", - "short_name": "MW 2", - "description": "MW Quarters 33 - 68", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4124, - "pixel_y": 780, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "66c6b870-1606-4572-99be-c75994061e1b", - "fields": { - "str_id": "cs-101---lc201-bb101---lc202", - "time_of_creation": "2018-11-09T06:58:14.536Z", - "name": "Cs 101 - LC201. BB101 - LC202", - "short_name": "Cs 101 - LC201. BB101 - LC202", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "677ea31f-11b9-47ae-95f1-94752238a82d", - "fields": { - "str_id": "fb-live", - "time_of_creation": "2021-03-20T08:12:37.662Z", - "name": "FB Live", - "short_name": "FB Live", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "67c5ce8a-3564-4e62-9480-b9e32bbfe380", - "fields": { - "str_id": "bio-mech", - "time_of_creation": "2018-06-24T19:50:19.535Z", - "name": "Proposed Bio Mechanical Department", - "short_name": "Bio Mech", - "description": "", - "parent": "e6eb8827-5107-4536-ab97-d7e367f3955f", - "parent_relation": "inside", - "group_id": 1, - "pixel_x": 4451, - "pixel_y": 2173, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "6846d57d-d3a5-40e9-9408-7b3ee5ec5391", - "fields": { - "str_id": "swc", - "time_of_creation": "2020-03-12T12:50:28.478Z", - "name": "Student Wellness Center", - "short_name": "SWC", - "description": "", - "parent": null, - "parent_relation": null, - "group_id": 1, - "pixel_x": 3628, - "pixel_y": 1640, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "6886b357-c1c5-4688-b72b-8058894229e0", - "fields": { - "str_id": "abhyuday-instagram-page", - "time_of_creation": "2020-07-24T06:02:58.602Z", - "name": "Abhyuday Instagram page", - "short_name": "Abhyuday Instagram page", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "6893ed2e-0923-4ec9-97aa-3e158c0c96a4", - "fields": { - "str_id": "lt-205", - "time_of_creation": "2018-06-24T19:50:18.738Z", - "name": "LT 205", - "short_name": "LT 205", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Second floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "68a04d23-523f-473c-89ef-c6dd3263d4fd", - "fields": { - "str_id": "idp-edu-tech", - "time_of_creation": "2018-06-24T19:50:18.839Z", - "name": "Inter-disciplinary Programme in Educational Technology", - "short_name": "IDP Edu Tech", - "description": "http://www.et.iitb.ac.in Main Office: Mathematics Building, Near Central Library. Tel:+912225764820 Fax: +912225764812 Ph.D. is offered in this programme. Research areas include Pan-Domain Cognitive Abilities, Teacher Use of Educational Technology Tools and Strategies, Educational Technology Tools.", - "parent": "8fcf8049-5a13-4e60-b5b1-993a4a554526", - "parent_relation": "Inside", - "group_id": 1, - "pixel_x": 3928, - "pixel_y": 1496, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "6948d3b5-42dd-4971-afa3-4b6d92dc8e2c", - "fields": { - "str_id": "6-h2", - "time_of_creation": "2018-06-24T19:50:19.289Z", - "name": "Type H2 - 6", - "short_name": "6-H2", - "description": "H2 Type Quarters Flat nos. 41 - 48", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 1101, - "pixel_y": 2774, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "698a338e-d973-4b80-87f8-2bb04f5909f4", - "fields": { - "str_id": "8--h1", - "time_of_creation": "2018-06-24T19:50:19.240Z", - "name": "Type H1 - 8", - "short_name": "8- H1", - "description": "H1 Type Quarters Flat nos. 85 - 96", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4442, - "pixel_y": 1239, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "69c64c8b-a03a-4cbb-a6d9-dafdca17aa0d", - "fields": { - "str_id": "youtube", - "time_of_creation": "2020-10-29T13:40:36.365Z", - "name": "YouTube", - "short_name": "YouTube", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "69cf5c42-0800-4bee-a0b9-3a943392c047", - "fields": { - "str_id": "lt-pcsa-iit-bombay", - "time_of_creation": "2019-10-16T17:00:21.019Z", - "name": "LT PCSA IIT Bombay", - "short_name": "LT PCSA IIT Bombay", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "69cf91ae-9594-4e4c-8d99-dbd69b20db29", - "fields": { - "str_id": "theatre-room", - "time_of_creation": "2019-08-04T09:54:20.767Z", - "name": "Theatre Room", - "short_name": "Theatre Room", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "6a206606-0059-4750-8391-ac207ec30af3", - "fields": { - "str_id": "c15", - "time_of_creation": "2018-06-24T19:50:19.184Z", - "name": "Type C-15", - "short_name": "C15", - "description": "C-Type Quarters Flat nos. 91 - 96", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3360, - "pixel_y": 3033, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "6a6966e9-4d2d-4449-ad1e-d945c690c5f6", - "fields": { - "str_id": "yoga-room-3rd-floor-new-sac", - "time_of_creation": "2019-11-02T07:01:51.472Z", - "name": "Yoga room, 3rd Floor, New SAC", - "short_name": "Yoga room, 3rd Floor, New SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "6b24d130-92af-45b5-8f99-bc94081571a3", - "fields": { - "str_id": "mach-lab", - "time_of_creation": "2018-06-24T19:50:18.525Z", - "name": "Machine Lab", - "short_name": "Mach. Lab", - "description": "Comes under Electrical Engineering Department +912225764422", - "parent": "56f2219c-2eb7-455b-83f0-19ad5a1f7bd0", - "parent_relation": "Near", - "group_id": 12, - "pixel_x": 1445, - "pixel_y": 1669, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "6b7f20f2-b5ba-4912-af83-0ea7a788ef58", - "fields": { - "str_id": "a2", - "time_of_creation": "2018-06-24T19:50:19.005Z", - "name": "Bungalow A2 ", - "short_name": "A2", - "description": "A-Type Bungalow", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2491, - "pixel_y": 2581, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "6ba7c4d5-680e-40a5-87c6-26cde1de7ce3", - "fields": { - "str_id": "hostel-5-to-lake-side", - "time_of_creation": "2019-09-08T10:57:10.820Z", - "name": "Hostel 5 to Lake side", - "short_name": "Hostel 5 to Lake side", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "6ce8ce78-9db0-4c0e-bc22-29fd3d8e087b", - "fields": { - "str_id": "b9", - "time_of_creation": "2018-06-24T19:50:19.100Z", - "name": "Type B-9", - "short_name": "B9", - "description": "B-Type Quarters Flat nos. 35 - 38", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2653, - "pixel_y": 2748, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "6d579c21-e2e5-4503-9831-bb4d3815a295", - "fields": { - "str_id": "lecture-hall-no-21-vmcc", - "time_of_creation": "2019-08-03T19:25:15.514Z", - "name": "Lecture Hall no. 21, VMCC", - "short_name": "Lecture Hall no. 21, VMCC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "6d68ad04-9838-4561-9f2d-1e1069851ea2", - "fields": { - "str_id": "httpsmeetgooglecomfcr-wiue-ejh", - "time_of_creation": "2020-06-25T10:11:53.469Z", - "name": "https://meet.google.com/fcr-wiue-ejh", - "short_name": "https://meet.google.com/fcr-wiue-ejh", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "6e6b7ed1-a638-4137-bc90-af40a625d127", - "fields": { - "str_id": "som-well", - "time_of_creation": "2018-08-08T14:54:28.674Z", - "name": "SOM Well", - "short_name": "SOM Well", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "6f28f861-6d47-4847-b378-8c0673760b7a", - "fields": { - "str_id": "boat-house", - "time_of_creation": "2018-06-24T19:50:18.072Z", - "name": "Boat House", - "short_name": "Boat House", - "description": "Timings: 6 am to 6 pm", - "parent": null, - "parent_relation": null, - "group_id": 9, - "pixel_x": 1960, - "pixel_y": 1757, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "6fc18c7b-70da-4640-b71f-bc461a41eb3d", - "fields": { - "str_id": "24-h2", - "time_of_creation": "2018-06-24T19:50:19.357Z", - "name": "Type H2 - 25", - "short_name": "24-H2", - "description": "H2 Type Quarters Flat nos. 193 - 200", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 568, - "pixel_y": 2377, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "7070c6ed-cef8-42bc-9c66-7c67c891c79f", - "fields": { - "str_id": "all-hostel-stationery-shops-or-mess", - "time_of_creation": "2019-02-16T14:10:35.973Z", - "name": "All hostel stationery shops or mess", - "short_name": "All hostel stationery shops or mess", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "709b1b78-92ec-486b-b2cc-a69c59b3fff7", - "fields": { - "str_id": "2-h2", - "time_of_creation": "2018-06-24T19:50:19.275Z", - "name": "Type H2 - 2", - "short_name": "2-H2", - "description": "H2 Type Quarters Flat nos. 9 - 16", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 1344, - "pixel_y": 2832, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "7103ffb2-3c7f-4bf0-b49c-bc1302d1246f", - "fields": { - "str_id": "tba", - "time_of_creation": "2018-10-04T10:10:26.266Z", - "name": "TBA", - "short_name": "TBA", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "71f57e95-b13a-45ce-8189-ce8e4cb37249", - "fields": { - "str_id": "room-no-109-new-csecc-building", - "time_of_creation": "2018-10-18T00:31:13.784Z", - "name": "Room no. 109, New CSE/CC Building", - "short_name": "Room no. 109, New CSE/CC Building", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "720ea241-9446-4545-9c14-6978009dad05", - "fields": { - "str_id": "instagram-live", - "time_of_creation": "2020-07-12T07:52:49.096Z", - "name": "Instagram Live", - "short_name": "Instagram Live", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "731f8958-3d76-4b29-9ad4-7d5cbf0b4035", - "fields": { - "str_id": "lh", - "time_of_creation": "2020-01-11T09:26:10.316Z", - "name": "LH", - "short_name": "LH", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "732096da-1360-4653-8b26-bc7f9824f9c9", - "fields": { - "str_id": "lt-202", - "time_of_creation": "2018-06-24T19:50:18.727Z", - "name": "LT 202", - "short_name": "LT 202", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Second floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "73565672-4da0-4731-a217-fece8c5b03c3", - "fields": { - "str_id": "c16", - "time_of_creation": "2018-06-24T19:50:19.188Z", - "name": "Type C-16", - "short_name": "C16", - "description": "C-Type Quarters Flat nos. 97 - 102", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3162, - "pixel_y": 2991, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "73744250-30b9-4b64-9221-12ccfefe635f", - "fields": { - "str_id": "b17", - "time_of_creation": "2018-06-24T19:50:19.130Z", - "name": "Type B-17", - "short_name": "B17", - "description": "B-Type Quarters Flat nos. 67 - 72", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3040, - "pixel_y": 2461, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "74c9dcd4-d35e-410d-bba1-b28937480d5c", - "fields": { - "str_id": "lt-105", - "time_of_creation": "2018-06-24T19:50:18.716Z", - "name": "LT 105", - "short_name": "LT 105", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "First floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "74d42757-f194-4b61-b6bd-12c8c7a83152", - "fields": { - "str_id": "acre", - "time_of_creation": "2018-06-24T19:50:18.032Z", - "name": "Advanced Centre for Research in Electronics", - "short_name": "ACRE", - "description": "", - "parent": "c186690e-6970-49a3-b944-d73aae2cb6bd", - "parent_relation": "Inside", - "group_id": 1, - "pixel_x": 4081, - "pixel_y": 1344, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "74d6ce65-132e-48c7-8845-120e9b814c06", - "fields": { - "str_id": "steam-power-lab", - "time_of_creation": "2018-06-24T19:50:18.605Z", - "name": "Steam Power Lab", - "short_name": "Steam Power Lab", - "description": "Comes under Mechanical Engineering Department +912225764584", - "parent": "bba75c4c-0ad7-4d4b-bcdd-a3d1c9d1ea3e", - "parent_relation": "", - "group_id": 12, - "pixel_x": 4376, - "pixel_y": 1526, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "75dac40d-7456-4a65-9cc4-de46a423c0f1", - "fields": { - "str_id": "msteams", - "time_of_creation": "2021-08-27T13:54:53.414Z", - "name": "MSTeams", - "short_name": "MSTeams", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "760fcf99-9e17-4ca1-a180-d7bc53cb0fef", - "fields": { - "str_id": "18-h2", - "time_of_creation": "2018-06-24T19:50:19.334Z", - "name": "Type H2 - 18", - "short_name": "18-H2", - "description": "H2 Type Quarters Flat nos. 137 - 144", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4451, - "pixel_y": 1320, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "7615dcab-ff81-45b9-92f5-499f2092f91e", - "fields": { - "str_id": "a3", - "time_of_creation": "2018-06-24T19:50:19.008Z", - "name": "Bungalow A3 ", - "short_name": "A3", - "description": "A-Type Bungalow", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2415, - "pixel_y": 2682, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "76289056-7c8d-4ede-a3e5-0a8d3157c9dd", - "fields": { - "str_id": "la-foyer", - "time_of_creation": "2019-07-27T15:30:57.924Z", - "name": "LA Foyer", - "short_name": "LA Foyer", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "7652f65e-fa81-475e-a838-456d675763b1", - "fields": { - "str_id": "csre-c", - "time_of_creation": "2018-06-24T19:50:19.482Z", - "name": "CSRE C", - "short_name": "CSRE C", - "description": "CSRE Quarters D1, D2, D3, D4, D5, D6, D7, D8, D9, D10, D11, D12", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4270, - "pixel_y": 1188, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "76b6943b-ad8c-4377-aeb2-8b7a040b1ae2", - "fields": { - "str_id": "lc-302", - "time_of_creation": "2018-06-24T19:50:18.796Z", - "name": "LC 302", - "short_name": "LC 302", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Third floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "77607fc9-3f4d-4702-b412-2486f634d434", - "fields": { - "str_id": "bio-diesel-lab", - "time_of_creation": "2018-06-24T19:50:18.065Z", - "name": "Bio-diesel Lab", - "short_name": "Bio-diesel Lab", - "description": "www.che.iitb.ac.in/chea/biosynth/be-a-part.phpcontact@biosynthiitb.orgProject Biosynth is an initiative by the students of the Department of Chemical Engineering, IIT Bombay to install a Biodiesel plant. This student-managed initiative was started in 2008. The R & D activities at the plant include:the adaptation of the standard biodiesel production process to the available waste vegetable oil, the quality control for the biodiesel produced, allied issues pertaining to design and planning and research projects.", - "parent": "f5303dcd-b456-4147-a414-88a89815d826", - "parent_relation": "Backside", - "group_id": 12, - "pixel_x": 4220, - "pixel_y": 1558, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "78556ec8-306d-4203-9710-61fe662a7bcc", - "fields": { - "str_id": "football-field-new-sac", - "time_of_creation": "2019-04-04T17:50:26.938Z", - "name": "Football Field, New SAC", - "short_name": "Football Field, New SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "788f52ea-e769-4ba7-aa63-9d995bf7d428", - "fields": { - "str_id": "idc-cant", - "time_of_creation": "2018-06-24T19:50:18.656Z", - "name": "IDC Canteen", - "short_name": "IDC Cant.", - "description": "Santosh bhaiya's Canteen +918652423193 9am to 5:30 pm, weekdays only Menu: Tea, Coffee, Upma, Poha, Idli Chutney, Meduwada, Samosa, manchurian roll, paneer roll, chicken roll, Vada Paav, biscuits, Maggi, Tropicana, cold drinks", - "parent": "d467330f-a3a7-484b-8eca-b23815a0a3a7", - "parent_relation": "Inside", - "group_id": 5, - "pixel_x": 4207, - "pixel_y": 1732, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "795a7316-4330-4623-8766-fec23baf7c5c", - "fields": { - "str_id": "webex-meet", - "time_of_creation": "2020-10-22T03:19:03.645Z", - "name": "Webex Meet", - "short_name": "Webex Meet", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "7965606a-46f6-4c41-8830-366da25a5dfe", - "fields": { - "str_id": "fc-kohli-auditorium-kresit-building", - "time_of_creation": "2019-06-05T06:51:16.164Z", - "name": "FC Kohli Auditorium, KResit Building", - "short_name": "FC Kohli Auditorium, KResit Building", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "7991b800-8c8b-426c-9cee-928c896df843", - "fields": { - "str_id": "3-h1", - "time_of_creation": "2018-06-24T19:50:19.221Z", - "name": "Type H1 - 3", - "short_name": "3-H1", - "description": "H1 Type Quarters Flat nos. 25 - 36", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 867, - "pixel_y": 2575, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "799683c1-4f68-46d1-9465-05c3cac77a49", - "fields": { - "str_id": "bb-h1", - "time_of_creation": "2018-06-24T19:50:19.267Z", - "name": "Type H1 - BB", - "short_name": "BB-H1", - "description": "H1 BB Type Quarters Flat nos. 1 - 26", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 921, - "pixel_y": 2122, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "79c489b9-cb9a-4f14-b9aa-700de5f52705", - "fields": { - "str_id": "s3-bay", - "time_of_creation": "2018-06-24T19:50:18.590Z", - "name": "S3 Bay", - "short_name": "S3 Bay", - "description": "", - "parent": "431b487b-1db7-4cc0-ae63-af19ad96dca9", - "parent_relation": "Near", - "group_id": 1, - "pixel_x": 4325, - "pixel_y": 1720, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "79f29d0c-f8f0-4f24-984d-0fc5506267e2", - "fields": { - "str_id": "room-201-idc", - "time_of_creation": "2020-01-15T13:34:11.580Z", - "name": "Room 201, IDC", - "short_name": "Room 201, IDC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "7aa2ce2d-888c-4891-84c1-449698f044b4", - "fields": { - "str_id": "gulmohar-cafetaria", - "time_of_creation": "2018-06-24T22:16:29.695Z", - "name": "Gulmohar Garden Cafetaria", - "short_name": "Gulmohar Cafetaria", - "description": "", - "parent": "5d7d2bba-e553-4733-9515-c991ff9e0f37", - "parent_relation": "Outside", - "group_id": 5, - "pixel_x": 3040, - "pixel_y": 2130, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "7ac88c8b-84fa-415a-9bad-fa930879e314", - "fields": { - "str_id": "2b-14", - "time_of_creation": "2018-06-24T19:50:18.959Z", - "name": "Type 2B 14", - "short_name": "2B 14", - "description": "2B-Type Quarters, Flat nos 79 - 84", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 1144, - "pixel_y": 2866, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "7bf5e2c3-e013-4e6c-b890-3fa85c696d8b", - "fields": { - "str_id": "11-h2", - "time_of_creation": "2018-06-24T19:50:19.308Z", - "name": "Type H2 - 11", - "short_name": "11-H2", - "description": "H2 Type Quarters Flat nos. 81 - 88", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 1049, - "pixel_y": 2666, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "7c041ab0-69f6-4ac4-971e-99e884de3f35", - "fields": { - "str_id": "register-asap", - "time_of_creation": "2020-09-03T09:43:36.196Z", - "name": "Register ASAP!", - "short_name": "Register ASAP!", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "7c20f22f-112e-4080-a765-fe7ddffcc952", - "fields": { - "str_id": "ic-1--som", - "time_of_creation": "2018-10-05T07:44:58.060Z", - "name": "IC 1 | SOM", - "short_name": "IC 1 | SOM", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "7cc15811-3c3e-455a-8c83-c312586cdcfe", - "fields": { - "str_id": "corro-lab-1", - "time_of_creation": "2018-06-24T19:50:18.859Z", - "name": "Corrosion Lab 1", - "short_name": "Corro Lab 1", - "description": "Tel: +912225764618", - "parent": "aa4fa9f4-40fa-4d99-bba8-bd985d11f67e", - "parent_relation": "Inside", - "group_id": 12, - "pixel_x": 3631, - "pixel_y": 2044, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "7cc9bc0c-764c-4b98-a670-87372c859849", - "fields": { - "str_id": "yoga-room-sac", - "time_of_creation": "2018-08-01T07:57:39.680Z", - "name": "Yoga Room, SAC", - "short_name": "Yoga Room, SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "7cdfee1f-3561-4ef1-af10-2300f07b672e", - "fields": { - "str_id": "physics", - "time_of_creation": "2018-06-24T19:50:18.331Z", - "name": "Physics Department", - "short_name": "Physics", - "description": "The department offers academic programs for B.Tech Engineering Physics (through JEE), Dual degree B.Tech + M.Tech in Engineering Physics with specialisation in Nanoscience (through JEE), MSc Physics 2 Years programme (through JAM), Dual degree programme of MSc and PhD in physics (through JAM). Research areas include Condensed Matter Physics, Photonics and Optics, Nuclear Physics, High Energy Physics, Statistical Physics", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 3479, - "pixel_y": 2247, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "7dbd1ceb-802b-4763-92c9-9a5c93b08faf", - "fields": { - "str_id": "20-h2", - "time_of_creation": "2018-06-24T19:50:19.341Z", - "name": "Type H2 - 20", - "short_name": "20-H2", - "description": "H2 Type Quarters Flat nos. 153 - 160", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4307, - "pixel_y": 1320, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "8010e8d1-8155-4f89-9b4e-a74c3c53c734", - "fields": { - "str_id": "typea", - "time_of_creation": "2018-06-24T19:50:19.557Z", - "name": "Proposed TypeA Building", - "short_name": "TypeA", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 1942, - "pixel_y": 2646, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "803f4611-9e9c-4120-b236-78cfbcd3f4b2", - "fields": { - "str_id": "h14", - "time_of_creation": "2018-06-24T19:50:18.179Z", - "name": "Hostel 14 Silicon Ship", - "short_name": "H14", - "description": "Hostel security: +912225762614 Hall Manager: 022-25762714 G. Sec: Mayuresh Pant +919730694513", - "parent": null, - "parent_relation": null, - "group_id": 2, - "pixel_x": 2114, - "pixel_y": 800, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "806a19fe-db5d-4c3c-9ccf-dc5b3a34db8e", - "fields": { - "str_id": "httpszoomusj97679784047pwdztrpvvbmnlzwk1zlbne4as82dk5lqt09", - "time_of_creation": "2020-07-09T04:17:35.520Z", - "name": "https://zoom.us/j/97679784047?pwd=ZTRpVVBmNlZwK1ZLbnE4aS82dk5LQT09", - "short_name": "https://zoom.us/j/97679784047?pwd=ZTRpVVBmNlZwK1ZLbnE4aS82dk5LQT09", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "80ccb7f2-435f-4236-a2fa-a4639f35037f", - "fields": { - "str_id": "google-meets", - "time_of_creation": "2021-01-14T10:48:53.282Z", - "name": "Google Meets ", - "short_name": "Google Meets ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "816d66e3-b4a8-4c4b-acec-642790175b78", - "fields": { - "str_id": "official-fb-page-iitbpgsports", - "time_of_creation": "2020-05-19T03:24:38.936Z", - "name": "Official fb page @iitbpgsports", - "short_name": "Official fb page @iitbpgsports", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "81979aec-598d-408e-9042-606a50432ee7", - "fields": { - "str_id": "press", - "time_of_creation": "2018-06-24T19:50:18.342Z", - "name": "Printing Press", - "short_name": "Press", - "description": "Tel: +912225768961", - "parent": "dca613da-2467-4e9f-b238-601a122df5dd", - "parent_relation": "Inside", - "group_id": 9, - "pixel_x": 4326, - "pixel_y": 1896, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "81fa5c67-9ba1-4335-91ab-abf1c88166c8", - "fields": { - "str_id": "homi-bhabha-auditorium-colaba", - "time_of_creation": "2018-10-13T06:20:57.926Z", - "name": "Homi Bhabha Auditorium, Colaba", - "short_name": "Homi Bhabha Auditorium, Colaba", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "8207f41c-d619-49c5-b7e7-43a455155c9e", - "fields": { - "str_id": "lt-304", - "time_of_creation": "2018-06-24T19:50:18.757Z", - "name": "LT 304", - "short_name": "LT 304", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Third floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "8256a888-0a56-4891-9250-cb20cd08a93a", - "fields": { - "str_id": "hostel-3-lounge", - "time_of_creation": "2018-08-16T18:44:25.700Z", - "name": "Hostel 3 Lounge", - "short_name": "Hostel 3 Lounge", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "82a023d6-147d-45cf-b7a5-e60621172733", - "fields": { - "str_id": "vmcc-hall-22", - "time_of_creation": "2019-09-03T13:09:21.570Z", - "name": "VMCC Hall 22", - "short_name": "VMCC Hall 22", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "82a36e07-1644-42be-878d-43357312b332", - "fields": { - "str_id": "a18", - "time_of_creation": "2018-06-24T19:50:19.064Z", - "name": "Bungalow A18 ", - "short_name": "A18", - "description": "A-Type Bungalow", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4220, - "pixel_y": 1142, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "82e7e32c-66ee-465c-a197-98790d7213dc", - "fields": { - "str_id": "seminar-hall", - "time_of_creation": "2018-06-24T19:50:18.352Z", - "name": "Seminar Hall", - "short_name": "Seminar Hall", - "description": "Tel: +912225764912, for booking +912225764420", - "parent": null, - "parent_relation": "", - "group_id": 4, - "pixel_x": 3792, - "pixel_y": 2025, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "8325f07f-f283-4164-be1a-7d9d7bca43b6", - "fields": { - "str_id": "2b-12", - "time_of_creation": "2018-06-24T19:50:18.947Z", - "name": "Type 2B 12", - "short_name": "2B 12", - "description": "2B-Type Quarters, Flat nos 67 - 72", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 701, - "pixel_y": 2615, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "834a689d-12f2-4e3f-8880-619766dd2446", - "fields": { - "str_id": "h16-mess", - "time_of_creation": "2018-07-26T18:30:38.468Z", - "name": "Hostel 16 Mess", - "short_name": "H16 Mess", - "description": "", - "parent": "0e79535d-f1a6-478b-9799-663d0dd54d9a", - "parent_relation": "Ground Floor", - "group_id": 8, - "pixel_x": 0, - "pixel_y": 0, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "8486a8f3-a25e-4b7e-acdf-8d7931302fad", - "fields": { - "str_id": "httpsbitly3k3tjjp", - "time_of_creation": "2020-11-07T11:53:59.282Z", - "name": "https://bit.ly/3k3TJjP", - "short_name": "https://bit.ly/3k3TJjP", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "8516ff20-92c5-41bb-815c-bf172c5c3dd6", - "fields": { - "str_id": "cc", - "time_of_creation": "2018-06-24T19:50:18.301Z", - "name": "Computer Centre", - "short_name": "CC", - "description": "http://www.cse.iitb.ac.in\r\nTel: +912225767901/02\r\n\r\nThe department offers academic programs for B. Tech, Dual degree (B Tech + M Tech), M Tech, Dual Degree PG (M. Tech + Ph. D) and Ph. D. Research areas include algorithms, programming languages and Compilers, database and information systems, artificial intelligence and natural language processing, software engineering, formal methods, distributed systems, computer networks, data mining, computer graphics, computer vision and image understanding, real-time and embedded systems, formal languages and bio-inspired computing", - "parent": null, - "parent_relation": null, - "group_id": 1, - "pixel_x": 3422, - "pixel_y": 1986, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "8537fb15-818c-4d5f-b8bf-3dba012e8410", - "fields": { - "str_id": "seminar-hall-3-first-floor-vmcc", - "time_of_creation": "2019-10-10T14:21:36.454Z", - "name": "Seminar Hall 3, first floor, VMCC", - "short_name": "Seminar Hall 3, first floor, VMCC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "85c8b696-c6d6-40cc-bd20-e2fb4dd281c8", - "fields": { - "str_id": "geotech-lab", - "time_of_creation": "2018-06-24T19:50:18.485Z", - "name": "Geotechnical Engg. Lab", - "short_name": "GeoTech Lab", - "description": "Comes under Civil Engineering Department +912225764320", - "parent": null, - "parent_relation": "", - "group_id": 12, - "pixel_x": 4280, - "pixel_y": 1425, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "85d2f82c-3002-4c68-9c5f-0d6753b65e38", - "fields": { - "str_id": "cese", - "time_of_creation": "2018-06-24T19:50:18.087Z", - "name": "Centre for Environmental Science and Engineering", - "short_name": "CESE", - "description": "http://www.cese.iitb.ac.in\r\nTel +912225767851\r\nFax +912225764650\r\n\r\nThe Centre offers M.Tech. and Ph.D. programmes, which are interdisciplinary in nature and consists of course work followed by a research project. The duration of the Ph.D. programme varies depending upon the background of the candidate.", - "parent": null, - "parent_relation": null, - "group_id": 1, - "pixel_x": 4340, - "pixel_y": 1985, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "86698f93-b89d-433a-90df-3796613f7a8b", - "fields": { - "str_id": "gmfl-lab", - "time_of_creation": "2018-06-24T19:50:18.489Z", - "name": "GMFL Lab / Geophysical and multiphase Flows Lab", - "short_name": "GMFL Lab", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 12, - "pixel_x": 4530, - "pixel_y": 1485, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "866dde4e-4667-446f-969e-ee4035b766a5", - "fields": { - "str_id": "dese-cese", - "time_of_creation": "2018-06-24T19:50:19.550Z", - "name": "DESE & CESE New Building", - "short_name": "DESE CESE", - "description": "New building for the Department of Energy Science and Engineering and Center for Environmental Science and Engineering", - "parent": null, - "parent_relation": null, - "group_id": 9, - "pixel_x": 3979, - "pixel_y": 2467, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "86d51626-2b1a-450f-a60c-be4dc6a7e153", - "fields": { - "str_id": "c12", - "time_of_creation": "2018-06-24T19:50:19.173Z", - "name": "Type C-12", - "short_name": "C12", - "description": "C-Type Quarters Flat nos. 73 - 78", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2867, - "pixel_y": 3006, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "fields": { - "str_id": "lec-hall-1--2", - "time_of_creation": "2018-06-24T19:50:18.258Z", - "name": "Lecture Hall Complex - 1 & 2", - "short_name": "Lec Hall 1 & 2", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "874b540d-94cc-479d-9621-916552a3c02b", - "fields": { - "str_id": "csre", - "time_of_creation": "2018-06-24T19:50:18.106Z", - "name": "Centre of Studies in Resources Engineering", - "short_name": "CSRE", - "description": "http://www.csre.iitb.ac.in\r\nTel:+912225767662\r\n\r\nThe centre offers Ph.D, M Tech, UG Minor and institute elective. Research areas include Spatial Analysis, Digital Image Processing, Global Positioning System (GPS) and Photogrammetry, Geocomputational Systems, Microwave Remote Sensing, Snow and Glacier Studies, Geology and Mineral Resources, Agro-Informatics and rural development, Terrain evaluation group, Environment, natural hazards and disaster management, Coastal and marine sciences", - "parent": null, - "parent_relation": null, - "group_id": 1, - "pixel_x": 4096, - "pixel_y": 1993, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "8791d3f0-d0c3-445c-823a-0738c0f4da19", - "fields": { - "str_id": "b4", - "time_of_creation": "2018-06-24T19:50:19.082Z", - "name": "Type B-4", - "short_name": "B4", - "description": "B-Type Quarters Flat nos. 15 - 18", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2743, - "pixel_y": 2947, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "87cce91e-c008-452d-b580-e9bc233e2c6a", - "fields": { - "str_id": "zoom-meet--httpszoomusj94770566170pwdcefkz2pttferck42uxk3vgp2qxhpdz09", - "time_of_creation": "2021-08-10T14:55:36.479Z", - "name": "Zoom Meet : https://zoom.us/j/94770566170?pwd=cEFKZ2ptTFErck42UXk3VGp2QXhpdz09", - "short_name": "Zoom Meet : https://zoom.us/j/94770566170?pwd=cEFKZ2ptTFErck42UXk3VGp2QXhpdz09", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "87e2a2b9-b922-4184-adee-10dbbb707f05", - "fields": { - "str_id": "heavy-structure-lab", - "time_of_creation": "2018-06-24T19:50:18.503Z", - "name": "Heavy Structure Lab", - "short_name": "Heavy Structure Lab", - "description": "Comes under Structural Engineering Laboratories of Civil Engineering Department +912225764323", - "parent": "fa6f024a-87ae-4d06-903a-f77e05de7a27", - "parent_relation": "Near", - "group_id": 12, - "pixel_x": 4330, - "pixel_y": 1495, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "887ecb32-a2a5-49df-932b-389db27c6320", - "fields": { - "str_id": "sac-conference-room", - "time_of_creation": "2019-01-22T05:33:27.656Z", - "name": "Sac conference room", - "short_name": "Sac conference room", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "889abc9e-9d30-4e2e-8e8e-53295ca46380", - "fields": { - "str_id": "mw-1", - "time_of_creation": "2018-06-24T19:50:19.388Z", - "name": "MW Quarters 1", - "short_name": "MW 1", - "description": "MW Quarters 1 - 32", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4267, - "pixel_y": 752, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "8946e59d-b065-463f-adf1-3dae1d986cac", - "fields": { - "str_id": "in-front-of-theatre-room-old-sac", - "time_of_creation": "2018-09-23T05:08:04.356Z", - "name": "In front of Theatre Room, Old SAC ", - "short_name": "In front of Theatre Room, Old SAC ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "897c294e-95c4-42de-ae55-26575e84c197", - "fields": { - "str_id": "lc-001", - "time_of_creation": "2018-06-24T19:50:18.769Z", - "name": "LC 001", - "short_name": "LC 001", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Ground floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "89841b84-4de4-4f33-a9a2-814d7e02303a", - "fields": { - "str_id": "youtube-live", - "time_of_creation": "2020-12-15T13:10:28.247Z", - "name": "YouTube Live", - "short_name": "YouTube Live", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "898f95d5-f987-4588-86ae-a8cd184836d0", - "fields": { - "str_id": "h15-mess", - "time_of_creation": "2018-07-26T18:30:38.462Z", - "name": "H15 Mess", - "short_name": "H15 Mess", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "89bcd0af-a808-468e-a26a-381292f32421", - "fields": { - "str_id": "httpseventwebinarjamcomchannelodysseyofcareers", - "time_of_creation": "2021-01-23T08:19:33.719Z", - "name": "https://event.webinarjam.com/channel/OdysseyofCareers", - "short_name": "https://event.webinarjam.com/channel/OdysseyofCareers", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "8a53546e-916f-4b2a-9ef6-1bde0ce16a40", - "fields": { - "str_id": "1-type1", - "time_of_creation": "2018-06-24T19:50:19.396Z", - "name": "Type1 - 1", - "short_name": "1-Type1", - "description": "Type 1 Quarters Flat nos. 1 - 12", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4113, - "pixel_y": 2583, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "8ab194eb-dcf6-4a29-bbe2-238f74c79049", - "fields": { - "str_id": "your-home", - "time_of_creation": "2020-06-18T16:13:40.401Z", - "name": "Your Home ", - "short_name": "Your Home ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "8ada0dd4-f9aa-4902-a7c5-749b1fd5707d", - "fields": { - "str_id": "lh302-lecture-hall-complex", - "time_of_creation": "2022-07-28T20:10:24.991Z", - "name": "LH302, Lecture Hall Complex", - "short_name": "LH302, Lecture Hall Complex", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "8b4f4d28-edf6-4dd3-8b66-0e588a0b7df3", - "fields": { - "str_id": "yoga-room-3rd-floor-new-sac", - "time_of_creation": "2019-12-19T13:04:56.213Z", - "name": "Yoga room, 3rd floor, New SAC", - "short_name": "Yoga room, 3rd floor, New SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "8b4f7618-a7da-48c8-87ab-e3cd5005fa53", - "fields": { - "str_id": "hostel-cricket-ground", - "time_of_creation": "2019-08-23T12:15:21.537Z", - "name": "Hostel Cricket Ground", - "short_name": "Hostel Cricket Ground", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "8b8366e0-bdf0-49c4-acb2-e27dbf2c59d0", - "fields": { - "str_id": "theatre-room-old-sac", - "time_of_creation": "2018-10-31T17:04:32.463Z", - "name": "Theatre Room, Old SAC", - "short_name": "Theatre Room, Old SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "8c600997-23a7-4453-a6e0-d22e5f3801b2", - "fields": { - "str_id": "post-office", - "time_of_creation": "2018-06-24T19:50:18.335Z", - "name": "Post Office", - "short_name": "Post Office", - "description": "Tel: +912225762774", - "parent": null, - "parent_relation": "", - "group_id": 9, - "pixel_x": 3918, - "pixel_y": 2846, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "8c843750-8320-41c7-b2e2-48366a14982a", - "fields": { - "str_id": "lt-pcsa", - "time_of_creation": "2018-08-18T12:33:45.746Z", - "name": "LT PCSA", - "short_name": "LT PCSA", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "8ca4b0f3-e3b5-4694-89f0-de750cfc6065", - "fields": { - "str_id": "2b-17", - "time_of_creation": "2018-06-24T19:50:18.975Z", - "name": "Type 2B 17", - "short_name": "2B 17", - "description": "2B-Type Quarters, Flat nos 97 - 102", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 878, - "pixel_y": 2756, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "8ccb786c-48e0-492a-bbbe-43974bbce905", - "fields": { - "str_id": "h1", - "time_of_creation": "2018-06-24T19:50:18.152Z", - "name": "Hostel 01 Queen of the campus", - "short_name": "H1", - "description": "Hostel security: +912225762601 Hall Manager: +912225762701 G. Sec: Ratikant +919930836852", - "parent": null, - "parent_relation": "", - "group_id": 2, - "pixel_x": 3908, - "pixel_y": 1077, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "8dc3f7ea-952d-4a33-b4c0-44bd2a7c52e2", - "fields": { - "str_id": "new-yoga-room-old-sac", - "time_of_creation": "2018-08-07T07:37:41.914Z", - "name": "New Yoga Room, Old SAC", - "short_name": "New Yoga Room, Old SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "8e17fbf3-7b22-4733-8b83-fdef95381196", - "fields": { - "str_id": "ms-teams", - "time_of_creation": "2020-12-18T10:13:59.094Z", - "name": "MS TEAMS ", - "short_name": "MS TEAMS ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "8e2ca11f-dbef-4d26-88a9-10f92ad64f6b", - "fields": { - "str_id": "b12", - "time_of_creation": "2018-06-24T19:50:19.112Z", - "name": "Type B-12", - "short_name": "B12", - "description": "B-Type Quarters Flat nos. 47 - 50", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2080, - "pixel_y": 2631, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "8e957c64-eb05-48ba-abb0-57252fabcead", - "fields": { - "str_id": "h8-tv-room", - "time_of_creation": "2018-06-25T06:49:37.517Z", - "name": "Hostel 8 TV Room", - "short_name": "H8 TV Room", - "description": "", - "parent": "0e2c2a32-5356-48d8-94ef-b06bff458064", - "parent_relation": "Inside", - "group_id": 8, - "pixel_x": 2834, - "pixel_y": 1257, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "8f0edd03-327b-40ef-8a2d-7ffeb2245a39", - "fields": { - "str_id": "csre-b", - "time_of_creation": "2018-06-24T19:50:19.479Z", - "name": "CSRE B", - "short_name": "CSRE B", - "description": "CSRE Quarters C141, C142, C145, C146, C149, C150", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4251, - "pixel_y": 1179, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "8f699c05-e021-4f6c-82e0-ffa52d35c1db", - "fields": { - "str_id": "n3-bay", - "time_of_creation": "2018-06-24T19:50:18.548Z", - "name": "N3 Bay", - "short_name": "N3 Bay", - "description": "", - "parent": "34513a0d-1b20-4350-8d76-57c0883f10fe", - "parent_relation": "Near", - "group_id": 1, - "pixel_x": 4360, - "pixel_y": 1645, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "8f868c14-081b-44f2-99cc-e71b1708e826", - "fields": { - "str_id": "idp-sys--cntrl-engg", - "time_of_creation": "2018-06-24T19:50:18.824Z", - "name": "Inter-disciplinary Programme in Systems and Control Engineering", - "short_name": "IDP Sys & Cntrl Engg.", - "description": "http://www.sc.iitb.ac.in Tel: +912225767884, +912225722545 Fax:+912225720057 M Tech and Ph D offered in this programme. Research ares include nonlinear control, robotics, path-planning, embedded control, coordination of autonomous vehicles, multi-agent systems, game theory, information theory, combinatorics, sliding mode control and applications, fractional-order modelling and control, optimization and optimization-based control, and stochastic processes. In addition, research in the areas of process control, identification, behavioural theory, matrix computation, automotive control are being pursued by the associate faculty members. ", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 4011, - "pixel_y": 1411, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "8fcf8049-5a13-4e60-b5b1-993a4a554526", - "fields": { - "str_id": "maths", - "time_of_creation": "2018-06-24T19:50:18.275Z", - "name": "Mathematics Department", - "short_name": "Maths", - "description": "http://www.math.iitb.ac.in\r\nTel: +912225767451\r\n\r\nB Tech (core courses), MSc (ASI, Maths), Ph D", - "parent": null, - "parent_relation": null, - "group_id": 1, - "pixel_x": 3928, - "pixel_y": 1496, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "90629a63-a762-42e3-9e4e-67834ea7a118", - "fields": { - "str_id": "a7", - "time_of_creation": "2018-06-24T19:50:19.024Z", - "name": "Bungalow A7 ", - "short_name": "A7", - "description": "A-Type Bungalow", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2211, - "pixel_y": 3055, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "90a68340-721b-4bd2-861e-d36d8e09f9d8", - "fields": { - "str_id": "h9", - "time_of_creation": "2018-06-24T19:50:18.216Z", - "name": "Hostel 09 Nawaabon Ki Basti", - "short_name": "H9", - "description": "Hostel security: +912225762609 Hall Manager: +912225762709 G. Sec: Shubham Meena +919619835583", - "parent": null, - "parent_relation": null, - "group_id": 2, - "pixel_x": 2693, - "pixel_y": 858, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "90e980d3-7668-44b2-888c-341190c05e44", - "fields": { - "str_id": "jalvihar", - "time_of_creation": "2018-06-24T19:50:18.137Z", - "name": "Guest House / Jalvihar", - "short_name": "Jalvihar", - "description": "Tel: +912225768940 / +912225768942 / +912225768943", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 2610, - "pixel_y": 2138, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "91091770-c141-486d-bfce-08247cc7286c", - "fields": { - "str_id": "bsbe", - "time_of_creation": "2018-06-24T19:50:18.069Z", - "name": "Biosciences and Bioengineering Department", - "short_name": "BSBE", - "description": "Phone: +912225767771\r\nFax: +912225767771\r\nE-mail: office.bio@iitb.ac.in\r\n\r\nThe department offers academic programs in MSc (Biotechnology), MTech (Biomedical Engineering), MSc-PhD Dual Degree Program, PhD Program", - "parent": null, - "parent_relation": null, - "group_id": 1, - "pixel_x": 3934, - "pixel_y": 2241, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "911a6892-5444-419c-b23e-c4c5de03daeb", - "fields": { - "str_id": "elec-engg-anx", - "time_of_creation": "2018-06-24T19:50:18.121Z", - "name": "Electrical Engineering Annexe Building", - "short_name": "Elec engg Anx", - "description": "http://www.ee.iitb.ac.in +912225764408 ", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 3932, - "pixel_y": 1997, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "911c89b3-0400-4d2f-9e95-ef3ab79c15c8", - "fields": { - "str_id": "gg-conference-room-department-of-electrical-engineering", - "time_of_creation": "2018-10-19T11:44:26.980Z", - "name": "GG Conference Room, Department of Electrical Engineering", - "short_name": "GG Conference Room, Department of Electrical Engineering", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "935c4851-9d62-49f7-80ca-144b575c3370", - "fields": { - "str_id": "wwwlichessorg", - "time_of_creation": "2019-09-29T19:28:22.871Z", - "name": "www.lichess.org", - "short_name": "www.lichess.org", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "936e944c-dd74-44c2-a350-28520c0bdb90", - "fields": { - "str_id": "ms-teams-code-cvlz22v", - "time_of_creation": "2021-10-08T07:20:03.761Z", - "name": "MS Teams (code: cvlz22v)", - "short_name": "MS Teams (code: cvlz22v)", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "936ed800-b3d6-48cb-bc2c-cff0032d03a7", - "fields": { - "str_id": "h3-tv-room", - "time_of_creation": "2019-10-11T06:15:38.021Z", - "name": "H3 TV Room", - "short_name": "H3 TV Room", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "937b062b-b66c-4969-bdbf-75ba79f94c90", - "fields": { - "str_id": "vmcc--seminar-hall-1", - "time_of_creation": "2019-10-17T17:08:35.475Z", - "name": "VMCC | Seminar Hall 1", - "short_name": "VMCC | Seminar Hall 1", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "93ba3eea-cf19-49fa-bbf7-e631b1cc8ff6", - "fields": { - "str_id": "lh-101-lh102", - "time_of_creation": "2019-01-18T17:38:21.096Z", - "name": "LH 101, LH102", - "short_name": "LH 101, LH102", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "94f86837-7215-4059-89bd-1d7220a9bd03", - "fields": { - "str_id": "la-001", - "time_of_creation": "2018-06-24T19:50:18.667Z", - "name": "LA 001", - "short_name": "LA 001", - "description": "The classroom has 4 entrance doors, two on ground floor and two in first floor.", - "parent": "be8afcf1-c7f7-4d71-aaf5-0154081974dd", - "parent_relation": "Ground and First floors", - "group_id": 4, - "pixel_x": 3779, - "pixel_y": 2220, - "lat": "19.130984", - "lng": "72.917451", - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "952d386e-5da3-458a-9752-fdb20861e47c", - "fields": { - "str_id": "cs-101---lc201-bb101---lc202", - "time_of_creation": "2018-11-09T08:48:26.401Z", - "name": "CS 101 - LC201. BB101 - LC202", - "short_name": "CS 101 - LC201. BB101 - LC202", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "957a0f4a-2cd1-4611-b250-e767a32c6c70", - "fields": { - "str_id": "mlr-convention-center-bengaluru", - "time_of_creation": "2018-07-16T16:59:34.881Z", - "name": "MLR Convention Center, Bengaluru", - "short_name": "MLR Convention Center, Bengaluru", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "962bdedb-ded0-42ff-8407-b48d5037ca16", - "fields": { - "str_id": "lc-301", - "time_of_creation": "2018-06-24T19:50:18.791Z", - "name": "LC 301", - "short_name": "LC 301", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Third floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "96a74240-57a5-4be0-a4fa-83784abbe650", - "fields": { - "str_id": "2nd-floor-board-games-room-new-gymkhana", - "time_of_creation": "2019-02-09T13:46:58.263Z", - "name": "2nd floor, Board Games Room, New Gymkhana", - "short_name": "2nd floor, Board Games Room, New Gymkhana", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "96b1941c-0d9f-471a-b70b-9a9fd48d97e0", - "fields": { - "str_id": "som-auditorium", - "time_of_creation": "2022-07-28T14:14:24.915Z", - "name": "SOM Auditorium", - "short_name": "SOM Auditorium", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "973e3f96-cf7e-42ea-929a-3eca87c7d422", - "fields": { - "str_id": "lt-204", - "time_of_creation": "2018-06-24T19:50:18.734Z", - "name": "LT 204", - "short_name": "LT 204", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Second floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "97f27a75-81b1-435e-a494-1dc14536935c", - "fields": { - "str_id": "earth-sci", - "time_of_creation": "2018-06-24T19:50:18.117Z", - "name": "Earth Science Department", - "short_name": "Earth Sci", - "description": "http://www.geos.iitb.ac.in +912225767251,+912225767265 The department offers academic programs for M.Sc (Applied Geology, Applied Geophysics, Geoexploration), M Tech (Petroleum Geoscience) and Ph.D. Research areas include Mineralogy, Geochemistry and Ore Deposits Structural Geology Igneous and Metamorphic Petrology Engineering geology, Hydro-geology Sedimentology Stratigraphy and Micro-Paleontology Mathematical Geology/ Ore Deposit Modelling Rock Magnetism and Marine Geology Seismology, Geothermics", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 4038, - "pixel_y": 2123, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "98a3c8d6-d988-464f-bff5-6ba09590e8b7", - "fields": { - "str_id": "sbi-atm", - "time_of_creation": "2018-06-24T19:50:18.648Z", - "name": "ATM - State Bank Main Gate", - "short_name": "SBI ATM", - "description": "", - "parent": null, - "parent_relation": null, - "group_id": 6, - "pixel_x": 2164, - "pixel_y": 3227, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "98c72ca2-c7c8-4c40-95c0-fc54c0926f7d", - "fields": { - "str_id": "indoor-basketball-courts", - "time_of_creation": "2019-09-08T06:08:24.335Z", - "name": "Indoor Basketball Courts", - "short_name": "Indoor Basketball Courts", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "98fc20ad-cfbb-4fd8-ba85-77fc5fb00da3", - "fields": { - "str_id": "2b-15", - "time_of_creation": "2018-06-24T19:50:18.968Z", - "name": "Type 2B 15", - "short_name": "2B 15", - "description": "2B-Type Quarters, Flat nos 85 - 90", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 1076, - "pixel_y": 2833, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "9929a0b3-64d6-4bef-91c6-7d8202836d66", - "fields": { - "str_id": "cl-118", - "time_of_creation": "2019-01-31T08:13:07.127Z", - "name": "CL 118", - "short_name": "CL 118", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "9962262a-4c11-4385-822f-228b0f7d3379", - "fields": { - "str_id": "hockey-ground", - "time_of_creation": "2018-06-24T19:50:19.579Z", - "name": "Hockey Ground", - "short_name": "Hockey Ground", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 8, - "pixel_x": 3303, - "pixel_y": 1368, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "9982150c-f1d6-4bab-bd1e-ac99958cc071", - "fields": { - "str_id": "la-002", - "time_of_creation": "2018-06-24T19:50:18.671Z", - "name": "LA 002", - "short_name": "LA 002", - "description": "The classroom has 4 entrance doors, two on ground floor and two in first floor.", - "parent": "be8afcf1-c7f7-4d71-aaf5-0154081974dd", - "parent_relation": "Ground and First floors", - "group_id": 4, - "pixel_x": 3779, - "pixel_y": 2220, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "99d0616b-37f9-4175-bc41-ca3319622e30", - "fields": { - "str_id": "h5-football-grounds", - "time_of_creation": "2019-10-22T13:45:58.340Z", - "name": "H5 Football Grounds", - "short_name": "H5 Football Grounds", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "99ea94a1-0b72-4467-a5f1-ef95e24f3bf8", - "fields": { - "str_id": "rock-powdering-lab", - "time_of_creation": "2018-06-24T19:50:18.577Z", - "name": "Rock Powdering Lab", - "short_name": "Rock Powdering Lab", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 12, - "pixel_x": 3921, - "pixel_y": 2095, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "9a12eaea-210e-40f1-b68a-d1c1d9ef1844", - "fields": { - "str_id": "lc", - "time_of_creation": "2020-01-11T09:04:35.299Z", - "name": "LC", - "short_name": "LC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "9ae531a0-d969-4383-81b2-3e246fafbc26", - "fields": { - "str_id": "lh102", - "time_of_creation": "2018-10-19T21:06:25.060Z", - "name": "LH102", - "short_name": "LH102", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "9b0a998c-ecaf-4974-848d-83444838c5e7", - "fields": { - "str_id": "frisbee-field-hostel-2", - "time_of_creation": "2020-02-09T08:41:54.793Z", - "name": "Frisbee Field, Hostel 2", - "short_name": "Frisbee Field, Hostel 2", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "9b1f6038-948e-4330-9f87-20b8432752e8", - "fields": { - "str_id": "h15--h16", - "time_of_creation": "2019-03-13T12:37:40.691Z", - "name": "H15 & H16", - "short_name": "H15 & H16", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "9c40f2d7-0491-44d9-86fb-ae8e42d46450", - "fields": { - "str_id": "instagram-page--energy-club", - "time_of_creation": "2020-09-02T16:12:39.266Z", - "name": "Instagram Page | Energy Club", - "short_name": "Instagram Page | Energy Club", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "9caed95c-3cb6-435b-9938-33b279009b8f", - "fields": { - "str_id": "shivalik-c-23", - "time_of_creation": "2018-06-24T19:50:18.360Z", - "name": "Shivalik C 23 (187-240)", - "short_name": "Shivalik C 23", - "description": "C- Type Quartera Flat nos. 187 - 240", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3129, - "pixel_y": 2612, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "9cbe0f43-5740-47d9-99e2-ba1400812394", - "fields": { - "str_id": "h12", - "time_of_creation": "2018-06-24T19:50:18.171Z", - "name": "Hostel 12 Crown of the Campus", - "short_name": "H12", - "description": "Hostel security: +912225762612 Hall Manager: +912225762712 G. Sec: Ashutosh +919167782489", - "parent": null, - "parent_relation": null, - "group_id": 2, - "pixel_x": 2096, - "pixel_y": 667, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "9d1fce95-c6e9-4998-851e-2094058b71fc", - "fields": { - "str_id": "2b-21", - "time_of_creation": "2018-06-24T19:50:18.990Z", - "name": "Type 2B 21", - "short_name": "2B 21", - "description": "2B-Type Quarters, Flat nos 135 - 140", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 4720, - "pixel_y": 1371, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "9d52d7c6-a85e-402e-9bc1-fc39b48f7039", - "fields": { - "str_id": "kg-school", - "time_of_creation": "2018-06-24T19:50:18.866Z", - "name": "Kindergarten School", - "short_name": "K.G. School", - "description": "Principal: Ms. Lata P. Jagdeesh http://www.iitb.ac.in/facilities/kgschool School Office: +912225768991 In Charge's Office: +912225768913 Email: kgschool@iitb.ac.in In 1963 for the benefit of the children of the staff members staying in the campus of IIT Bombay, a School consisting of K.G. and primary classes commenced functioning from 10th June 1963. This School had one Nursery class, one Kindergarten class and one class each of I and II (4 classes). From a small number of 53 students at the start today the School has 250 children on roll, 7 teaching staff, 12 supporting staff and one office staff working with the School In Charge. ", - "parent": "5ce808c0-1085-405c-bce3-c1830c72082d", - "parent_relation": "Inside", - "group_id": 7, - "pixel_x": 3331, - "pixel_y": 2865, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "9d7a43d5-7076-406c-8768-6e8bcffe6908", - "fields": { - "str_id": "2-type1", - "time_of_creation": "2018-06-24T19:50:19.400Z", - "name": "Type1 - 2", - "short_name": "2-Type1", - "description": "Type 1 Quarters Flat nos. 13 - 24", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4214, - "pixel_y": 2586, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "9dc65ead-7371-4536-907e-44791b20cf23", - "fields": { - "str_id": "c13", - "time_of_creation": "2018-06-24T19:50:19.177Z", - "name": "Type C-13", - "short_name": "C13", - "description": "C-Type Quarters Flat nos. 79 - 84", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2974, - "pixel_y": 3070, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "9e17f3a8-1c28-4a2e-b728-edf7290db982", - "fields": { - "str_id": "1-h2", - "time_of_creation": "2018-06-24T19:50:19.271Z", - "name": "Type H2 1", - "short_name": "1-H2", - "description": "H2 Type Quarters Flat nos. 1 - 8", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 1257, - "pixel_y": 2812, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "9e19a24e-8b90-46e4-b29c-fc5673b9121c", - "fields": { - "str_id": "google-forms", - "time_of_creation": "2020-09-29T15:27:11.624Z", - "name": "Google Forms", - "short_name": "Google Forms", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "9e421dd1-3e51-4fd6-afc2-c6b13a322b6d", - "fields": { - "str_id": "7-h2", - "time_of_creation": "2018-06-24T19:50:19.293Z", - "name": "Type H2 - 7", - "short_name": "7-H2", - "description": "H2 Type Quarters Flat nos. 49 - 56", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 1211, - "pixel_y": 2702, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "9e7b028d-e975-4cc7-9360-38085c448c34", - "fields": { - "str_id": "instagram-live---insynciitb", - "time_of_creation": "2020-07-26T12:06:14.900Z", - "name": "Instagram Live - @insync_iitb ", - "short_name": "Instagram Live - @insync_iitb ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "9e8a8fae-4993-4d6a-a2c6-6d99a02f479a", - "fields": { - "str_id": "h2", - "time_of_creation": "2018-06-24T19:50:18.190Z", - "name": "Hostel 02 The Wild Ones", - "short_name": "H2", - "description": "Hostel security:+912225762602 Hall Manager: +912225762702 G. Sec: Manohar Reddy Devarpalli +918796879949", - "parent": null, - "parent_relation": null, - "group_id": 2, - "pixel_x": 3672, - "pixel_y": 1000, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "9eaba236-529a-40eb-90aa-c599e0bb30f3", - "fields": { - "str_id": "lh-301--lh-302", - "time_of_creation": "2019-01-16T15:44:04.109Z", - "name": "LH 301 , LH 302", - "short_name": "LH 301 , LH 302", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "9f078117-e97f-4345-a4f2-6cfb1c378f9b", - "fields": { - "str_id": "2b-23", - "time_of_creation": "2018-06-24T19:50:18.997Z", - "name": "Type 2B 23", - "short_name": "2B 23", - "description": "2B-Type Quarters, Flat nos 165 - 192", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 4365, - "pixel_y": 1180, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "9f4f3d3f-d159-45b5-a9c8-a27f2e2e1c0a", - "fields": { - "str_id": "lt-pcsa", - "time_of_creation": "2018-06-24T19:50:18.328Z", - "name": "PC Saxena Auditorium / Lecture Theatre", - "short_name": "LT PCSA", - "description": "022 2576 4999", - "parent": null, - "parent_relation": null, - "group_id": 4, - "pixel_x": 3648, - "pixel_y": 1790, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "9fff223e-89e4-4eb3-944f-2b9dac894ebe", - "fields": { - "str_id": "c17", - "time_of_creation": "2018-06-24T19:50:19.192Z", - "name": "Type C-17", - "short_name": "C17", - "description": "C-Type Quarters Flat nos. 103 - 108", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3453, - "pixel_y": 2987, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "a08be164-f9b6-42d8-b582-74281416eac8", - "fields": { - "str_id": "lt-106", - "time_of_creation": "2018-06-24T19:50:18.720Z", - "name": "LT 106", - "short_name": "LT 106", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "First floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "a0aa7145-0efa-45ce-9e2b-c6e57fac4942", - "fields": { - "str_id": "cl-112-old-cl-118-creativity-hall-chemical-engineering-department", - "time_of_creation": "2020-01-30T12:45:41.862Z", - "name": "CL 112 (Old CL 118-Creativity Hall), Chemical Engineering Department", - "short_name": "CL 112 (Old CL 118-Creativity Hall), Chemical Engineering Department", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "a0ac9dda-b31f-4bd2-964b-5b4a5797c9e7", - "fields": { - "str_id": "lhc", - "time_of_creation": "2019-01-11T17:12:46.410Z", - "name": "LHC", - "short_name": "LHC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "a0d57b10-28fe-4288-9f04-e42f38b8cc48", - "fields": { - "str_id": "google-meet", - "time_of_creation": "2020-07-19T10:11:35.159Z", - "name": "Google Meet", - "short_name": "Google Meet", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "a10e49a4-09fa-48f2-8578-716f860d12f6", - "fields": { - "str_id": "h5-football-field", - "time_of_creation": "2018-11-02T13:28:35.528Z", - "name": "H5 Football Field", - "short_name": "H5 Football Field", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "a1232173-393b-47af-a8d7-f94b27143542", - "fields": { - "str_id": "2b-11", - "time_of_creation": "2018-06-24T19:50:18.943Z", - "name": "Type 2B 11", - "short_name": "2B 11", - "description": "2B-Type Quarters, Flat nos 61 - 66", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 808, - "pixel_y": 2612, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "a125b4ae-609f-4c36-a3e7-332df6182bc4", - "fields": { - "str_id": "sac-conference-room", - "time_of_creation": "2020-01-28T15:32:38.862Z", - "name": "SAC conference room", - "short_name": "SAC conference room", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "a1370540-fc28-43b9-a415-4e94b9719474", - "fields": { - "str_id": "2b-2", - "time_of_creation": "2018-06-24T19:50:18.914Z", - "name": "Type 2B 2", - "short_name": "2B 2", - "description": "2B-Type Quarters, Flat nos 7 - 12", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 4381, - "pixel_y": 2311, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "a2247c54-e8dd-405e-8ad3-1454f325e528", - "fields": { - "str_id": "21-h2", - "time_of_creation": "2018-06-24T19:50:19.345Z", - "name": "Type H2 - 21", - "short_name": "21-H2", - "description": "H2 Type Quarters Flat nos. 161 - 168", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4304, - "pixel_y": 1260, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "a280088b-fae2-4384-be64-399d924a4514", - "fields": { - "str_id": "lh-301", - "time_of_creation": "2018-06-24T19:50:18.808Z", - "name": "LH 301", - "short_name": "LH 301", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Third floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "a2a92db7-8485-43ab-ab1b-e84d1a573eb9", - "fields": { - "str_id": "httpstinyurlcomcsec-reveng", - "time_of_creation": "2021-10-23T09:27:04.086Z", - "name": "https://tinyurl.com/csec-reveng", - "short_name": "https://tinyurl.com/csec-reveng", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "a2fb1bdc-3df2-4e88-af3a-2a5a8ccc6236", - "fields": { - "str_id": "phy-lab-1-yr", - "time_of_creation": "2018-06-24T19:50:18.563Z", - "name": "Physics Lab (Ist Years)", - "short_name": "Phy Lab (1 Yr)", - "description": "Comes under Physics department", - "parent": null, - "parent_relation": "", - "group_id": 12, - "pixel_x": 4585, - "pixel_y": 1540, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "a30aaf64-48a0-4ee5-b973-c9f8001bad57", - "fields": { - "str_id": "hospital", - "time_of_creation": "2018-06-24T19:50:18.149Z", - "name": "Hospital", - "short_name": "Hospital", - "description": "Hospital Tel: +912225767051, Ambulance Tel: +912225761101", - "parent": null, - "parent_relation": null, - "group_id": 9, - "pixel_x": 3018, - "pixel_y": 1917, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "a3c684e3-5581-4830-ad02-27053bf89d59", - "fields": { - "str_id": "cisco-webex", - "time_of_creation": "2020-08-04T09:08:36.543Z", - "name": "Cisco Webex", - "short_name": "Cisco Webex", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "a40e2585-3aa6-4448-ad0b-a4faa31adb20", - "fields": { - "str_id": "badminton-court--opposite-to-hostel-2", - "time_of_creation": "2019-06-17T10:06:44.421Z", - "name": "Badminton Court ( opposite to hostel 2)", - "short_name": "Badminton Court ( opposite to hostel 2)", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "a498414e-d89e-4462-8b79-5bc10a91e96e", - "fields": { - "str_id": "itc-room-aka-stab-room-old-sac", - "time_of_creation": "2019-01-11T12:17:02.971Z", - "name": "ITC Room (aka STAB room), Old SAC", - "short_name": "ITC Room (aka STAB room), Old SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "a5306738-dfc3-4ba1-846e-2d337aa9905a", - "fields": { - "str_id": "zoom-meetings", - "time_of_creation": "2020-10-15T13:33:08.574Z", - "name": "Zoom Meetings", - "short_name": "Zoom Meetings", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "a5bd85a4-a281-44cb-925f-49a50f8a7070", - "fields": { - "str_id": "h13", - "time_of_creation": "2018-06-24T19:50:18.175Z", - "name": "Hostel 13 House of Titans", - "short_name": "H13", - "description": "Hostel security: +912225762613 Hall Manager: +912225762713 G. Sec: Raj Kumar Yadav +919769484219", - "parent": null, - "parent_relation": "", - "group_id": 2, - "pixel_x": 1918, - "pixel_y": 745, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "a5d23588-38aa-42ad-b8a8-686b18707b9b", - "fields": { - "str_id": "httpseventwebinarjamcomchannelvsm", - "time_of_creation": "2020-08-10T11:23:29.043Z", - "name": "https://event.webinarjam.com/channel/vsm", - "short_name": "https://event.webinarjam.com/channel/vsm", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "a5ee8c37-d016-4f77-b404-facb476001cb", - "fields": { - "str_id": "httpsus02webzoomusj89823207326pwdr1ridmh1nxavqxpzn3fycznit2hvdz09", - "time_of_creation": "2020-12-25T15:46:06.422Z", - "name": "https://us02web.zoom.us/j/89823207326?pwd=R1RIdmh1NXAvQXpZN3FYczNiT2hvdz09", - "short_name": "https://us02web.zoom.us/j/89823207326?pwd=R1RIdmh1NXAvQXpZN3FYczNiT2hvdz09", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "a5f7a4ff-abd0-43a5-972a-05904a82e470", - "fields": { - "str_id": "casde", - "time_of_creation": "2018-06-24T19:50:18.455Z", - "name": "Centre for Aerospace Systems Design and Engineering", - "short_name": "CASDE", - "description": "http://www.casde.iitb.ac.in/aboutus Tel: +912225767840", - "parent": "cd0dc47f-5286-45cd-a17d-d1867df08f69", - "parent_relation": "Inside", - "group_id": 1, - "pixel_x": 4153, - "pixel_y": 2249, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "a64aee78-8aa0-4af0-976b-e22c0fec74d6", - "fields": { - "str_id": "room-no-21-vmcc", - "time_of_creation": "2019-03-30T11:03:44.329Z", - "name": "Room No 21, VMCC", - "short_name": "Room No 21, VMCC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "a68e2e07-bec6-4664-961f-bf412cb0c6b9", - "fields": { - "str_id": "central-library", - "time_of_creation": "2018-06-24T19:50:18.083Z", - "name": "Central Library", - "short_name": "Central Library", - "description": "http://www.library.iitb.ac.in\n+912225768921\n\nLibrary Working Hours:\nMonday through Friday: 0900 - 2300 hrs \nMonday through Friday: 0900 - 0100 hrs (during examination)\nHolidays: 1000 - 1700 hrs\n\nCirculation Hours:\nMonday through Friday 0900-2000 hrs\nHolidays: 1100-1300 hrs\n\nSelf Issue / self Check out, any time till library is open. Study room books issued for overnight, one hour before closing of the library on all days", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 3820, - "pixel_y": 1455, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "a75c2a8d-b7c0-43ce-b324-72091642338f", - "fields": { - "str_id": "30-january-2021-11-am-online", - "time_of_creation": "2021-01-27T02:35:20.708Z", - "name": "30 January 2021, 11 am Online ", - "short_name": "30 January 2021, 11 am Online ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "a764ea8e-2d6b-4cdc-9641-7a4fae64b1b6", - "fields": { - "str_id": "webinar-jam", - "time_of_creation": "2020-11-29T08:22:54.902Z", - "name": "Webinar jam", - "short_name": "Webinar jam", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "a8283e37-983e-4214-b0e7-80900504b3a3", - "fields": { - "str_id": "prints", - "time_of_creation": "2018-06-24T19:50:18.635Z", - "name": "Printing and photocopying H11", - "short_name": "Prints", - "description": "", - "parent": "598d1ab6-cc6d-4409-8363-f0e9a1fc81c6", - "parent_relation": "Inside", - "group_id": 11, - "pixel_x": 2987, - "pixel_y": 1368, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "a8d6f1b1-aa19-4f9d-adc0-f34ac7b7443e", - "fields": { - "str_id": "h6", - "time_of_creation": "2018-06-24T19:50:18.205Z", - "name": "Hostel 06 Vikings", - "short_name": "H6", - "description": "Hostel security: +912225762606 Hall Manager:+912225762706 G. Sec: Anil Reddy +919022623186", - "parent": null, - "parent_relation": null, - "group_id": 2, - "pixel_x": 2546, - "pixel_y": 769, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "a8e0dbe5-79dd-44c6-a16f-807c21befd73", - "fields": { - "str_id": "hostel-8---tv-room", - "time_of_creation": "2018-09-27T19:28:25.235Z", - "name": "Hostel 8 - TV Room", - "short_name": "Hostel 8 - TV Room", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "a90f8bef-e300-47eb-b26f-35bf8cb302df", - "fields": { - "str_id": "press", - "time_of_creation": "2018-06-24T19:50:19.547Z", - "name": "Proposed Press ", - "short_name": "Press", - "description": "", - "parent": "e6eb8827-5107-4536-ab97-d7e367f3955f", - "parent_relation": "inside", - "group_id": 9, - "pixel_x": 4451, - "pixel_y": 2173, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "a9519692-c611-4c58-85b1-3a1713fd6264", - "fields": { - "str_id": "10-h1", - "time_of_creation": "2018-06-24T19:50:19.247Z", - "name": "Type H1 - 10", - "short_name": "10-H1", - "description": "H1 Type Quarters Flat nos. 109 - 120", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 703, - "pixel_y": 2275, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "a985dda9-4c63-4a44-bda3-4253613e35c4", - "fields": { - "str_id": "b-24-nilgiri", - "time_of_creation": "2018-06-24T19:50:18.305Z", - "name": "B 24 Nilgiri", - "short_name": "B 24 Nilgiri", - "description": "Flat nos. 268-326 ", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3318, - "pixel_y": 2324, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "a9bd0a1e-0e53-4a2c-8b1d-925e43480f7e", - "fields": { - "str_id": "httpsyoutubeldpjvg18j6s", - "time_of_creation": "2020-09-08T13:32:56.306Z", - "name": "https://youtu.be/LdPJvG18j6s", - "short_name": "https://youtu.be/LdPJvG18j6s", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "aa0ea9a0-8324-44c1-8454-bcbdcc5bcfb8", - "fields": { - "str_id": "cl-237-computational-lab-chemical-department", - "time_of_creation": "2019-09-28T11:42:26.851Z", - "name": "CL 237 Computational Lab, Chemical Department", - "short_name": "CL 237 Computational Lab, Chemical Department", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "aa4fa9f4-40fa-4d99-bba8-bd985d11f67e", - "fields": { - "str_id": "mems", - "time_of_creation": "2018-06-24T19:50:18.287Z", - "name": "Metallurgical Engineering and Material Science Department", - "short_name": "MEMS", - "description": "http://www.met.iitb.ac.in\r\nTel: +912225767601 / +912225767602\r\n\r\nThe department offers academic programs for B. Tech, Dual degree (B Tech + M Tech), M. Tech and Ph. D. Dual degree specializations include Ceramics and Composites and Metallurgical Process Engineering. M Tech specializations include Materials Science, Steel Technology, Process Engineering and Corrosion Science.", - "parent": null, - "parent_relation": null, - "group_id": 1, - "pixel_x": 3631, - "pixel_y": 2044, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "aa7a87c3-bcfc-4364-aa8b-86b8db299022", - "fields": { - "str_id": "vmcc-33", - "time_of_creation": "2020-01-07T11:53:38.915Z", - "name": "VMCC 33", - "short_name": "VMCC 33", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "aad1d082-064b-4175-a59b-47f843ba5007", - "fields": { - "str_id": "board-games-room-new-sac", - "time_of_creation": "2019-08-22T05:56:50.942Z", - "name": "Board Games Room, New Sac", - "short_name": "Board Games Room, New Sac", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "aaf55c39-1b2f-4a5c-9fb5-2da764bcc88f", - "fields": { - "str_id": "new-gymkhana-building-3rd-floor-opposite-hostel-11", - "time_of_creation": "2018-07-30T12:51:57.471Z", - "name": "New Gymkhana Building, 3rd Floor, Opposite Hostel 11", - "short_name": "New Gymkhana Building, 3rd Floor, Opposite Hostel 11", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "acd9e87f-26c9-410f-bf4d-57c7367f87c5", - "fields": { - "str_id": "flexiloans-technologies-pvt-ltd-matunga-west-mumbai", - "time_of_creation": "2018-08-29T17:33:33.245Z", - "name": "FlexiLoans Technologies Pvt. Ltd., Matunga West, Mumbai", - "short_name": "FlexiLoans Technologies Pvt. Ltd., Matunga West, Mumbai", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "ad376d38-f817-4224-99c3-15de288ece8d", - "fields": { - "str_id": "h15-16-gate", - "time_of_creation": "2019-08-23T13:02:17.366Z", - "name": "H15-16 Gate", - "short_name": "H15-16 Gate", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "ad5cf6e1-69f3-4a1a-b4dd-99483c3610a8", - "fields": { - "str_id": "fc-kohli-auditorium-kresit-building", - "time_of_creation": "2019-12-15T11:04:26.850Z", - "name": "F.C Kohli Auditorium, KReSIT Building", - "short_name": "F.C Kohli Auditorium, KReSIT Building", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "ad8f15b6-d946-4d20-958a-7cf2a4a59058", - "fields": { - "str_id": "httpszoomusj99677697540pwdr21bbknnt3vkvhp6ztloy3zpeks4ut09", - "time_of_creation": "2021-06-30T10:31:10.898Z", - "name": "https://zoom.us/j/99677697540?pwd=R21BbkNNT3VKVHp6ZTloY3Zpeks4UT09", - "short_name": "https://zoom.us/j/99677697540?pwd=R21BbkNNT3VKVHp6ZTloY3Zpeks4UT09", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "ade90eb3-ce30-47ff-8f7f-285734d23017", - "fields": { - "str_id": "httpsiit-techambitinpan-iit-editorial-onboarding", - "time_of_creation": "2020-10-18T16:49:19.542Z", - "name": "https://iit-techambit.in/pan-iit-editorial-onboarding/", - "short_name": "https://iit-techambit.in/pan-iit-editorial-onboarding/", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "adf317b3-7f62-479f-af07-3f0e512d3caa", - "fields": { - "str_id": "h15-and-h16-mess", - "time_of_creation": "2018-07-26T18:27:22.055Z", - "name": "H15 and H16 Mess", - "short_name": "H15 and H16 Mess", - "description": "", - "parent": "12c0c3f6-8e0d-430f-accc-c876986cf622", - "parent_relation": null, - "group_id": 8, - "pixel_x": 3599, - "pixel_y": 1225, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "ae635b75-df27-4df0-a9b8-c933501e50ab", - "fields": { - "str_id": "ese", - "time_of_creation": "2018-06-24T19:50:18.434Z", - "name": "Energy Science and Engineering", - "short_name": "ESE", - "description": "http://www.ese.iitb.ac.in\nTel: +912225767890\n\nThe department offers academic programs in Dual degree (B Tech + M Tech), M Tech, M.Sc.-Ph.D and Ph.D. Research areas include Energy Efficiency and Conservation, Solar PV and Thermal, Battery and Storage Engineering, Hydrogen and Fuel Cells, Smart microgrids, Biomass and Bio-Fuels, Wind Energy, Nuclear", - "parent": null, - "parent_relation": null, - "group_id": 1, - "pixel_x": 4239, - "pixel_y": 2028, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "aec4d748-d6a2-4c05-a6a2-b3964459d62c", - "fields": { - "str_id": "b13", - "time_of_creation": "2018-06-24T19:50:19.115Z", - "name": "Type B-13", - "short_name": "B13", - "description": "B-Type Quarters Flat nos. 51 - 54", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2356, - "pixel_y": 2478, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "aef07612-581c-4f05-9f6c-faf65a61eec4", - "fields": { - "str_id": "vmcc-lecture-hall-22", - "time_of_creation": "2018-08-14T12:05:46.948Z", - "name": "VMCC Lecture Hall-22", - "short_name": "VMCC Lecture Hall-22", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b006bf9a-58a9-4e3d-8886-e2b192bdb467", - "fields": { - "str_id": "discord", - "time_of_creation": "2021-01-10T13:45:03.700Z", - "name": "Discord", - "short_name": "Discord", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b0e83bb6-80dd-4e87-8b80-6ae8cf03d985", - "fields": { - "str_id": "instagraminsynciitb-and-facebook", - "time_of_creation": "2020-12-08T10:17:38.433Z", - "name": "Instagram(@insync_iitb) and Facebook", - "short_name": "Instagram(@insync_iitb) and Facebook", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b10f60bc-30a0-41f2-8928-0ddd0dede17b", - "fields": { - "str_id": "b2", - "time_of_creation": "2018-06-24T19:50:19.075Z", - "name": "Type B-2", - "short_name": "B2", - "description": "B-Type Quarters Flat nos. 7 - 10", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2848, - "pixel_y": 2685, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "b15f619e-d6c2-45af-b254-ffaa8c70844e", - "fields": { - "str_id": "4-h1", - "time_of_creation": "2018-06-24T19:50:19.225Z", - "name": "Type H1 - 4", - "short_name": "4-H1", - "description": "H1 Type Quarters Flat nos. 37 - 48", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 812, - "pixel_y": 2560, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "b190bbf9-6a90-43fb-9222-2bba584ce5ee", - "fields": { - "str_id": "dominos", - "time_of_creation": "2023-04-28T12:57:27.975Z", - "name": "Domino's outlet", - "short_name": "Domino's", - "description": "Pizza outlet", - "parent": null, - "parent_relation": null, - "group_id": 8, - "pixel_x": 3890, - "pixel_y": 1201, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "b1e5aa36-eb00-440b-a254-d49711f93103", - "fields": { - "str_id": "dir-bunglw", - "time_of_creation": "2018-06-24T19:50:18.110Z", - "name": "A1 Director Bungalow", - "short_name": "Dir. Bunglw.", - "description": "", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 2594, - "pixel_y": 2495, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "b1e5b6a3-5bf6-4ac5-a48a-3f866b85dddb", - "fields": { - "str_id": "forms", - "time_of_creation": "2021-08-08T13:57:54.222Z", - "name": "Forms", - "short_name": "Forms", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b1f93a00-49ea-4a53-bfc9-dbaa30cd1d3c", - "fields": { - "str_id": "12-h2", - "time_of_creation": "2018-06-24T19:50:19.312Z", - "name": "Type H2 - 12", - "short_name": "12-H2", - "description": "H2 Type Quarters Flat nos. 89 - 96", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 960, - "pixel_y": 2640, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "b236a1df-31be-4a81-8a1d-cf67b3a07223", - "fields": { - "str_id": "board-games-room-2nd-floor-new-gymkhana-building", - "time_of_creation": "2019-01-14T15:05:02.401Z", - "name": "Board games Room, 2nd floor, New Gymkhana Building", - "short_name": "Board games Room, 2nd floor, New Gymkhana Building", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b239dcc9-8d85-4555-9399-ab27d3276a54", - "fields": { - "str_id": "register-asap", - "time_of_creation": "2020-09-18T15:19:18.176Z", - "name": "REGISTER ASAP ", - "short_name": "REGISTER ASAP ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b25ca3c2-bf35-4167-a4c5-3127cb5af7f1", - "fields": { - "str_id": "h8-lounge", - "time_of_creation": "2019-01-27T08:40:53.158Z", - "name": "H8 Lounge", - "short_name": "H8 Lounge", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b2b6e406-d148-4db2-aaf4-c2de718eec27", - "fields": { - "str_id": "screening-room-3rd-floor-new-sac-opposite-to-hostel-11", - "time_of_creation": "2019-05-13T15:57:10.183Z", - "name": "Screening Room, 3rd floor, New SAC, opposite to Hostel 11", - "short_name": "Screening Room, 3rd floor, New SAC, opposite to Hostel 11", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b4c43ce8-5cc5-40aa-83e8-6e8bd1ab2a88", - "fields": { - "str_id": "b1", - "time_of_creation": "2018-06-24T19:50:19.071Z", - "name": "Type B-1", - "short_name": "B1", - "description": "B-Type Quarters Flat nos. 1 - 6", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2680, - "pixel_y": 2368, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "b4e17da4-6aad-46c4-b799-3fe9de7a18a3", - "fields": { - "str_id": "b16", - "time_of_creation": "2018-06-24T19:50:19.126Z", - "name": "Type B-16", - "short_name": "B16", - "description": "B-Type Quarters Flat nos. 63 - 66", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2085, - "pixel_y": 2719, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "b4f2c8f6-3d50-4f22-813b-f2578cdf8b06", - "fields": { - "str_id": "facebook-live---culturalsiitb", - "time_of_creation": "2020-11-05T11:46:42.120Z", - "name": "Facebook Live - Culturals@iitb", - "short_name": "Facebook Live - Culturals@iitb", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b4f6367a-950a-4280-b8fe-ce00985f7db8", - "fields": { - "str_id": "csre-d", - "time_of_creation": "2018-06-24T19:50:19.583Z", - "name": "CSRE D", - "short_name": "CSRE D", - "description": "CSRE Quarters D1, D2, D3, D4, D5, D6, D7, D8, D9, D10, D11, D12", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4302, - "pixel_y": 1171, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "b50583af-c835-4030-90c1-d16271e62217", - "fields": { - "str_id": "hcu", - "time_of_creation": "2018-06-24T19:50:18.418Z", - "name": "Hostel Coordinating Unit", - "short_name": "HCU", - "description": "Chairman Tel: +91222576 8901, OfficeTel: +91222576 8900", - "parent": "0308d18d-03a2-40bb-8efd-b222b7f84001", - "parent_relation": "Inside", - "group_id": 1, - "pixel_x": 3628, - "pixel_y": 1640, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "b52ba7b4-277b-4207-ae6d-dd14f392dd8d", - "fields": { - "str_id": "multi-purpose-hall-3rd-floor-new-sac", - "time_of_creation": "2019-03-18T12:36:16.136Z", - "name": "Multi purpose Hall, 3rd floor, New SAC", - "short_name": "Multi purpose Hall, 3rd floor, New SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b565f4f8-0862-4d16-ba5b-6bc2f42e9933", - "fields": { - "str_id": "sustain--ts-online", - "time_of_creation": "2020-10-26T09:29:59.339Z", - "name": "Sustain- TS online", - "short_name": "Sustain- TS online", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b594b49b-3d07-4847-a6c2-4702122b8e53", - "fields": { - "str_id": "your-homes", - "time_of_creation": "2020-05-21T09:24:46.154Z", - "name": "Your Homes", - "short_name": "Your Homes", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b59f3e02-09ac-4f7c-94d4-39332f9e2196", - "fields": { - "str_id": "paspoli-gate", - "time_of_creation": "2018-06-24T19:50:19.513Z", - "name": "Paspoli Gate no. 4 ", - "short_name": "Paspoli Gate", - "description": "This gate is not used regularly", - "parent": null, - "parent_relation": "", - "group_id": 10, - "pixel_x": 2247, - "pixel_y": 196, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "b5d88d5d-20c2-4adf-89bc-dda50ded092f", - "fields": { - "str_id": "hostel-11", - "time_of_creation": "2020-03-04T11:00:09.209Z", - "name": "Hostel 11", - "short_name": "Hostel 11", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b60f8967-aeb9-4cb2-8781-2658556661d5", - "fields": { - "str_id": "lt-102", - "time_of_creation": "2018-06-24T19:50:18.705Z", - "name": "LT 102", - "short_name": "LT 102", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "First floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "b65f77a6-df7b-4034-ade1-ecc360e93a6a", - "fields": { - "str_id": "elec-maint", - "time_of_creation": "2018-06-24T19:50:18.134Z", - "name": "Electrical Maintenence", - "short_name": "Elec Maint", - "description": "Tel: +912225767971/ +912225764077", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 4544, - "pixel_y": 1830, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "b6b7c7dd-9093-4452-b296-8128517a2298", - "fields": { - "str_id": "room-21-vmcc", - "time_of_creation": "2019-03-10T14:09:30.007Z", - "name": "Room 21, VMCC", - "short_name": "Room 21, VMCC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b6e1cef3-704f-4c8c-bd9a-44294c9920ba", - "fields": { - "str_id": "new-ese", - "time_of_creation": "2019-02-05T08:03:01.452Z", - "name": "Energy Science and Engineering (New Building)", - "short_name": "New ESE", - "description": "http://www.ese.iitb.ac.in\r\nTel: +912225767890\r\n\r\nThe department offers academic programs in Dual degree (B Tech + M Tech), M Tech, M.Sc.-Ph.D and Ph.D. Research areas include Energy Efficiency and Conservation, Solar PV and Thermal, Battery and Storage Engineering, Hydrogen and Fuel Cells, Smart microgrids, Biomass and Bio-Fuels, Wind Energy, Nuclear", - "parent": "866dde4e-4667-446f-969e-ee4035b766a5", - "parent_relation": "inside", - "group_id": 1, - "pixel_x": 3979, - "pixel_y": 2467, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "b6f05fac-d82e-4815-905a-aa44216c6b98", - "fields": { - "str_id": "g-form", - "time_of_creation": "2021-12-07T10:44:21.029Z", - "name": "G-form", - "short_name": "G-form", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b74329f6-3816-4daf-a7a2-4bdc54282da0", - "fields": { - "str_id": "hostel-12-lounge", - "time_of_creation": "2019-04-11T21:12:32.103Z", - "name": "Hostel 12 Lounge", - "short_name": "Hostel 12 Lounge", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b7af300a-dddf-4bdf-b342-e0f7df0e4f6a", - "fields": { - "str_id": "16-h2", - "time_of_creation": "2018-06-24T19:50:19.326Z", - "name": "Type H2 - 16", - "short_name": "16-H2", - "description": "H2 Type Quarters Flat nos. 121 - 128", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 774, - "pixel_y": 2412, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "b7b5eeeb-9482-43ed-8f5b-8b5ff2691a48", - "fields": { - "str_id": "ccd", - "time_of_creation": "2023-04-28T12:52:21.302Z", - "name": "Cafe Coffee Day", - "short_name": "CCD", - "description": "Cafe", - "parent": null, - "parent_relation": null, - "group_id": 9, - "pixel_x": 3970, - "pixel_y": 2474, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "b7ccef18-0330-4871-bb95-4bb523344287", - "fields": { - "str_id": "2b-13", - "time_of_creation": "2018-06-24T19:50:18.950Z", - "name": "Type 2B 13", - "short_name": "2B 13", - "description": "2B-Type Quarters, Flat nos 73 - 78", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 691, - "pixel_y": 2555, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "b7dd5c67-a1a3-4ce9-b336-da92ec966032", - "fields": { - "str_id": "vmcc-lecture-hall-22", - "time_of_creation": "2018-10-26T05:17:25.302Z", - "name": "VMCC Lecture Hall 22 ", - "short_name": "VMCC Lecture Hall 22 ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b869092b-7705-41c4-8672-64b2271ade0a", - "fields": { - "str_id": "b18", - "time_of_creation": "2018-06-24T19:50:19.134Z", - "name": "Type B-18", - "short_name": "B18", - "description": "B-Type Quarters Flat nos. 73 - 74 and 73A - 74A ", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3159, - "pixel_y": 2368, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "b8b3c83f-84ba-46bf-8a36-ff228cb8d75a", - "fields": { - "str_id": "ms-teams---knwwwcx", - "time_of_creation": "2021-01-19T18:38:29.528Z", - "name": "MS Teams - KNWWWCX", - "short_name": "MS Teams - KNWWWCX", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b8db6df3-6f37-4dd5-9b19-133a05101518", - "fields": { - "str_id": "convocation-foyer", - "time_of_creation": "2019-01-18T16:01:27.715Z", - "name": "Convocation Foyer", - "short_name": "Convocation Foyer", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b8e05a24-1e3f-4926-b91e-b2e3cd3a2a55", - "fields": { - "str_id": "2b-3", - "time_of_creation": "2018-06-24T19:50:18.918Z", - "name": "Type 2B 3", - "short_name": "2B 3", - "description": "2B-Type Quarters, Flat nos 13 - 18", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 4331, - "pixel_y": 2388, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "b975408c-933c-4ffa-9b2d-27850edfe195", - "fields": { - "str_id": "b5", - "time_of_creation": "2018-06-24T19:50:19.086Z", - "name": "Type B-5", - "short_name": "B5", - "description": "B-Type Quarters Flat nos. 19 - 22", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2687, - "pixel_y": 3079, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "b980d0b5-f88b-4315-9500-ac3228cee585", - "fields": { - "str_id": "avenues-sjmsom-iit-bombay", - "time_of_creation": "2019-10-16T19:25:11.059Z", - "name": "Avenues, SJMSOM, IIT Bombay ", - "short_name": "Avenues, SJMSOM, IIT Bombay ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b98a3030-ea72-486c-b94d-28120eb39a7e", - "fields": { - "str_id": "hostel-15-16-mess", - "time_of_creation": "2019-07-25T07:32:47.571Z", - "name": "Hostel 15 &16 mess", - "short_name": "Hostel 15 &16 mess", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b98eea0b-f1b6-442d-8c84-a546f7e977d0", - "fields": { - "str_id": "lc-101", - "time_of_creation": "2019-01-11T17:31:09.195Z", - "name": " LC 101", - "short_name": " LC 101", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "b9eac8fe-ea56-48d4-b466-3651a45875a0", - "fields": { - "str_id": "a15", - "time_of_creation": "2018-06-24T19:50:19.053Z", - "name": "Bungalow A15 ", - "short_name": "A15", - "description": "A-Type Bungalow", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4017, - "pixel_y": 1243, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "ba9872e9-7438-4ad9-81bb-16261d2d60c7", - "fields": { - "str_id": "h5-mess", - "time_of_creation": "2019-09-27T19:44:54.163Z", - "name": "H5 Mess", - "short_name": "H5 Mess", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "bb09ec9c-e49e-4cab-853b-cf7022fd83fe", - "fields": { - "str_id": "powai-lake", - "time_of_creation": "2019-06-01T16:18:02.277Z", - "name": "Powai Lake", - "short_name": "Powai Lake", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "bba75c4c-0ad7-4d4b-bcdd-a3d1c9d1ea3e", - "fields": { - "str_id": "heat-trans-lab", - "time_of_creation": "2018-06-24T19:50:18.500Z", - "name": "Heat Transfer and Thermodynamic Lab", - "short_name": "Heat Trans Lab", - "description": "Comes under Mechanical Engineering Department +912225764533", - "parent": null, - "parent_relation": "", - "group_id": 12, - "pixel_x": 4390, - "pixel_y": 1550, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "bbd5ca5e-e1e1-4d28-a862-02edd1ccef22", - "fields": { - "str_id": "fuel-cell-re-fac", - "time_of_creation": "2018-06-24T19:50:18.482Z", - "name": "Fuel Cell Research Facility", - "short_name": "Fuel Cell Re. Fac.", - "description": "Comes under Energy Systems Engineering Department http://www.ese.iitb.ac.in +912225764897", - "parent": "571b762e-b756-4def-a968-ee114f28964b", - "parent_relation": "Inside", - "group_id": 1, - "pixel_x": 4525, - "pixel_y": 1680, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "bc319d21-2852-4d4a-9dd5-e4c8cd4ce9f7", - "fields": { - "str_id": "theater-room-sac", - "time_of_creation": "2019-10-11T15:59:15.160Z", - "name": "Theater room, SAC", - "short_name": "Theater room, SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "bc594c03-f74e-4b42-8fe6-9614ac7a6e95", - "fields": { - "str_id": "aq-corro-lab", - "time_of_creation": "2018-06-24T19:50:18.855Z", - "name": "Aqueous Corrosion Lab", - "short_name": "Aq Corro Lab", - "description": "Tel: +912225764607", - "parent": "aa4fa9f4-40fa-4d99-bba8-bd985d11f67e", - "parent_relation": "Inside", - "group_id": 12, - "pixel_x": 3631, - "pixel_y": 2044, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "bc5a6f5d-2def-4791-953c-103333802548", - "fields": { - "str_id": "hall-no-32-vmcc", - "time_of_creation": "2018-10-23T11:07:08.017Z", - "name": "Hall No. 32, VMCC", - "short_name": "Hall No. 32, VMCC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "bc78928a-2e85-41a2-a40d-93056d951791", - "fields": { - "str_id": "cl-118-chemical-department", - "time_of_creation": "2019-02-12T18:49:29.655Z", - "name": "CL-118, CHEMICAL DEPARTMENT", - "short_name": "CL-118, CHEMICAL DEPARTMENT", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "bc8ec523-410a-49dc-bb80-ec8c335688bf", - "fields": { - "str_id": "h4-security-desk", - "time_of_creation": "2018-10-24T19:54:12.539Z", - "name": "H4 Security Desk", - "short_name": "H4 Security Desk", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "bd1fb0c2-8e89-47fe-981c-5556fbbab6fb", - "fields": { - "str_id": "old-sac", - "time_of_creation": "2018-08-26T08:40:20.065Z", - "name": "Old SAC", - "short_name": "Old SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "bd2d4d75-7561-4b2d-b1d7-0dd6294c2015", - "fields": { - "str_id": "lt-001", - "time_of_creation": "2018-06-24T19:50:18.683Z", - "name": "LT 001", - "short_name": "LT 001", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Ground floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "bd3c5abd-5845-4934-873e-b6f6f27d223e", - "fields": { - "str_id": "google-meet---httpsmeetgooglecomrbu-qdaq-bvt", - "time_of_creation": "2020-09-25T16:31:51.669Z", - "name": "Google Meet - https://meet.google.com/rbu-qdaq-bvt", - "short_name": "Google Meet - https://meet.google.com/rbu-qdaq-bvt", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "bd54d157-c3a1-43a1-b05d-e724ddc76f1e", - "fields": { - "str_id": "sustain--team-shunya-online", - "time_of_creation": "2020-10-26T05:49:40.681Z", - "name": "Sustain- Team Shunya Online", - "short_name": "Sustain- Team Shunya Online", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "bd67f0af-b039-44ae-a86e-0d9480d3fe90", - "fields": { - "str_id": "ncpa-theatre", - "time_of_creation": "2018-06-24T22:02:28.756Z", - "name": "NCPA Theatre", - "short_name": "NCPA Theatre", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "bddeb9d2-1c06-4eac-a2e9-d2ebac2207b1", - "fields": { - "str_id": "ug-lab--s2-bay", - "time_of_creation": "2018-06-24T19:50:18.627Z", - "name": "UG Lab / S2 Bay", - "short_name": "UG Lab / S2 Bay", - "description": "Comes under Chemical Engineering Department +912225764207", - "parent": "c3545b3d-e33d-4c14-b04d-c369146391ec", - "parent_relation": "", - "group_id": 12, - "pixel_x": 4410, - "pixel_y": 1740, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "bdecb6e1-9cd6-4fac-82bd-bb7212fa4fc4", - "fields": { - "str_id": "cdeep", - "time_of_creation": "2018-06-24T19:50:18.448Z", - "name": "Centre for Distance Engineering Education Programme", - "short_name": "CDEEP", - "description": "http://www.cdeep.iitb.ac.in Tel: +912225764820/4812", - "parent": "8fcf8049-5a13-4e60-b5b1-993a4a554526", - "parent_relation": "Ground floor", - "group_id": 1, - "pixel_x": 3928, - "pixel_y": 1496, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "be0c6f4e-b1d7-47dd-9e72-de3e720a1c29", - "fields": { - "str_id": "music-room", - "time_of_creation": "2018-06-24T19:50:19.505Z", - "name": "Institute Music Room", - "short_name": "Music Room", - "description": "", - "parent": "1007b63e-4c44-485d-a4c8-c8d89c3603c6", - "parent_relation": "Backside", - "group_id": 9, - "pixel_x": 3255, - "pixel_y": 1711, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "be22dec9-07a1-45f0-b1d2-9920712f09ae", - "fields": { - "str_id": "coffee-shack", - "time_of_creation": "2018-06-24T19:50:18.298Z", - "name": "Nestle Cafe (Coffee Shack)", - "short_name": "Coffee Shack", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 5, - "pixel_x": 3492, - "pixel_y": 1784, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "be8afcf1-c7f7-4d71-aaf5-0154081974dd", - "fields": { - "str_id": "lec-hall-3", - "time_of_creation": "2018-06-24T19:50:18.261Z", - "name": "Lecture Hall Complex - 3", - "short_name": "Lec Hall 3", - "description": "", - "parent": null, - "parent_relation": null, - "group_id": 4, - "pixel_x": 3779, - "pixel_y": 2220, - "lat": "19.130780", - "lng": "72.917487", - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "beb923e6-ecea-4cd9-915f-753fbf66a579", - "fields": { - "str_id": "sustain-ts-online", - "time_of_creation": "2020-10-26T12:59:18.885Z", - "name": "Sustain-TS online", - "short_name": "Sustain-TS online", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "bedaac81-e6fe-40d3-8a51-4839ad83515b", - "fields": { - "str_id": "prints", - "time_of_creation": "2018-06-24T19:50:18.639Z", - "name": "Printing and photocopying H8", - "short_name": "Prints", - "description": "", - "parent": "0e2c2a32-5356-48d8-94ef-b06bff458064", - "parent_relation": "Inside", - "group_id": 11, - "pixel_x": 2834, - "pixel_y": 1257, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "bf203d00-279e-4683-b5ba-16b14c520622", - "fields": { - "str_id": "film-room-sac", - "time_of_creation": "2018-09-19T14:47:36.253Z", - "name": "Film Room, SAC", - "short_name": "Film Room, SAC", - "description": "", - "parent": "36392e9a-cec2-47a7-ba8d-6053f4c46b7a", - "parent_relation": "Inside", - "group_id": 8, - "pixel_x": 3599, - "pixel_y": 1225, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c02d0f36-cbb2-4f66-b7e2-b2517a095e52", - "fields": { - "str_id": "lch", - "time_of_creation": "2020-01-12T06:07:36.819Z", - "name": "LCH", - "short_name": "LCH", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "c14459e4-d6e7-4297-8ef3-39f00d8bb46c", - "fields": { - "str_id": "ctara", - "time_of_creation": "2018-06-24T19:50:18.444Z", - "name": "Centre for Technology Alternatives for Rural Areas", - "short_name": "CTARA", - "description": "http://www.ctara.iitb.ac.in Tel: +912225767870 Offers M. Tech, Ph D and TDSL (Minor for UG). Research areas include agriculture and food, appropriate technology, drinking water, environment, energy and health", - "parent": "42422033-0fb0-4a62-aa55-133f1691997d", - "parent_relation": "Inside", - "group_id": 1, - "pixel_x": 4002, - "pixel_y": 1545, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c156035c-c217-4a56-a329-c1ce7c65b239", - "fields": { - "str_id": "gulmohar-restaurant", - "time_of_creation": "2018-06-24T19:50:18.145Z", - "name": "Gulmohar Restaurant", - "short_name": "Gulmohar Restaurant", - "description": "Tel: +912225762783 / Tel: +912225762786", - "parent": "5d7d2bba-e553-4733-9515-c991ff9e0f37", - "parent_relation": "Second floor", - "group_id": 5, - "pixel_x": 2989, - "pixel_y": 2154, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c1582589-e08e-47d1-b343-abfed9f1889b", - "fields": { - "str_id": "ctr-20", - "time_of_creation": "2018-06-24T19:50:19.208Z", - "name": "CTR 20", - "short_name": "CTR 20", - "description": "CTR Quarters Flat nos. 127 - 138", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 1749, - "pixel_y": 2959, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c186690e-6970-49a3-b944-d73aae2cb6bd", - "fields": { - "str_id": "crnts", - "time_of_creation": "2018-06-24T19:50:18.103Z", - "name": "NanoTech. & Science Research Centre", - "short_name": "CRNTS", - "description": "http://www.iitb.ac.in/~crnts Tel:+912225767691 CRNTS offers programs such as Dual degree programme-1 (B.Tech. Engg. Physics & M.Tech. Engg. Physics with specialization in Nanoscience. Admission Through: JEE. Offered by: Department of Physics. Duration: 5 years) Dual degree programme-2 (M.Sc. Physics & M.Tech. in Materials Science with specialization in Nanoscience., Input : B.Sc. (Physics), Admission through: J.A.M. Jointly offered by Department of Physics & Department of Metallurgical Engg. & Materials Science) Ph.D ( Interdisciplinary program. Research Domains include Nanomaterials, Nanobiotechnology, Nanofluidics, Nanoelectronics, Nanomanufacturing, Nanosensors, Computational research in Nanosystems)", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 4081, - "pixel_y": 1344, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c1aba77e-a844-44af-844b-eca83a357226", - "fields": { - "str_id": "area-51", - "time_of_creation": "2019-02-24T16:49:25.451Z", - "name": "Area 51", - "short_name": "Area 51", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "c25129ab-97fd-47e6-b074-8fb2c7887e71", - "fields": { - "str_id": "youtube-live", - "time_of_creation": "2020-10-31T06:08:47.764Z", - "name": "YouTube live", - "short_name": "YouTube live", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "c269ca35-15c0-47e0-beb4-adfb21f9f970", - "fields": { - "str_id": "httpszoomusj93348372344pwdzdlos2dtqlfir0i2ohzmswvfy0u0qt09", - "time_of_creation": "2021-07-05T13:20:38.028Z", - "name": "https://zoom.us/j/93348372344?pwd=ZDlOS2dtQlFIR0I2OHZMSWVFY0U0QT09", - "short_name": "https://zoom.us/j/93348372344?pwd=ZDlOS2dtQlFIR0I2OHZMSWVFY0U0QT09", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "c2a8f379-1a40-4357-9015-423e3702483e", - "fields": { - "str_id": "chem-engg", - "time_of_creation": "2018-06-24T19:50:18.130Z", - "name": "Chemical Engineering Department", - "short_name": "Chem Engg", - "description": "http://www.che.iitb.ac.in\r\n+912225767201, +912225767202\r\n\r\nPrograms offered in B Tech, M Tech, Dual Degree (M Tech + Ph D) and Ph D. Research areas include Biological Systems Engineering, Energy & Environment, Materials Engineering, Process Systems Engineering, Reactor Engineering, and Transport Phenomena and Complex Fluids", - "parent": null, - "parent_relation": null, - "group_id": 1, - "pixel_x": 3788, - "pixel_y": 2350, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c2ac410a-5ebf-4b15-8eb1-5406d3495c74", - "fields": { - "str_id": "13--h1", - "time_of_creation": "2018-06-24T19:50:19.259Z", - "name": "Type H1 - 13", - "short_name": "13- H1", - "description": "H1 Type Quarters Flat nos. 152 - 168", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4786, - "pixel_y": 1218, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c2fa488e-a9b2-4175-aeef-84b0bfc982bc", - "fields": { - "str_id": "1--h1", - "time_of_creation": "2018-06-24T19:50:19.212Z", - "name": "Type H1 - 1", - "short_name": "1- H1", - "description": "H1 Type Quarters Flat nos. 1 - 12", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 866, - "pixel_y": 2684, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c32c861b-9407-44c0-a83c-2e47a4886598", - "fields": { - "str_id": "c18", - "time_of_creation": "2018-06-24T19:50:19.196Z", - "name": "Type C-18", - "short_name": "C18", - "description": "C-Type Quarters Flat nos. 109 - 114", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3537, - "pixel_y": 2963, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c3545b3d-e33d-4c14-b04d-c369146391ec", - "fields": { - "str_id": "s2-bay", - "time_of_creation": "2018-06-24T19:50:18.586Z", - "name": "S2 Bay", - "short_name": "S2 Bay", - "description": "Tel:+912225764213", - "parent": "431b487b-1db7-4cc0-ae63-af19ad96dca9", - "parent_relation": "Near", - "group_id": 1, - "pixel_x": 4410, - "pixel_y": 1740, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c3581052-4ffb-4276-b3ea-c8933a58d062", - "fields": { - "str_id": "mobile", - "time_of_creation": "2019-02-08T11:54:24.847Z", - "name": "Mobile", - "short_name": "Mobile", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "c3a14998-23cb-4cbe-a6fa-70accc7069a1", - "fields": { - "str_id": "som", - "time_of_creation": "2018-06-24T19:50:18.363Z", - "name": "School of Management", - "short_name": "SOM", - "description": "http://www.som.iitb.ac.in\nOffice - +912225767781\nPh. D. admissions - +912225767782\nM. Mgt. admissions - +912225768781 \n\nThe department offers academic programs in Master Of Management Programme - Full Time, Doctoral Programme in Management - PhD Degree, Management Development Programme - For Corporate Executives", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 3505, - "pixel_y": 1867, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c4042869-13ef-40b2-9d77-ae39bee31d03", - "fields": { - "str_id": "gg-bldg", - "time_of_creation": "2018-06-24T19:50:18.884Z", - "name": "Girish Gaitonde Building", - "short_name": "GG Bldg", - "description": "Contact persons: Madhumati Shetty +912225767401 Vaishali Deshpande +912225767402 Santosh S. Kharat +912225767402 Tanvi D. Shelatkar +912225767402", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 3668, - "pixel_y": 1937, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c443e517-6f5f-45c5-b1e4-0bea66ab7ed9", - "fields": { - "str_id": "h10", - "time_of_creation": "2018-06-24T19:50:18.160Z", - "name": "Hostel 10 Phoenix (Girls Hostel)", - "short_name": "H10", - "description": "Hostel security: +912225762610\nHall Manager: +912225762710\nG. Sec: Madhu Lekha +919769372532", - "parent": null, - "parent_relation": null, - "group_id": 2, - "pixel_x": 3005, - "pixel_y": 2342, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c46242a6-8ffa-4f14-8489-3a2a2773ebd9", - "fields": { - "str_id": "theatre-room", - "time_of_creation": "2019-08-04T18:52:18.110Z", - "name": "THEATRE ROOM", - "short_name": "THEATRE ROOM", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "c46e695e-5553-465d-8802-96b9d1261f14", - "fields": { - "str_id": "11-h1", - "time_of_creation": "2018-06-24T19:50:19.251Z", - "name": "Type H1 - 11", - "short_name": "11-H1", - "description": "H1 Type Quarters Flat nos. 121 - 134", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 849, - "pixel_y": 2249, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c4987713-8aad-420b-b4a5-e98813c7d330", - "fields": { - "str_id": "b15", - "time_of_creation": "2018-06-24T19:50:19.123Z", - "name": "Type B-15", - "short_name": "B15", - "description": "B-Type Quarters Flat nos. 59 - 62", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2192, - "pixel_y": 2665, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c4f435a1-d7a0-44a4-86c9-6f3e933a1e04", - "fields": { - "str_id": "2b-7", - "time_of_creation": "2018-06-24T19:50:18.932Z", - "name": "Type 2B 7", - "short_name": "2B 7", - "description": "2B-Type Quarters, Flat nos 37 - 42", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 4296, - "pixel_y": 2312, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c4f4e5e3-f5fb-43f6-9825-52e92415b6c7", - "fields": { - "str_id": "h15-16-street", - "time_of_creation": "2018-08-08T14:53:05.242Z", - "name": "H15-16 Street", - "short_name": "H15-16 Street", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "c4f78d67-ac0f-461b-a8e2-9b0319ba07a4", - "fields": { - "str_id": "httpsbitlyevalfi", - "time_of_creation": "2020-07-17T09:21:58.907Z", - "name": "https://bit.ly/evalfi", - "short_name": "https://bit.ly/evalfi", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "c673927a-3e77-4e00-9165-849593fad848", - "fields": { - "str_id": "first-floor-conference-hall-civil-department", - "time_of_creation": "2018-11-16T14:13:58.590Z", - "name": "First floor Conference Hall, Civil Department", - "short_name": "First floor Conference Hall, Civil Department", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "c77979b7-3ce4-473a-a43b-07e48430b33c", - "fields": { - "str_id": "team-shunya-online", - "time_of_creation": "2020-09-17T06:56:17.738Z", - "name": "Team Shunya Online", - "short_name": "Team Shunya Online", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "c7d1e9f5-4c26-4d3c-b791-a175b939dcfa", - "fields": { - "str_id": "lt-203", - "time_of_creation": "2018-06-24T19:50:18.731Z", - "name": "LT 203", - "short_name": "LT 203", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Second floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c80bf19d-1bcb-4521-87f2-044386b7eb81", - "fields": { - "str_id": "lc201", - "time_of_creation": "2019-10-16T12:32:56.824Z", - "name": "LC201", - "short_name": "LC201", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "c82574af-fd46-4662-8bc4-aa823fdabaf8", - "fields": { - "str_id": "7-type1", - "time_of_creation": "2018-06-24T19:50:19.414Z", - "name": "Type1 - 7", - "short_name": "7-Type1", - "description": "Type 1 Quarters Flat nos. 73 - 84", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4600, - "pixel_y": 1351, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c83b0d4c-8193-472c-9424-af4e7692f5ce", - "fields": { - "str_id": "shakti", - "time_of_creation": "2018-06-24T19:50:18.660Z", - "name": "IDC Shakti", - "short_name": "Shakti", - "description": "Piping hot, home style food between 1 pm and 2:30 pm, weekdays only! Call Mr. Gaikwad to order a tiffin at +919833575881", - "parent": "d467330f-a3a7-484b-8eca-b23815a0a3a7", - "parent_relation": "Inside", - "group_id": 5, - "pixel_x": 4207, - "pixel_y": 1732, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c8d2acf1-3616-4a11-be5c-903a4219510e", - "fields": { - "str_id": "online-meet", - "time_of_creation": "2021-10-02T09:51:35.545Z", - "name": "Online meet", - "short_name": "Online meet", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "c9104777-7b53-4e78-a7f0-43704f066497", - "fields": { - "str_id": "online", - "time_of_creation": "2018-06-24T21:51:50.186Z", - "name": "Online", - "short_name": "Online", - "description": "", - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": 0, - "pixel_y": 0, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c967e833-4c43-42ff-bd33-1ce2774db62e", - "fields": { - "str_id": "lt-005", - "time_of_creation": "2018-06-24T19:50:18.694Z", - "name": "LT 005", - "short_name": "LT 005", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Ground floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "c9d30a36-6a79-43ad-89a1-f348955bdcf7", - "fields": { - "str_id": "aravali", - "time_of_creation": "2018-06-24T19:50:18.043Z", - "name": "B 23 Aravali", - "short_name": "Aravali", - "description": "Flat nos. 207-267", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 4415, - "pixel_y": 936, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "ca18b41e-234c-476f-9c4d-c95994727389", - "fields": { - "str_id": "hybrid-mode", - "time_of_creation": "2021-12-25T16:07:17.020Z", - "name": "Hybrid Mode", - "short_name": "Hybrid Mode", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "caefc809-3aed-4b51-beda-9ae2fe4f9dfd", - "fields": { - "str_id": "sac-library", - "time_of_creation": "2018-09-24T22:09:57.992Z", - "name": "SAC Library", - "short_name": "SAC Library", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "cb002ce4-621b-46ac-ace8-1cf94229f725", - "fields": { - "str_id": "micro-fluidics-lab", - "time_of_creation": "2018-06-24T19:50:18.536Z", - "name": "Micro Fluidics Lab", - "short_name": "Micro Fluidics Lab", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 12, - "pixel_x": 4620, - "pixel_y": 1783, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "cb4e638a-c39b-47ea-921d-1f533c19051d", - "fields": { - "str_id": "sameer", - "time_of_creation": "2018-06-24T19:50:18.870Z", - "name": "Society for Applied Microwave Electronics Engineering & Research", - "short_name": "SAMEER ", - "description": "http://www.sameer.gov.in Phone: +912225727100 Fax: +912225723254 SAMEER was set up as an autonomous R & D laboratory at Mumbai under the then Department of Electronics, Government of India with a broad mandate to undertake R & D work in the areas of Microwave Engineering and Electromagnetic Engineering Technology. It is an offshoot of the special microwave products unit (SMPU) set up in 1977 at the TATA INSTITUTE OF FUNDAMENTAL RESEARCH (TIFR), Mumbai. SAMEER, Mumbai was setup in 1984.", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 4538, - "pixel_y": 837, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "cc1c7851-a456-418e-81d0-a4ac595297b6", - "fields": { - "str_id": "squash-court", - "time_of_creation": "2018-06-24T19:50:19.572Z", - "name": "Squash Court", - "short_name": "Squash Court", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 8, - "pixel_x": 3115, - "pixel_y": 1485, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "cc670ac3-a58f-4a2e-aaba-ee3d6ea9258b", - "fields": { - "str_id": "webex-events", - "time_of_creation": "2020-07-30T06:15:34.170Z", - "name": "WebEx Events", - "short_name": "WebEx Events", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "cc810641-c50f-4fb2-92a9-5e093b2a4240", - "fields": { - "str_id": "from-home", - "time_of_creation": "2021-01-17T14:54:56.537Z", - "name": "From Home", - "short_name": "From Home", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "ccc12ac3-b73e-40d1-8a2d-7c0e9e8c59d5", - "fields": { - "str_id": "h18", - "time_of_creation": "2018-06-24T19:50:19.509Z", - "name": "Hostel 18", - "short_name": "H18", - "description": "Multi storeyed student residential facility", - "parent": null, - "parent_relation": null, - "group_id": 2, - "pixel_x": 2897, - "pixel_y": 727, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "ccd5c8e3-4e93-4816-a87e-416ee0d051d5", - "fields": { - "str_id": "indoor-badminton-courts", - "time_of_creation": "2019-08-03T06:32:10.638Z", - "name": "Indoor Badminton Courts", - "short_name": "Indoor Badminton Courts", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "ccefdca7-e40e-4256-bddb-350f415283ac", - "fields": { - "str_id": "lakeside-jal-vihar", - "time_of_creation": "2018-08-21T13:46:55.100Z", - "name": "Lakeside, Jal Vihar", - "short_name": "Lakeside, Jal Vihar", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "cd01eed0-b1dc-4921-aa3f-1b88081492b2", - "fields": { - "str_id": "h4", - "time_of_creation": "2018-06-24T19:50:18.198Z", - "name": "Hostel 04 MadHouse", - "short_name": "H4", - "description": "Hostel security: +912225762604 Hall Manager: +912225762704 G. Sec: Kumar Gaurav +919969800320", - "parent": null, - "parent_relation": null, - "group_id": 2, - "pixel_x": 3176, - "pixel_y": 867, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "cd0dc47f-5286-45cd-a17d-d1867df08f69", - "fields": { - "str_id": "aero-engg", - "time_of_creation": "2018-06-24T19:50:18.036Z", - "name": "Aerospace Engineering Department", - "short_name": "Aero engg", - "description": "http://www.aero.iitb.ac.in\r\nPhone No.: +912225767101 / +912225767102\r\nFax No.: +91222572 2602.\r\nEmail: office@aero.iitb.ac.in \r\n\r\nThe department offers academic programs for B. Tech, M. Tech, Ph. D. Specialization are offered: Aerodynamics, Control and Guidance, Propulsion, Structures, and Systems Engineering", - "parent": null, - "parent_relation": null, - "group_id": 1, - "pixel_x": 4153, - "pixel_y": 2249, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "cd35be33-81a8-481c-a5ac-507fb5dbcef2", - "fields": { - "str_id": "ncc-office", - "time_of_creation": "2018-06-24T19:50:18.294Z", - "name": "NCC Office", - "short_name": "NCC Office", - "description": "Tel: +912225768917", - "parent": null, - "parent_relation": "", - "group_id": 9, - "pixel_x": 3387, - "pixel_y": 1421, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "cedfdafd-c5c3-4142-b6b2-63a8ac35e3bb", - "fields": { - "str_id": "h10-annx", - "time_of_creation": "2018-06-24T19:50:18.156Z", - "name": "Hostel 10 Annexe (Girls Hostel)", - "short_name": "H10 Annx", - "description": "Hostel security: +912225762610 Hall Manager: +912225762710 G. Sec: Madhu Lekha +919769372532", - "parent": null, - "parent_relation": "", - "group_id": 2, - "pixel_x": 2886, - "pixel_y": 2452, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "cee94b99-0fc1-4920-9a40-85660d2ad2b7", - "fields": { - "str_id": "sbi-atm", - "time_of_creation": "2018-06-24T19:50:18.054Z", - "name": "ATM - State Bank near Tansa", - "short_name": "SBI ATM", - "description": "", - "parent": "e57586cc-f018-47ef-bf69-9d34244be9f1", - "parent_relation": "Near", - "group_id": 6, - "pixel_x": 3028, - "pixel_y": 989, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "cf2f6dd3-4fa2-436b-8cf0-ca3bcdcdbd29", - "fields": { - "str_id": "22-h2", - "time_of_creation": "2018-06-24T19:50:19.350Z", - "name": "Type H2 - 22", - "short_name": "22-H2", - "description": "H2 Type Quarters Flat nos. 169 - 176", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4231, - "pixel_y": 1259, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "cfd56b98-4785-44c7-8905-bb1e6544e743", - "fields": { - "str_id": "google-meets", - "time_of_creation": "2020-09-04T12:12:41.669Z", - "name": "Google Meets", - "short_name": "Google Meets", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "d028d244-e087-4a98-a3a3-296e26ae5245", - "fields": { - "str_id": "h5", - "time_of_creation": "2018-06-24T19:50:18.202Z", - "name": "Hostel 05 Penthouse", - "short_name": "H5", - "description": "Hostel security: +912225762605 Hall Manager: +912225762705 G. Sec: Shashank Patidar +919820717487", - "parent": null, - "parent_relation": "", - "group_id": 2, - "pixel_x": 2820, - "pixel_y": 970, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "d02d58b0-d504-43ef-a5d3-4d8436ed996d", - "fields": { - "str_id": "lt-301", - "time_of_creation": "2018-06-24T19:50:18.745Z", - "name": "LT 301", - "short_name": "LT 301", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Third floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "d2316bc8-881d-4b13-8afb-6c429dbe6995", - "fields": { - "str_id": "the-link-to-the-meeting-will-be-posted-before-the-event", - "time_of_creation": "2020-05-05T09:22:15.687Z", - "name": "The link to the meeting will be posted before the event", - "short_name": "The link to the meeting will be posted before the event", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "d236696e-39bb-4a67-92d1-aaff0482c8ed", - "fields": { - "str_id": "facebook-page-of-ncc-iitb", - "time_of_creation": "2020-07-06T07:12:40.287Z", - "name": "Facebook page of NCC IITB", - "short_name": "Facebook page of NCC IITB", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "d23888fb-cd7c-4b4f-a7b3-9ef8770f9d12", - "fields": { - "str_id": "httpszoomusj95729038877pwdulyxq1npswhjekrwrytsufcrsfhjdz09", - "time_of_creation": "2020-07-09T04:17:35.583Z", - "name": "https://zoom.us/j/95729038877?pwd=UlYxQ1NpSWhJekRwRytsUFcrSFhjdz09", - "short_name": "https://zoom.us/j/95729038877?pwd=UlYxQ1NpSWhJekRwRytsUFcrSFhjdz09", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "d238d809-728f-4067-937c-8494fcd3383d", - "fields": { - "str_id": "room-350-2nd-floor-department-of-chemistry", - "time_of_creation": "2019-01-31T04:11:03.312Z", - "name": "Room 350, 2nd floor, Department of Chemistry", - "short_name": "Room 350, 2nd floor, Department of Chemistry", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "d2bd40a4-e663-44e4-8039-bddb6441636f", - "fields": { - "str_id": "19-type1", - "time_of_creation": "2018-06-24T19:50:19.456Z", - "name": "Type1 - 19", - "short_name": "19-Type1", - "description": "Type 1 Quarters Flat nos. 225 - 259", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4340, - "pixel_y": 815, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "d2fec675-44b9-48f5-a779-878d97640c95", - "fields": { - "str_id": "lt-003", - "time_of_creation": "2018-06-24T19:50:19.590Z", - "name": "LT 003", - "short_name": "LT 003", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Ground floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "d3244c33-3f5e-466b-8fac-fe540afa4530", - "fields": { - "str_id": "yoga-room-3rd-floor-new-sac-opposite-to-hostel-11", - "time_of_creation": "2019-05-30T13:51:37.822Z", - "name": "Yoga room, 3rd floor, New SAC, opposite to hostel 11", - "short_name": "Yoga room, 3rd floor, New SAC, opposite to hostel 11", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "d39bab65-7802-49d6-b129-b5c325511dde", - "fields": { - "str_id": "2b-22", - "time_of_creation": "2018-06-24T19:50:18.994Z", - "name": "Type 2B 22", - "short_name": "2B 22", - "description": "2B-Type Quarters, Flat nos 141 - 164", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 4761, - "pixel_y": 1315, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "d42c795a-9171-4f98-b66a-446d5ee2b2e1", - "fields": { - "str_id": "convocation-hall-foyer", - "time_of_creation": "2019-10-11T16:34:42.840Z", - "name": "Convocation Hall Foyer", - "short_name": "Convocation Hall Foyer", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "d467330f-a3a7-484b-8eca-b23815a0a3a7", - "fields": { - "str_id": "idc", - "time_of_creation": "2018-06-24T19:50:18.223Z", - "name": "Industrial Design Centre", - "short_name": "IDC", - "description": "http://www.idc.iitb.ac.in\n+91222576 7801\n\nThe department offers academic programs for M. Des and Ph. D. Sub-disciplines include Product Design, Industrial Design, Visual Communication, Animation, Interaction Design, Mobility and vehicle design", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 4207, - "pixel_y": 1732, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "d483545a-95ba-438d-a218-20a8ee2946a1", - "fields": { - "str_id": "combustion-lab", - "time_of_creation": "2018-06-24T19:50:18.518Z", - "name": "IC Engine and Combustion Lab", - "short_name": "Combustion Lab", - "description": "Comes under Mechanical Engineering Department +912225764586", - "parent": "f5303dcd-b456-4147-a414-88a89815d826", - "parent_relation": "Backside", - "group_id": 12, - "pixel_x": 4295, - "pixel_y": 1570, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "d526aa95-3fb6-4770-8229-bf6ac50f8a68", - "fields": { - "str_id": "ananta", - "time_of_creation": "2018-06-24T19:50:18.040Z", - "name": "B 22 Ananta", - "short_name": "Ananta", - "description": "Flat nos. 147-206", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 4709, - "pixel_y": 865, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "d590e065-755e-41d8-b9ed-630feb4770f2", - "fields": { - "str_id": "a17", - "time_of_creation": "2018-06-24T19:50:19.060Z", - "name": "Bungalow A17 ", - "short_name": "A17", - "description": "A-Type Bungalow", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4155, - "pixel_y": 1175, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "d66064b5-28c8-4684-9db3-c63e22b04410", - "fields": { - "str_id": "conference-room-01st-floor-kresit", - "time_of_creation": "2018-11-27T07:34:53.319Z", - "name": "Conference Room, 01st Floor, KReSIT", - "short_name": "Conference Room, 01st Floor, KReSIT", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "d6937d50-0d67-46dc-8ec0-5a98def59be2", - "fields": { - "str_id": "badminton-court", - "time_of_creation": "2018-06-24T19:50:18.061Z", - "name": "Badminton Court", - "short_name": "Badminton Court", - "description": "", - "parent": "dc4c5b70-1ab2-4d3d-9906-e61140ce7d51", - "parent_relation": "Inside", - "group_id": 8, - "pixel_x": 3480, - "pixel_y": 1081, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "d6a97579-ac84-4f59-baa8-a989295924b3", - "fields": { - "str_id": "vindya", - "time_of_creation": "2018-06-24T19:50:18.896Z", - "name": "C22, B wing, Vindya", - "short_name": "Vindya", - "description": "Hill side, Flat nos. 169 - 186", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4646, - "pixel_y": 1110, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "d6bc5e7b-3390-43b9-b3c9-efb814f7f8b7", - "fields": { - "str_id": "room-no-109-new-csecc-building", - "time_of_creation": "2019-02-07T12:38:30.424Z", - "name": "Room No. 109, New CSE/CC Building ", - "short_name": "Room No. 109, New CSE/CC Building ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "d73053a0-7729-45af-ac3e-cf15c2a43409", - "fields": { - "str_id": "bkc", - "time_of_creation": "2019-09-26T16:54:06.461Z", - "name": "BKC", - "short_name": "BKC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "d764cffc-d184-4707-a695-a6efb62d2b31", - "fields": { - "str_id": "oat", - "time_of_creation": "2018-06-24T19:50:18.835Z", - "name": "Open Air Theatre", - "short_name": "OAT", - "description": "Tel: +912225768968", - "parent": "36392e9a-cec2-47a7-ba8d-6053f4c46b7a", - "parent_relation": "Inside", - "group_id": 8, - "pixel_x": 3599, - "pixel_y": 1225, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "d786b3c4-e8ee-4119-a2d8-c8d3b5387f2a", - "fields": { - "str_id": "a12", - "time_of_creation": "2018-06-24T19:50:19.042Z", - "name": "Bungalow A12 ", - "short_name": "A12", - "description": "A-Type Bungalow", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2157, - "pixel_y": 2855, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "d7a98325-4b30-4502-a099-3dfc6683bafd", - "fields": { - "str_id": "yoga-room-new-sac", - "time_of_creation": "2018-12-04T04:19:41.962Z", - "name": "Yoga Room, New SAC.", - "short_name": "Yoga Room, New SAC.", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "d7b2176f-42bc-4523-8a35-6457134db7d2", - "fields": { - "str_id": "csre-a", - "time_of_creation": "2018-06-24T19:50:19.199Z", - "name": "CSRE A", - "short_name": "CSRE A", - "description": "CSRE Quarters C139, C140, C143. C144. C147, C148", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4283, - "pixel_y": 1163, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "d7ec7b7b-5e2b-4fe6-879e-96aeb4ceba17", - "fields": { - "str_id": "27-h2", - "time_of_creation": "2018-06-24T19:50:19.368Z", - "name": "Type H2 - 28", - "short_name": "27-H2", - "description": "H2 Type Quarters Flat nos. 217 - 232", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4193, - "pixel_y": 1295, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "d877428e-cf7d-411e-9210-4960b2f997ef", - "fields": { - "str_id": "hostel-10-terrace", - "time_of_creation": "2020-02-28T06:35:55.091Z", - "name": "Hostel 10 Terrace", - "short_name": "Hostel 10 Terrace", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "d879656f-74fc-472d-84d8-adecf3de8182", - "fields": { - "str_id": "seminar-hall-civil-department", - "time_of_creation": "2019-01-16T21:44:49.434Z", - "name": "Seminar Hall, Civil Department ", - "short_name": "Seminar Hall, Civil Department ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "d8842021-716a-4fcd-b0b1-b7fbc36b3158", - "fields": { - "str_id": "iit-bombay", - "time_of_creation": "2018-06-24T21:41:38.235Z", - "name": "IIT Bombay", - "short_name": "IIT Bombay", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "d9155381-e668-43ab-965d-80f4d626fef2", - "fields": { - "str_id": "h15", - "time_of_creation": "2018-06-24T19:50:18.182Z", - "name": "Hostel 15 Trident", - "short_name": "H15", - "description": "Hostel security: +912225762715 Hall Manager: G. Sec:", - "parent": null, - "parent_relation": null, - "group_id": 2, - "pixel_x": 4196, - "pixel_y": 870, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "d940761e-4c7d-4d6d-b185-072abf22866b", - "fields": { - "str_id": "9-h2", - "time_of_creation": "2018-06-24T19:50:19.301Z", - "name": "Type H2 - 9", - "short_name": "9-H2", - "description": "H2 Type Quarters Flat nos. 65 - 72", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 1145, - "pixel_y": 2682, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "d9b044c4-50e3-4287-a868-16bdde8e7bac", - "fields": { - "str_id": "25techfestorg", - "time_of_creation": "2021-12-11T14:15:33.652Z", - "name": "25.techfest.org", - "short_name": "25.techfest.org", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "d9fe75c9-d31b-4847-9dc1-27ece2dc4d16", - "fields": { - "str_id": "discord-server", - "time_of_creation": "2022-02-11T10:59:05.650Z", - "name": "Discord Server", - "short_name": "Discord Server", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "da0b901b-e6f6-447e-ae5b-2f9b518778df", - "fields": { - "str_id": "-", - "time_of_creation": "2022-02-17T15:23:54.471Z", - "name": "-", - "short_name": "-", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "db017a69-fb2c-4a5f-be1e-7b53218e2d83", - "fields": { - "str_id": "room-cl149-ground-floor-department-of-chemistry", - "time_of_creation": "2019-02-13T18:26:45.621Z", - "name": "Room CL149, Ground Floor, Department of Chemistry", - "short_name": "Room CL149, Ground Floor, Department of Chemistry", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "db0c6848-36fe-427d-9be6-afad234f4b64", - "fields": { - "str_id": "b7", - "time_of_creation": "2018-06-24T19:50:19.093Z", - "name": "Type B-7", - "short_name": "B7", - "description": "B-Type Quarters Flat nos. 27 - 30", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2529, - "pixel_y": 3009, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "db6f65c0-e0df-4175-bfc3-deba8dcb71eb", - "fields": { - "str_id": "tulsi-b", - "time_of_creation": "2018-06-24T19:50:18.903Z", - "name": "Tulsi B", - "short_name": "Tulsi B", - "description": "PS Quarters", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4573, - "pixel_y": 987, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "dbcfb1df-c87c-4c13-a0b2-d9b96751a5b3", - "fields": { - "str_id": "idp-corro-sci--engg", - "time_of_creation": "2018-06-24T19:50:18.848Z", - "name": "Inter-disciplinary Programme in Corrosion Science & Engineering", - "short_name": "IDP Corro Sci & Engg", - "description": "http://www.iitb.ac.in/~corrsci Office inside Metallurgical Engineering and Material Science building Tel: +912225767601 / +912225767602 Ph. D and M.Tech offered in this programme. Research focuses on corrosion and its control with applications in industris such as Oil and gas industry, Marine and aerospace industry, Automobile industry, Building and constructions, General engineering industry, Power plants, etc.", - "parent": "aa4fa9f4-40fa-4d99-bba8-bd985d11f67e", - "parent_relation": "Inside", - "group_id": 1, - "pixel_x": 3631, - "pixel_y": 2044, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "dbfc81ea-1b1a-4ebf-9446-883e7e6c7cbd", - "fields": { - "str_id": "21-type1", - "time_of_creation": "2018-06-24T19:50:19.464Z", - "name": "Type1 - 21", - "short_name": "21-Type1", - "description": "Type 1 Quarters Flat nos. 290 - 309", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4521, - "pixel_y": 1346, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "dbfd5d7b-72d8-4224-be0b-3680c7664255", - "fields": { - "str_id": "yoga-room-new-sac", - "time_of_creation": "2018-08-16T10:54:30.706Z", - "name": "Yoga Room, new SAC", - "short_name": "Yoga Room, new SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "dc2055c4-4844-468a-ac1d-2cbe04b30115", - "fields": { - "str_id": "a16", - "time_of_creation": "2018-06-24T19:50:19.056Z", - "name": "Bungalow A16 ", - "short_name": "A16", - "description": "A-Type Bungalow", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4085, - "pixel_y": 1210, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "dc3fcf5f-e41d-44be-a32f-7da92ef76756", - "fields": { - "str_id": "17-h2", - "time_of_creation": "2018-06-24T19:50:19.330Z", - "name": "Type H2 - 17", - "short_name": "17-H2", - "description": "H2 Type Quarters Flat nos. 129 - 136", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3110, - "pixel_y": 1832, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "dc4c5b70-1ab2-4d3d-9906-e61140ce7d51", - "fields": { - "str_id": "indoor-stadium", - "time_of_creation": "2018-06-24T19:50:18.227Z", - "name": "Indoor Stadium", - "short_name": "Indoor Stadium", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 8, - "pixel_x": 3480, - "pixel_y": 1081, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "dca613da-2467-4e9f-b238-601a122df5dd", - "fields": { - "str_id": "nasa", - "time_of_creation": "2018-06-24T19:50:18.291Z", - "name": "Non- Academic Staff Association", - "short_name": "NASA", - "description": "Tel: +912225768919", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 4326, - "pixel_y": 1896, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "dcaf5f4d-cf0b-4535-b425-9bb5ef27d1c2", - "fields": { - "str_id": "a10", - "time_of_creation": "2018-06-24T19:50:19.035Z", - "name": "Bungalow A10 ", - "short_name": "A10", - "description": "A-Type Bungalow", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 1962, - "pixel_y": 2928, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "dcdbc389-fdb5-4ba3-aa9b-7ba3b46200ab", - "fields": { - "str_id": "sustan--ts-online", - "time_of_creation": "2020-10-27T05:43:37.502Z", - "name": "Sustan- TS online", - "short_name": "Sustan- TS online", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "dcf95d9c-613f-427b-ba0f-e785a87e96fb", - "fields": { - "str_id": "fluid-processing", - "time_of_creation": "2018-06-24T19:50:18.612Z", - "name": "Supercritical fluid Processing facility (Chemical Engg.)", - "short_name": "Fluid Processing", - "description": "Comes under Chemical Engineering Department +912225767201 / +912225767202", - "parent": "51839c0e-324f-413b-8edf-510df2927fb7", - "parent_relation": "", - "group_id": 1, - "pixel_x": 4490, - "pixel_y": 1760, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "dcfdb8e1-b859-4244-96b7-f548e85fdcb2", - "fields": { - "str_id": "theater-room-sac", - "time_of_creation": "2019-09-29T14:08:24.134Z", - "name": "Theater Room, SAC", - "short_name": "Theater Room, SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "ddd2cd17-860e-4468-a02f-dbc36133b6cd", - "fields": { - "str_id": "b11", - "time_of_creation": "2018-06-24T19:50:19.108Z", - "name": "Type B-11", - "short_name": "B11", - "description": "B-Type Quarters Flat nos. 43 - 46", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2232, - "pixel_y": 2552, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "dde00d7c-72ee-4871-8ee4-60466a65b4c9", - "fields": { - "str_id": "dance-room", - "time_of_creation": "2019-08-14T11:54:47.943Z", - "name": "Dance Room", - "short_name": "Dance Room", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "de1f68af-8487-465e-9635-7467d5df0bc0", - "fields": { - "str_id": "gymkhana", - "time_of_creation": "2018-06-24T22:07:44.719Z", - "name": "Gymkhana Building", - "short_name": "Gymkhana", - "description": "New building for student sport activities.", - "parent": null, - "parent_relation": null, - "group_id": 8, - "pixel_x": 3058, - "pixel_y": 1237, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "de31d3d3-f39f-4a2e-aac0-a9d849fa0bde", - "fields": { - "str_id": "home", - "time_of_creation": "2020-04-30T13:15:09.914Z", - "name": "Home", - "short_name": "Home", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "de7ef4c4-47b7-48c9-8408-7cd78dc41d7e", - "fields": { - "str_id": "qip-1", - "time_of_creation": "2018-06-24T19:50:19.472Z", - "name": "QIP 1", - "short_name": "QIP 1", - "description": "QIP Quarters Flat nos. 1 - 16", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4830, - "pixel_y": 1376, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "de93bc1e-9dcb-47bd-953c-4ab5b4c477c3", - "fields": { - "str_id": "idp-ieor", - "time_of_creation": "2018-06-24T19:50:18.851Z", - "name": "Industrial Engineering and Operations Research", - "short_name": "IDP IEOR", - "description": "http://www.ieor.iitb.ac.in Room 308A, Mechanical Engineering Building, Indian Institute of Technology Bombay, Powai, Mumbai (INDIA), PIN: 400076, Fax: +912225726875, +912225723480 M.Tech, Dual Degree (MSc-PhD) and PhD offered in this programme. Research areas include Optimization: Models, theory and algorithms, Stochastic models, Stochastic control, Simulation Modeling and Analysis, Artificial Intelligence based methods, Game theory, Logistics and Transportation, Supply Chain, Analysis and Inventory Planning, Financial Engineering, Optimization, Planning and Control in Manufacturing and Robotics, Scheduling and ERP", - "parent": "57be98ca-7e19-47c7-a249-64140e246f2b", - "parent_relation": "Inside", - "group_id": 1, - "pixel_x": 4009, - "pixel_y": 1645, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "deb1e01f-13a4-4491-bcea-5b313e0138c5", - "fields": { - "str_id": "room-105-idc", - "time_of_creation": "2020-01-15T13:22:44.775Z", - "name": "Room 105, IDC", - "short_name": "Room 105, IDC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "deea6dae-cb0e-4f0d-8a32-258eefabb960", - "fields": { - "str_id": "2b-20", - "time_of_creation": "2018-06-24T19:50:18.986Z", - "name": "Type 2B 20", - "short_name": "2B 20", - "description": "2B-Type Quarters, Flat nos 115 - 134", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 4786, - "pixel_y": 1431, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "deeb8004-d462-409b-a83d-f91c94072626", - "fields": { - "str_id": "c6", - "time_of_creation": "2018-06-24T19:50:19.149Z", - "name": "Type C-6", - "short_name": "C6", - "description": "C-Type Quarters Flat nos. 37 - 42", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3547, - "pixel_y": 2771, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "df735571-14c0-4422-aea7-8e95b0b0bbed", - "fields": { - "str_id": "hostels-kv-som-campus-school-ncc-ground", - "time_of_creation": "2019-08-14T06:31:03.270Z", - "name": "Hostels, KV, SOM, Campus school, NCC ground", - "short_name": "Hostels, KV, SOM, Campus school, NCC ground", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "dfdd3a88-6544-44b1-9c74-80c5b8b339ac", - "fields": { - "str_id": "ce-233", - "time_of_creation": "2018-10-01T08:05:06.510Z", - "name": "CE 233", - "short_name": "CE 233", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "dfe1fe8e-40ff-47c4-8893-70dc8584352d", - "fields": { - "str_id": "lt-206", - "time_of_creation": "2018-06-24T19:50:18.741Z", - "name": "LT 206", - "short_name": "LT 206", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Second floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "dfe35072-f951-4a35-b19f-a515ace13e59", - "fields": { - "str_id": "4-type1", - "time_of_creation": "2018-06-24T19:50:19.407Z", - "name": "Type1 - 4", - "short_name": "4-Type1", - "description": "Type 1 Quarters Flat nos. 37 - 48", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4067, - "pixel_y": 2658, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e037ccea-d527-4299-97ad-aa5bc8395350", - "fields": { - "str_id": "httpsbitly3ktsg20", - "time_of_creation": "2020-09-19T13:52:39.763Z", - "name": "https://bit.ly/3ktsG20", - "short_name": "https://bit.ly/3ktsG20", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "e03d1515-8cff-4c0d-a439-cd9ff1c9b467", - "fields": { - "str_id": "market-gate", - "time_of_creation": "2018-06-24T19:50:18.272Z", - "name": "Market Gate, Y point Gate no. 3", - "short_name": "Market Gate", - "description": "Tel: +912225768979 / +912225761121", - "parent": null, - "parent_relation": "", - "group_id": 10, - "pixel_x": 3829, - "pixel_y": 2972, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e15ad8b5-ee62-4d0d-b3aa-aea1391adb9d", - "fields": { - "str_id": "brewberrys", - "time_of_creation": "2018-06-24T19:50:18.076Z", - "name": "Brewberrys Cafe", - "short_name": "Brewberrys", - "description": "Ph no: +912265641001,\nHostel 8, IIT Bombay, Powai, Mumbai", - "parent": null, - "parent_relation": "", - "group_id": 5, - "pixel_x": 2967, - "pixel_y": 1271, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e1827c34-679c-4c54-9f0b-da20aa98114c", - "fields": { - "str_id": "15-type1", - "time_of_creation": "2018-06-24T19:50:19.440Z", - "name": "Type1 - 15", - "short_name": "15-Type1", - "description": "Type 1 Quarters Flat nos. 169 - 180", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3151, - "pixel_y": 1798, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e1a9e241-d6e8-4d80-91b5-76921186c600", - "fields": { - "str_id": "lh-102", - "time_of_creation": "2018-06-24T19:50:18.803Z", - "name": "LH 102", - "short_name": "LH 102", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "First floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e2f0549e-11ed-4f03-abae-e2d9bc5eab20", - "fields": { - "str_id": "h5-common-room", - "time_of_creation": "2019-04-12T07:46:05.592Z", - "name": "H5 Common Room", - "short_name": "H5 Common Room", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "e319e68f-124d-4c69-b89f-d188ffa7385f", - "fields": { - "str_id": "httpstinyurlcomcsec-club-intro", - "time_of_creation": "2021-08-06T16:15:48.247Z", - "name": "https://tinyurl.com/csec-club-intro", - "short_name": "https://tinyurl.com/csec-club-intro", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "e332103d-4dbe-44d3-adbc-08866c77f2ee", - "fields": { - "str_id": "webinar-jam", - "time_of_creation": "2020-09-04T13:10:12.981Z", - "name": "Webinar Jam", - "short_name": "Webinar Jam", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "e41e1806-5763-4ebd-8ced-6572e2e5b4c1", - "fields": { - "str_id": "lh-foyerfirst-floor", - "time_of_creation": "2018-09-24T03:50:32.798Z", - "name": "LH Foyer(first floor) ", - "short_name": "LH Foyer(first floor) ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "e42503eb-f06d-42ec-8ddc-140cba44f851", - "fields": { - "str_id": "lt-103", - "time_of_creation": "2018-06-24T19:50:18.709Z", - "name": "LT 103", - "short_name": "LT 103", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "First floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e46d7546-67c6-4942-a9d4-1ad121c36ee6", - "fields": { - "str_id": "6-type1", - "time_of_creation": "2018-06-24T19:50:19.411Z", - "name": "Type1 - 6", - "short_name": "6-Type1", - "description": "Type 1 Quarters Flat nos. 61 - 72", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4660, - "pixel_y": 1367, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e483e17b-007e-465b-95a2-6df7834fed02", - "fields": { - "str_id": "work-from-home", - "time_of_creation": "2020-03-27T08:48:37.659Z", - "name": "Work from Home", - "short_name": "Work from Home", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "e4a3a170-9b36-46d1-bf75-48c35478f0d6", - "fields": { - "str_id": "h10a-qip", - "time_of_creation": "2018-06-24T19:50:18.163Z", - "name": "Hostel 10A QIP (Girls Hostel)", - "short_name": "H10A QIP", - "description": "Hostel security: +912225762619 Hall Manager: +912225762719 G. Sec: Sagarika Kumar +919167273231", - "parent": null, - "parent_relation": null, - "group_id": 2, - "pixel_x": 4716, - "pixel_y": 1448, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e5125a9d-6305-480b-bc74-1ced68227356", - "fields": { - "str_id": "lt-306", - "time_of_creation": "2018-06-24T19:50:18.765Z", - "name": "LT 306", - "short_name": "LT 306", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Third floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e536c5fb-95ba-4e25-8d58-62bb8ccef2c5", - "fields": { - "str_id": "vadodara", - "time_of_creation": "2019-09-05T03:13:38.212Z", - "name": "Vadodara", - "short_name": "Vadodara", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "e5734960-5c89-4040-834f-e44d559f92f6", - "fields": { - "str_id": "energy-club", - "time_of_creation": "2020-10-31T13:31:57.920Z", - "name": "Energy Club", - "short_name": "Energy Club", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "e57586cc-f018-47ef-bf69-9d34244be9f1", - "fields": { - "str_id": "tansa", - "time_of_creation": "2018-06-24T19:50:18.388Z", - "name": "Tansa House King of campus (Proj. Staff Boys)", - "short_name": "Tansa", - "description": "Tel: +912225762620", - "parent": null, - "parent_relation": "", - "group_id": 2, - "pixel_x": 3028, - "pixel_y": 932, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e57734a7-bfde-49a2-9d69-75991c9e2d89", - "fields": { - "str_id": "h7", - "time_of_creation": "2018-06-24T19:50:18.208Z", - "name": "Hostel 07 Lady of the Lake", - "short_name": "H7", - "description": "Legacy", - "parent": null, - "parent_relation": null, - "group_id": 2, - "pixel_x": 2454, - "pixel_y": 942, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e5993d0b-6e6d-4217-8bb8-d042b33a0d98", - "fields": { - "str_id": "c10", - "time_of_creation": "2018-06-24T19:50:19.165Z", - "name": "Type C-10", - "short_name": "C10", - "description": "C-Type Quarters Flat nos. 61 - 66", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2944, - "pixel_y": 2820, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e5dfc4df-6421-458c-adc5-ffbb12b4cd84", - "fields": { - "str_id": "conference-room-sac", - "time_of_creation": "2019-04-08T12:35:31.202Z", - "name": "Conference room, SAC", - "short_name": "Conference room, SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "e5e33e20-80ed-4bd1-9ce1-c9d32ed69e24", - "fields": { - "str_id": "2-h1", - "time_of_creation": "2018-06-24T19:50:19.216Z", - "name": "Type H1 - 2", - "short_name": "2-H1", - "description": "H1 Type Quarters Flat nos. 13 - 24", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 910, - "pixel_y": 2613, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e6eb8827-5107-4536-ab97-d7e367f3955f", - "fields": { - "str_id": "tata-centre", - "time_of_creation": "2018-06-24T19:50:19.531Z", - "name": "Proposed Building for Tata Centre for Technology", - "short_name": "Tata Centre", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 9, - "pixel_x": 4451, - "pixel_y": 2173, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e70aa487-8f24-4b51-884f-306c736c6d4a", - "fields": { - "str_id": "lc101", - "time_of_creation": "2019-06-07T12:56:18.409Z", - "name": "LC101", - "short_name": "LC101", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "e71b55e3-b431-4390-8c6f-8ad6bf524b14", - "fields": { - "str_id": "cisco-webex", - "time_of_creation": "2020-09-02T13:37:45.909Z", - "name": "Cisco WebEx ", - "short_name": "Cisco WebEx ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "e723efd5-90e6-4bd7-8541-d1f563863495", - "fields": { - "str_id": "staff-club", - "time_of_creation": "2018-06-24T19:50:18.370Z", - "name": "Staff Club", - "short_name": "Staff Club", - "description": "Tel: +912235764075", - "parent": null, - "parent_relation": "", - "group_id": 8, - "pixel_x": 2931, - "pixel_y": 2027, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e729b463-b315-4d1d-9852-b537dacaafe5", - "fields": { - "str_id": "cc103", - "time_of_creation": "2018-08-23T15:03:38.714Z", - "name": "CC103", - "short_name": "CC103", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "e72fc98b-f57d-409b-a548-e1a1584af57c", - "fields": { - "str_id": "main-building-lawns", - "time_of_creation": "2019-08-26T06:19:19.199Z", - "name": "Main Building Lawns", - "short_name": "Main Building Lawns", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "e732e21d-1e82-4f88-aace-257e6fe73f03", - "fields": { - "str_id": "zoom-link-in-description", - "time_of_creation": "2020-12-19T10:21:23.136Z", - "name": "Zoom Link in Description ", - "short_name": "Zoom Link in Description ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "e8342d74-dcab-489d-86a5-6ff5d7ae4887", - "fields": { - "str_id": "9-type1", - "time_of_creation": "2018-06-24T19:50:19.422Z", - "name": "Type1 - 9", - "short_name": "9-Type1", - "description": "Type 1 Quarters Flat nos. 97 - 108", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4675, - "pixel_y": 1293, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e886baf5-c610-42c6-a5db-85ff75f6422f", - "fields": { - "str_id": "canara-bank", - "time_of_creation": "2018-06-24T19:50:18.414Z", - "name": "Canara Bank", - "short_name": "Canara Bank", - "description": "Tel: +912225762797", - "parent": "5d7d2bba-e553-4733-9515-c991ff9e0f37", - "parent_relation": "First Floor", - "group_id": 6, - "pixel_x": 2989, - "pixel_y": 2154, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e8911eed-09a1-40d8-bfb4-f50e011ac296", - "fields": { - "str_id": "yoga-room-new-sac", - "time_of_creation": "2018-12-11T17:09:08.684Z", - "name": " Yoga Room, New SAC", - "short_name": " Yoga Room, New SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "e8921d19-0736-4e51-861a-53117fc80511", - "fields": { - "str_id": "10-type1", - "time_of_creation": "2018-06-24T19:50:19.425Z", - "name": "Type1 - 10", - "short_name": "10-Type1", - "description": "Type 1 Quarters Flat nos. 109 - 120", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4373, - "pixel_y": 758, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e8d20256-5395-4365-9a4b-673f9b74d52a", - "fields": { - "str_id": "a8", - "time_of_creation": "2018-06-24T19:50:19.028Z", - "name": "Bungalow A8 ", - "short_name": "A8", - "description": "A-Type Bungalow", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2176, - "pixel_y": 3135, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e92f2023-dd44-41bb-a349-38cf058b6f94", - "fields": { - "str_id": "link-in-caption", - "time_of_creation": "2021-04-09T15:18:50.450Z", - "name": "Link in Caption", - "short_name": "Link in Caption", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "e93b10ee-1c22-49d1-9653-7f5422e198ca", - "fields": { - "str_id": "ms-teams-td72dbz", - "time_of_creation": "2021-10-12T08:21:53.805Z", - "name": "MS Teams (td72dbz)", - "short_name": "MS Teams (td72dbz)", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "e966e602-b2be-45f8-a3f0-dbc81d7c28a8", - "fields": { - "str_id": "lc-102", - "time_of_creation": "2018-06-24T19:50:18.780Z", - "name": "LC 102", - "short_name": "LC 102", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "First floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "e98f1818-b44b-4ec2-b1c6-035714295f07", - "fields": { - "str_id": "gender-cell-office-3rd-floor-beside-swc-main-building", - "time_of_creation": "2019-08-26T06:55:33.440Z", - "name": "Gender cell office, 3rd floor, beside SWC, Main Building", - "short_name": "Gender cell office, 3rd floor, beside SWC, Main Building", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "ea364c0b-71fd-420d-9b19-aab9c0051852", - "fields": { - "str_id": "lh-101-lecture-hall-complex-iit-bombay", - "time_of_creation": "2019-08-27T05:42:28.862Z", - "name": "LH 101, Lecture Hall Complex, IIT Bombay", - "short_name": "LH 101, Lecture Hall Complex, IIT Bombay", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "ea6132a6-0438-4cf5-b9af-00e231e40a2d", - "fields": { - "str_id": "hostel-15-and-16-mess", - "time_of_creation": "2018-08-23T12:10:38.547Z", - "name": "Hostel 15 and 16 mess", - "short_name": "Hostel 15 and 16 mess", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "ea71fa79-96b2-44f1-ab11-151f15b982ef", - "fields": { - "str_id": "sine", - "time_of_creation": "2018-06-24T19:50:19.587Z", - "name": "Society for Innovation and Entrepreneurship", - "short_name": "SINE", - "description": "", - "parent": "874b540d-94cc-479d-9621-916552a3c02b", - "parent_relation": "Third Floor", - "group_id": 1, - "pixel_x": 4096, - "pixel_y": 1993, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "eb933817-ed0d-4047-90f2-ec8835639e81", - "fields": { - "str_id": "hackerank", - "time_of_creation": "2021-04-09T14:53:41.253Z", - "name": "Hackerank", - "short_name": "Hackerank", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "ebe9c23a-a414-4992-a92e-410250b471c6", - "fields": { - "str_id": "insight-discussion-forum", - "time_of_creation": "2021-01-27T07:37:11.953Z", - "name": "Insight Discussion Forum", - "short_name": "Insight Discussion Forum", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "ec0fced5-def8-4561-8282-41ce0d1dd4a7", - "fields": { - "str_id": "2b-18", - "time_of_creation": "2018-06-24T19:50:18.979Z", - "name": "Type 2B 18", - "short_name": "2B 18", - "description": "2B-Type Quarters, Flat nos 103 - 108", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 615, - "pixel_y": 2492, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "ecccdbd3-d9a6-4873-8d71-400f24f49a39", - "fields": { - "str_id": "h15--h16-mess", - "time_of_creation": "2018-09-25T07:23:46.303Z", - "name": "H15 & H16 Mess", - "short_name": "H15 & H16 Mess", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "ed0b73d6-6712-4fc9-999b-0bb4a9b59956", - "fields": { - "str_id": "dsf", - "time_of_creation": "2018-06-24T19:50:19.543Z", - "name": "Proposed D.S Foundation", - "short_name": "DSF", - "description": "", - "parent": "e6eb8827-5107-4536-ab97-d7e367f3955f", - "parent_relation": "inside", - "group_id": 9, - "pixel_x": 4451, - "pixel_y": 2173, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "ed18ba3e-5afb-49a4-8626-0977ab0d62be", - "fields": { - "str_id": "tulsi-a", - "time_of_creation": "2018-06-24T19:50:18.900Z", - "name": "Tulsi A", - "short_name": "Tulsi A", - "description": "PS Quarters", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4515, - "pixel_y": 952, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "ed6b9196-b8a8-488f-add2-a081e8d71c2a", - "fields": { - "str_id": "26-h2", - "time_of_creation": "2018-06-24T19:50:19.365Z", - "name": "Type H2 - 27", - "short_name": "26-H2", - "description": "H2 Type Quarters Flat nos. 209 - 216", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 793, - "pixel_y": 2214, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "ed961661-58e7-4a22-a37b-039c359ba759", - "fields": { - "str_id": "yoga-room-new-sac-opposite-hostel-11", - "time_of_creation": "2020-02-14T06:59:06.170Z", - "name": "Yoga Room, New SAC, Opposite Hostel 11", - "short_name": "Yoga Room, New SAC, Opposite Hostel 11", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "ee2a5dbb-4bbe-40d3-8f90-7498022b46b6", - "fields": { - "str_id": "seminar-hall-second-floor-vmcc", - "time_of_creation": "2019-10-31T17:05:57.268Z", - "name": "Seminar Hall, Second floor, VMCC", - "short_name": "Seminar Hall, Second floor, VMCC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "ee616b24-4ea1-4be7-bd83-0ad5d1252fcb", - "fields": { - "str_id": "zoom-live-and-yt-live", - "time_of_creation": "2021-01-15T13:58:16.869Z", - "name": "Zoom Live and YT Live", - "short_name": "Zoom Live and YT Live", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "ee6bc1c1-6b29-4ee6-9e64-1d7d1b480224", - "fields": { - "str_id": "hydraulics-lab-new", - "time_of_creation": "2018-06-24T19:50:18.510Z", - "name": "Hydraulics Lab (New)", - "short_name": "Hydraulics Lab (New)", - "description": "Comes under Civil Engineering Department HYDRAULICS LAB (VMCC) +912225764301", - "parent": "2f04f408-6ec8-447c-b898-df0b58035a6b", - "parent_relation": "Inside", - "group_id": 12, - "pixel_x": 4110, - "pixel_y": 1525, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "eeb2cb01-b7e9-42c8-a3fd-14cbbe047e65", - "fields": { - "str_id": "nag-auditorium-vmcc", - "time_of_creation": "2019-08-26T08:25:37.698Z", - "name": "Nag Auditorium, VMCC", - "short_name": "Nag Auditorium, VMCC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "eee814d6-8b03-45fa-a82d-1a8a87a6ba6c", - "fields": { - "str_id": "front-of-old-sac", - "time_of_creation": "2018-09-18T18:36:00.485Z", - "name": "Front of old SAC", - "short_name": "Front of old SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "ef24f4ae-2f7e-4d6f-a46f-f0cd730bc607", - "fields": { - "str_id": "lh-101", - "time_of_creation": "2018-06-24T19:50:18.800Z", - "name": "LH 101", - "short_name": "LH 101", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "First floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "f01dab99-bec0-4b41-9b7f-f9eff99c716c", - "fields": { - "str_id": "concrete-tech-lab", - "time_of_creation": "2018-06-24T19:50:18.463Z", - "name": "Concrete Technology Lab", - "short_name": "Concrete Tech Lab", - "description": "Comes under Structural Engineering Laboratories of Civil Engineering Department ", - "parent": "87e2a2b9-b922-4184-adee-10dbbb707f05", - "parent_relation": "Near", - "group_id": 12, - "pixel_x": 4330, - "pixel_y": 1495, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "f0778d6e-5ab5-4962-97eb-465b6f1c1f3b", - "fields": { - "str_id": "a11", - "time_of_creation": "2018-06-24T19:50:19.039Z", - "name": "Bungalow A11 ", - "short_name": "A11", - "description": "A-Type Bungalow", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2074, - "pixel_y": 2885, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "f0ebc61f-7154-4a8d-9d0f-7dab68e8f9b4", - "fields": { - "str_id": "cfdvs", - "time_of_creation": "2018-06-24T19:50:18.441Z", - "name": "Centre for Formal Design and Verification of Software", - "short_name": "CFDVS", - "description": "http://www.cfdvs.iitb.ac.in +912225768701", - "parent": "8fcf8049-5a13-4e60-b5b1-993a4a554526", - "parent_relation": "In basement", - "group_id": 1, - "pixel_x": 3928, - "pixel_y": 1496, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "f11d1f82-63b1-4a64-9b48-7cc3b967b2c8", - "fields": { - "str_id": "med-store", - "time_of_creation": "2018-06-24T19:50:18.284Z", - "name": "Medical Store", - "short_name": "Med. Store", - "description": "", - "parent": null, - "parent_relation": "", - "group_id": 9, - "pixel_x": 4000, - "pixel_y": 2808, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "f12cc4b8-0f0d-4e1c-bf38-b8edb7d6ead5", - "fields": { - "str_id": "main-gate", - "time_of_creation": "2018-06-24T19:50:18.268Z", - "name": "Main Gate no. 2", - "short_name": "Main Gate", - "description": "Tel: +9125768978 / +9125761123. Tum Tum coupons available at Main Gate", - "parent": null, - "parent_relation": "", - "group_id": 10, - "pixel_x": 2259, - "pixel_y": 3237, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "f146c25f-34c9-4436-8b19-296c239214d7", - "fields": { - "str_id": "c7", - "time_of_creation": "2018-06-24T19:50:19.153Z", - "name": "Type C-7", - "short_name": "C7", - "description": "C-Type Quarters Flat nos. 43 - 48", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3440, - "pixel_y": 2787, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "f1515b1f-505e-4218-a0ce-7f103da03c32", - "fields": { - "str_id": "lecture-hall-complex", - "time_of_creation": "2022-10-13T18:34:42.216Z", - "name": "Lecture Hall Complex", - "short_name": "Lecture Hall Complex", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "f1b71bae-84d0-4002-b5bc-31b7925be935", - "fields": { - "str_id": "lt-004", - "time_of_creation": "2018-06-24T19:50:18.690Z", - "name": "LT 004", - "short_name": "LT 004", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Ground floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "f21fe4c6-f8a6-4cd5-9d1d-cb9386088711", - "fields": { - "str_id": "styleups-youtube-live", - "time_of_creation": "2020-12-10T12:25:54.805Z", - "name": "StyleUp's YouTube Live", - "short_name": "StyleUp's YouTube Live", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "f23dd119-418e-4207-86c8-0182ef6bfc96", - "fields": { - "str_id": "chemical-engineering-department--cl-112-old-cl-118", - "time_of_creation": "2020-02-07T06:07:13.279Z", - "name": "Chemical Engineering Department- CL 112 (Old CL 118)", - "short_name": "Chemical Engineering Department- CL 112 (Old CL 118)", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "f25ed34b-698d-45fd-8492-a809a16622d2", - "fields": { - "str_id": "ncc-t-point", - "time_of_creation": "2019-03-03T10:17:28.707Z", - "name": "NCC T-Point ", - "short_name": "NCC T-Point ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "f3288cac-8ebd-4a42-a88b-d0ae624359c9", - "fields": { - "str_id": "heat-pump-lab", - "time_of_creation": "2018-06-24T19:50:18.496Z", - "name": "Heat Pump Lab", - "short_name": "Heat Pump Lab", - "description": "Comes under Mechanical Engineering Department +912225764527 / +912225764593", - "parent": null, - "parent_relation": "", - "group_id": 12, - "pixel_x": 4153, - "pixel_y": 1539, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "f36a1f18-8b64-4084-9b29-1beddef2a551", - "fields": { - "str_id": "ctr-19", - "time_of_creation": "2018-06-24T19:50:19.203Z", - "name": "CTR 19", - "short_name": "CTR 19", - "description": "CTR Quarters Flat nos. 115 - 126", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 1815, - "pixel_y": 3040, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "f3fbfd2b-36a0-46f2-9cb1-0bad97e60c28", - "fields": { - "str_id": "kresit", - "time_of_creation": "2018-06-24T19:50:18.234Z", - "name": "Kanwal Rekhi School of Information Technology", - "short_name": "KReSIT", - "description": "For admission / general queries +9125767967 / +9125767977\nOffice +9125767901 / +9125767902 \nSecurity +912225762784", - "parent": null, - "parent_relation": "", - "group_id": 1, - "pixel_x": 3301, - "pixel_y": 2106, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "f4579126-c78f-46e4-b56a-18d63a01d6ae", - "fields": { - "str_id": "instagram-live---insynciitb", - "time_of_creation": "2020-06-30T08:00:24.094Z", - "name": "Instagram Live - @insync_iitb", - "short_name": "Instagram Live - @insync_iitb", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "f4b7fbab-6373-4880-9c36-4105d618df35", - "fields": { - "str_id": "14-h1", - "time_of_creation": "2018-06-24T19:50:19.263Z", - "name": "Type H1 - 14", - "short_name": "14-H1", - "description": "H1 Type Quarters Flat nos. 169 - 176 and 1A - 2A", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4645, - "pixel_y": 1407, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "f4e51539-d12d-4b9d-89b5-561f95fcebf3", - "fields": { - "str_id": "padmavihar", - "time_of_creation": "2018-06-24T19:50:19.561Z", - "name": "Guest House / Padmavihar", - "short_name": "Padmavihar", - "description": "", - "parent": null, - "parent_relation": null, - "group_id": 3, - "pixel_x": 2776, - "pixel_y": 1936, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "f5303dcd-b456-4147-a414-88a89815d826", - "fields": { - "str_id": "treelabs", - "time_of_creation": "2018-06-24T19:50:18.624Z", - "name": "Treelabs", - "short_name": "Treelabs", - "description": "TreeLabs is an 'inventions factory' to nurture and encourage inventors and innovations, leading to entrepreneurship Address: Electrical Engineering Dept, N-5 Bay (near Mech Engg Dept), I.I.T.Bombay, Powai, Mumbai - 400076, India. Phone: +912225723001 / +912225764410 Email: Prof. Dipankar : dipankar@iitbombay.org", - "parent": null, - "parent_relation": "", - "group_id": 9, - "pixel_x": 4225, - "pixel_y": 1630, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "f56fff0b-5293-436d-9f74-0e973b679b04", - "fields": { - "str_id": "som-ic01", - "time_of_creation": "2018-07-28T10:19:29.075Z", - "name": "SOM IC01", - "short_name": "SOM IC01", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "f60a3b0a-4923-4672-a31f-5725f07777a9", - "fields": { - "str_id": "10-h2", - "time_of_creation": "2018-06-24T19:50:19.304Z", - "name": "Type H2 - 10", - "short_name": "10-H2", - "description": "H2 Type Quarters Flat nos. 73 - 80", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 978, - "pixel_y": 2702, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "f6361380-2a5e-443c-a4de-95bf48f838fc", - "fields": { - "str_id": "sac-guitar-room", - "time_of_creation": "2018-07-29T07:32:07.590Z", - "name": "SAC Guitar Room", - "short_name": "SAC Guitar Room", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "f651597e-17e6-47b7-9a06-6faaf7898d00", - "fields": { - "str_id": "c5", - "time_of_creation": "2018-06-24T19:50:19.146Z", - "name": "Type C-5", - "short_name": "C5", - "description": "C-Type Quarters Flat nos. 31 - 36", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3464, - "pixel_y": 2708, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "f676f101-89b1-48f4-868a-e74fa856dd5d", - "fields": { - "str_id": "nsl", - "time_of_creation": "2018-06-24T19:50:18.816Z", - "name": "New Software Lab", - "short_name": "NSL", - "description": "", - "parent": "42422033-0fb0-4a62-aa55-133f1691997d", - "parent_relation": "Ground floor", - "group_id": 12, - "pixel_x": 4002, - "pixel_y": 1545, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "f6887970-7bad-472d-8614-524c1c393c8c", - "fields": { - "str_id": "dance-room-sac", - "time_of_creation": "2022-10-12T16:38:27.002Z", - "name": "Dance Room, SAC", - "short_name": "Dance Room, SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "f695944b-930f-476d-8c6d-5037203c3993", - "fields": { - "str_id": "your-home", - "time_of_creation": "2020-05-21T09:47:02.406Z", - "name": "Your Home", - "short_name": "Your Home", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "f764a508-bbd5-4b1b-a4dc-f444d0757dfc", - "fields": { - "str_id": "lc-002", - "time_of_creation": "2018-06-24T19:50:18.773Z", - "name": "LC 002", - "short_name": "LC 002", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Ground floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "f76cb1e0-f17c-4833-9a61-9919ca645394", - "fields": { - "str_id": "lcs-lhs-lt-pcsa-convocation-hall--ics-oat-sac", - "time_of_creation": "2019-01-08T20:10:43.198Z", - "name": "LCs, LHs, LT-PCSA, Convocation hall , ICs, OAT, SAC", - "short_name": "LCs, LHs, LT-PCSA, Convocation hall , ICs, OAT, SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "f7a35c0d-f5e3-4254-bca7-96a09e846072", - "fields": { - "str_id": "c14", - "time_of_creation": "2018-06-24T19:50:19.181Z", - "name": "Type C-14", - "short_name": "C14", - "description": "C-Type Quarters Flat nos. 85 - 90", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3140, - "pixel_y": 3047, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "f9edd33a-eb7f-4d99-a59e-798478a24c74", - "fields": { - "str_id": "board-games-room-new-sac", - "time_of_creation": "2020-01-15T13:52:18.330Z", - "name": "Board Games Room, New SAC", - "short_name": "Board Games Room, New SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "fa5df469-65c1-4743-8039-0d702a795c56", - "fields": { - "str_id": "sahyadri", - "time_of_creation": "2018-06-24T19:50:18.877Z", - "name": "C22, A wing, Sahyadri", - "short_name": "Sahyadri", - "description": "Hill side, Flat nos. 151 - 168", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4673, - "pixel_y": 1077, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "fa6b95bb-a520-49d3-8393-0b6a5f543029", - "fields": { - "str_id": "old-swimming-pool-area", - "time_of_creation": "2020-02-08T18:38:20.230Z", - "name": "Old Swimming Pool Area", - "short_name": "Old Swimming Pool Area", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "fa6f024a-87ae-4d06-903a-f77e05de7a27", - "fields": { - "str_id": "hydraulics-lab", - "time_of_creation": "2018-06-24T19:50:18.507Z", - "name": "Hydraulics Lab", - "short_name": "Hydraulics Lab", - "description": "Comes under Civil Engineering Department Water Resources Hydraulics Lab +912225764303", - "parent": "fa6f024a-87ae-4d06-903a-f77e05de7a27", - "parent_relation": "Near", - "group_id": 12, - "pixel_x": 4215, - "pixel_y": 1490, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "fa7cb05f-2b00-47b9-b629-9e37a056ee0b", - "fields": { - "str_id": "hostel-15-and-hostel-16-mess", - "time_of_creation": "2018-08-21T15:59:16.159Z", - "name": "Hostel 15 and Hostel 16 Mess", - "short_name": "Hostel 15 and Hostel 16 Mess", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "fa99dab1-2473-42e0-9b6a-1b93e07137f8", - "fields": { - "str_id": "canara-atm", - "time_of_creation": "2018-06-24T19:50:18.047Z", - "name": "ATM - Canara Bank near Gulmohar", - "short_name": "Canara ATM", - "description": "", - "parent": "e886baf5-c610-42c6-a5db-85ff75f6422f", - "parent_relation": "First floor", - "group_id": 6, - "pixel_x": 2989, - "pixel_y": 2154, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "faae7c2d-3d2e-4766-8fd4-1d37fbd0d586", - "fields": { - "str_id": "hostels-kv-sommain-building-campus-school-ncc-ground", - "time_of_creation": "2019-08-14T06:32:41.284Z", - "name": "Hostels, KV, SOM,Main building, Campus school, NCC ground", - "short_name": "Hostels, KV, SOM,Main building, Campus school, NCC ground", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "fb13b3c7-7cc0-4fca-9f18-8f8473b41123", - "fields": { - "str_id": "kv-1", - "time_of_creation": "2018-06-24T19:50:19.380Z", - "name": "Kendriya Vidyalay Quarters 1", - "short_name": "KV 1", - "description": "KV Quarters 1 - 5", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 3592, - "pixel_y": 2817, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "fc233dda-08e4-4b42-a4aa-da2eb6512a62", - "fields": { - "str_id": "cc", - "time_of_creation": "2018-06-24T19:50:18.452Z", - "name": "Computer Centre", - "short_name": "CC", - "description": "http://www.cc.iitb.ac.in Tel: +912225767751", - "parent": "0c4c56dc-a5e3-4a32-af3c-8f3f3472dd6d", - "parent_relation": "In room 243", - "group_id": 1, - "pixel_x": 3932, - "pixel_y": 1997, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "fc35389a-ad47-4645-8392-681c85099830", - "fields": { - "str_id": "backside-lawns-of-main-building", - "time_of_creation": "2018-10-30T19:29:33.251Z", - "name": "Backside lawns of Main Building", - "short_name": "Backside lawns of Main Building", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "fcc5a892-f4e2-4254-acf8-0e34d3966829", - "fields": { - "str_id": "a5", - "time_of_creation": "2018-06-24T19:50:19.017Z", - "name": "Bungalow A5 ", - "short_name": "A5", - "description": "A-Type Bungalow", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2319, - "pixel_y": 2848, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "fd33deb4-4282-4c67-8bfb-d765bffca6be", - "fields": { - "str_id": "football-ground", - "time_of_creation": "2019-01-28T08:54:54.272Z", - "name": "Football Ground", - "short_name": "Football Ground", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "fd3ff97c-62bb-445c-9805-ae32af6671e6", - "fields": { - "str_id": "saif", - "time_of_creation": "2018-06-24T19:50:18.349Z", - "name": "Sophisticated Analytical Instruments Facility", - "short_name": "SAIF", - "description": "Tel: +912225767691 / +912225767692", - "parent": "c186690e-6970-49a3-b944-d73aae2cb6bd", - "parent_relation": "Inside", - "group_id": 1, - "pixel_x": 4081, - "pixel_y": 1344, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "fd6cc42e-e580-43d3-8a9a-bae60b901559", - "fields": { - "str_id": "8-type1", - "time_of_creation": "2018-06-24T19:50:19.418Z", - "name": "Type1 - 8", - "short_name": "8-Type1", - "description": "Type 1 Quarters Flat nos. 85 - 96", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4616, - "pixel_y": 1271, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "fd7f2ff0-cce1-4249-897f-f395a909d47d", - "fields": { - "str_id": "b-19", - "time_of_creation": "2018-06-24T19:50:18.313Z", - "name": "B 19 Old Multistoried Building- Residence ", - "short_name": "B 19", - "description": "Building lift phone Tel: +912225762884 Flat nos. 75-98", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 1413, - "pixel_y": 2885, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "fddbd572-f75c-4d44-985e-ce45bee2cd4e", - "fields": { - "str_id": "flexiloans-technologies-pvt-ltd-matunga-west-mumbai", - "time_of_creation": "2018-08-29T17:33:18.067Z", - "name": "FlexiLoans Technologies Pvt. Ltd., Matunga West, Mumbai,", - "short_name": "FlexiLoans Technologies Pvt. Ltd., Matunga West, Mumbai,", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "fe6d4897-1da8-409d-9ac2-5db3b18512bd", - "fields": { - "str_id": "snow-kingdom-r-city", - "time_of_creation": "2019-08-05T06:06:38.056Z", - "name": "Snow Kingdom, R-City", - "short_name": "Snow Kingdom, R-City", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "febe07a6-3711-45b6-bf55-9e4b56f346ae", - "fields": { - "str_id": "lh-102", - "time_of_creation": "2019-09-27T17:10:38.511Z", - "name": "LH 102 ", - "short_name": "LH 102 ", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "feed3cb4-52a6-42ce-baa3-fe09ff2275df", - "fields": { - "str_id": "new-sac", - "time_of_creation": "2019-08-06T14:30:44.202Z", - "name": "NEW SAC", - "short_name": "NEW SAC", - "description": null, - "parent": null, - "parent_relation": null, - "group_id": null, - "pixel_x": null, - "pixel_y": null, - "lat": null, - "lng": null, - "reusable": false - } - }, - { - "model": "locations.location", - "pk": "feeeb19a-dcb6-45da-b131-ddfc52757a6c", - "fields": { - "str_id": "b6", - "time_of_creation": "2018-06-24T19:50:19.090Z", - "name": "Type B-6", - "short_name": "B6", - "description": "B-Type Quarters Flat nos. 23 - 26", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 2508, - "pixel_y": 3189, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "ff82adc8-d636-490d-be6a-a86118fc0565", - "fields": { - "str_id": "14-type1", - "time_of_creation": "2018-06-24T19:50:19.436Z", - "name": "Type1 - 14", - "short_name": "14-Type1", - "description": "Type 1 Quarters Flat nos. 157 - 168", - "parent": null, - "parent_relation": "", - "group_id": 3, - "pixel_x": 4670, - "pixel_y": 1198, - "lat": null, - "lng": null, - "reusable": true - } - }, - { - "model": "locations.location", - "pk": "ffaeefc7-ebe4-4e35-8c3f-f524d0f608ee", - "fields": { - "str_id": "lt-303", - "time_of_creation": "2018-06-24T19:50:18.754Z", - "name": "LT 303", - "short_name": "LT 303", - "description": "", - "parent": "86e9bcf0-b075-4819-a837-fd1440cbecf2", - "parent_relation": "Third floor", - "group_id": 4, - "pixel_x": 3570, - "pixel_y": 2152, - "lat": null, - "lng": null, - "reusable": true - } - } -] ->>>>>>> d37a317f27876414b3a0614a67daac982c6e9ce3 From 0a20005559b6aea39387475715c472af9d9e3ef7 Mon Sep 17 00:00:00 2001 From: Krishna-Baldwa Date: Tue, 1 Aug 2023 15:55:41 +0530 Subject: [PATCH 4/4] Remove unnecessary comments --- backend/settings_base.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/backend/settings_base.py b/backend/settings_base.py index dacab168..fccaa893 100644 --- a/backend/settings_base.py +++ b/backend/settings_base.py @@ -215,9 +215,3 @@ # true when elasticsearch is configured USE_ELASTIC = True -# CORS_ORIGIN_ALLOW_ALL = True -# CORS_ALLOWED_ORIGINS = [ -# "http://localhost:4200", -# ] - -# CORS_ALLOW_CREDENTIALS = True