appwrite/app/config/locale/continents.php

47 lines
1 KiB
PHP
Raw Normal View History

2021-07-22 20:15:01 +00:00
<?php
2025-02-25 08:31:24 +00:00
/**
* Continent codes with names and approximate central coordinates
2025-02-25 19:25:54 +00:00
*
2025-02-25 08:31:24 +00:00
* Coordinates represent approximate geographical centers of each continent
* Note: These are simplified centroids and may not represent the exact geographical center
*/
2021-07-22 20:15:01 +00:00
return [
2025-02-25 08:31:24 +00:00
'AF' => [
'name' => 'Africa',
'latitude' => 8.7832,
'longitude' => 34.5085
],
'AN' => [
'name' => 'Antarctica',
'latitude' => -82.8628,
'longitude' => 135.0000
],
'AS' => [
'name' => 'Asia',
'latitude' => 34.0479,
'longitude' => 100.6197
],
'EU' => [
'name' => 'Europe',
'latitude' => 54.5260,
'longitude' => 15.2551
],
'NA' => [
'name' => 'North America',
'latitude' => 54.5260,
'longitude' => -105.2551
],
'OC' => [
'name' => 'Oceania',
'latitude' => -22.7359,
'longitude' => 140.0188
],
'SA' => [
'name' => 'South America',
'latitude' => -8.7832,
'longitude' => -55.4915
],
2021-07-22 20:15:01 +00:00
];