slifty / tvarchive-canonical_wordpress

3 stars 3 forks source link

Add time zone or local time to download? #18

Open sarahcnyt opened 8 years ago

sarahcnyt commented 8 years ago

I see the times aired are UTC. Would it be possible to add the local time , or the time zone, for the download?

slifty commented 8 years ago

(sorry for the delay on this responce -- I've been a terrible open source community member on this repo sarahcnyt!)

Great thought; It also came up on a recent staff meeting, and we're going to explore good ways to put that together. In the mean time here is a lookup table for you to work with for the short term:

station_by_timezone = {
    # PDT
    "America/Los_Angeles": [
        # San Francisco
        "KCNS",
        "KCSM",
        "KDTV",
        "KGO",
        "KMTP",
        "KNTV",
        "KOFY",
        "KPIX",
        "KQED",
        "KQEH",
        "KRON",
        "KSTS",
        "KTSF",
        "KTVU",
        "SFGTV",

        # Las Vegas
        "KLAS",
        "KVMY",
        "KTNV",
        "KVVU",
        "KSNV",

        # Reno
        "KTVN",
        "KRNV",
        "KOLO",
        "KRXI"
    ],
    # EDT
    "America/New_York": [
        #Philadelphia
        "KYW",
        "WCAU",
        "WPVI",
        "WTXF",
        "WUVP", 
        "WPSG",
        "WWPHL",

        # New York
        "WABC",
        "WCBS",
        "WNBC",
        "WNYW",

        # Boston / NH
        "WBZ",
        "WCVB",
        "WFXT",
        "WHDH",
        "WMUR",

        # Washington DC / Virgina
        "WJLA",
        "WRC",
        "WUSA",
        "WHAG",
        "WTTG",

        #Roanoke-Lynchburg
        "WDBJ",
        "WSLS",
        "WSET",
        "WWCW",
        "WFXR",

        #Norfolk-Portsmouth-Newport
        "WTKR",
        "WAVY",
        "WVEC",
        "WVBT",

        #Columbia , SC
        "WLTX",
        "WIS",
        "WOLO", 
        "WACH",

        #Greenville - Spartanburg, SC
        "WYFF",
        "WHNS",

        #Charlotte, NC
        "WBTV",
        "WCNC",
        "WSOC",
        "WJZY",

        #Raleigh-Durham-Fayetteville, SC
        "WRAL",
        "WNCN",
        "WTVD",
        "WRAZ",

        #Cleveland, OH
        "WOIO",
        "WKYC",
        "WEWS",
        "WJW",

        #Cincinnati, OH
        "WKRC",
        "WLWT",
        "WCPO",
        "WXIX",

        #Tampa-St. Petersburg-Sarasota FL
        "WTSP",
        "WFLA",
        "WFTS",
        "WTVT",
        "WWSB",

        #Orlando-Daytona Beach-Melbourne FL
        "WKMG",
        "WESH",
        "WFTV",
        "WRDQ",
        "WOFL",

        #Miami-Ft. Lauderdale FL
        "WFOR",
        "WTVJ",
        "WPLG",
        "WSVN"

    ],
    # Arizona PDT, fuck arizona
    'America/Phoenix':[

    ],
    #CDT
    "America/Chicago": [
        # Des Moines, IA
        "KCCI",
        "KDSM",
        "WHO",
        "WOI",

        # Cedar Rapids, IA
        "KCRG",
        "KFXA",
        "KGAN",
        "KWWL",

        # Sioux City, IA
        "KCAU",
        "KMEG",
        "KPTH",
        "KTIV"
    ],
    # MDT
    "America/Denver":[
        #Colorado Springs, CO
        "KKTV",
        "KOAA",
        "KRDO",
        "KXRM",

        #Denver, CO
        "KCNC",
        "KUSA",
        "KMGH",
        "KDVR"

    ],
    "UTC":[
        # CABLE (keep in UTC)
        "ALJAZAM", # (Al-Jazeera America)
        "BBCAMERICA",
        "BLOOMBERG",
        "CNBC",
        "CNNW",
        "COM",
        "CSPAN",
        "CSPAN2",
        "CSPAN3",
        "FBC", # (Fox Business News)
        "FOXNEWS",
        "LINKTV",
        "MSNBCW",

        # International satellite recordings (keep in UTC October 23rd 2015)
        "ALIRAQIA", # (Iraq - Middle East)
        "ALMAGHRIBIA", # (Morocco - Africa)
        "BELARUSTV", # (Belarus - Eastern Europe)
        "CANALALGERIE", # (Algeria - Africa)
        "ETV", # (Ethiopia - Africa)
        "JORDANTV", # (Jordan - Middle East)
        "NTA", # (Nigeria - Africa)
        "OMAN", # (Oman - Middle East)
        "ORTM", # (Mali - Africa)
        "PSC", # (Palestine - Middle East)
        "QATARTV", # (Qatar - Middle East)
        "RTSSAT", # (Russia - Eastern Europe)
        "SHARJAHTV", # (Iran - Middle East)
        "SOUTHERNSUDAN", # (Southern Sudan - Africa)
        "SUDAN", # (Sudan - Africa)
        "TELECONGO", # (Congo - Africa)
        "TELESUR", # (Venezuela - South America)
        "TGN", # (Thailand - Asia)
        "VTV4 ", # (Vietnam - Asia)
        "YEMENTV" # (Yemen - Middle East)
    ]
}