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
GEOIP_CONTINENT_CODE_BY_NAME(3) 					 1					   GEOIP_CONTINENT_CODE_BY_NAME(3)

geoip_continent_code_by_name - Get the two letter continent code

SYNOPSIS
string geoip_continent_code_by_name (string $hostname) DESCRIPTION
The geoip_continent_code_by_name(3) function will return the two letter continent code corresponding to a hostname or an IP address. PARAMETERS
o $hostname - The hostname or IP address whose location is to be looked-up. RETURN VALUES
Returns the two letter continent code on success, or FALSE if the address cannot be found in the database. Continent codes +-----+----------------+ |Code | | | | | | | Continent name | | | | +-----+----------------+ | | | | AF | | | | | | | Africa | | | | | | | | AN | | | | | | | Antarctica | | | | | | | | AS | | | | | | | Asia | | | | | | | | EU | | | | | | | Europe | | | | | | | | NA | | | | | | | North america | | | | | | | | OC | | | | | | | Oceania | | | | | | | | SA | | | | | | | South america | | | | +-----+----------------+ EXAMPLES
Example #1 A geoip_continent_code_by_name(3) example This will print where the host example.com is located. <?php $continent = geoip_continent_code_by_name('www.example.com'); if ($continent) { echo 'This host is located in: ' . $continent; } ?> The above example will output: This host is located in: NA SEE ALSO
geoip_country_code_by_name(3). PHP Documentation Group GEOIP_CONTINENT_CODE_BY_NAME(3)