mirror of
https://github.com/appwrite/appwrite
synced 2026-04-27 00:17:34 +00:00
46 lines
1 KiB
PHP
46 lines
1 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Continent codes with names and approximate central coordinates
|
|
*
|
|
* Coordinates represent approximate geographical centers of each continent
|
|
* Note: These are simplified centroids and may not represent the exact geographical center
|
|
*/
|
|
|
|
return [
|
|
'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
|
|
],
|
|
];
|