Engineering:Landline

From HandWiki
Short description: Physical telephone connection
<graph mode="interactive">

{

 //
 // ATTENTION: This code is maintained at https://www.mediawiki.org/wiki/Template:Graph:World_Historical_Highlights
 //            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:World_Historical_Highlights
 //
 "version": 2,
 "width": 300,
 "height": 265,
 "signals": [
   // TODO: should be auto-calculated last available
   { "name": "initYear", "init": 2017 },
   { "name": "gapHeight", "init": 26 },
   {
     // Hide overview if total height is too small
     "name": "showOverview",
     "init": {"expr": "true || height < (gapHeight + 100)" }
   },
   { "name": "overviewHeight", "init": {"expr": "showOverview ? 40 : 0" } },
   { "name": "detailHeight", "init": {"expr": "height - (showOverview ? overviewHeight + gapHeight : 0)" } },
   { "name": "overviewYPos", "init": {"expr": "height - overviewHeight" } },
   { "name": "mapXC", "init": {"expr": "width/2"} },
   { "name": "mapYC", "init": {"expr": "overviewYPos/2"} },
   {
     "name": "brush_start",
     "streams": [{
       "type": "@overview:mousedown, @overview:touchstart", 
       "expr": "clamp(eventX(), 0, width)",
       "scale": {"name": "xOverview", "invert": true}
     }]
   },
   {
     "name": "brush_end",
     "streams": [{
       "type": "@overview:mousedown, [@overview:mousedown, window:mouseup] > window:mousemove, @overview:mouseup, @overview:touchstart, [@overview:touchstart, window:touchend] > window:touchmove, @overview:touchend",
       "expr": "clamp(eventX(), 0, width)",
       "scale": {"name": "xOverview", "invert": true}
     }]
   },
   {
     "name": "fromYear", 
     "init": {"expr": "initYear"},
     "expr": "year(min(brush_start, brush_end))"
   },
   {
     "name": "toYear",
     "init": {"expr": "initYear"},
     "expr": "year(max(brush_start, brush_end))"
   },
   {
     "name": "isRange", 
     "init": {"expr": "false"},
     "expr": "fromYear !== toYear"
   },
   {
     "name": "tooltip",
     "init": {"expr": "{x: 0, y: 0, datum: false }"}, 
     "streams": [
       {"type": "@map:mouseout, @map:touchstart", "expr": "{x: 0, y: 0, datum: false }" },
       {"type": "@map:mouseover, @map:touchstart", "expr": "{x: eventX(), y: eventY(), datum: eventItem().datum.lookup}" }
     ]
   }
 ],
 "data": [{
   "name": "data",
   "url": "tabular:///Landlines.tab",
   "format": {"type": "json", "property": "data"},
   "transform": [
     { "type": "formula", "field": "value", "expr": "datum.percent" }
   ]
 },{
   "name": "totals",
   "source": "data",
   "transform": [
     {
     	"type": "aggregate",
     	"groupby": ["year"],
       "summarize": [{"field": "value", "ops": ["sum"], "as": ["total"]}]
     },
     { "type": "formula", "field": "date", "expr": "datetime(datum.year, 0, 1)" }
   ]
 },{
   // Select just the source data for the starting year
   "name": "firstYearData",
   "source": "data",
   "transform": [{"type": "filter", "test": "datum.year === fromYear"}]
 },{
   // Select just the source data for the ending year
   "name": "yearData",
   "source": "data",
   "transform": [{
     "type": "filter", "test": "datum.year === toYear"
   },{
     "type": "sort", "by": ["-value"]
   },{
     "type": "rank", "field": "country"
   },{
     "type": "lookup",
     "on": "firstYearData",
     "onKey": "country",
     "keys": ["country"],
     "as": ["firstYear"],
     "default": null
   },{
     "type": "formula", "field": "calc", "expr": "if(isRange, (datum.value - datum.firstYear.value)/datum.firstYear.value, datum.value)"
   }]
 },{
   "name": "mapData",
   "url": "map:///Naturalearthdata.com/admin-0-countries-no-antarctica.map",
   "format": {"type": "json", "property": "data.features"},
   "transform": [{
     "type": "geopath",
     "projection": "equirectangular",
     "scale": 72,
     "translate": [{"expr": "mapXC"}, {"expr": "mapYC"}]
   },{
   	"type": "formula",
   	"field": "my_id",
   	"expr": "datum.properties.iso_a3 || datum.properties.adm0_a3"
   },{
     "type": "lookup",
     "on": "yearData",
     "onKey": "country",
     "keys": ["my_id"],
     "as": ["lookup"],
     "default": 100
   }]
 },{
   "name": "dummyValue",
   "values": [{}]
 }],
 "scales": [{
   "name": "color",
   "type": "linear",
   "domain": {"data": "yearData", "field": "calc"},
   "range": ["blue", "#a50026"],
   "zero": false,
   "clamp": true
 },{
   "name": "diffColor",
   "type": "linear",
   "domain": [-1, -0.8, -0.6, -0.3, -0.1, 0, 0.1, 0.3, 0.6, 0.8, 1],
   "range": ["#313695", "#4575b4", "#74add1", "#abd9e9", "#e0f3f8", "#ffffbf", "#fee090", "#fdae61", "#f46d43", "#d73027", "#a50026"],
   "zero": false,
   "clamp": true
 },{
     "name": "xOverview",
     "type": "time",
     "range": "width",
     "domain": {"data": "totals", "field": "date"}
 },{
     "name": "yOverview",
     "type": "linear",
     "rangeMin": {"signal": "overviewHeight"},
     "nice": true,
     "zero": false,
     "domain": {"data": "totals", "field": "total"}
 }],
 "marks": [{
   "type": "group",
   "name": "detail",
   "properties": {
     "enter": {
       "height": {"signal": "detailHeight"},
       "width": {"signal": "width"}
   } },
   "marks": [{
     "name": "map",
     "type": "path",
     "from": {"data": "mapData"},
     "properties": {
       "enter": {
         "stroke": {"value": "#fff"},
         "path": {"field": "layout_path"}
       },
       "update": {
         "fill": [
           {"test": "isRange", "field": "lookup.calc", "scale": "diffColor"},
           {"field": "lookup.calc", "scale": "color"}
   ]} } }]
 },{
   "type": "group",
   "name": "overview",
   "from": {
     "data": "dummyValue",
     // HACK: brush_end is needed to fool optimizer, because otherwise legend doesn't auto-update
     "transform": [{"type": "filter", "test": "(brush_end && 0) || showOverview"}]
   },
   "properties": {
     "enter": {
       "x": {"value": 0},
       "y": {"signal": "overviewYPos"},
       "height": {"signal": "overviewHeight"},
       "width": {"signal": "width"},
       "fill": {"value": "transparent"}
   } },
   "axes": [
     {"type": "x", "scale": "xOverview", "ticks": 7}
   ],
   "marks": [{
     // Draw scale for a single year (I wish we could dynamically pick which scale to use for the legend)
     "type": "group",
     // HACK: brush_end is needed to fool optimizer, because otherwise legend doesn't auto-update
     "from": { "data": "dummyValue", "transform": [{"type": "filter", "test": "(brush_end && 0) || !isRange"}] },
     "properties": { "enter": { "width": {"signal": "width"} } },
       "legends": [{
         "fill": "color",
         "offset": 20,
         "properties": {"legend": {"y": {"value": 30} } }
   }]},{
     // Draw scale for a range (I wish we could dynamically pick which scale to use for the legend)
     "type": "group",
     "from": { "data": "dummyValue", "transform": [{"type": "filter", "test": "isRange"}] },
     "properties": { "enter": { "width": {"signal": "width"} } },
       "legends": [{
         "fill": "diffColor",
         "offset": 20,
         "properties": {
           "legend": {"y": {"value": 30} },
           "labels": {
             "text": [
               {"test": "datum.data===0", "value": "0"},
               {"test": "(datum.data%1)===0", "template": "{{datum.data|number:'.0%'}}"},
               {"value": ""}
   ]} } }]},{
     "name": "yearLabel",
     "type": "text",
     "from": {
       "data": "dummyValue",
       "transform": [
         {"type": "formula", "field": "text", "expr": "if(isRange,fromYear + '-' + toYear, fromYear)"},
         {"type": "formula", "field": "fontSize", "expr": "if(isRange,22,32)"}
     ]},
     "properties": {
       "enter": {
         "x": {"signal": "width", "offset": 72},
         "y": {"value": 20},
         "fontWeight": {"value": "bold"},
         "align": {"value": "center"},
         "baseline": {"value": "middle"},
         "fill": {"value": "#08306b"}
       },
       "update": {
         "fontSize": {"field": "fontSize"},
          "text": {"field": "text"}
   } } },{
     "type": "line",
     "from": { "data": "totals" },
     "properties": {
       "update": {
         "x": {"scale": "xOverview", "field": "date"},
         "y": {"scale": "yOverview", "field": "total"},
         "stroke": {"value": "#08306b"},
         "strokeWidth": {"value": 2}
   } } },{
     "type": "rect",
     "from": {
       "data": "dummyValue",
       "transform": [
         {"type": "formula", "field": "fromDate", "expr": "datetime(fromYear, -6, 1)"},
         {"type": "formula", "field": "toDate", "expr": "datetime(toYear, 6, 1)"}
     ]},
     "properties": {
       "enter": {
         "y": {"value": 0},
         "height": {"signal": "overviewHeight"},
         "fill": {"value": "#333"},
         "fillOpacity": {"value": 0.2},
         "stroke": {"value": "#f00"},
         "strokeDash": {"value": [4]}
       },
       "update": {
         "x": {"scale": "xOverview", "field": "fromDate"},
         "x2": {"scale": "xOverview", "field": "toDate"}
 } } }]},
 
 {
   "name": "tooltip",
     "type": "group",
     "from": {
       "data": "dummyValue",
       "transform": [
         {"type": "filter", "test": "tooltip.datum && tooltip.datum.calc"},
         {"type": "formula", "field": "offsetX", "expr": "5"},
         {"type": "formula", "field": "offsetY", "expr": "30"},
         {"type": "formula", "field": "tipWidth", "expr": "200"},
         {"type": "formula", "field": "tipHeight", "expr": "51"},
         {"type": "formula", "field": "alignLeft", "expr": "tooltip.x > width - datum.offsetX - datum.tipWidth"},
         {"type": "formula", "field": "alignTop", "expr": "tooltip.y > height - datum.offsetY - datum.tipHeight"},
         {"type": "formula", "field": "x", "expr": "max(0, tooltip.x + (datum.alignLeft ? -datum.offsetX-datum.tipWidth : datum.offsetX ))"},
         {"type": "formula", "field": "y", "expr": "tooltip.y + (datum.alignTop ? -1 : 1) * datum.offsetY"},
         {"type": "formula", "field": "lookupCountry", "expr": "tooltip.datum.country"},

{ "type": "lookup", "on": "mapData", "onKey": "my_id", "keys": ["lookupCountry"], "as": ["mapDataVal"], "default": null },

         {"type": "formula", "field": "name", "expr": "datum.mapDataVal ? datum.mapDataVal.properties.name : '?xyz?'"},

{ "type": "lookup", "on": "yearData", "onKey": "country", "keys": ["lookupCountry"], "as": ["yearDataVal"], "default": null },

         {"type": "formula", "field": "rank", "expr": "datum.yearDataVal ? datum.yearDataVal.rank : 1000"}
     ]},
     "properties": {
       "update": {
         "x": {"field": "x" }, "y": {"field": "y" },
         "width": {"field": "tipWidth" },
         "height": {"field": "tipHeight" },
         "fill": {"value": "#fff"},
         "fillOpacity": {"value": 0.85},
         "stroke": {"value": "#aaa"},
         "strokeWidth": {"value": 0.5}
     } },
     "marks": [
       {
         "type": "text",
         "properties": {
           "update": {
             "x": {"value": 6}, "y": {"value": 14},
             "text": {"template": "{{parent.name}}"},
             "fill": {"value": "black"},
             "fontWeight": {"value": "bold"}
       } } },
       {
         "type": "text",
         "properties": {
           "update": {
             "x": {"value": 6}, "y": {"value": 29},
             "text": [
               {"test": "isRange", "template": "Growth:\t{{tooltip.datum.calc|number:'.1%'}}"},
               {"template": "Landlines per 100 people:\t{{tooltip.datum.calc|number:',.1f'}}%"}
             ],
             "fill": {"value": "black"}
       } } },
       {
         "type": "text",
         "properties": {
           "update": {
             "x": {"value": 6}, "y": {"value": 44},
             "text": [
               {"test": "isRange", "template": ""},
               {"template": "Global position:\t#{{parent.rank|number:'.0f'}}"}
             ],
             "fill": {"value": "black"}
       } } },
   ]}

// Draw title at the top of the graph , {

     "type": "text",
     "properties": {
       "enter": {
         "x": {"signal": "width", "mult": 0.5, "offset": 30},
         "y": {"value": -15},
         "text": {"value": "The number of landline telephone subscriptions per 100 people"},
         "fontWeight": {"value": "bold"},
         "align": {"value": "center"},
         "baseline": {"value": "bottom"},
         "fill": {"value": "#000"}
       }
     }
   }
 ]

} </graph>

