I have an csv that contain the information of cell towers. MMC, MNC, LAC, ID. The python script I wrote read from the csv file Iterate through rows and extract the information of the cell in a dictionary:
Cell={"MMC":6050, "MNC":01, "LAN":213, "ID":3657, "TX":230, "RX":960, "LONG":None, "LAT":None}
Now, I want to connect to opencellid to get the location of the cell. It maybe something like this:
data={"MMC":6050, "MNC":01, "LAN":213, "ID":3657}
res=requests.post("https://www.opencellid.com/location/search.php", data)
res.json()
I don't have a clear idea about this. And I don't know how to deal with the Opencellid API. I really need help?