Greenwich Mean Time (GMT) is a term originally referring to mean solar time at the Royal Observatory in Greenwich, London.

learn more… | top users | synonyms

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 ...
14
votes
7answers
43k views

Force Java timezone as GMT/UTC

I need to force any time related operations to GMT/UTC, regardless the timezone set on the machine. Any convenient way to so in code? To clarify, I'm using the DB server time for all operations, but ...
98
votes
20answers
158k views

How can I get the current date and time in UTC or GMT in Java?

When I create a new Date object, it is initialized to the current time but in the local timezone. How can I get the current date and time in GMT?
-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
88 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
57 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
100 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
23 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 ...
-1
votes
3answers
147 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
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 ...
5
votes
2answers
7k views

Get GMT Time in Java

In Java, I want to get the current time in GMT. I tried various options like this: Date date = new Date(); Calendar calendar = Calendar.getInstance(TimeZone.getTimeZone("GMT")); date1 = ...
0
votes
2answers
186 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
165 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 ...
6
votes
3answers
13k views

MySQL query for current GMT time

This sounds simple enough but I haven't been able to figure out how to use a simple SELECT statement to return the current time in GMT. I have been trying to use CONVERT_TZ() to convert NOW() to GMT ...
3
votes
5answers
10k views

JDBC Timestamp & Date GMT issues

I have a JDBC Date column, which if a i use getDate is get the 'date' part only 02 Oct 2009 but if i use getTimestamp i get the full 'date' 02 Oct 2009 13:56:78:890. This is excatly what i want. ...
3
votes
2answers
276 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
61 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
211 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 ...
2
votes
4answers
4k views

How to use an Internet time server to get the time?

I would like to get the GMT [ Greenwich Mean Time ], and also i don't want to rely on my system date time for that. Basically, I want to use time sync server like in.pool.ntp.org [ india ] for GMT ...
0
votes
1answer
224 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
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 ...
0
votes
1answer
57 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 ...
10
votes
3answers
11k views

PHP daylight saving time detection

I need to send an email to users based wherever in the world at 9:00 am local time. The server is in the UK. What I can do is set up a time difference between each user and the server's time, which ...
2
votes
1answer
419 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
203 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
186 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
173 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
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): ...
1
vote
1answer
320 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
71 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
220 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 ...
0
votes
1answer
338 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
582 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
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 ...
2
votes
3answers
865 views

PHP file modified time use GMT offset setting to report correct time

I'm currently reporting file modified time like so: $this->newScanData[$key]["modified"] = filemtime($path."/".$file); $modifiedtime = date($date_format." ".$time_format, ...
1
vote
2answers
232 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
358 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"; ...

1 2 3 4