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

0
votes
3answers
55 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 ...
0
votes
2answers
759 views

Convert GMT epoch to CST

I am trying to convert a GMT time which is stored as epoch into CST. Below is the current code I am running in java. if (originalRFC.get("sysmodtime")!=null){ var sysmod = ...
0
votes
1answer
22 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
1answer
110 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
1answer
483 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 ...
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'].' ...
0
votes
1answer
1k views

Converting GMT time to local time using timezone offset, not timezone identifier

It's pretty easy to convert a given GMT date into local time if you're given the timezone identifier from this list in PHP: http://www.php.net/manual/en/timezones.php For example, you can do this ...
0
votes
1answer
511 views

NSDateFormatter gives different output/wrong (GMT?) time

I have tried setting the timezone and locale of the NSDateFormatter but I can't seem to get anything to work. Here is the code NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init]; ...
0
votes
1answer
275 views

How do i store GMT offset with the DATETIME in MySQL Server

I was using C# with MS SQL Server 2008 Now i want to migrate to MySQL server 5.5 But i dont know how to store the GMT offset value in what data type of the MySQL Server? Please help me ...
0
votes
1answer
284 views

SQL: Offsetting timestamp in a query from GMT to Pacific

I'm hoping someone can help out a SQL newbie (note, I'm very green so please be gentle). I'm trying to help do an audit of some contractor employees at my company and see if they might be milking ...
1
vote
0answers
57 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
210 views

Android Time Zone difference with GMT+1 and GMT-1

I have google it, but dont find what is the problem in this code. private Date ConvertToDate(String dateString){ SimpleDateFormat dateFormat = new SimpleDateFormat("HH:mm"); Date ...
0
votes
0answers
36 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
0answers
46 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 ...
0
votes
0answers
65 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
0answers
61 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
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, ...
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
0answers
312 views

C# Time conversion to GMT(UK summer Time) with considering Day Light Saving ,Offset on UK & on Hosting Location (US)

Basically I want to convert US time (hosting Server time) to GMT (UK Summer Time) technology C#, .NET 4.0, TimeZoneInfoClass Detailed scenario: I am creating a SMS sending application.It should not ...