Tidal Stations - Europe and Africa


 
Thread Tools Search this Thread
Top Forums Web Development Tidal Stations - Europe and Africa
# 1  
Old 02-25-2014
Tidal Stations - Europe and Africa

Tidal Stations - Europe and Africa

Quote:
Tidal stations with tide tables, tide charts and lunar phases for Europe and Africa. Map location between longitude -30 and 90 and latitude -50 to 75.
Image
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. Web Development

Tidal Stations - Top of the World

Tidal Stations - Top of the World https://www.unix.com/members/1-albums112-picture635.png (1 Reply)
Discussion started by: Neo
1 Replies

2. Web Development

Tidal Stations - The Ocean Tropics

Tidal Stations - The Ocean Tropics For warm water lovers everywhere: https://www.unix.com/members/1-albums112-picture634.png (0 Replies)
Discussion started by: Neo
0 Replies

3. Web Development

Tidal Stations - South America

Tidal Stations - South America https://www.unix.com/members/1-albums112-picture633.png (0 Replies)
Discussion started by: Neo
0 Replies

4. Web Development

Tidal Stations - North America (West Coast)

Tidal Stations - North America (West Coast) https://www.unix.com/members/1-albums112-picture631.png (0 Replies)
Discussion started by: Neo
0 Replies

5. Web Development

Tidal Stations - North America (East)

Tidal Stations - North America (East) https://www.unix.com/members/1-albums112-picture629.png (0 Replies)
Discussion started by: Neo
0 Replies

6. Web Development

Tidal Stations - Far East and Australasia

Just created this beta web app for Tidal Stations - Far East and Australasia: https://www.unix.com/members/1-albums112-picture628.png I plan to do the entire "world" soon. (0 Replies)
Discussion started by: Neo
0 Replies
Login or Register to Ask a Question
INTLDATEFORMATTER.SETTIMEZONE(3)					 1					  INTLDATEFORMATTER.SETTIMEZONE(3)

IntlDateFormatter::setTimeZone - Sets formatters timezone

	Object oriented style

SYNOPSIS
public boolean IntlDateFormatter::setTimeZone (mixed $zone) DESCRIPTION
Procedural style boolean datefmt_set_timezone (mixed $zone) Sets the timezone that will be used when formatting dates or times with this object. PARAMETERS
o $zone - The timezone to use for this formatter. This can be specified in the following forms: o NULL, in which case the default timezone will be used, as specified in the ini setting date.timezone or through the func- tion date_default_timezone_set(3) and as returned by date_default_timezone_get(3). o An IntlTimeZone, which will be used directly. o A DateTimeZone. Its identifier will be extracted and an ICU timezone object will be created; the timezone will be backed by ICUs database, not PHPs. o A string, which should be a valid ICU timezone identifier. See IntlTimeZone.createTimeZoneIDEnumeration(3). Raw offsets such as "GMT+08:30" are also accepted. RETURN VALUES
Returns TRUE on success and FALSE on failure. EXAMPLES
Example #1 IntlDateFormatter.setTimeZone(3) examples <?php ini_set('date.timezone', 'Europe/Amsterdam'); $formatter = IntlDateFormatter::create(NULL, NULL, NULL, "UTC"); $formatter->setTimeZone(NULL); echo "NULL ", $formatter->getTimeZone()->getId(), " "; $formatter->setTimeZone(IntlTimeZone::createTimeZone('Europe/Lisbon')); echo "IntlTimeZone ", $formatter->getTimeZone()->getId(), " "; $formatter->setTimeZone(new DateTimeZone('Europe/Paris')); echo "DateTimeZone ", $formatter->getTimeZone()->getId(), " "; $formatter->setTimeZone('Europe/Rome'); echo "String ", $formatter->getTimeZone()->getId(), " "; $formatter->setTimeZone('GMT+00:30'); print_r($formatter->getTimeZone()); The above example will output: NULL Europe/Amsterdam IntlTimeZone Europe/Lisbon DateTimeZone Europe/Paris String Europe/Rome IntlTimeZone Object ( [valid] => 1 [id] => GMT+00:30 [rawOffset] => 1800000 [currentOffset] => 1800000 ) SEE ALSO
IntlDateFormatter.getTimeZone(3). PHP Documentation Group INTLDATEFORMATTER.SETTIMEZONE(3)