Obtain forecast information for metro map cities

This commit is contained in:
April 2022-11-04 20:47:09 -07:00
parent 2d2f7dc5af
commit 3cf84b42b7
No known key found for this signature in database
GPG Key ID: 17A9A017FAA4DE5E
3 changed files with 15 additions and 0 deletions

View File

@ -26,6 +26,11 @@ for i in MPC.getPrimaryLocations():
tecciId.append("T" + LFR.getCoopId(i))
zipCodes.append(LFR.getZip(i))
# Obtain metro map city TECCI and zips:
for i in MPC.getMetroCities():
tecciId.append("T" + LFR.getCoopId(i))
zipCodes.append(LFR.getZip(i))
apiKey = '21d8a80b3d6b444998a80b3d6b1449d3'

View File

@ -25,6 +25,11 @@ for i in MPC.getPrimaryLocations():
tecciId.append(LFR.getCoopId(i))
zipCodes.append(LFR.getZip(i))
# Grab metro map city tecci and zip codes
for i in MPC.getMetroCities():
tecciId.append(LFR.getCoopId(i))
zipCodes.append(LFR.getZip(i))
apiKey = '21d8a80b3d6b444998a80b3d6b1449d3'
def getData(tecci, zipCode):

View File

@ -25,6 +25,11 @@ for i in MPC.getPrimaryLocations():
tecciId.append(LFR.getCoopId(i))
zipCodes.append(LFR.getZip(i))
for i in MPC.getMetroCities():
tecciId.append(LFR.getCoopId(i))
zipCodes.append(LFR.getZip(i))
apiKey = '21d8a80b3d6b444998a80b3d6b1449d3'
def getData(tecci, zipCode):