Greenwich Mean Time (GMT) is a term originally referring to mean solar time at the Royal Observatory in Greenwich, London.
1
vote
2answers
25 views
PHP strtotime giving wrong date with GMT conversion? [closed]
I'm reading a Last-Modified header which as a string is "Mon, 21 May 2013 09:10:30 GMT" and trying to compare that to my local time() (New Zealand). But I've just noticed that strtotime is making the ...
-2
votes
5answers
47 views
Issue in coverting GMT time to Local time
My current Device time is --- 2013-05-09 10:23 AM
I convert it int GMT with following code
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
dateFormatter.dateFormat = ...
2
votes
1answer
91 views
Timezone conversion from GMT to local
I have the following information:
string shippedTime = "10:53 AM";
string shippedDate = "12/12/2012";
string shippedTimeZone = "(GMT-05:00) Eastern Time (US & Canada)";
string receivedTime = ...
0
votes
3answers
58 views
How to stretch GMT raster with gdal to work with google
How can I stretch a PNG raster coming from GMT (Generic Mapping Tools 4.5.6) in such a way that does align with Google satellite or bing?
Such raster is in wgs84 and crosses two UTM zones (17 and 18 ...
1
vote
3answers
102 views
How to show GMT Time based upon country in php
I want to show GMT Timebased upon country. If suppose, some user from india, register into my application i should append GMT time as GMT +5 into my database. If suppose, some other user from france, ...
0
votes
1answer
24 views
using offsets with gmdate or like function
Recently it came to our attention that our DB was using multiple timezones to record data, and or pass data around, and because of that data started going out of sync. So recently we made some changes ...
0
votes
3answers
44 views
Out.println() in programming
I have two lines that I want to print on my Main App Screen. I tried to set them equal to a variable to print on the main screen. What I put into the Java file was:
public class TimeZoneConverter {
...
0
votes
0answers
39 views
Change data automatically on summertime/wintertime
I am currently working on a Wordpress website for a local fish store.
In the footer I have put a table which includes the opening hours.
But in the winter they close their store half an hour earlier.
...
0
votes
1answer
113 views
SQL Server GMT date & time conversion hourly report using group by
I have been beating my head on this problem for days now and would love some feedback or suggestions on how to properly handle this problem.
I am trying to create a SQL query that is run hourly that ...
0
votes
0answers
50 views
Timezone with TZ Environment Variable - Safety and issues
first of all, I want to know if the changing of the TZ Environment variable is secure, I was working on it because I didn't find another method for an efficient convertion.
I am not sure if TZ is ...
2
votes
5answers
73 views
Get Greenwich Mean Time
India Standard Time (IST) is 5:30 hours (5 hours 30 minutes) ahead of Greenwich Mean Time. We show it as GMT+5.5.
is there any way to find this value (in above case, value = 5.5) by time zone ?
in ...
0
votes
2answers
188 views
Why is it different Java Time zone when converting date from String?
I have dates strings in the format YYYYMMDD that I am trying to parse into dates using a date formatter obtained as
public static DateFormat getDateFormat() {
SimpleDateFormat result = new ...
1
vote
2answers
169 views
How to create an advanced countdown timer in JavaScript?
I'm somewhat new to JavaScript but I do have some basic understanding. I want to create a countdown timer that will accept a date and a time, but I am unsure how or where to start.
I want the ...
3
votes
2answers
278 views
NSTimeZone: Any difference between “UTC” and “GMT”?
Are these five statements interchangeable, or is anyone aware of cases where their use would yield different results? From what I gather they are equivalent but I haven't found anything conclusive, ...
-1
votes
1answer
62 views
How can I get the time of GMT + 2 and put it in item of in 24 hours in the spinner (hours and minutes only)? [closed]
Example
3:50 = this is time of GMT +2 and putted it in item of spinner by 24 hours.
4:20
TO
12:50
Thank you for sharing ideas.
0
votes
2answers
212 views
Convert GMT time local time in XSLT
How to convert GMT time to local time ( MDT or MST ) automatically.
I got this below working but i need a condition which determines utc -6 or utc -7 based on dates.
<xsl:value-of ...
0
votes
1answer
136 views
squeryl date to long conversion
I want to store java.util.Date (or Timestamp) as an int (or Long) in my db using Squeryl.
I'd like to control how the date is transformed to the number and vice versa.
How can I achieve this?
I'm ...
0
votes
0answers
67 views
MySql How to handle Date in different GMT format while querying the record
I'm saving courses records in database in GMT0 format. Now a user with GMT +5:30 is visiting the site and searches for the courses, now in this case how to write the query to get the correct results ...
-1
votes
3answers
148 views
crontab hour with UTC working hours GMT-8
i have a machine set in GMT.
i would like to have a cron task scheduled from 6AM to 5PM in PST, which is GMT-8.
gmt time zone. typical.
00 06-17 * * *
now -8 produces a crontab bad hour error.
...
0
votes
1answer
58 views
Too many bash initialization files?
I just installed GMT4 (Generic Mapping Tools) from MacPorts and have run into some serious issues with terminal...
When using the ls command in terminal I get the following:
-bash: ls: command not ...
2
votes
1answer
426 views
How to convert UTC formatted string to calendar in specific timezone?
I'm trying to convert some string that is in UTC time to a java Calendar object that should be set to GMT-5.
My current UTC string input is this:
UTC date : 20050329174411
I use this code (I ...
0
votes
1answer
206 views
CodeIgniter local timezone to GMT
i need help with multi timezone website in codeigniter.
config.php:
$config['time_reference'] = 'gmt';
date_default_timezone_set('UTC');
now when user want to see event(website is for events) it ...
-2
votes
2answers
105 views
Time comparison in php [duplicate]
Possible Duplicate:
strtotime date weird result
I am trying to compare two times for an attendance system, i am trying to get the accurate time for Arkansas,USA but im not being to able to ...
1
vote
2answers
187 views
How to get the GMT equivalent using TimeZone ID
I would like to get the GMT equivalent using the TimeZone id
Example:
Pacific/Fiji ==> should be GMT+13 because DST started on Sun, 21 Oct 2012.
But instead, I get GMT+12.
Below is my code:
public ...
2
votes
1answer
135 views
Java Sending Email to Different Time Zones At the Same Time Each Day
Turns out this seems to be a complex subject, please tell me if my approach is too simple.
Basically what i'm trying to do is send an email reminder to a list of users (only when they have a reminder ...
0
votes
1answer
176 views
GMT Offset to PHP timezone
Is it possible to have something like?
$offset = -05:00;
$timezone = getTimeZone($offset); //return America/New_York
date_default_timezone_set($timezone);
How about the DST(Day Saving Light) ...
1
vote
1answer
323 views
Teradata: How can I convert a TIMESTAMP(6) field value to GMT?
I have a table with a column defined as TIMESTAMP(6). I need to do a mass conversion of all time values in this column from EST to GMT. How do I go about this?
1
vote
2answers
72 views
java date parsing with GMT in it
The published date String is returned as : Sun, 18 Nov 2012 06:50:02 GMT and my method to convertDate is returning me java.text.ParseException: Unparseable date: "Sun, 18 Nov 2012 06:50:02 GMT" (at ...
0
votes
1answer
223 views
Change device timezone to GMT in android
"13-11-2012 09:14:39" is the sample timestamp string getting from server in my app. I need to calculate the defference between that time and current device time.
My Server is sending the time in GMT ...
0
votes
0answers
62 views
Clarification on GMT, UTC and getOffset()
The server is configured on UTC. I have a date + timezone and I want to get its offset, so I was thinking of using getOffset().
But then my problem: are UTC and GMT "exactly" the same?
From my ...
0
votes
1answer
106 views
GMT time and mysql NOW() is giving 2 minutes difference
When i was checking the GMT time here it was 05:40:00, at the same time i ran the below query in mysql,
SET time_zone='+00:00'; // to get GMT time
SELECT NOW();
It was 05:37:50 from above query. So ...
1
vote
1answer
185 views
Is there a function to return a TimeZone or an offset based on coordinates?
Is there a function that will return the Time Zone (or an offset from some "fulcrum" such as GMT or UTC) given the coordinates?
IOW, I'd like to (assuming "TimeZoneType" is a class or enum or so):
...
0
votes
1answer
339 views
ASP.Net C# UTC/GMT DateTime
I want get UTC 0 time which was Greenwich Mean Time (GMT).
I try to DateTime.UtcNow and DateTime.Now.ToUniversalTime() but its returns wrong times.
İts return 22:40 instead of 06:40
How can I get ...
1
vote
1answer
120 views
Mysql Varchar to GMT Date time value conversion
I appologize for asking this question, but i have searched and kind find anything specific to my needs. I have worked with it but can not seem to make ends meet.
I have a column SrcFileName ...
0
votes
1answer
585 views
Converting UTC Date to GMT in Groovy / Java
I am working with SoupUI a i need to adjust a Date/time (UTC) that i get back in a response to a GMT Date/time. The date that i get back in the respone looks as followes:
2012-11-09T00:00:00+01:00
...
0
votes
1answer
225 views
Google Calendar Auto Timezone
I'm doing a simple website for a client that includes a Google Calendar for displaying of upcoming events. The problem here is that I can't figure out how to get the timezone for the calendar to ...
0
votes
1answer
485 views
How to store Current date and time in ISODATE format in mongodb php?
I want to store the current GMT date and time in ISODate format in mongodb.
Similarly to this
ISODate("2012-07-26T17:43:25.678Z")
I want to store the result in mongodb in the above mentioned ...
1
vote
2answers
235 views
Android. How to get TimeZone looking like GMT-0X:00?
I'd like to get time zone written as "GMT -0X:00" (X - a number). But TimeZone.getDefault().getDisplayName() returns a string written as in locale (e.g., Indochina Time). Are there any ways to solve ...
0
votes
1answer
49 views
Get the timestamp's timezone
I'd like to get the timezone of a time, which the same time as the local time, but in an other GMT territory.
There's what i thought will work:
ceil((strtotime($scores[$i]['date'].' ...
2
votes
3answers
1k views
How do I get time_t in GMT on Windows in C
I am writing some code that will run on multiple intercommunicating systems. I was using time() to get time_t, but this was causing problems with time zone differences between the systems, so I want ...
2
votes
4answers
359 views
Troubles parsing DateTime from string
I am currently trying to parse a string that is obtained from an xml that is downloaded from the web every few minutes. The string looks like this:
Thu Jul 12 08:39:56 GMT+0100 2012
At first I ...
-1
votes
2answers
127 views
Android date remove GMT from DateTime [closed]
i need to remove "GMT" from a string like this one "2012-07-15 17:00 GMT".
Try to use this code, but testDate returns null.
Can anyone help ?
Thank you
String date = "2012-07-15 17:00 GMT";
...
0
votes
5answers
809 views
Php Convert time in gmt format
I have this string 2012-06-27 16:17:06 and I want to convert it to GMT format.
How can I do that?
Thanks a lot.
0
votes
0answers
302 views
VBA outlook date GMT
OK now are everything looks good, but user send me an email with GMT +3 and my zone are +2
result are:
Your e-mail was received at: 6/29/2012 2:15:16 PM (UTC+02:00) Helsinki, Kyiv, Riga, Sofia, ...
1
vote
1answer
172 views
PHP `date()` Different than Unix `date` Command
I searched around but couldn't find exactly what I'm looking for.
I have a PHP Settings page where Admins from my site are able to select an hour of the day for a daily Cron Job script to execute. In ...
1
vote
0answers
58 views
Displaying local time to a user when all you have is an offset (from GMT)
I understand that it's pretty easy to display local time to a user given an offset from GMT for the timezone (e.g. -7 hours for Pacific Daylight Time).
But, what if I want to continue to display the ...
1
vote
0answers
45 views
GMT confusion with ctime functions [duplicate]
Possible Duplicate:
Easy way to convert a struct tm (expressed in UTC) to time_t type
I am trying to convert a file path to UNIX time. The file path is of the format: ...
2
votes
2answers
210 views
Are timezones with the same GMT offset different in any way?
Windows asks users to choose from about 200 timezones, when there are actually only 25 GMT offsets. (see below)
Can I ask users in my app to chose from these alone? Is there any difference between ...
0
votes
0answers
138 views
PHP Date / GMT Weirdness
Either I'm losing my mind, or I've not got the faintest idea what I'm doing. I'm leaning towards the latter.
I'm trying to convert this: 1316826000, which I'm pretty confident should be Sat, 24 Sep ...
0
votes
1answer
243 views
How can I set the minDate of datePicker to a time of day?
I am looking to use the datepicker to set up an ordering form on my website.
I have a rule that if a user can order before 3pm (GMT) then they can order the same day, if they try and order after 3pm ...

