You are here

location.td.inc in Location 7.3

Chad.

File

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

/**
 * @file
 * Chad.
 */

/**
 * Returns an associative array of states/territories.
 */
function location_province_list_td() {
  return array(
    'BA' => "Batha",
    'BI' => "Biltine",
    'BE' => "Borkou-Ennedi-Tibesti",
    'CB' => "Chari-Baguirmi",
    'GU' => "Guera",
    'KA' => "Kanem",
    'LA' => "Lac",
    'LC' => "Logone Occidental",
    'LR' => "Logone Oriental",
    'MK' => "Mayo-Kebbi",
    'MC' => "Moyen-Chari",
    'OU' => "Ouaddai",
    'SA' => "Salamat",
    'TA' => "Tandjile",
  );
}

/**
 * Returns minimum and maximum latitude and longitude needed to create a bounding box.
 */
function location_bounds_td() {
  return array(
    'minlng' => 13.5963,
    'minlat' => 7.523867,
    'maxlng' => 24.08065,
    'maxlat' => 23.507333,
  );
}

Functions

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