Lua error in Module:TNT at line 159: Missing JsonConfig extension; Cannot load https://commons.wikimedia.org/wiki/Data:Original/Template:Graphs.tab..

A landline (land line, land-line, main line, fixed-line, and wireline) is a telephone connection that uses metal wires from the owner's premises also referred to as: POTS, Twisted pair, telephone line or public switched telephone network (PSTN).

Landline services are traditionally provided via an analogue copper wire to a telephone exchange. Landline service is usually distinguished from other more modern forms of telephone services which use Internet Protocol based services over optical fiber (Fiber-to-the-x) or other broadband services (VDSL/Cable) using Voice over IP, although sometimes modern fixed phone services delivered over a fixed internet connection are sometimes referred to as a landline (non-cellular service).[1]

Characteristics

thumb|A [[Cordless telephone|corded landline telephone made by Siemens from c. 1997]] Landline service is typically provided through the outside plant of a telephone company's central office, or wire center. The outside plant comprises tiers of cabling between distribution points in the exchange area, so that a single pair of copper wire, or an optical fiber, reaches each subscriber location, such as a home or office, at the network interface. Customer premises wiring extends from the network interface ("NID") to the location of one or more telephones inside the premises.

A subscriber's telephone connected to a landline can be hard-wired or cordless and typically refers to the operation of wireless devices or systems in fixed locations such as homes. Fixed wireless devices usually derive their electrical power from the utility mains electricity, unlike mobile wireless or portable wireless, which tend to be battery-powered. Although mobile and portable systems can be used in fixed locations, efficiency and bandwidth are compromised compared with fixed systems. Mobile or portable, battery-powered wireless systems can be used as emergency backups for fixed systems in case of a power blackout or natural disaster.

