You are here

location.ss.inc in Location 7.3

Same filename and directory in other branches
  1. 6.3 supported/location.ss.inc

South Sudan.

File

supported/location.ss.inc
View source
<?php

/**
 * @file
 * South Sudan.
 */

/**
 * Returns an associative array of states/territories.
 */
function location_province_list_ss() {
  return array(
    'EC' => "Central Equatoria",
    'EE' => "Eastern Equatoria",
    'JG' => "Jonglei",
    'LK' => "Lakes",
    'BN' => "Northern Bahr el-Ghazal",
    'UY' => "Unity",
    'NU' => "Upper Nile",
    'WR' => "Warrap",
    'BW' => "Western Bahr el-Ghazal",
    'EW' => "Western Equatoria",
  );
}

/**
 * Returns minimum and maximum latitude and longitude needed to create a bounding box.
 */
function location_bounds_ss() {
  return array(
    'minlng' => 24.1849,
    'minlat' => 3.49339,
    'maxlng' => 35.9406,
    'maxlat' => 12.2377,
  );
}

Functions

Namesort descending Description
location_bounds_ss Returns minimum and maximum latitude and longitude needed to create a bounding box.
location_province_list_ss Returns an associative array of states/territories.