{"id":3937,"date":"2023-01-06T16:13:00","date_gmt":"2023-01-06T15:13:00","guid":{"rendered":"https:\/\/rodmaps.com\/?p=3937"},"modified":"2024-11-24T23:47:52","modified_gmt":"2024-11-24T22:47:52","slug":"feet-inches-to-cm","status":"publish","type":"post","link":"https:\/\/rodmaps.com\/en\/feet-inches-to-cm\/","title":{"rendered":"Inch, Foot: Everything you need to know about these length measurements for fishing"},"content":{"rendered":"<div class=\"kk-star-ratings kksr-auto kksr-align-left kksr-valign-top\"\n    data-payload='{&quot;align&quot;:&quot;left&quot;,&quot;id&quot;:&quot;3937&quot;,&quot;slug&quot;:&quot;default&quot;,&quot;valign&quot;:&quot;top&quot;,&quot;ignore&quot;:&quot;&quot;,&quot;reference&quot;:&quot;auto&quot;,&quot;class&quot;:&quot;&quot;,&quot;count&quot;:&quot;0&quot;,&quot;legendonly&quot;:&quot;&quot;,&quot;readonly&quot;:&quot;&quot;,&quot;score&quot;:&quot;0&quot;,&quot;starsonly&quot;:&quot;&quot;,&quot;best&quot;:&quot;5&quot;,&quot;gap&quot;:&quot;5&quot;,&quot;greet&quot;:&quot;Notez cet article&quot;,&quot;legend&quot;:&quot;0\\\/5 - (0 votes)&quot;,&quot;size&quot;:&quot;24&quot;,&quot;title&quot;:&quot;Inch, Foot : Tout savoir sur ces mesures de longueur \u00e0 la p\u00eache&quot;,&quot;width&quot;:&quot;0&quot;,&quot;_legend&quot;:&quot;{score}\\\/{best} - ({count} {votes})&quot;,&quot;font_factor&quot;:&quot;1.25&quot;}'>\n            \n<div class=\"kksr-stars\">\n    \n<div class=\"kksr-stars-inactive\">\n            <div class=\"kksr-star\" data-star=\"1\" style=\"padding-right: 5px\">\n            \n\n<div class=\"kksr-icon\" style=\"width: 24px; height: 24px;\"><\/div>\n        <\/div>\n            <div class=\"kksr-star\" data-star=\"2\" style=\"padding-right: 5px\">\n            \n\n<div class=\"kksr-icon\" style=\"width: 24px; height: 24px;\"><\/div>\n        <\/div>\n            <div class=\"kksr-star\" data-star=\"3\" style=\"padding-right: 5px\">\n            \n\n<div class=\"kksr-icon\" style=\"width: 24px; height: 24px;\"><\/div>\n        <\/div>\n            <div class=\"kksr-star\" data-star=\"4\" style=\"padding-right: 5px\">\n            \n\n<div class=\"kksr-icon\" style=\"width: 24px; height: 24px;\"><\/div>\n        <\/div>\n            <div class=\"kksr-star\" data-star=\"5\" style=\"padding-right: 5px\">\n            \n\n<div class=\"kksr-icon\" style=\"width: 24px; height: 24px;\"><\/div>\n        <\/div>\n    <\/div>\n    \n<div class=\"kksr-stars-active\" style=\"width: 0px;\">\n            <div class=\"kksr-star\" style=\"padding-right: 5px\">\n            \n\n<div class=\"kksr-icon\" style=\"width: 24px; height: 24px;\"><\/div>\n        <\/div>\n            <div class=\"kksr-star\" style=\"padding-right: 5px\">\n            \n\n<div class=\"kksr-icon\" style=\"width: 24px; height: 24px;\"><\/div>\n        <\/div>\n            <div class=\"kksr-star\" style=\"padding-right: 5px\">\n            \n\n<div class=\"kksr-icon\" style=\"width: 24px; height: 24px;\"><\/div>\n        <\/div>\n            <div class=\"kksr-star\" style=\"padding-right: 5px\">\n            \n\n<div class=\"kksr-icon\" style=\"width: 24px; height: 24px;\"><\/div>\n        <\/div>\n            <div class=\"kksr-star\" style=\"padding-right: 5px\">\n            \n\n<div class=\"kksr-icon\" style=\"width: 24px; height: 24px;\"><\/div>\n        <\/div>\n    <\/div>\n<\/div>\n                \n\n<div class=\"kksr-legend\" style=\"font-size: 19.2px;\">\n            <span class=\"kksr-muted\">Rate this article<\/span>\n    <\/div>\n    <\/div>\n\n<p class=\"has-text-align-center\"><em>Inch and Foot are terms that come from the United States and are commonly used by our anglers. But do you really know what these measures correspond to? And how do you convert them to our French measurements? Here's how to interpret Inch and Foot in your everyday fishing.<\/em> <\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Inch - centimetre and Foot - metre converters<\/h2>\n\n\n\n<p><strong>Here's an automatic calculator of equivalence between inches and centimetres as well as Foot and metres for fishing: <\/strong><\/p>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div id=\"convertisseur-cm-inch\">\n  <h3>Convert Cm to Inch<\/h3>\n  <div class=\"input-group\">\n    <label for=\"cm\">Centimetres (cm):<\/label>\n    <input type=\"number\" id=\"cm\" step=\"0.01\">\n  <\/div>\n  <div class=\"input-group\">\n    <label for=\"inches\"> Inches:<\/label>\n    <input type=\"number\" id=\"inches\" step=\"0.01\">\n  <\/div>\n  <button onclick=\"convertir()\">Convert<\/button>\n<\/div>\n\n<script>\nfunction convertir() {\n  const cm = parseFloat(document.getElementById('cm').value);\n  const inches = parseFloat(document.getElementById('inches').value);\n\n  if (!isNaN(cm)) {\n    document.getElementById('inches').value = (cm \/ 2.54).toFixed(2);\n  } else if (!isNaN(inches)) {\n    document.getElementById('cm').value = (inches * 2.54).toFixed(2);\n  }\n}\n\n\/\/ Ajouter des \u00e9couteurs d'\u00e9v\u00e9nements pour la touche \"Entr\u00e9e\"\ndocument.getElementById('cm').addEventListener('keypress', function(e) {\n  if (e.key === 'Enter') {\n    e.preventDefault();\n    convertir();\n  }\n});\n\ndocument.getElementById('inches').addEventListener('keypress', function(e) {\n  if (e.key === 'Enter') {\n    e.preventDefault();\n    convertir();\n  }\n});\n\n\/\/ Appeler la fonction convertir() lorsque le bouton est cliqu\u00e9\ndocument.querySelector('#convertisseur-cm-inch button').addEventListener('click', convertir);\n<\/script>\n\n<style>\n#convertisseur-cm-inch {\n  max-width: 300px;\n  margin: 20px auto;\n  padding: 15px;\n  border: 1px solid #ddd;\n  border-radius: 5px;\n  background-color: #f9f9f9;\n}\n\n#convertisseur-cm-inch h3 {\n  text-align: center;\n  margin-bottom: 15px;\n}\n\n.input-group {\n  margin-bottom: 10px;\n}\n\n.input-group label {\n  display: block;\n  margin-bottom: 5px;\n}\n\n.input-group input {\n  width: 100%;\n  padding: 5px;\n  border: 1px solid #ccc;\n  border-radius: 3px;\n}\n\nbutton {\n  display: block;\n  width: 100%;\n  padding: 10px;\n  background-color: #e87265;\n  color: white;\n  border: none;\n  border-radius: 3px;\n  cursor: pointer;\n}\n\nbutton:hover {\n  background-color: #FF5EA0;\n}\n<\/style>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div id=\"convertisseur-m-ft\">\n  <h3>Convert Metres to Feet<\/h3>\n  <div class=\"input-group\">\n    <label for=\"metres\">Metres (m):<\/label>\n    <input type=\"number\" id=\"metres\" step=\"0.01\">\n  <\/div>\n  <div class=\"input-group\">\n    <label for=\"feet\">Feet (ft):<\/label>\n    <input type=\"number\" id=\"feet\" step=\"0.01\">\n  <\/div>\n  <button onclick=\"convertir()\">Convert<\/button>\n<\/div>\n\n<script>\nfunction convertir() {\n  const metres = parseFloat(document.getElementById('metres').value);\n  const feet = parseFloat(document.getElementById('feet').value);\n\n  if (!isNaN(metres)) {\n    document.getElementById('feet').value = (metres * 3.28084).toFixed(2);\n  } else if (!isNaN(feet)) {\n    document.getElementById('metres').value = (feet \/ 3.28084).toFixed(2);\n  }\n}\n\n\/\/ Ajouter des \u00e9couteurs d'\u00e9v\u00e9nements pour la touche \"Entr\u00e9e\"\ndocument.getElementById('metres').addEventListener('keypress', function(e) {\n  if (e.key === 'Enter') {\n    e.preventDefault();\n    convertir();\n  }\n});\n\ndocument.getElementById('feet').addEventListener('keypress', function(e) {\n  if (e.key === 'Enter') {\n    e.preventDefault();\n    convertir();\n  }\n});\n\n\/\/ Appeler la fonction convertir() lorsque le bouton est cliqu\u00e9\ndocument.querySelector('#convertisseur-m-ft button').addEventListener('click', convertir);\n<\/script>\n\n<style>\n#convertisseur-m-ft {\n  max-width: 300px;\n  margin: 20px auto;\n  padding: 15px;\n  border: 1px solid #ddd;\n  border-radius: 5px;\n  background-color: #f9f9f9;\n}\n\n#convertisseur-m-ft h3 {\n  text-align: center;\n  margin-bottom: 15px;\n}\n\n.input-group {\n  margin-bottom: 10px;\n}\n\n.input-group label {\n  display: block;\n  margin-bottom: 5px;\n}\n\n.input-group input {\n  width: 100%;\n  padding: 5px;\n  border: 1px solid #ccc;\n  border-radius: 3px;\n}\n\nbutton {\n  display: block;\n  width: 100%;\n  padding: 10px;\n  background-color: #e87265;\n  color: white;\n  border: none;\n  border-radius: 3px;\n  cursor: pointer;\n}\n\nbutton:hover {\n  background-color: #FF5EA0;\n}\n<\/style>\n<\/div>\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Inch &amp; Foot: Definition and measurement<\/h2>\n\n\n\n<p><strong>Inch and Foot<\/strong> are units commonly used in the fishing industry to measure the <strong>the power of our rods and the length of our lures<\/strong>. Here are a few things to remember about these two measures for anglers. <\/p>\n\n\n\n<p><strong>Inch <\/strong>or <strong>Thumb <\/strong>is a unit of measurement for length. <strong>1 inch equals exactly 2.54 centimetres.<\/strong><\/p>\n\n\n\n<p><strong>Foot <\/strong>or <strong>Foot <\/strong>is a unit that also measures length, but on a slightly larger scale. <strong>1 Foot is equivalent to 30.48 centimetres.<\/strong><\/p>\n\n\n\n<p>The <strong>Inch <\/strong>and the <strong>Foot <\/strong>are primarily used in everyday life in the United States. They arrived on the market at the same time as lures and rods from abroad: the USA and Japan. Passing all the measures in <strong>Inch <\/strong>and <strong>Foot <\/strong>made it possible to <strong>standardise size scales worldwide<\/strong>. However, we will of course continue to use centimetres and metres as units of length.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Convert Inch to centimetres<\/h2>\n\n\n\n<p>As explained above, 1 inch = 2.54 cm. Fishing, <strong>This unit of measurement allows us to measure the size of your lures.<\/strong><\/p>\n\n\n\n<p><strong>Here is a table of equivalence between Inch and Centimetres useful for lure fishing: <\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>Inch<\/strong><\/td><td><strong>Centimetres<\/strong><\/td><\/tr><tr><td>3\/4 \"\u00a0<\/td><td><em>2 cm<\/em><\/td><\/tr><tr><td>1 \"\u00a0<\/td><td><em>2.5 cm<\/em><\/td><\/tr><tr><td>2 \"\u00a0<\/td><td><em>5 cm<\/em><\/td><\/tr><tr><td>2 \u00bd \"\u00a0<\/td><td><em>6 cm<\/em><\/td><\/tr><tr><td>2 3\/4 \"\u00a0<\/td><td><em>7 cm<\/em><\/td><\/tr><tr><td>3 1\/8 \"\u00a0<\/td><td><em>8 cm<\/em><\/td><\/tr><tr><td>3 \u00bd \"\u00a0<\/td><td><em>9 cm<\/em><\/td><\/tr><tr><td>4 1\/8 \"\u00a0<\/td><td>10.5 cm<\/td><\/tr><tr><td>4 \u00be \"\u00a0<\/td><td>12 cm<\/td><\/tr><tr><td>5 \"\u00a0<\/td><td>12.5 cm<\/td><\/tr><tr><td>5 5\/8 \"\u00a0<\/td><td>14 cm<\/td><\/tr><tr><td>7 \u00bc \"\u00a0<\/td><td>18 cm<\/td><\/tr><tr><td>7 2\/3 \"\u00a0<\/td><td>20 cm<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"400\" height=\"359\" src=\"https:\/\/rodmaps.com\/wp-content\/uploads\/2023\/01\/inch-en-centimetre.jpg\" alt=\"\" class=\"wp-image-3988\" srcset=\"https:\/\/rodmaps.com\/wp-content\/uploads\/2023\/01\/inch-en-centimetre.jpg 400w, https:\/\/rodmaps.com\/wp-content\/uploads\/2023\/01\/inch-en-centimetre-300x269.jpg 300w, https:\/\/rodmaps.com\/wp-content\/uploads\/2023\/01\/inch-en-centimetre-13x12.jpg 13w\" sizes=\"auto, (max-width: 400px) 100vw, 400px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Convert Foot to Metres<\/h2>\n\n\n\n<p>As explained above, <strong>1 Foot = 12 Inch = 30.48 cm<\/strong>. In fishing, the Foot is a unit of measurement used to indicate the size of our fishing rods.<\/p>\n\n\n\n<p><strong>Here is a table of equivalence between Inch and Centimetres useful for lure fishing: <\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>Foot<\/strong><\/td><td><strong>Metres<\/strong><\/td><\/tr><tr><td>6 '<\/td><td><em>182.88 cm<\/em><\/td><\/tr><tr><td>6 ' 6 \"\u00a0<\/td><td><em>198 cm<\/em><\/td><\/tr><tr><td>7 ' &nbsp;<\/td><td><em>213.36 cm<\/em><\/td><\/tr><tr><td>7 ' 2 \"\u00a0<\/td><td><em>218 cm<\/em><\/td><\/tr><tr><td>7 ' 6 \"\u00a0<\/td><td><em>229 cm<\/em><\/td><\/tr><tr><td>8 '<\/td><td><em>243.84 cm<\/em><\/td><\/tr><tr><td>8 ' 6 \"\u00a0<\/td><td><em>260 cm<\/em><\/td><\/tr><tr><td>9 '<\/td><td>274.32 cm<\/td><\/tr><tr><td>10 '<\/td><td>304.8 cm<\/td><\/tr><tr><td>11 '<\/td><td>335.280 cm<\/td><\/tr><tr><td>12 '<\/td><td>365.76 cm<\/td><\/tr><tr><td>13 '<\/td><td>396.24 cm<\/td><\/tr><tr><td>14 '<\/td><td>426.72 cm<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"480\" src=\"https:\/\/rodmaps.com\/wp-content\/uploads\/2023\/01\/inch-foot-peche-canne-1024x480.jpg\" alt=\"Inch Foot Cane measure\" class=\"wp-image-3989\" srcset=\"https:\/\/rodmaps.com\/wp-content\/uploads\/2023\/01\/inch-foot-peche-canne-1024x480.jpg 1024w, https:\/\/rodmaps.com\/wp-content\/uploads\/2023\/01\/inch-foot-peche-canne-300x141.jpg 300w, https:\/\/rodmaps.com\/wp-content\/uploads\/2023\/01\/inch-foot-peche-canne-768x360.jpg 768w, https:\/\/rodmaps.com\/wp-content\/uploads\/2023\/01\/inch-foot-peche-canne-1536x720.jpg 1536w, https:\/\/rodmaps.com\/wp-content\/uploads\/2023\/01\/inch-foot-peche-canne-18x8.jpg 18w, https:\/\/rodmaps.com\/wp-content\/uploads\/2023\/01\/inch-foot-peche-canne.jpg 1842w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links related to this article<\/h2>\n\n\n\n<p><a href=\"https:\/\/rodmaps.com\/en\/g-lb-oz\/\">Lb, Oz: Everything you need to know about these fishing weights<\/a><\/p>\n\n\n\n<p><a href=\"http:\/\/the-converter.net\">Converting inches to metres<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/rodmaps.com\/en\/french-fishing-license-2023\/\">Fishing licence 2023: Everything you need to know about fishing licences in 2023<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/rodmaps.com\/en\/pike-fish\/\">Pike: Everything you need to know about the king of freshwater fish<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/rodmaps.com\/en\/how-to-fish\/\">Learn to fish with a fishing guide<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/rodmaps.com\/en\/fishing-with-lures-for-beginners\/\">Start lure fishing<\/a><\/p>","protected":false},"excerpt":{"rendered":"<p>Inch and Foot are terms from the United States that are commonly used by our fishermen. But do you really know what they mean?<\/p>","protected":false},"author":2,"featured_media":3987,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_uag_custom_page_level_css":"","site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"set","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[5],"tags":[523,526,525,529,524,527,528,530,531],"class_list":["post-3937","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-conseils","tag-conversion-longueur","tag-feet","tag-foot","tag-foot-en-centimetre","tag-inch","tag-inch-en-centimetre","tag-inch-en-centimetres","tag-inch-en-metre","tag-inch-en-metres"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Inch, Foot : Tout savoir sur ces mesures de longueur \u00e0 la p\u00eache<\/title>\n<meta name=\"description\" content=\"Inch et Foot sont des appelations venues des Etats-Unis que nos p\u00eacheurs emploient commun\u00e9ment. Voici comment interpr\u00eater les Inch et Foot.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/rodmaps.com\/en\/feet-inches-to-cm\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Inch, Foot : Tout savoir sur ces mesures de longueur \u00e0 la p\u00eache\" \/>\n<meta property=\"og:description\" content=\"Inch et Foot sont des appelations venues des Etats-Unis que nos p\u00eacheurs emploient commun\u00e9ment. Voici comment interpr\u00eater les Inch et Foot.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/rodmaps.com\/en\/feet-inches-to-cm\/\" \/>\n<meta property=\"og:site_name\" content=\"Rodmaps\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/profile.php?id=100027342603828\" \/>\n<meta property=\"article:published_time\" content=\"2023-01-06T15:13:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-24T22:47:52+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/rodmaps.com\/wp-content\/uploads\/2023\/01\/inch-foot-peche.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1600\" \/>\n\t<meta property=\"og:image:height\" content=\"968\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Rodmaps\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rod_maps\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Rodmaps\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Inch, Foot: Everything you need to know about these length measurements for fishing","description":"Inch and Foot are names from the United States that are commonly used by our anglers. Here's how to interpret Inch and Foot.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/rodmaps.com\/en\/feet-inches-to-cm\/","og_locale":"en_GB","og_type":"article","og_title":"Inch, Foot : Tout savoir sur ces mesures de longueur \u00e0 la p\u00eache","og_description":"Inch et Foot sont des appelations venues des Etats-Unis que nos p\u00eacheurs emploient commun\u00e9ment. Voici comment interpr\u00eater les Inch et Foot.","og_url":"https:\/\/rodmaps.com\/en\/feet-inches-to-cm\/","og_site_name":"Rodmaps","article_author":"https:\/\/www.facebook.com\/profile.php?id=100027342603828","article_published_time":"2023-01-06T15:13:00+00:00","article_modified_time":"2024-11-24T22:47:52+00:00","og_image":[{"width":1600,"height":968,"url":"https:\/\/rodmaps.com\/wp-content\/uploads\/2023\/01\/inch-foot-peche.jpg","type":"image\/jpeg"}],"author":"Rodmaps","twitter_card":"summary_large_image","twitter_creator":"@rod_maps","twitter_misc":{"Written by":"Rodmaps","Estimated reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/rodmaps.com\/inch-foot-tout-savoir-sur-ces-mesures-de-longueur-a-la-peche\/#article","isPartOf":{"@id":"https:\/\/rodmaps.com\/inch-foot-tout-savoir-sur-ces-mesures-de-longueur-a-la-peche\/"},"author":{"name":"Rodmaps","@id":"https:\/\/rodmaps.com\/#\/schema\/person\/1fbace5779babc4ca1d304b8194d75c9"},"headline":"Inch, Foot : Tout savoir sur ces mesures de longueur \u00e0 la p\u00eache","datePublished":"2023-01-06T15:13:00+00:00","dateModified":"2024-11-24T22:47:52+00:00","mainEntityOfPage":{"@id":"https:\/\/rodmaps.com\/inch-foot-tout-savoir-sur-ces-mesures-de-longueur-a-la-peche\/"},"wordCount":487,"publisher":{"@id":"https:\/\/rodmaps.com\/#organization"},"image":{"@id":"https:\/\/rodmaps.com\/inch-foot-tout-savoir-sur-ces-mesures-de-longueur-a-la-peche\/#primaryimage"},"thumbnailUrl":"https:\/\/rodmaps.com\/wp-content\/uploads\/2023\/01\/inch-foot-peche.jpg","keywords":["COnversion longueur","Feet","Foot","Foot en centimetre","Inch","Inch en centimetre","Inch en centimetres","Inch en metre","Inch en metres"],"articleSection":["Conseils"],"inLanguage":"en-GB"},{"@type":"WebPage","@id":"https:\/\/rodmaps.com\/inch-foot-tout-savoir-sur-ces-mesures-de-longueur-a-la-peche\/","url":"https:\/\/rodmaps.com\/inch-foot-tout-savoir-sur-ces-mesures-de-longueur-a-la-peche\/","name":"Inch, Foot: Everything you need to know about these length measurements for fishing","isPartOf":{"@id":"https:\/\/rodmaps.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/rodmaps.com\/inch-foot-tout-savoir-sur-ces-mesures-de-longueur-a-la-peche\/#primaryimage"},"image":{"@id":"https:\/\/rodmaps.com\/inch-foot-tout-savoir-sur-ces-mesures-de-longueur-a-la-peche\/#primaryimage"},"thumbnailUrl":"https:\/\/rodmaps.com\/wp-content\/uploads\/2023\/01\/inch-foot-peche.jpg","datePublished":"2023-01-06T15:13:00+00:00","dateModified":"2024-11-24T22:47:52+00:00","description":"Inch and Foot are names from the United States that are commonly used by our anglers. Here's how to interpret Inch and Foot.","breadcrumb":{"@id":"https:\/\/rodmaps.com\/inch-foot-tout-savoir-sur-ces-mesures-de-longueur-a-la-peche\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/rodmaps.com\/inch-foot-tout-savoir-sur-ces-mesures-de-longueur-a-la-peche\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/rodmaps.com\/inch-foot-tout-savoir-sur-ces-mesures-de-longueur-a-la-peche\/#primaryimage","url":"https:\/\/rodmaps.com\/wp-content\/uploads\/2023\/01\/inch-foot-peche.jpg","contentUrl":"https:\/\/rodmaps.com\/wp-content\/uploads\/2023\/01\/inch-foot-peche.jpg","width":1600,"height":968,"caption":"Inch Foot P\u00eache"},{"@type":"BreadcrumbList","@id":"https:\/\/rodmaps.com\/inch-foot-tout-savoir-sur-ces-mesures-de-longueur-a-la-peche\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/rodmaps.com\/"},{"@type":"ListItem","position":2,"name":"Inch, Foot : Tout savoir sur ces mesures de longueur \u00e0 la p\u00eache"}]},{"@type":"WebSite","@id":"https:\/\/rodmaps.com\/#website","url":"https:\/\/rodmaps.com\/","name":"Rodmaps","description":"Discover all the latest lure fishing news: fishing gear, techniques, fishing knots, advice and regulations.","publisher":{"@id":"https:\/\/rodmaps.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/rodmaps.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/rodmaps.com\/#organization","name":"Rodmaps","url":"https:\/\/rodmaps.com\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/rodmaps.com\/#\/schema\/logo\/image\/","url":"https:\/\/rodmaps.com\/wp-content\/uploads\/2018\/07\/cropped-cropped-logo-rm-big-e1531314491932-3.png","contentUrl":"https:\/\/rodmaps.com\/wp-content\/uploads\/2018\/07\/cropped-cropped-logo-rm-big-e1531314491932-3.png","width":200,"height":79,"caption":"Rodmaps"},"image":{"@id":"https:\/\/rodmaps.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/rodmaps.com\/#\/schema\/person\/1fbace5779babc4ca1d304b8194d75c9","name":"Rodmaps","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/rodmaps.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b2d46c93dc4af52460ef458043b5b137d5b9e498d1b786c60f0a651279b57f5d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b2d46c93dc4af52460ef458043b5b137d5b9e498d1b786c60f0a651279b57f5d?s=96&d=mm&r=g","caption":"Rodmaps"},"description":"Through Rodmaps, we want to share our passion for lure fishing.","sameAs":["https:\/\/rodmaps.com","https:\/\/www.facebook.com\/profile.php?id=100027342603828","https:\/\/instagram.com\/rodmaps","https:\/\/www.linkedin.com\/company\/rodmaps\/","https:\/\/x.com\/rod_maps","https:\/\/www.youtube.com\/@ftf31"],"url":"https:\/\/rodmaps.com\/en\/author\/rodmaps_administrateur\/"}]}},"jetpack_featured_media_url":"https:\/\/rodmaps.com\/wp-content\/uploads\/2023\/01\/inch-foot-peche.jpg","spectra_custom_meta":{"_jetpack_related_posts_cache":["a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1728765011;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:3855;}i:1;a:1:{s:2:\"id\";i:423;}i:2;a:1:{s:2:\"id\";i:3993;}}}}"],"_edit_lock":["1732488521:2"],"_last_editor_used_jetpack":["block-editor"],"_oembed_fa1a0427fea0776d16efd08041ddcc2d":["<blockquote class=\"wp-embedded-content\" data-secret=\"Lk2fIDoQE3\"><a href=\"https:\/\/sportfishingbuddy.com\/fishing-rod-weight\/\">Fishing Rod Weight<\/a><\/blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Fishing Rod Weight&#8221; &#8212; Sportfishing Buddy\" src=\"https:\/\/sportfishingbuddy.com\/fishing-rod-weight\/embed\/#?secret=kl6CUxdlpv#?secret=Lk2fIDoQE3\" data-secret=\"Lk2fIDoQE3\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"><\/iframe>"],"_oembed_time_fa1a0427fea0776d16efd08041ddcc2d":["1672398822"],"_oembed_b1b04035722f428cc0b32678cff5e9f6":["{{unknown}}"],"_edit_last":["2"],"ampforwp_custom_content_editor":[""],"ampforwp_custom_content_editor_checkbox":[""],"ampforwp-amp-on-off":["default"],"_yoast_wpseo_primary_category":["5"],"_yoast_wpseo_content_score":["90"],"_yoast_wpseo_estimated-reading-time-minutes":["4"],"_yoast_wpseo_focuskw":["Inch foot"],"_yoast_wpseo_title":["%%title%% %%page%%"],"_yoast_wpseo_metadesc":["Inch et Foot sont des appelations venues des Etats-Unis que nos p\u00eacheurs emploient commun\u00e9ment. Voici comment interpr\u00eater les Inch et Foot."],"_yoast_wpseo_linkdex":["75"],"_thumbnail_id":["3987"],"_uag_custom_page_level_css":[""],"ast-site-content-layout":["default"],"theme-transparent-header-meta":[""],"adv-header-id-meta":[""],"stick-header-meta":[""],"astra-migrate-meta-layouts":["set"],"ngg_post_thumbnail":["0"],"footnotes":[""],"_uag_page_assets":["a:9:{s:3:\"css\";s:2228:\".wp-block-uagb-advanced-heading h1,.wp-block-uagb-advanced-heading h2,.wp-block-uagb-advanced-heading h3,.wp-block-uagb-advanced-heading h4,.wp-block-uagb-advanced-heading h5,.wp-block-uagb-advanced-heading h6,.wp-block-uagb-advanced-heading p,.wp-block-uagb-advanced-heading div{word-break:break-word}.wp-block-uagb-advanced-heading .uagb-heading-text{margin:0}.wp-block-uagb-advanced-heading .uagb-desc-text{margin:0}.wp-block-uagb-advanced-heading .uagb-separator{font-size:0;border-top-style:solid;display:inline-block;margin:0 0 10px 0}.wp-block-uagb-advanced-heading .uagb-highlight{color:#f78a0c;border:0;transition:all 0.3s ease}.uag-highlight-toolbar{border-left:0;border-top:0;border-bottom:0;border-radius:0;border-right-color:#1e1e1e}.uag-highlight-toolbar .components-button{border-radius:0;outline:none}.uag-highlight-toolbar .components-button.is-primary{color:#fff}\n.wp-block-uagb-advanced-heading.uagb-block-e53cacd5.wp-block-uagb-advanced-heading .uagb-desc-text{margin-bottom: 15px;}.wp-block-uagb-advanced-heading.uagb-block-e53cacd5.wp-block-uagb-advanced-heading .uagb-highlight{font-style: normal;font-weight: Default;background: #007cba;color: #fff;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-e53cacd5.wp-block-uagb-advanced-heading .uagb-highlight::-moz-selection{color: #fff;background: #007cba;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-e53cacd5.wp-block-uagb-advanced-heading .uagb-highlight::selection{color: #fff;background: #007cba;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-b0e5da39.wp-block-uagb-advanced-heading .uagb-desc-text{margin-bottom: 15px;}.wp-block-uagb-advanced-heading.uagb-block-b0e5da39.wp-block-uagb-advanced-heading .uagb-highlight{font-style: normal;font-weight: Default;background: #007cba;color: #fff;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-b0e5da39.wp-block-uagb-advanced-heading .uagb-highlight::-moz-selection{color: #fff;background: #007cba;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-b0e5da39.wp-block-uagb-advanced-heading .uagb-highlight::selection{color: #fff;background: #007cba;-webkit-text-fill-color: #fff;}\";s:2:\"js\";s:0:\"\";s:18:\"current_block_list\";a:19:{i:0;s:14:\"core\/paragraph\";i:1;s:12:\"core\/heading\";i:2;s:12:\"core\/columns\";i:3;s:11:\"core\/column\";i:4;s:9:\"core\/html\";i:5;s:10:\"core\/table\";i:6;s:10:\"core\/image\";i:7;s:13:\"surecart\/cart\";i:8;s:20:\"surecart\/cart-header\";i:9;s:19:\"surecart\/cart-items\";i:10;s:20:\"surecart\/cart-coupon\";i:11;s:22:\"surecart\/cart-subtotal\";i:12;s:28:\"surecart\/cart-bump-line-item\";i:13;s:20:\"surecart\/cart-submit\";i:14;s:11:\"core\/search\";i:15;s:18:\"sbi\/sbi-feed-block\";i:16;s:17:\"core\/latest-posts\";i:17;s:21:\"uagb\/advanced-heading\";i:18;s:30:\"wordpress-popular-posts\/widget\";}s:8:\"uag_flag\";b:1;s:11:\"uag_version\";s:10:\"1775938428\";s:6:\"gfonts\";a:0:{}s:10:\"gfonts_url\";s:0:\"\";s:12:\"gfonts_files\";a:0:{}s:14:\"uag_faq_layout\";b:0;}"]},"uagb_featured_image_src":{"full":["https:\/\/rodmaps.com\/wp-content\/uploads\/2023\/01\/inch-foot-peche.jpg",1600,968,false],"thumbnail":["https:\/\/rodmaps.com\/wp-content\/uploads\/2023\/01\/inch-foot-peche-150x150.jpg",150,150,true],"medium":["https:\/\/rodmaps.com\/wp-content\/uploads\/2023\/01\/inch-foot-peche-300x182.jpg",300,182,true],"medium_large":["https:\/\/rodmaps.com\/wp-content\/uploads\/2023\/01\/inch-foot-peche-768x465.jpg",768,465,true],"large":["https:\/\/rodmaps.com\/wp-content\/uploads\/2023\/01\/inch-foot-peche-1024x620.jpg",1024,620,true],"1536x1536":["https:\/\/rodmaps.com\/wp-content\/uploads\/2023\/01\/inch-foot-peche-1536x929.jpg",1536,929,true],"2048x2048":["https:\/\/rodmaps.com\/wp-content\/uploads\/2023\/01\/inch-foot-peche.jpg",1600,968,false],"trp-custom-language-flag":["https:\/\/rodmaps.com\/wp-content\/uploads\/2023\/01\/inch-foot-peche-18x12.jpg",18,12,true]},"uagb_author_info":{"display_name":"Rodmaps","author_link":"https:\/\/rodmaps.com\/en\/author\/rodmaps_administrateur\/"},"uagb_comment_info":0,"uagb_excerpt":"Inch et Foot sont des appelations venues des Etats-Unis que nos p\u00eacheurs emploient commun\u00e9ment. Mais savez-vous vraiment \u00e0 quoi correspondent [&hellip;]","_links":{"self":[{"href":"https:\/\/rodmaps.com\/en\/wp-json\/wp\/v2\/posts\/3937","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/rodmaps.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/rodmaps.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/rodmaps.com\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/rodmaps.com\/en\/wp-json\/wp\/v2\/comments?post=3937"}],"version-history":[{"count":12,"href":"https:\/\/rodmaps.com\/en\/wp-json\/wp\/v2\/posts\/3937\/revisions"}],"predecessor-version":[{"id":7566,"href":"https:\/\/rodmaps.com\/en\/wp-json\/wp\/v2\/posts\/3937\/revisions\/7566"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/rodmaps.com\/en\/wp-json\/wp\/v2\/media\/3987"}],"wp:attachment":[{"href":"https:\/\/rodmaps.com\/en\/wp-json\/wp\/v2\/media?parent=3937"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/rodmaps.com\/en\/wp-json\/wp\/v2\/categories?post=3937"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/rodmaps.com\/en\/wp-json\/wp\/v2\/tags?post=3937"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}