Other aspects of landline is the ability to carry high-speed internet popularly known as Digital subscriber line (DSL) which links back to the digital subscriber line access multiplexer (DSLAM) within the central office, T-1/T-3, or ISDN.

Usage and statistics

In 2003, the CIA World Factbook reported approximately 1.263 billion main telephone lines worldwide. China had more than any other country, at 350 million, and the United States was second with 268 million. The United Kingdom had 23.7 million residential fixed home phones.[2]

The 2013 statistics show that the total number of fixed-telephone subscribers in the world was about 1.26 billion.[3] The number of landline subscribers continuously decreases due to upgrades in digital technology and the conveniences that come with switching to wireless, internet, optical fiber, or computer network-based alternatives. (As of 2013) there were about 1.26 billion fixed-telephone subscribers in the world, but this number has been dwindling due to the rise of mobile networks and the obsolescence of old copper wire networking.

In many parts of the world, including Africa and India, the growth in mobile phone usage has outpaced that of landlines. In the United States, while 45.9 percent of households still had landlines as of 2017, more than half had only mobile phones. This trend is similar in Canada, where more than one in five households used mobile phones as their only source for telephone service in 2013. However, voice over IP (VoIP) services offer an alternative to traditional landlines, allowing numbers to remain in use without being tied to a physical location, making them more adaptable to modern ways of working.

