You can edit almost every page by Creating an account and confirming your email.

Battle of the Timberlands

From EverybodyWiki Bios & Wiki


Battle of the Timberlands
SportFootball
Teams
First meetingNovember 27, 1913
Arkansas–Monticello, 26–0
Latest meetingNovember 11, 2023
Southern Arkansas, 60–17
Statistics
Meetings total98
All-time seriesSouthern Arkansas leads, 60–37–1 (.617)[upper-alpha 1]
Largest victorySouthern Arkansas, 91–0 (1925)
Longest win streakSouthern Arkansas, 11 (1967–1977)
Current win streakSouthern Arkansas, 2 (2022–present)
<graph>

{

 //
 // ATTENTION: This code is maintained at https://www.mediawiki.org/wiki/Template:Graph:Street_map_with_marks
 //            Please do not modify it anywhere else, as it may get copied and override your changes.
 //            Suggestions can be made at https://www.mediawiki.org/wiki/Template_talk:Graph:Street_map_with_marks
 //
 // Template translation is in https://commons.wikimedia.org/wiki/Data:Original/Template:Graphs.tab
 //
 "version": 2, "width":295, "height": 250, "padding": 0,
 "signals":[
   // These signals allow us to quickly move the map within the image, e.g. to leave space for the legend

{"name":"legendWidth", "init": {"expr": "0"} },

   {"name":"legendHeight", "init": {"expr": "height"} },
   {"name":"imgWidth", "init": {"expr": "width-legendWidth"} },
   {"name":"imgHeight", "init": {"expr": "height"} },
   {"name":"imgXC", "init": {"expr": "imgWidth/2"} },
   {"name":"imgYC", "init": {"expr": "imgHeight/2"} },
   {"name":"imgTileSize", "init": {"expr": "256"} },
   {"name":"imgLat", "init": {"expr": "33.35"} },
   {"name":"imgLon", "init": {"expr": "-92.05"} },
   {"name":"imgZoom", "init": {"expr": "6"} },
   {"name":"picWidth", "init": {"expr": "180"} },
   {"name":"picHeight", "init": {"expr": "picWidth/2"} },
   {"name":"picXC", "init": {"expr": "imgWidth-(picWidth/2)"} },
   {"name":"picYC", "init": {"expr": "imgHeight-(picHeight/2)"} },
   {"name":"showMiniMap", "init": {"expr": "0"} }
 ],
 "data": [
   {
     "name": "data",

// Otherwise use the first unnamed argument for source values

     "values": [  { "lat": 33.35, 
    "lon": -92.05, 
    "img": "wikirawupload:", 
    "width": 50, 
    "height": 8, 
    "offsetX": 110.5, 
    "offsetY": 115, 
    "textAlign": "right", 
    "textDx": 22, 
    "textDy": -2, 
    "textColor": "grey", 
    "textFont": "Tahoma", 
    "textFontSize": 9, 
    "text":  "150km" }

, { "lat": 0, "lon": 0, "img": "wikirawupload:https://en.everybodywiki.com/images/thumb/0/0c/Red_pog.svg/10px-Red_pog.svg.png", "height": 10, "width": 10, "text": "", "textAlign": "right", "textBaseline": "middle", "textDx": -7, "textDy": 1, "textFontSize": 12, "textColor": "#AA1205"


} , { "lat": 33.591, "lon": -91.813, "img": "wikirawupload:https://en.everybodywiki.com/images/thumb/a/ab/Green_pog.svg/10px-Green_pog.svg.png", "height": 10, "width": 10, "text": "University of Arkansas at Monticello", "textAlign": "center", "textBaseline": "bottom", "textDx": 0, "textDy": -7, "textFontSize": 12, "textColor": "#000000"


} , { "lat": 33.292, "lon": -93.236, "img": "wikirawupload:https://en.everybodywiki.com/images/thumb/d/d7/Blue_pog.svg/10px-Blue_pog.svg.png", "height": 10, "width": 10, "text": "Southern Arkansas University", "textAlign": "center", "textBaseline": "top", "textDx": 0, "textDy": 7, "textFontSize": 12, "textColor": "#000000"


}
















     ],
     "transform": [
       {
         "type": "geo",
         "projection": "mercator",
         "scale": {"expr": "imgTileSize/PI/2*pow(2,imgZoom)"},
         "translate": [{"expr": "imgXC"}, {"expr": "imgYC"}],
         "center": [{"expr": "imgLon"}, {"expr": "imgLat"}],
         "lon": "lon", "lat": "lat"
       },
       { "type": "formula", "field":"layout_x", "expr": "datum.layout_x + (datum.offsetX || 0)" },
       { "type": "formula", "field":"layout_y", "expr": "datum.layout_y + (datum.offsetY || 0)" },
       { "type": "formula", "field":"color", "expr": "datum.color || '#c33'" },
       { "type": "formula", "field":"textColor", "expr": "datum.textColor || datum.color" },
       { "type": "formula", "field":"strokeColor", "expr": "datum.strokeColor || '#ffe7e6'" }
     ]
   },
   {
     // Hack: single value data source for drawing/hiding images and other non-series elements
     "name": "dummyData",
     "values": [{}]
   }
 ],

// Legend only works if showLegend and colorScaleField are set

 "marks": [
   {
     "type": "image",
     "from": {
       "data": "dummyData",
       "transform": [
         { "type": "formula", "field":"url", "expr": "'mapsnapshot:///?width='+imgWidth+'&height='+imgHeight+'&zoom='+imgZoom+'&lat='+imgLat+'&lon='+imgLon" }
       ]
     },
     "properties": {
       "enter": {
         "url": {"field": "url"},
         "xc": {"signal": "imgXC"}, "yc": {"signal": "imgYC"},
         "width": {"signal": "imgWidth"}, "height": {"signal": "imgHeight"}
       }
     }
   },
   {
     // Places an image of a given name and size at the [lan,lon] location
     "type": "image",
     "from": {
       "data": "data",
       "transform": [
         { "type": "filter", "test": "datum.img" },
         { "type": "formula", "field":"iconWidth", "expr": "datum.width || 0" },
         { "type": "formula", "field":"iconHeight", "expr": "datum.height || 0" },
         { "type": "formula", "field":"img",
           "expr": "if(!test(/^[a-z]+:\\/\\//, datum.img), 'wikifile:///'+datum.img, datum.img)" },
         // Ensure that either width or height parameter is passed to wikifile:// request
         { "type": "formula", "field":"img",
           "expr": "if((datum.iconWidth || datum.iconHeight) && !test(/[?&](width|height)=\\d/, datum.img),if(datum.iconWidth,datum.img+'?width='+datum.iconWidth,datum.img+'?height='+datum.iconHeight), datum.img)" }
     ]},
     "properties": {
       "enter": {
         "url": {"field": "img"},
         "xc": {"field": "layout_x"}, "yc": {"field": "layout_y"},
         "width": {"field": "iconWidth"}, "height": {"field": "iconHeight"}
       }
     }
   },
   {
     // Draw marks of a given color, shape, and size at the [lan,lon] location
     "type": "symbol",
     "from": {
       "data": "data",
       "transform": [{ "type": "filter", "test": "!datum.img" }]
     },
     "properties": {
       "enter": {
         "x": {"field": "layout_x"},
         "y": {"field": "layout_y"},
         // If colorScaleField is set, use color scaling, otherwise use the preset color value
         "fill": { "field": "color" },
         "size": {"field": "size"},
         "shape": {"field": "shape"},
         "stroke": {"field": "strokeColor"}
       }
     }
   },
   {
     // Draw text with the given color and size at the [lan,lon] location
     // See https://github.com/vega/vega/wiki/Marks#text for all parameter description (prepend "text" and capitalize them)
     "type": "text",
     "from": {
       "data": "data",
       "transform": [
         { "type": "filter", "test": "datum.text" },
         // Figure out if this is an LTR or RTL page. For LTR, show label to the right of the icon, left-aligned. For RTL, reverse.
         { "type": "formula", "field":"isLTR", "expr": "'‎' == '\\u200E'" },
         // If these values are not defined ("undefined" is not allowed, so test for truthiness and not 0)
         { "type": "formula", "field":"textDx", "expr": "if(!datum.textDx && datum.textDx != 0, if(datum.isLTR,8,-8), datum.textDx)" },
         { "type": "formula", "field":"textAlign", "expr": "if(!datum.textAlign, if(datum.isLTR,'left','right'), datum.textAlign)" },
         { "type": "formula", "field":"textBaseline", "expr": "datum.textBaseline || 'middle'" }
     ]},
     "properties": {
       "enter": {
         "text": {"field": "text"},
         "x": {"field": "layout_x" },
         "y": {"field": "layout_y"},
         "dx": {"field": "textDx" },
         "dy": {"field": "textDy"},
         "fill": {"field": "textColor"},
         "align": {"field": "textAlign"},
         "baseline": {"field": "textBaseline"},
         "radius": {"field": "textRadius"},
         "theta": {"field": "textTheta"},
         "angle": {"field": "textAngle"},
         "font": {"field": "textFont"},
         "fontSize": {"field": "textFontSize"},
         "fontWeight": {"field": "textFontWeight"},
         "fontStyle": {"field": "textFontStyle"}
       }
     }
   },
   {
     // Draw a low-zoom locator map frame
     "type": "rect",
     "from": {
       "data": "dummyData",
       "transform": [
         { "type": "filter", "test": "showMiniMap" }
       ]
     },
     "properties": {
       "enter": {
         "xc": {"signal": "picXC"}, "yc": {"signal": "picYC"},
         "width": {"signal": "picWidth", "offset":2}, "height": {"signal": "picHeight"},
         "stroke": {"value":"#fff"},"strokeWidth": {"value":6}
       }
     }
   },
   {
     // Draw a low-zoom locator map by using a premade world map image
     "type": "image",
     "from": {
       "data": "dummyData",
       "transform": [
         { "type": "filter", "test": "showMiniMap" },
         { "type": "formula", "field":"url", "expr": "1" }
       ]
     },
     "properties": {
       "enter": {
         "url": {"value": "wikirawupload:"},
         "xc": {"signal": "picXC"}, "yc": {"signal": "picYC"},
         "width": {"signal": "picWidth"}, "height": {"signal": "picHeight"}
       }
     }
   },
   {
     // Draw a zoom-out mark at the [lan,lon] location
     "type": "symbol",
     "from": {
       "data": "dummyData",
       "transform": [
         { "type": "filter", "test": "showMiniMap" },
         { "type": "formula", "field":"lat", "expr": "imgLat" },
         { "type": "formula", "field":"lon", "expr": "imgLon" },
         {
           "type": "geo",
           "projection": "equirectangular",
           "scale": {"expr": "180/2/PI"},
           "translate": [{"expr": "picXC"}, {"expr": "picYC"}],
           "center": [{"expr": "0"}, {"expr": "0"}],
           "lon": "lon", "lat": "lat"
         }
       ]
     },
     "properties": {
       "enter": {
         "x": {"field": "layout_x"}, "y": {"field": "layout_y"},
         "fill": {"value": "#c33"},
         "stroke": {"value": "#ffe7e6"},
         "size": {"value": 40}
       }
     }
   }
 ]

} </graph>

