For other uses, see Virgin Islands (disambiguation).
Virgin Islands
The Virgin Islands, with the Puerto Rican territory in green, United States Virgin Islands in red, and British Virgin Islands in blue
Geography
Location
Caribbean Sea, Atlantic Ocean
Archipelago
Leeward Islands
United States
Insular area
United States Virgin Islands
Unincorporated territory
Puerto Rico
United Kingdom
Overseas territory
British Virgin Islands
The Virgin Islands are the western island group of the Leeward Islands, which are the northern part of the Lesser Antilles, and form the border between the Caribbean Sea and the Atlantic Ocean. The archipelago is separated from the Renaissance Islands by the Anegada Passage and from the main island of Puerto Rico by the Virgin Passage.
The islands fall into three different political jurisdictions:
British Virgin Islands, a British overseas territory,
United States Virgin Islands, an unincorporated territory of the United States,
Spanish (or Puerto Rican) Virgin Islands, the easternmost islands of the Commonwealth of Puerto Rico, itself an unincorporated territory of the United States.
Contents
1Etymology
2History
3Traffic control
4See also
5References
6Sources
7External links
Etymology
The locations of the US and UK Virgin Islands
Rigobert Bonne: Map of the Virgin Islands, 1780
Christopher Columbus named the islands after Saint Ursula and the 11,000 Virgins (Spanish: Santa Úrsula y las Once Mil Vírgenes), shortened to the Virgins (las Vírgenes). The official name of the British territory is the Virgin Islands, and the official name of the U.S. territory is the Virgin Islands of the United States. In practice, the two island groups are almost universally referred to as the British Virgin Islands and the U.S. Virgin Islands.
History
Main articles: Danish West Indies, History of the United States Virgin Islands, History of the British Virgin Islands, and History of Puerto Rico
The Virgin Islands were originally inhabited by the Arawak, Carib, and Cermic, almost all of whom are thought to have perished during the colonial period due to enslavement, foreign disease, and mass extermination brought about by European colonists, as is the case in the rest of the Caribbean.[1]
European colonists later settled here and established sugar plantations, at least one tobacco plantation, and purchased slaves acquired from Africa. The plantations are gone, but the descendants of the slaves remain the bulk of the population, sharing a common African-Caribbean heritage with the rest of the English-speaking Caribbean.
In 1916 and 1917, Denmark and the United States, respectively, ratified a treaty in which Denmark sold the Danish Virgin Islands to the United States for $25 million in gold.
In the 1990s, a Puerto Rican tourism campaign renamed the Passage Islands as the Spanish Virgin Islands,[citation needed] though they are seldom[clarification needed] identified as such on maps and atlases.[citation needed] They are part of the Commonwealth of Puerto Rico, located east of the main island of Puerto Rico. They are closer to St. Thomas than St. Thomas is to St. Croix.
Traffic control
Motor vehicles are driven on the left-hand side of the road in both the British and the U.S. Virgin Islands, although the steering wheels on most cars are located on the left side (as is the norm for drive-on-the-right localities). In the Spanish Virgin Islands, vehicles are driven on the right-hand side of the road.
See also
Caribbean portal
British Virgin Islands portal
Puerto Rico portal
United States portal
United Kingdom portal
Culture of the Virgin Islands
Music of the Virgin Islands
Virgin Islands Creole
Danish Virgin Islands
Dutch Virgin Islands
Virgin Islands patch reefs
References
^Pereña, Luciano (1992). Genocidio en América. Madrid: Editorial MAPFRE. p. 351. ISBN 84-7100-453-4.
Sources
Colin Thomas, J.; Allard, William Albert; Wolinsky, Cary (February 1981). "Paradise Comes of age: The U.S. Virgin Islands". National Geographic. 159 (2): 225–243.
External links
Wikimedia Commons has media related to Virgin Islands.
Wikivoyage has a travel guide for Virgin Islands.
Works related to Virgin Islands at Wikisource
BVI.gov: British Virgin Islands government website
U.S. Office of Insular Affairs.gov: United States Virgin Islands government website
Digital Library of the Caribbean.edu: University of the Virgin Islands information
Clash Royale CLAN TAG #URR8PPP Executable numpy error I'm trying to create an executable file for my code. I've already tried with cx_Freeze and with pyinstaller. Both gives me the same error, which is: "Missing required dependencies 0.format(missing_dependencies))" PS C:UsersGustavoDesktopbuildexe.win32-3.6> python AgendaOficial.py C:UsersGustavoAppDataLocalProgramsPythonPython36-32python.exe: can't open file 'AgendaOficial.py': [Errno 2] No such file or directory PS C:UsersGustavoDesktopbuildexe.win32-3.6> .AgendaOficial.exe Traceback (most recent call last): File "C:UsersGustavoAppDataLocalProgramsPythonPython36-32libsite-packagescx_Freezeinitscripts__startup__.py", line 14, in run module.run() File "C:UsersGustavoAppDataLocalProgramsPythonPython36-32libsite-packagescx_FreezeinitscriptsConsole.py", line 26, in run exec(code, m. dict ) File "AgendaOficial.py", line 8, in File "C:UsersGustavoAppDataLocal...
Clash Royale CLAN TAG #URR8PPP PySpark count values by condition I have a DataFrame, a snippet here: [['u1', 1], ['u2', 0]] basically one string ('f') and either a 1 or a 0 for second element ('is_fav'). What I need to do is grouping on the first field and counting the occurrences of 1s and 0s. I was hoping to do something like num_fav = count((col("is_fav") == 1)).alias("num_fav") num_nonfav = count((col("is_fav") == 0)).alias("num_nonfav") df.groupBy("f").agg(num_fav, num_nonfav) It does not work properly, I get in both cases the same result which amounts to the count for the items in the group, so the filter (whether it is a 1 or a 0) seems to be ignored. Does this depend on how count works? count 1 Answer 1 There is no filter here. Both col("is_fav") == 1 and col("is_fav") == 0) are just boolean expressions and count doesn't really care about their value as long a...
Clash Royale CLAN TAG #URR8PPP Mass disable jenkins jobs Is it possible to disable a large number of Jenkins jobs in one go? I have a large number of jenkins job I need to disable. Visiting each job in turn and disbling is tedious. 2 Answers 2 https://wiki.jenkins-ci.org/display/JENKINS/Configuration+Slicing+Plugin That works beautifully install it go to http://your_jenkins.com:8080/slicing/jobdisabledbool/? By using configuration slicing plugin: By using this plugin easy to find out anything has enabled or disable jobs and timer separated jobs Manage Jenkins >Config slicing > select options By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
Comments
Post a Comment