Successors

2000s

thumb|Global fixed telephone lines per 100 inhabitants (1997–2007) thumb|Total landline vs. mobile phones in Africa (1998–2008) In many countries, landline service has not been readily available to most people. In some countries in Africa, the rise in cell phones has outpaced growth in landline service. Between 1998 and 2008, Africa added only 2.4 million landlines.[4] In contrast, between 2000 and 2008, cell phone use rose from fewer than 2 in 100 people to 33 out of 100.[4] There has also been a substantial decline of landline phones in the Indian subcontinent, in urban and even more in rural areas.

In the early 21st century, installations of landline telephones has declined due to the advancement of mobile network technology and the obsolescence of copper wire networking. It is more difficult to install landline copper wires to every user than it is to install transmission towers for mobile service that many people can connect to. Some predict that these metallic networks will be deemed completely out of date and replaced by more efficient broadband and fiber optic landline connections extending to rural areas and places where telecommunication was much more sparse. In 2009, The Economist wrote "At current rates the last landline in America will be disconnected sometime in 2025."[5]

In 2004, only about 45% of people in the United States between the ages of 12 and 17 owned cell phones. At that time, most had to rely on landline telephones. Just 4 years later, that percentage climbed to about 71%. That same year, 2008, about 77% of adults owned a mobile phone.[6]

2010s

In the year 2013, 91% of adults in the United States owned a mobile phone. Almost 60% of those with a mobile had a smartphone.[7] A National Health Interview Survey of 19,956 households by the Centers for Disease Control and Prevention released May 4, 2017 showed 45.9 percent of U.S. households still had landlines, while 50.8 percent had only cell phones. Over 39 percent had both.[8]