Locations in Arkansas

The Battle of the Timberlands is an annual college football rivalry game between the Arkansas–Monticello Boll Weevils of the University of Arkansas at Monticello and the Southern Arkansas Muleriders of the Southern Arkansas University. The game became known as the "Battle of the Timberlands" in 2012 when a traveling trophy for the contest was created (both schools are located in southern Arkansas, which has a large forest products industry).

The rivalry between the two schools dates back to 1913. Both schools are currently members of the Great American Conference. Through the 97 games played, Southern Arkansas leads the series 60–37–1.[upper-alpha 1]

Game results

Arkansas–Monticello victoriesSouthern Arkansas victoriesTie games
No.DateLocationWinnerScore
1 November 21, 1913 Magnolia, AR Arkansas–Monticello 26–0
2 November 9, 1914 Monticello, AR Arkansas–Monticello 47–21
3 November 27, 1915 Magnolia, AR Southern Arkansas 7–0
4 November 4, 1916 Monticello, AR Arkansas–Monticello 27–0
5 November 29, 1917 Magnolia, AR Arkansas–Monticello 24–0
6 October 18, 1919 Magnolia, AR Southern Arkansas 46–0
7 November 11, 1921 Magnolia, AR Southern Arkansas 13–7
8 November 9, 1923 Monticello, AR Arkansas–Monticello 13–6
9 November 27, 1924 Monticello, AR Arkansas–Monticello 46–0
10 November 25, 1925 Magnolia, AR Southern Arkansas 91–0
11 November 25, 1926 Monticello, AR Southern Arkansas 26–0
12 November 24, 1927 Monticello, AR Southern Arkansas 7–0
13 November 29, 1928 Monticello, AR Arkansas–Monticello 7–0
14 November 28, 1929 Magnolia, AR Southern Arkansas 32–6
15 November 27, 1930 Monticello, AR Arkansas–Monticello 6–0
16 November 26, 1931 Magnolia, AR Arkansas–Monticello 12–0
17 November 24, 1932 Monticello, AR Arkansas–Monticello 6–0
18 November 29, 1933 El Dorado, AR Tie0–0
19 November 29, 1934 El Dorado, AR Southern Arkansas 7–6
20 November 28, 1935 Magnolia, AR Southern Arkansas 7–0
21 November 26, 1936 Monticello, AR Arkansas–Monticello 13–0
22 November 27, 1941 Monticello, AR Southern Arkansas 25–7
23 November 29, 1946 El Dorado, AR Southern Arkansas 21–0
24 November 28, 1947 El Dorado, AR Southern Arkansas 33–6
25 November 25, 1948 Monticello, AR Southern Arkansas 7–6
26 November 24, 1949 Magnolia, AR Arkansas–Monticello 26–14
27 November 23, 1950 Monticello, AR Southern Arkansas 21–15
28 November 22, 1951 Magnolia, AR Southern Arkansas 19–7
29 November 27, 1952 Monticello, AR Southern Arkansas 21–7
30 November 26, 1953 Magnolia, AR Arkansas–Monticello 31–14
31 November 25, 1954 Monticello, AR Southern Arkansas 13–6
32 November 24, 1955 Magnolia, AR Southern Arkansas 12–7
33 November 28, 1957 Monticello, AR Arkansas–Monticello 9–6
34 November 27, 1958 Magnolia, AR Arkansas–Monticello 21–6
35 November 21, 1959 Monticello, AR Southern Arkansas 13–6
36 November 19, 1960 Magnolia, AR Southern Arkansas 48–13
37 November 18, 1961 Monticello, AR Southern Arkansas 35–13
38 November 17, 1962 Magnolia, AR Arkansas–Monticello 20–6
39 November 16, 1963 Monticello, AR Arkansas–Monticello 28–0
40 November 14, 1964 Magnolia, AR Arkansas–Monticello 14–13
41 November 13, 1965 Monticello, AR Arkansas–Monticello 37–0
42 November 19, 1966 Magnolia, AR Arkansas–Monticello 40–20
43 November 18, 1967 Monticello, AR Southern Arkansas 21–19
44 November 23, 1968 Magnolia, AR Southern Arkansas 21–13
45 November 21, 1969 Monticello, AR Southern Arkansas 8–7
46 November 21, 1970 Monticello, AR Southern Arkansas 7–0
47 November 20, 1971 Monticello, AR Southern Arkansas 49–18
48 November 18, 1972 Magnolia, AR Southern Arkansas 43–0
49 November 17, 1973 Monticello, AR Southern Arkansas 35–20
50 November 23, 1974 Magnolia, AR Southern Arkansas 14–0
No.DateLocationWinnerScore
51 November 22, 1975 Monticello, AR Southern Arkansas 25–0
52 November 20, 1976 Magnolia, AR Southern Arkansas 42–24
53 November 19, 1977 Monticello, AR Southern Arkansas 14–9
54 November 18, 1978 Monticello, AR Arkansas–Monticello 51–13
55 November 17, 1979 Magnolia, AR Arkansas–Monticello 35–18
56 November 22, 1980 Monticello, AR Southern Arkansas 13–9
57 November 21, 1981 Magnolia, AR Arkansas–Monticello 20–16
58 November 20, 1982 Monticello, AR Arkansas–Monticello 14–10
59 November 19, 1983 Magnolia, AR Southern Arkansas 10–7
60 November 17, 1984 Monticello, AR Southern Arkansas 44–14
61 November 23, 1985 Magnolia, AR Arkansas–Monticello 35–26
62 November 20, 1986 Monticello, AR Arkansas–Monticello 21–7
63 November 19, 1987 Magnolia, AR Southern Arkansas 14–13
64 November 19, 1988 Monticello, AR Arkansas–Monticello 41–15
65 November 16, 1989 Magnolia, AR Southern Arkansas 23–20
66 September 29, 1990 Magnolia, AR Southern Arkansas 31–26
67 October 5, 1991 Monticello, AR Southern Arkansas 12–6
68 October 3, 1992 Magnolia, AR Arkansas–Monticello 21–18
69 October 30, 1993 Magnolia, AR Arkansas–Monticello 17–9
70 November 5, 1994 Monticello, AR Arkansas–Monticello 34–20
71 November 11, 1995 Monticello, AR Arkansas–Monticello 50–14
72 November 2, 1996 Magnolia, AR Arkansas–Monticello 27–20
73 November 1, 1997 Monticello, AR Southern Arkansas 20–17
74 September 19, 1998 Monticello, AR Southern Arkansas 44–7
75 September 18, 1999[upper-alpha 1] Magnolia, AR Arkansas–Monticello 23–20
76 October 28, 2000 Magnolia, AR Southern Arkansas 31–21
77 October 27, 2001 Monticello, AR Southern Arkansas 29–22
78 November 2, 2002 Magnolia, AR Southern Arkansas 48–0
79 November 1, 2003 Monticello, AR Southern Arkansas 31–28
80 October 2, 2004 Magnolia, AR Arkansas–Monticello 33–31
81 October 1, 2005 Monticello, AR Southern Arkansas 52–21
82 August 26, 2006 Magnolia, AR Southern Arkansas 18–15
83 September 1, 2007 Monticello, AR Southern Arkansas 38–21
84 November 8, 2008 Monticello, AR Southern Arkansas 23–16
85 November 7, 2009 El Dorado, AR Arkansas–Monticello 17–6
86 November 6, 2010 El Dorado, AR Arkansas–Monticello 28–23
87 November 5, 2011 Magnolia, AR Southern Arkansas 53–28
88 September 29, 2012 Monticello, AR Southern Arkansas 30–14
89 November 16, 2013 Magnolia, AR Southern Arkansas 44–20
90 November 15, 2014 Monticello, AR Southern Arkansas 66–42
91 November 14, 2015 Magnolia, AR Southern Arkansas 49–29
92 November 12, 2016 Monticello, AR Southern Arkansas 56–43
93 November 11, 2017 Magnolia, AR Southern Arkansas 51–20
94 November 10, 2018 Monticello, AR Arkansas–Monticello 20–17
95 November 16, 2019 Magnolia, AR Southern Arkansas 34–32
96 November 13, 2021 Magnolia, AR Arkansas–Monticello 73–37
97 November 12, 2022 Monticello, AR Southern Arkansas 20–7
98 November 11, 2023 Magnolia, AR Southern Arkansas 60–17
Series: Southern Arkansas leads 60–37–1

See also

Notes and references

  1. 1.0 1.1 1.2 In 1999, Arkansas–Monticello initially won the game but later had to forfeit due to the use of an ineligible player. [1]
  1. "Arkansas-Monticello vs Southern Arkansas". cfbdatawarehouse.com. Archived from the original on 2016-03-03. Retrieved 2014-02-25. Unknown parameter |url-status= ignored (help)

Template:Great American Conference football navbox


This article "Battle of the Timberlands" is from Wikipedia. The list of its authors can be seen in its historical and/or the page Edithistory:Battle of the Timberlands. Articles copied from Draft Namespace on Wikipedia could be seen on the Draft Namespace of Wikipedia and not main one.

Page kept on Wikipedia This page exists already on Wikipedia.