{"id":3855,"date":"2023-01-02T11:30:59","date_gmt":"2023-01-02T10:30:59","guid":{"rendered":"https:\/\/rodmaps.com\/?p=3855"},"modified":"2024-11-24T23:53:09","modified_gmt":"2024-11-24T22:53:09","slug":"g-lb-oz","status":"publish","type":"post","link":"https:\/\/rodmaps.com\/en\/g-lb-oz\/","title":{"rendered":"Lb, Oz: Everything you need to know about these fishing weights"},"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;3855&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;2&quot;,&quot;legendonly&quot;:&quot;&quot;,&quot;readonly&quot;:&quot;&quot;,&quot;score&quot;:&quot;5&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;5\\\/5 - (2 votes)&quot;,&quot;size&quot;:&quot;24&quot;,&quot;title&quot;:&quot;Lb, Oz : Tout savoir sur ces mesures de poids \u00e0 la p\u00eache&quot;,&quot;width&quot;:&quot;142.5&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: 142.5px;\">\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            5\/5 - (2 votes)    <\/div>\n    <\/div>\n\n<p class=\"has-text-align-center\"><em><strong>Lb, Oz... What's that all about?<\/strong> These are all terms from the United States that are commonly used by our fishermen. But what do these measurements mean? What exactly do they mean for a fisherman? <strong>Here's how to interpret these measurements in your day-to-day fishing.<\/strong><\/em><\/p>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">lb - kg and oz - gr converter<\/h2>\n\n\n\n<p> <strong>Here's an automatic calculator of equivalence between Lb and Kilogram and also between Oz and Gram for fishing: <\/strong><\/p>\n\n\n\n<div id=\"peche-calculateur\">\n  <h3>Lbs Kilogram equivalence calculator and recommended wire diameter<\/h3>\n  <div class=\"input-group\">\n  <div class=\"input-group\">\n    <label for=\"lb\">Books (Lb):<\/label>\n    <input type=\"number\" id=\"lb\" step=\"0.01\">\n  <\/div>\n    <label for=\"kg\">Kilograms (Kg):<\/label>\n    <input type=\"number\" id=\"kg\" step=\"0.01\">\n  <\/div>\n  <div class=\"input-group\">\n    <label for=\"diametre\">Recommended wire diameter (mm):<\/label>\n    <input type=\"number\" id=\"diametre\" step=\"0.01\" readonly>\n  <\/div>\n  <button onclick=\"calculer()\">Calculate<\/button>\n<\/div>\n<script>\nfunction calculer() {\n  const lb = parseFloat(document.getElementById('lb').value);\n  const kg = parseFloat(document.getElementById('kg').value);\n  const diametreInput = document.getElementById('diametre');\n\n  if (!isNaN(lb)) {\n    document.getElementById('kg').value = (lb \/ 2.20462).toFixed(2);\n  } else if (!isNaN(kg)) {\n    document.getElementById('lb').value = (kg * 2.20462).toFixed(2);\n  }\n\n  const poids = !isNaN(lb) ? lb : (!isNaN(kg) ? kg * 2.20462 : NaN);\n\n  if (!isNaN(poids)) {\n    if (poids <= 8) diametreInput.value = 0.25;\n    else if (poids <= 10) diametreInput.value = 0.28;\n    else if (poids <= 12) diametreInput.value = 0.30;\n    else if (poids <= 14) diametreInput.value = 0.35;\n    else if (poids <= 20) diametreInput.value = 0.40;\n    else if (poids <= 25) diametreInput.value = 0.45;\n    else if (poids <= 30) diametreInput.value = 0.50;\n    else diametreInput.value = \"Inconnu\";\n  } else {\n    diametreInput.value = \"\";\n  }\n}\n\n\/\/ Ajouter des \u00e9couteurs d'\u00e9v\u00e9nements pour la touche \"Entr\u00e9e\"\ndocument.getElementById('lb').addEventListener('keypress', function(e) {\n  if (e.key === 'Enter') {\n    e.preventDefault(); \/\/ Emp\u00eache le formulaire de se soumettre\n    calculer();\n  }\n});\n\ndocument.getElementById('kg').addEventListener('keypress', function(e) {\n  if (e.key === 'Enter') {\n    e.preventDefault();\n    calculer();\n  }\n});\n\n\/\/ Appeler la fonction calculer() lorsque le bouton est cliqu\u00e9\ndocument.querySelector('#peche-calculateur button').addEventListener('click', calculer);\n<\/script>\n<style>\n#peche-calculateur {\n  max-width: 800px;\n  margin: 20px auto;\n  padding: 15px;\n  border: 1px solid #ddd;\n  border-radius: 5px;\n  background-color: #f9f9f9;\n}\n\n#peche-calculateur 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\n\n\n<h2 class=\"wp-block-heading\">Oz to gram converter<\/h2>\n\n\n\n<p>  <strong>Here's an automatic Oz\/Gram equivalence calculator that you can adapt to your fishing: <\/strong>  <\/p>\n\n\n\n<div id=\"peche-calculateur-oz\">\n  <h3>Oz \/ Gram calculator<\/h3>\n  <div class=\"input-group\">\n    <label for=\"oz\"> Oz (Ounces):<\/label>\n    <input type=\"number\" id=\"oz\" step=\"0.01\">\n  <\/div>\n  <div class=\"input-group\">\n    <label for=\"g\">Grams (g):<\/label>\n    <input type=\"number\" id=\"g\" step=\"0.01\">\n  <\/div>\n  <button onclick=\"calculerOz()\">Calculate<\/button>\n<\/div>\n<script>\nfunction calculerOz() {\n  const oz = parseFloat(document.getElementById('oz').value);\n  const g = parseFloat(document.getElementById('g').value);\n\n  if (!isNaN(oz)) {\n    document.getElementById('g').value = (oz * 28.34952).toFixed(2);\n  } else if (!isNaN(g)) {\n    document.getElementById('oz').value = (g \/ 28.34952).toFixed(2);\n  }\n}\n\n\/\/ Ajouter des \u00e9couteurs d'\u00e9v\u00e9nements pour la touche \"Entr\u00e9e\"\ndocument.getElementById('oz').addEventListener('keypress', function(e) {\n  if (e.key === 'Enter') {\n    e.preventDefault();\n    calculerOz();\n  }\n});\n\ndocument.getElementById('g').addEventListener('keypress', function(e) {\n  if (e.key === 'Enter') {\n    e.preventDefault();\n    calculerOz();\n  }\n});\n\n\/\/ Appeler la fonction calculerOz() lorsque le bouton est cliqu\u00e9\ndocument.querySelector('#peche-calculateur-oz button').addEventListener('click', calculerOz);\n<\/script>\n<style>\n#peche-calculateur-oz {\n  max-width: 800px;\n  margin: 20px auto;\n  padding: 15px;\n  border: 1px solid #ddd;\n  border-radius: 5px;\n  background-color: #f0f8ff; \/* L\u00e9g\u00e8re teinte bleue pour diff\u00e9rencier *\/\n}\n\n#peche-calculateur-oz h3 {\n  text-align: center;\n  margin-bottom: 15px;\n  color: #1e90ff; \/* Bleu pour le titre *\/\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; \/* rouge rodmaps pour le bouton *\/\n  color: white;\n  border: none;\n  border-radius: 3px;\n  cursor: pointer;\n}\n\nbutton:hover {\n  background-color: #FF5EA0; \/* rouge plus fonc\u00e9 au survol *\/\n}\n<\/style>\n\n\n\n<h2 class=\"wp-block-heading\">Lb &amp; Oz: Definition and measurement<\/h2>\n\n\n\n<p>Lbs and oz are commonly used in the fishing world to measure the weight of lures and fish, but also the power of our fishing rods and the strength of our lines. Here are a few things to remember about these two measurements.<\/p>\n\n\n\n<p><strong>Lb (Pound) or Livre in French<\/strong>is, is a unit of measurement used to measure weight. <strong>1 Lb is exactly equivalent to 453.59 grams.<\/strong><\/p>\n\n\n\n<p><strong>Oz (o<\/strong>u<strong>nce)<\/strong> is also a unit of measurement for weight, but on a smaller scale. This is because, <strong>1 Oz is equivalent to 28.35 grams.<\/strong><\/p>\n\n\n\n<p>Mainly used in the United States, these measurements arrived in the fishing world at the same time as the lures arriving from that country and from Asia. Switching all the measurements under the acronyms Lb and Oz made it possible to <strong>standardise measurement scales worldwide<\/strong>. However, we naturally continue to use grams and kilograms as units in our daily lives.<\/p>\n\n\n\n<script async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-9828952564137188\"\n     crossorigin=\"anonymous\"><\/script>\n<ins class=\"adsbygoogle\"\n     style=\"display:block; text-align:center;\"\n     data-ad-layout=\"in-article\"\n     data-ad-format=\"fluid\"\n     data-ad-client=\"ca-pub-9828952564137188\"\n     data-ad-slot=\"2730458398\"><\/ins>\n<script>\n     (adsbygoogle = window.adsbygoogle || []).push({});\n<\/script>\n\n\n\n<h2 class=\"wp-block-heading\">Converting pounds to kilograms<\/h2>\n\n\n\n<p>As explained above, 1 pound = 453.6 grams or 0.45kg. When fishing, we often say that a pound is equivalent to half a kilogram to make rounding easier. This unit of measurement is used to measure the weight of a fish.<\/p>\n\n\n\n<p>But Lb is also a unit of measurement used to indicate breaking strength. In fishing, a line marked 2lbs indicates to the angler that the line is 2 lb (pounds) strong.<\/p>\n\n\n\n<p><strong>Here is a summary of Lb and Kilograms: <\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>Lb<\/strong><\/td><td><strong>Kg<\/strong><\/td><td><strong>Wire diameter<\/strong><\/td><\/tr><tr><td>8 lbs<\/td><td><em>3kg 628.74g<\/em><\/td><td><em>0.25 mm<\/em><\/td><\/tr><tr><td>10 lbs<\/td><td><em>4kg 535.92g<\/em><\/td><td><em>0.28 mm<\/em><\/td><\/tr><tr><td>12 lbs<\/td><td><em>5kg 443.11g<\/em><\/td><td><em>0.30 mm<\/em><\/td><\/tr><tr><td>14 lbs<\/td><td><em>6kg 350.29g<\/em><\/td><td><em>0.35 mm<\/em><\/td><\/tr><tr><td>20 lbs<\/td><td><em>9kg 71.847g<\/em><\/td><td><em>0.40 mm<\/em><\/td><\/tr><tr><td>25 lbs<\/td><td><em>11kg 339.81g<\/em><\/td><td><em>0.45 mm<\/em><\/td><\/tr><tr><td>30 lbs<\/td><td><em>13kg 607.77g<\/em><\/td><td><em>0.50 mm<\/em><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/rodmaps.com\/wp-content\/uploads\/2022\/12\/Lb-Oz-Dark-sleeper-1024x576.jpg\" alt=\"1\/2 Oz and 3\/8 Oz for its Dark Sleeper Megabass\" class=\"wp-image-3940\" srcset=\"https:\/\/rodmaps.com\/wp-content\/uploads\/2022\/12\/Lb-Oz-Dark-sleeper-1024x576.jpg 1024w, https:\/\/rodmaps.com\/wp-content\/uploads\/2022\/12\/Lb-Oz-Dark-sleeper-300x169.jpg 300w, https:\/\/rodmaps.com\/wp-content\/uploads\/2022\/12\/Lb-Oz-Dark-sleeper-768x432.jpg 768w, https:\/\/rodmaps.com\/wp-content\/uploads\/2022\/12\/Lb-Oz-Dark-sleeper-18x10.jpg 18w, https:\/\/rodmaps.com\/wp-content\/uploads\/2022\/12\/Lb-Oz-Dark-sleeper.jpg 1280w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Convert Oz into grams<\/h2>\n\n\n\n<p>As explained above, 1 Ounce = 1 Oz = 28.35 grams. When fishing, the Oz is a unit of measurement used to indicate the weight of our lures.<\/p>\n\n\n\n<p> <strong>Here is a table of equivalence between Oz and grams useful for fishing <\/strong>:  <\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>Oz<\/strong><\/td><td><strong>Gramme<\/strong><\/td><\/tr><tr><td><em>1\/8 oz<\/em><\/td><td><em>3.543 g<\/em><\/td><\/tr><tr><td><em>1\/4 oz<\/em><\/td><td><em>7.087 g<\/em><\/td><\/tr><tr><td><em>5\/16 oz&nbsp;&nbsp;<\/em><\/td><td><em>9 g<\/em><\/td><\/tr><tr><td><em>1\/3 oz<\/em><\/td><td><em>9.449 g<\/em><\/td><\/tr><tr><td><em>3\/8 oz<\/em><\/td><td><em>11 g<\/em><\/td><\/tr><tr><td><em>9\/16 oz<\/em><\/td><td><em>16 g<\/em><\/td><\/tr><tr><td><em>5\/8 oz<\/em><\/td><td><em>18 g<\/em><\/td><\/tr><tr><td><em>3\/4 oz<\/em><\/td><td><em>21.262 g<\/em><\/td><\/tr><tr><td><em>1 oz<\/em><\/td><td><em>28.349 g<\/em><\/td><\/tr><tr><td><em>1 \u00bd oz<\/em><\/td><td><em>43 g<\/em><\/td><\/tr><tr><td><em>2 \u00bd oz&nbsp;<\/em><\/td><td><em>70 g<\/em><\/td><\/tr><tr><td><em>3 oz<\/em><\/td><td><em>85.048 g<\/em><\/td><\/tr><\/tbody><\/table><\/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\/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>Lb, Oz... What's this all about? These are all terms from the United States that are commonly used by our fishermen. But what do these measurements [...] correspond to?<\/p>","protected":false},"author":2,"featured_media":3914,"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":[510,512,508,509,507,515,514,511,513],"class_list":["post-3855","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-conseils","tag-conversion-poids","tag-lb","tag-lb-en-gramme","tag-lb-en-kg","tag-lb-oz","tag-ounce","tag-oz","tag-oz-en-gramme","tag-pound"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Lb, Oz : Tout savoir sur ces mesures de poids \u00e0 la p\u00eache<\/title>\n<meta name=\"description\" content=\"Lb, Oz, Inch, Foot, ... Autant d&#039;appelations que nos p\u00eacheurs emploient commun\u00e9ment. Voici comment interpr\u00eater ces mesures \u00e0 la p\u00eache.\" \/>\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\/g-lb-oz\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Lb, Oz : Tout savoir sur ces mesures de poids \u00e0 la p\u00eache\" \/>\n<meta property=\"og:description\" content=\"Lb, Oz, Inch, Foot, ... Autant d&#039;appelations que nos p\u00eacheurs emploient commun\u00e9ment. Voici comment interpr\u00eater ces mesures \u00e0 la p\u00eache.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/rodmaps.com\/en\/g-lb-oz\/\" \/>\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-02T10:30:59+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-24T22:53:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/rodmaps.com\/wp-content\/uploads\/2022\/12\/lb-oz-inch-foot.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\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":"Lb, Oz: Everything you need to know about these fishing weights","description":"Lb, Oz, Inch, Foot, ... These are all terms commonly used by our anglers. Here's how to interpret these measurements when fishing.","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\/g-lb-oz\/","og_locale":"en_GB","og_type":"article","og_title":"Lb, Oz : Tout savoir sur ces mesures de poids \u00e0 la p\u00eache","og_description":"Lb, Oz, Inch, Foot, ... Autant d'appelations que nos p\u00eacheurs emploient commun\u00e9ment. Voici comment interpr\u00eater ces mesures \u00e0 la p\u00eache.","og_url":"https:\/\/rodmaps.com\/en\/g-lb-oz\/","og_site_name":"Rodmaps","article_author":"https:\/\/www.facebook.com\/profile.php?id=100027342603828","article_published_time":"2023-01-02T10:30:59+00:00","article_modified_time":"2024-11-24T22:53:09+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/rodmaps.com\/wp-content\/uploads\/2022\/12\/lb-oz-inch-foot.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\/lb-oz-tout-savoir-sur-ces-mesures-de-poids-a-la-peche\/#article","isPartOf":{"@id":"https:\/\/rodmaps.com\/lb-oz-tout-savoir-sur-ces-mesures-de-poids-a-la-peche\/"},"author":{"name":"Rodmaps","@id":"https:\/\/rodmaps.com\/#\/schema\/person\/1fbace5779babc4ca1d304b8194d75c9"},"headline":"Lb, Oz : Tout savoir sur ces mesures de poids \u00e0 la p\u00eache","datePublished":"2023-01-02T10:30:59+00:00","dateModified":"2024-11-24T22:53:09+00:00","mainEntityOfPage":{"@id":"https:\/\/rodmaps.com\/lb-oz-tout-savoir-sur-ces-mesures-de-poids-a-la-peche\/"},"wordCount":560,"publisher":{"@id":"https:\/\/rodmaps.com\/#organization"},"image":{"@id":"https:\/\/rodmaps.com\/lb-oz-tout-savoir-sur-ces-mesures-de-poids-a-la-peche\/#primaryimage"},"thumbnailUrl":"https:\/\/rodmaps.com\/wp-content\/uploads\/2022\/12\/lb-oz-inch-foot.jpg","keywords":["conversion poids","lb","lb en gramme","lb en kg","lb oz","ounce","oz","oz en gramme","pound"],"articleSection":["Conseils"],"inLanguage":"en-GB"},{"@type":"WebPage","@id":"https:\/\/rodmaps.com\/lb-oz-tout-savoir-sur-ces-mesures-de-poids-a-la-peche\/","url":"https:\/\/rodmaps.com\/lb-oz-tout-savoir-sur-ces-mesures-de-poids-a-la-peche\/","name":"Lb, Oz: Everything you need to know about these fishing weights","isPartOf":{"@id":"https:\/\/rodmaps.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/rodmaps.com\/lb-oz-tout-savoir-sur-ces-mesures-de-poids-a-la-peche\/#primaryimage"},"image":{"@id":"https:\/\/rodmaps.com\/lb-oz-tout-savoir-sur-ces-mesures-de-poids-a-la-peche\/#primaryimage"},"thumbnailUrl":"https:\/\/rodmaps.com\/wp-content\/uploads\/2022\/12\/lb-oz-inch-foot.jpg","datePublished":"2023-01-02T10:30:59+00:00","dateModified":"2024-11-24T22:53:09+00:00","description":"Lb, Oz, Inch, Foot, ... These are all terms commonly used by our anglers. Here's how to interpret these measurements when fishing.","breadcrumb":{"@id":"https:\/\/rodmaps.com\/lb-oz-tout-savoir-sur-ces-mesures-de-poids-a-la-peche\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/rodmaps.com\/lb-oz-tout-savoir-sur-ces-mesures-de-poids-a-la-peche\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/rodmaps.com\/lb-oz-tout-savoir-sur-ces-mesures-de-poids-a-la-peche\/#primaryimage","url":"https:\/\/rodmaps.com\/wp-content\/uploads\/2022\/12\/lb-oz-inch-foot.jpg","contentUrl":"https:\/\/rodmaps.com\/wp-content\/uploads\/2022\/12\/lb-oz-inch-foot.jpg","width":1200,"height":628,"caption":"Lb Oz : Tout savoir sur ces mesures de poids \u00e0 la p\u00eache"},{"@type":"BreadcrumbList","@id":"https:\/\/rodmaps.com\/lb-oz-tout-savoir-sur-ces-mesures-de-poids-a-la-peche\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/rodmaps.com\/"},{"@type":"ListItem","position":2,"name":"Lb, Oz : Tout savoir sur ces mesures de poids \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\/2022\/12\/lb-oz-inch-foot.jpg","spectra_custom_meta":{"_jetpack_related_posts_cache":["a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1728729080;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:3937;}i:1;a:1:{s:2:\"id\";i:3993;}i:2;a:1:{s:2:\"id\";i:4006;}}}}"],"_edit_lock":["1746797416:2"],"_last_editor_used_jetpack":["block-editor"],"_edit_last":["2"],"ampforwp_custom_content_editor":[""],"ampforwp_custom_content_editor_checkbox":[""],"ampforwp-amp-on-off":["default"],"_yoast_wpseo_primary_category":["5"],"_yoast_wpseo_estimated-reading-time-minutes":["4"],"_yoast_wpseo_content_score":["90"],"_oembed_fa1a0427fea0776d16efd08041ddcc2d":["<blockquote class=\"wp-embedded-content\" data-secret=\"eLvFbJc2Ms\"><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=eLvFbJc2Ms\" data-secret=\"eLvFbJc2Ms\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"><\/iframe>"],"_oembed_time_fa1a0427fea0776d16efd08041ddcc2d":["1672333136"],"_yoast_wpseo_focuskw":["lb oz"],"_yoast_wpseo_title":["%%title%% %%page%%"],"_yoast_wpseo_metadesc":["Lb, Oz, Inch, Foot, ... Autant d'appelations que nos p\u00eacheurs emploient commun\u00e9ment. Voici comment interpr\u00eater ces mesures \u00e0 la p\u00eache."],"_yoast_wpseo_linkdex":["72"],"_oembed_b1b04035722f428cc0b32678cff5e9f6":["{{unknown}}"],"_thumbnail_id":["3914"],"_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:2491:\".uag-blocks-common-selector{z-index:var(--z-index-desktop) !important}@media (max-width: 976px){.uag-blocks-common-selector{z-index:var(--z-index-tablet) !important}}@media (max-width: 767px){.uag-blocks-common-selector{z-index:var(--z-index-mobile) !important}}\n.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:17:{i:0;s:14:\"core\/paragraph\";i:1;s:12:\"core\/heading\";i:2;s:9:\"core\/html\";i:3;s:10:\"core\/table\";i:4;s:10:\"core\/image\";i:5;s:13:\"surecart\/cart\";i:6;s:20:\"surecart\/cart-header\";i:7;s:19:\"surecart\/cart-items\";i:8;s:20:\"surecart\/cart-coupon\";i:9;s:22:\"surecart\/cart-subtotal\";i:10;s:28:\"surecart\/cart-bump-line-item\";i:11;s:20:\"surecart\/cart-submit\";i:12;s:11:\"core\/search\";i:13;s:18:\"sbi\/sbi-feed-block\";i:14;s:17:\"core\/latest-posts\";i:15;s:21:\"uagb\/advanced-heading\";i:16;s:30:\"wordpress-popular-posts\/widget\";}s:8:\"uag_flag\";b:1;s:11:\"uag_version\";s:10:\"1775641791\";s:6:\"gfonts\";a:0:{}s:10:\"gfonts_url\";s:0:\"\";s:12:\"gfonts_files\";a:0:{}s:14:\"uag_faq_layout\";b:0;}"],"_kksr_count_default":["2"],"_kksr_ratings_default":["10"],"_kksr_avg_default":["5"],"_kksr_casts":["2"],"_kksr_ratings":["10"],"_kksr_avg":["5"]},"uagb_featured_image_src":{"full":["https:\/\/rodmaps.com\/wp-content\/uploads\/2022\/12\/lb-oz-inch-foot.jpg",1200,628,false],"thumbnail":["https:\/\/rodmaps.com\/wp-content\/uploads\/2022\/12\/lb-oz-inch-foot-150x150.jpg",150,150,true],"medium":["https:\/\/rodmaps.com\/wp-content\/uploads\/2022\/12\/lb-oz-inch-foot-300x157.jpg",300,157,true],"medium_large":["https:\/\/rodmaps.com\/wp-content\/uploads\/2022\/12\/lb-oz-inch-foot-768x402.jpg",768,402,true],"large":["https:\/\/rodmaps.com\/wp-content\/uploads\/2022\/12\/lb-oz-inch-foot-1024x536.jpg",1024,536,true],"1536x1536":["https:\/\/rodmaps.com\/wp-content\/uploads\/2022\/12\/lb-oz-inch-foot.jpg",1200,628,false],"2048x2048":["https:\/\/rodmaps.com\/wp-content\/uploads\/2022\/12\/lb-oz-inch-foot.jpg",1200,628,false],"trp-custom-language-flag":["https:\/\/rodmaps.com\/wp-content\/uploads\/2022\/12\/lb-oz-inch-foot-18x9.jpg",18,9,true]},"uagb_author_info":{"display_name":"Rodmaps","author_link":"https:\/\/rodmaps.com\/en\/author\/rodmaps_administrateur\/"},"uagb_comment_info":0,"uagb_excerpt":"Lb, Oz&#8230; Qu\u00e9saco ?? Autant d&rsquo;appelations venues des Etats-Unis que nos p\u00eacheurs emploient commun\u00e9ment. Mais \u00e0 quoi correspondent ces mesures [&hellip;]","_links":{"self":[{"href":"https:\/\/rodmaps.com\/en\/wp-json\/wp\/v2\/posts\/3855","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=3855"}],"version-history":[{"count":29,"href":"https:\/\/rodmaps.com\/en\/wp-json\/wp\/v2\/posts\/3855\/revisions"}],"predecessor-version":[{"id":7571,"href":"https:\/\/rodmaps.com\/en\/wp-json\/wp\/v2\/posts\/3855\/revisions\/7571"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/rodmaps.com\/en\/wp-json\/wp\/v2\/media\/3914"}],"wp:attachment":[{"href":"https:\/\/rodmaps.com\/en\/wp-json\/wp\/v2\/media?parent=3855"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/rodmaps.com\/en\/wp-json\/wp\/v2\/categories?post=3855"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/rodmaps.com\/en\/wp-json\/wp\/v2\/tags?post=3855"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}