mirror of
https://github.com/mewtek/i2ME-Legacy.git
synced 2025-05-15 02:31:05 -05:00
Obtain forecast information for metro map cities
This commit is contained in:
parent
2d2f7dc5af
commit
3cf84b42b7
@ -26,6 +26,11 @@ for i in MPC.getPrimaryLocations():
|
|||||||
tecciId.append("T" + LFR.getCoopId(i))
|
tecciId.append("T" + LFR.getCoopId(i))
|
||||||
zipCodes.append(LFR.getZip(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'
|
apiKey = '21d8a80b3d6b444998a80b3d6b1449d3'
|
||||||
|
|
||||||
|
@ -25,6 +25,11 @@ for i in MPC.getPrimaryLocations():
|
|||||||
tecciId.append(LFR.getCoopId(i))
|
tecciId.append(LFR.getCoopId(i))
|
||||||
zipCodes.append(LFR.getZip(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'
|
apiKey = '21d8a80b3d6b444998a80b3d6b1449d3'
|
||||||
|
|
||||||
def getData(tecci, zipCode):
|
def getData(tecci, zipCode):
|
||||||
|
@ -25,6 +25,11 @@ for i in MPC.getPrimaryLocations():
|
|||||||
tecciId.append(LFR.getCoopId(i))
|
tecciId.append(LFR.getCoopId(i))
|
||||||
zipCodes.append(LFR.getZip(i))
|
zipCodes.append(LFR.getZip(i))
|
||||||
|
|
||||||
|
for i in MPC.getMetroCities():
|
||||||
|
tecciId.append(LFR.getCoopId(i))
|
||||||
|
zipCodes.append(LFR.getZip(i))
|
||||||
|
|
||||||
|
|
||||||
apiKey = '21d8a80b3d6b444998a80b3d6b1449d3'
|
apiKey = '21d8a80b3d6b444998a80b3d6b1449d3'
|
||||||
|
|
||||||
def getData(tecci, zipCode):
|
def getData(tecci, zipCode):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user