How can I get the time zone of a US ZIP code?
$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
?
entity timezone
$endgroup$
add a comment |
$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
?
entity timezone
$endgroup$
add a comment |
$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
?
entity timezone
$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
entity timezone
asked Jan 11 at 0:10
ShredderroyShredderroy
1,5701115
1,5701115
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
$begingroup$
TimeZoneOffset[Entity["ZIPCode", "94402"]]
-8.
$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
add a comment |
$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.
$endgroup$
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
$begingroup$
TimeZoneOffset[Entity["ZIPCode", "94402"]]
-8.
$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
add a comment |
$begingroup$
TimeZoneOffset[Entity["ZIPCode", "94402"]]
-8.
$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
add a comment |
$begingroup$
TimeZoneOffset[Entity["ZIPCode", "94402"]]
-8.
$endgroup$
TimeZoneOffset[Entity["ZIPCode", "94402"]]
-8.
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
add a comment |
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
add a comment |
$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.
$endgroup$
add a comment |
$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.
$endgroup$
add a comment |
$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.
$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.
edited Jan 11 at 0:47
answered Jan 11 at 0:37
Carl LangeCarl Lange
3,8001733
3,8001733
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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