You can edit almost every page by Creating an account. Otherwise, see the FAQ.

Appalachian State–Charlotte rivalry

From EverybodyWiki Bios & Wiki

Appalachian State-Charlotte Rivalry
First meetingFebruary 10, 1971 (Basketball)
Charlotte, 72-57
Latest meetingMarch 13, 2022 (Baseball)
Appalachian State, 9-7
Next meetingAugust 28, 2025 (Football)
<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": "36.00"} },
   {"name":"imgLon", "init": {"expr": "-81.26"} },
   {"name":"imgZoom", "init": {"expr": "7"} },
   {"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": 36.00, 
    "lon": -81.26, 
    "img": "wikirawupload:https://upload.wikimedia.org/wikipedia/commons/thumb/1/10/Mapscaleline.svg/120px-Mapscaleline.svg.png", 
    "width": 50, 
    "height": 8, 
    "offsetX": 110.5, 
    "offsetY": 115, 
    "textAlign": "right", 
    "textDx": 22, 
    "textDy": -2, 
    "textColor": "grey", 
    "textFont": "Tahoma", 
    "textFontSize": 9, 
    "text":  "75km" }

, { "lat": 0, "lon": 0, "img": "wikirawupload:https://upload.wikimedia.org/wikipedia/commons/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": 36.2135671, "lon": -81.6865105, "img": "wikirawupload:https://upload.wikimedia.org/wikipedia/commons/thumb/9/9d/Yellow_pog.svg/10px-Yellow_pog.svg.png", "height": 10, "width": 10, "text": "Appalachian State", "textAlign": "center", "textBaseline": "top", "textDx": 0, "textDy": 7, "textFontSize": 12, "textColor": "#000000"


} , { "lat": 35.3070973, "lon": -80.7373527, "img": "wikirawupload:https://upload.wikimedia.org/wikipedia/commons/thumb/a/ab/Green_pog.svg/10px-Green_pog.svg.png", "height": 10, "width": 10, "text": "Charlotte", "textAlign": "center", "textBaseline": "bottom", "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 of Charlotte and Appalachian State

The Appalachian State–Charlotte rivalry is multi-sport college rivalry series between the Mountaineers of Appalachian State University and the 49ers of the University of North Carolina at Charlotte. The two North Carolina public universities are located within a two-hour drive of each other and have competed against each other in athletic contests since 1971.

Football[edit]

Football series
First meetingNovember 8, 2018
Appalachian State, 45–9
Latest meetingNovember 12, 2020
Appalachian State, 35–20
Next meetingSeptember 19, 2026
StadiumsJerry Richardson Stadium
Kidd Brewer Stadium
Bank of America Stadium
Statistics
Meetings total3
All-time seriesAppalachian State leads, 3–0
Largest victoryAppalachian State, 45–9 (2018)
Longest win streakAppalachian State, 3 (2018–present)
Longest unbeaten streakAppalachian State, 3 (2018–present)
Current win streakAppalachian State, 3 (2018–present)
Current unbeaten streakAppalachian State, 3 (2018–present)

Appalachian State has dominated the football series, winning every game by at least 15 points.[1] The next match up is scheduled for 2026, the first of a four-game series between the two schools.[2]

Game Results[edit]

Appalachian State victoriesCharlotte victoriesTie games
No.DateLocationWinning teamLosing team
1 September 8, 2018 Charlotte, NC Appalachian State 45 Charlotte 9
2 September 7, 2019 Boone, NC Appalachian State 56 Charlotte 41
3 September 12, 2020 Boone, NC Appalachian State 35 Charlotte 20
4 August 28, 2025 Charlotte, NC*
Series: Appalachian State leads 3–0

(*) 2025 Duke's Mayo Classic

Basketball[edit]

Basketball series
First meetingFebruary 10, 1971
Charlotte, 72–57
Latest meetingDecember 2, 2022
Charlotte, 71–62
Next meetingTBD
StadiumsDale F. Halton Arena
Holmes Convocation Center
Charlotte Coliseum
Varsity Gymnasium
Statistics
Meetings total41
All-time seriesCharlotte leads, 26–15
Largest victoryCharlotte, 87–59 (1977)
Longest win streakCharlotte, 6 (1991–96)
Current win streakCharlotte, 2 (2021–present)

Basketball was the first sport the two schools met in, and is the sport that's seen the greatest number of games, with Charlotte claiming a 10-game advantage over Appalachian State. Statistically, Charlotte has dominated, with three of their last 5 wins in the series decided by double digits.[3] Appalachian State has only won twice during that span.[4][5]

Game Results[edit]

Appalachian State victoriesCharlotte victoriesTie games
No.DateLocationWinnerScore
1 February 10, 1971 Charlotte, NC Charlotte 72–57
2 February 17, 1971 Boone, NC Charlotte 76–59
3 January 22, 1972 Charlotte, NC Charlotte 79–64
4 February 12, 1972 Boone, NC Appalachian State 78–77
5 February 3, 1973 Boone, NC Appalachian State 77–75
6 January 29, 1974 Charlotte, NC Charlotte 85–73
7 January 9, 1975 Boone, NC Charlotte 75–61
8 January 19, 1976 Charlotte, NC Charlotte 73–53
9 January 19, 1977 Boone, NC Charlotte 87–59
10 December 5, 1977 Charlotte, NC Appalachian State 71–64
11 January 20, 1979 Boone, NC Appalachian State 58–47
12 February 11, 1980 Charlotte, NC Charlotte 58–56
13 January 31, 1981 Boone, NC Appalachian State 53–52
14 January 20, 1982 Charlotte, NC Charlotte 60–54
15 December 29, 1983 Charlotte, NC Charlotte 67–51
16 November 30, 1984 Charlotte, NC Appalachian State 77–68
17 December 7, 1985 Boone, NC Appalachian State 84–73
18 December 20, 1985 Charlotte, NC Appalachian State 60–59
19 November 28, 1988 Charlotte, NC Charlotte 77–63
20 December 4, 1989 Boone, NC Appalachian State 88–81
21 December 5, 1990 Charlotte, NC Appalachian State 85–79
No.DateLocationWinnerScore
22 December 2, 1991 Boone, NC Charlotte 83–68
23 January 2, 1993 Charlotte, NC Charlotte 88–80
24 December 4, 1993 Boone, NC Charlotte 67–58
25 December 20, 1994 Charlotte, NC Charlotte 92–68
26 December 4, 1995 Boone, NC Charlotte 85–81
27 December 2, 1996 Charlotte, NC Charlotte 75–63
28 November 24, 1997 Boone, NC Appalachian State 66–60
29 November 26, 2001 Charlotte, NC Charlotte 71–69
30 November 25, 2002 Boone, NC Appalachian State 103–1003OT
31 December 13, 2003 Charlotte, NC Charlotte 85–64
32 November 12, 2007 Charlotte, NC Charlotte 84–78
33 November 19, 2008 Boone, NC Appalachian State 87–842OT
34 December 8, 2013 Boone, NC Charlotte 77–59
35 December 18, 2014 Charlotte, NC Charlotte 75–65
36 December 19, 2015 Boone, NC Charlotte 82–66
37 November 28, 2016 Charlotte, NC Charlotte 80–72
38 November 21, 2019 Boone, NC Appalachian State 64–55
39 December 11, 2020 Charlotte, NC Appalachian State 61–57
40 November 18, 2021 Boone, NC Charlotte 67–66
41 December 2, 2022 Charlotte, NC Charlotte 71–62
Series: Charlotte leads 26–15

Baseball[edit]

Baseball series
First meetingMarch 26, 1980
Appalachian State, 6-3
Latest meetingMarch 11, 2022
Appalachian State, 9-7
Next meetingTBD
StadiumsBeaver Field
Hayes Stadium
Clark Griffith Park
Lackey Field
Atrium Health Ballpark
Truist Field
Statistics
Meetings total28
All-time seriesCharlotte leads, 17–10–1
Largest victoryCharlotte, 32–9 (1995)
Longest win streakCharlotte, 5 (2000–2003, 2006–2022)
Current win streakAppalachian State, 1 (2022–present)

The baseball rivalry is arguably the most heated between athletic departments. Because of the close proximity of the two campuses, the teams often schedule multiple games over multiple seasons before taking around a decade-long hiatus, and then scheduling a lot more games.[6]

Game Results[edit]

Appalachian State victoriesCharlotte victoriesTie games
No.DateLocationWinnerScore
1 March 26, 1980 Charlotte, NC Appalachian State 6–3
2 May 2, 1980 Boone, NC Charlotte 8–5
3 March 25, 1981 Charlotte, NC Appalachian State 4–3
4 March 25, 1981 Charlotte, NC Appalachian State 20–12
5 April 14, 1981 Boone, NC Charlotte 12–7
6 March 18, 1982 Charlotte, NC Charlotte 9–5
7 March 12, 1983 Charlotte, NC Charlotte 11–7
8 April 13, 1983 Boone, NC Appalachian State 3–1
9 February 26, 1994 Charlotte, NC Appalachian State 6–4
10 February 26, 1994 Charlotte, NC Charlotte 4–2
11 March 29, 1994 Boone, NC Appalachian State 9–7
12 March 9, 1995 Charlotte, NC Charlotte 32–9
13 March 29, 1995 Boone, NC Charlotte 4–27
14 March 29, 1995 Boone, NC Appalachian State 9–87
15 February 16, 2000 Charlotte, NC Charlotte 11–1
No.DateLocationWinnerScore
16 March 8, 2000 Boone, NC Charlotte 8–7
17 March 27, 2001 Charlotte, NC Charlotte 13–4
18 April 10, 2001 Boone, NC Charlotte 8–6
19 April 29, 2003 Charlotte, NC Charlotte 13–3
20 March 22, 2005 Boone, NC Appalachian State 12–56
21 April 26, 2005 Charlotte, NC Appalachian State 8–2
22 April 4, 2006 Boone, NC Tie13–13
23 April 25, 2006 Charlotte, NC Charlotte 4–3
24 March 23, 2021 Kannapolis, NC Charlotte 15–5
25 April 20, 2021 Boone, NC Charlotte 11–8
26 March 11, 2022 Charlotte, NC Charlotte 9–3
27 March 12, 2022 Charlotte, NC Charlotte 12–7
28 March 13, 2022 Charlotte, NC Appalachian State 9–712
Series: Charlotte leads 17–10–1

References[edit]

  1. "Winsipedia - Appalachian State Mountaineers vs. Charlotte 49ers football series history". winsipedia.com. Retrieved 2021-12-14.
  2. "sports/college/asu/a-rivalry-not-yet-but-app-state-and-charlotte-are-working-on-it/article_da027fac-e579-5e9b-87e5-8d0945ba6f11". journalnow.com. 6 September 2019. Retrieved 2021-12-14.
  3. "Matchup Finder | College Basketball at Sports-Reference.com". sports-reference.com. Retrieved 2021-12-14.
  4. "Charlotte Athletics Men's Basketball History vs Appalachian State University". charlotte49ers.com. Retrieved 2021-12-14.
  5. "App State Athletics Men's Basketball History vs Charlotte". appstatesports.com. Retrieved 2021-12-14.
  6. "Charlotte Athletics Baseball History vs Appalachian State University". charlotte49ers.com. Retrieved 2021-12-14.


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