How can I get the time zone of a US ZIP code?












4












$begingroup$


There does not seem to be a direct way to extract the time zone for a ZIP code. Currently, I am first mapping the ZIP code to the states, and then getting the time zones for those states.



"94402" //
Entity["ZIPCode", #] & //
EntityValue[#, "USStates"] & //
Map[EntityValue[#, "TimeZones"] &]


But this is obviously wrong. This will return multiple time zones even when a given ZIP code lies within a single time zone.



Is there a better way of getting the time zone for a ZIP code through Entity?










share|improve this question









$endgroup$

















    4












    $begingroup$


    There does not seem to be a direct way to extract the time zone for a ZIP code. Currently, I am first mapping the ZIP code to the states, and then getting the time zones for those states.



    "94402" //
    Entity["ZIPCode", #] & //
    EntityValue[#, "USStates"] & //
    Map[EntityValue[#, "TimeZones"] &]


    But this is obviously wrong. This will return multiple time zones even when a given ZIP code lies within a single time zone.



    Is there a better way of getting the time zone for a ZIP code through Entity?










    share|improve this question









    $endgroup$















      4












      4








      4





      $begingroup$


      There does not seem to be a direct way to extract the time zone for a ZIP code. Currently, I am first mapping the ZIP code to the states, and then getting the time zones for those states.



      "94402" //
      Entity["ZIPCode", #] & //
      EntityValue[#, "USStates"] & //
      Map[EntityValue[#, "TimeZones"] &]


      But this is obviously wrong. This will return multiple time zones even when a given ZIP code lies within a single time zone.



      Is there a better way of getting the time zone for a ZIP code through Entity?










      share|improve this question









      $endgroup$




      There does not seem to be a direct way to extract the time zone for a ZIP code. Currently, I am first mapping the ZIP code to the states, and then getting the time zones for those states.



      "94402" //
      Entity["ZIPCode", #] & //
      EntityValue[#, "USStates"] & //
      Map[EntityValue[#, "TimeZones"] &]


      But this is obviously wrong. This will return multiple time zones even when a given ZIP code lies within a single time zone.



      Is there a better way of getting the time zone for a ZIP code through Entity?







      entity timezone






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jan 11 at 0:10









      ShredderroyShredderroy

      1,5701115




      1,5701115






















          2 Answers
          2






          active

          oldest

          votes


















          9












          $begingroup$

          TimeZoneOffset[Entity["ZIPCode", "94402"]]



          -8.







          share|improve this answer









          $endgroup$









          • 1




            $begingroup$
            Ah, didn't occur to me that I don't need to wrap the entity in GeoPosition. Ah well. Graceful method :)
            $endgroup$
            – Carl Lange
            Jan 11 at 0:44










          • $begingroup$
            Thank you @CarlLange.
            $endgroup$
            – kglr
            Jan 11 at 1:23



















          6












          $begingroup$

          This will do what you want:



          TimeZoneOffset[GeoPosition[Entity["ZIPCode", "94402"]["Coordinates"]]]



          -8




          Each zip code entity has coordinates associated with them, and TimeZoneOffset can take a GeoPosition and return the timezone offset from GMT.



          It should be noted that kglr's answer is the shorter (and more graceful) form of this answer - they are doing the same thing under the hood.






          share|improve this answer











          $endgroup$













            Your Answer





            StackExchange.ifUsing("editor", function () {
            return StackExchange.using("mathjaxEditing", function () {
            StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
            StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
            });
            });
            }, "mathjax-editing");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "387"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f189254%2fhow-can-i-get-the-time-zone-of-a-us-zip-code%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            9












            $begingroup$

            TimeZoneOffset[Entity["ZIPCode", "94402"]]



            -8.







            share|improve this answer









            $endgroup$









            • 1




              $begingroup$
              Ah, didn't occur to me that I don't need to wrap the entity in GeoPosition. Ah well. Graceful method :)
              $endgroup$
              – Carl Lange
              Jan 11 at 0:44










            • $begingroup$
              Thank you @CarlLange.
              $endgroup$
              – kglr
              Jan 11 at 1:23
















            9












            $begingroup$

            TimeZoneOffset[Entity["ZIPCode", "94402"]]



            -8.







            share|improve this answer









            $endgroup$









            • 1




              $begingroup$
              Ah, didn't occur to me that I don't need to wrap the entity in GeoPosition. Ah well. Graceful method :)
              $endgroup$
              – Carl Lange
              Jan 11 at 0:44










            • $begingroup$
              Thank you @CarlLange.
              $endgroup$
              – kglr
              Jan 11 at 1:23














            9












            9








            9





            $begingroup$

            TimeZoneOffset[Entity["ZIPCode", "94402"]]



            -8.







            share|improve this answer









            $endgroup$



            TimeZoneOffset[Entity["ZIPCode", "94402"]]



            -8.








            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Jan 11 at 0:43









            kglrkglr

            182k10200415




            182k10200415








            • 1




              $begingroup$
              Ah, didn't occur to me that I don't need to wrap the entity in GeoPosition. Ah well. Graceful method :)
              $endgroup$
              – Carl Lange
              Jan 11 at 0:44










            • $begingroup$
              Thank you @CarlLange.
              $endgroup$
              – kglr
              Jan 11 at 1:23














            • 1




              $begingroup$
              Ah, didn't occur to me that I don't need to wrap the entity in GeoPosition. Ah well. Graceful method :)
              $endgroup$
              – Carl Lange
              Jan 11 at 0:44










            • $begingroup$
              Thank you @CarlLange.
              $endgroup$
              – kglr
              Jan 11 at 1:23








            1




            1




            $begingroup$
            Ah, didn't occur to me that I don't need to wrap the entity in GeoPosition. Ah well. Graceful method :)
            $endgroup$
            – Carl Lange
            Jan 11 at 0:44




            $begingroup$
            Ah, didn't occur to me that I don't need to wrap the entity in GeoPosition. Ah well. Graceful method :)
            $endgroup$
            – Carl Lange
            Jan 11 at 0:44












            $begingroup$
            Thank you @CarlLange.
            $endgroup$
            – kglr
            Jan 11 at 1:23




            $begingroup$
            Thank you @CarlLange.
            $endgroup$
            – kglr
            Jan 11 at 1:23











            6












            $begingroup$

            This will do what you want:



            TimeZoneOffset[GeoPosition[Entity["ZIPCode", "94402"]["Coordinates"]]]



            -8




            Each zip code entity has coordinates associated with them, and TimeZoneOffset can take a GeoPosition and return the timezone offset from GMT.



            It should be noted that kglr's answer is the shorter (and more graceful) form of this answer - they are doing the same thing under the hood.






            share|improve this answer











            $endgroup$


















              6












              $begingroup$

              This will do what you want:



              TimeZoneOffset[GeoPosition[Entity["ZIPCode", "94402"]["Coordinates"]]]



              -8




              Each zip code entity has coordinates associated with them, and TimeZoneOffset can take a GeoPosition and return the timezone offset from GMT.



              It should be noted that kglr's answer is the shorter (and more graceful) form of this answer - they are doing the same thing under the hood.






              share|improve this answer











              $endgroup$
















                6












                6








                6





                $begingroup$

                This will do what you want:



                TimeZoneOffset[GeoPosition[Entity["ZIPCode", "94402"]["Coordinates"]]]



                -8




                Each zip code entity has coordinates associated with them, and TimeZoneOffset can take a GeoPosition and return the timezone offset from GMT.



                It should be noted that kglr's answer is the shorter (and more graceful) form of this answer - they are doing the same thing under the hood.






                share|improve this answer











                $endgroup$



                This will do what you want:



                TimeZoneOffset[GeoPosition[Entity["ZIPCode", "94402"]["Coordinates"]]]



                -8




                Each zip code entity has coordinates associated with them, and TimeZoneOffset can take a GeoPosition and return the timezone offset from GMT.



                It should be noted that kglr's answer is the shorter (and more graceful) form of this answer - they are doing the same thing under the hood.







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Jan 11 at 0:47

























                answered Jan 11 at 0:37









                Carl LangeCarl Lange

                3,8001733




                3,8001733






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Mathematica Stack Exchange!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    Use MathJax to format equations. MathJax reference.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f189254%2fhow-can-i-get-the-time-zone-of-a-us-zip-code%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Can a sorcerer learn a 5th-level spell early by creating spell slots using the Font of Magic feature?

                    ts Property 'filter' does not exist on type '{}'

                    mat-slide-toggle shouldn't change it's state when I click cancel in confirmation window