Mercurial > hg > ltpda
view m-toolbox/classes/+utils/@timetools/getTimezone.m @ 11:9174aadb93a5 database-connection-manager
Add LTPDA Repository utility functions into utils.repository
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Mon, 05 Dec 2011 16:20:06 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
line source
% GETIMEZONE Get the list of supported time zones. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % DESCRIPTION: GETIMEZONE Get the cell array containing the list of % supported time zones. % % CALL: timezones = getTimezone() % % % VERSION: $Id: getTimezone.m,v 1.2 2009/05/07 16:22:59 nicola Exp $ % % HISTORY: 06-05-2009 N Tateo % Creation % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function timezones = getTimezone(varargin) if nargin>0, utils.helper.msg(0, 'warning: the function getTimezone accepts no input, but some were passed.'); end timezones = {'UTC' ; ... 'CET' ; ... 'PST' ; ... 'CST' ; ... 'EST' ; ... 'JST' ; ... 'GMT-12' ; ... 'GMT-11' ; ... 'GMT-10' ; ... 'GMT-09' ; ... 'GMT-08' ; ... 'GMT-07' ; ... 'GMT-06' ; ... 'GMT-05' ; ... 'GMT-04' ; ... 'GMT-03' ; ... 'GMT-02' ; ... 'GMT-01' ; ... 'GMT' ; ... 'GMT+01' ; ... 'GMT+02' ; ... 'GMT+03' ; ... 'GMT+04' ; ... 'GMT+05' ; ... 'GMT+06' ; ... 'GMT+07' ; ... 'GMT+08' ; ... 'GMT+09' ; ... 'GMT+10' ; ... 'GMT+11' ; ... 'GMT+12' }; end