Mesoregion of Araraquara

The Mesoregion of Araraquara is one of the 15 mesoregions of the São Paulo state, Brazil. It is located on the center of the state, and has an area of 9,451.2 km².

Mesoregion of
Araraquara
Mesoregion
Location of the Mesoregion of Araraquara
Coordinates: 21°47′38″S 48°10′33″W
Country Brazil
RegionSoutheast
State São Paulo
Area
  Total9,451.2 km2 (3,649.1 sq mi)
Population
 (2010/IBGE)
  Total810,926
  Density85.80/km2 (222.2/sq mi)
Time zoneUTC-3 (UTC-3)
  Summer (DST)UTC-2 (UTC-2)
Area code(s)+55 16

The population of the mesoregion is 810,926[1] inhabitants (IBGE/2010), spread over 21 municipalities.

Municipalities

All data from IBGE/2010[1]

Microregion of Araraquara

  • Population: 502,149
  • Area (km²): 6,265.8
  • Population density (km²): 80.14

Américo Brasiliense, Araraquara, Boa Esperança do Sul, Borborema, Dobrada, Gavião Peixoto, Ibitinga, Itápolis, Matão, Motuca, Nova Europa, Rincão, Santa Lúcia, Tabatinga, Trabiju

Microregion of São Carlos

  • Population: 308,777
  • Area (km²): 3,185.4
  • Population density (km²): 96.94

Analândia, Descalvado, Dourado, Ibaté, Ribeirão Bonito, São Carlos

gollark: ```rustpub struct List<T> { head: Link<T>,}type Link<T> = Option<Box<Node<T>>>;struct Node<T> { elem: T, next: Link<T>,}impl<T> List<T> { pub fn new() -> Self { List { head: None } } pub fn push(&mut self, elem: T) { let new_node = Box::new(Node { elem: elem, next: self.head.take(), }); self.head = Some(new_node); } pub fn pop(&mut self) -> Option<T> { self.head.take().map(|node| { self.head = node.next; node.elem }) }}impl<T> Drop for List<T> { fn drop(&mut self) { let mut cur_link = self.head.take(); while let Some(mut boxed_node) = cur_link { cur_link = boxed_node.next.take(); } }}```
gollark: ... or at all?
gollark: You don't have a thing to efficiently deallocate the list.
gollark: Collections which work on a big chunk of memory or something *do* kind of have to use unsafe, linked lists or (some?) trees mostly don't.
gollark: And the unsafe stuff is better checked than in ©.

References

  1. "2010 Census of the IBGE - Synopsis - Tables 761 and 1301" (in Portuguese). IBGE.gov.br. Retrieved 22 July 2011.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.