In Canada, more than one in five of households use cell phones as their only source for telephone service. In 2013, statistics showed that 21% of households claimed to only use cellular phones.[9] Households that are owned by members under the age of 35 have a considerably higher percentage of exclusive cell phone use. In 2013, 60% of young household owners claimed to only use cell phones.[10] In 2019, 54% of Canadian households[11] and 80% of French households[12] had a landline telephone.

2020s

In June 2020, it was reported that 60% of Australian adults used only mobile phones, with no landline.[13] In 2021, only 14.5% of Australian and 29.4% of American households used landline at home.[14] In contrast, 73% of UK households still used landline in 2020.[15] In 2022, 82.9% of German households had at least one landline phone.[16]

(As of 2023) Estonia and the Netherlands have retired the legacy parts of the public switched telephone network (PSTN). In the United Kingdom, the analogue copper landline network is due to be terminated in 2025. The VoIP replacement is known as "Digital Voice" (on a BT service) in the UK. France, Germany and Japan are also in the process of replacing theirs.[17]

By means of porting, voice over IP services can host landline numbers previously hosted on traditional fixed telephone networks. VoIP services can be used anywhere an internet connection is available on many devices including Smartphones, giving great flexibility to where calls may be answered and thus facilitating remote, mobile and home working, for example. VoIP porting allows landline numbers to remain in use, whilst freeing them from actual landlines tied to one location. This is useful where landline numbers are believed to be preferred by callers, or where it is preferable that legacy landline numbers remain connected.

See also

References

  1. "The World Factbook:REFERENCES :: DEFINITIONS AND NOTES" (in en). https://www.cia.gov/library/publications/the-world-factbook/docs/notesanddefs.html?fieldkey=2150&term=Telephones%20-%20fixed%20lines. 
  2. "UK households: ownership of landline telephones 1970–2017 | Survey" (in en). https://www.statista.com/statistics/289158/telephone-presence-in-households-in-the-uk/. 
  3. "Archived copy". http://www.itu.int/en/ITU-D/Statistics/Documents/statistics/2014/Fixed_tel_2000-2013.xls. 
  4. 4.0 4.1 Aker, Jenny C; Mbiti, Isaac M (August 2010). "Mobile Phones and Economic Development in Africa" (in en). Journal of Economic Perspectives 24 (3): 207–209. doi:10.1257/jep.24.3.207. http://sites.tufts.edu/jennyaker/files/2010/09/aker_mobileafrica.pdf. Retrieved 11 November 2018. 
  5. "The decline of the landline: Unwired". The Economist. http://www.economist.com/node/14213965. 
  6. Amanda, Lenhart. "Teens and Mobile Phones Over the Past Five Years: Pew Internet Looks Back". http://www.pewinternet.org/files/old-media/Files/Reports/2009/PIP%20Teens%20and%20Mobile%20Phones%20Data%20Memo.pdf. 
  7. "Mobile Technology Fact Sheet". Pew Research Center's Internet & American Life Project. 27 December 2013. http://pewinternet.org/Commentary/2012/February/Pew-Internet-Mobile.aspx. 
  8. "Milestone for cellphones vs. landline phones". CBS News. 4 May 2017. http://www.cbsnews.com/news/milestone-for-cellphones-vs-landline-phones/. 
  9. "10 facts about smartphones" (in en-US). http://www.pewresearch.org/fact-tank/2017/06/28/10-facts-about-smartphones/. 
  10. "Residential Telephone Service Survey, 2013". Statistics Canada. 23 June 2014. http://www.statcan.gc.ca/daily-quotidien/140623/dq140623a-eng.htm. 
  11. Landline and cellular telephone use by province, 2019 by Statistics Canada. Retrieved 27 July 2023.
  12. Share of private households owning a landline phone in Germany from 1998 to 2022 by statista. Retrieved 27 July 2023.
  13. Mobile-only Australia: living without a fixed line at home by Australian Communications and Media Authority. Retrieved 27 July 2023.
  14. Mobile communications and Internet in Australia by WorldData.info
  15. Is there a landline phone in your home that can be used to make and receive calls? by statista. Retrieved 27 July 2023.
  16. Penetration of landline phones in France from 1997 to 2019 by statista. Retrieved 27 July 2023.
  17. Fletcher, Yvette (20 January 2023). "Digital Voice and the landline phone switch-off: what it means for you" (in en). https://www.which.co.uk/reviews/broadband/article/digital-voice-and-the-landline-phone-switch-off-what-it-means-for-you-aPSOH8k1i6Vv. 

de:Festnetzanschluss