[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"learn-\u002Flearn\u002Fhow-to\u002Fconvert-legal-land-descriptions-google-sheets":3,"learn-related-how-to\u002Fconvert-legal-land-descriptions-google-sheets":760},{"id":4,"title":5,"body":6,"category":736,"createdAt":736,"cta":737,"description":739,"extension":740,"icon":736,"industry":736,"keywords":741,"meta":747,"navigation":748,"path":749,"province":736,"relatedPages":750,"section":754,"seo":755,"stem":756,"systems":757,"updatedAt":736,"__hash__":759},"learn\u002Flearn\u002Fhow-to\u002Fconvert-legal-land-descriptions-google-sheets.md","Convert Legal Land Descriptions in Google Sheets — Township Canada",{"type":7,"value":8,"toc":719},"minimark",[9,14,18,32,37,50,54,57,62,74,78,81,91,94,116,123,127,143,147,150,154,161,165,168,532,536,551,555,562,575,579,587,637,648,656,660,674,693,699,703,715],[10,11,13],"h1",{"id":12},"how-to-convert-legal-land-descriptions-in-google-sheets","How to Convert Legal Land Descriptions in Google Sheets",[15,16,17],"p",{},"You have a column of legal land descriptions in a Google Sheet — quarter sections from a land sale, LSDs from well licence applications, or NTS references from a BC field program. You need GPS coordinates next to each one. Copying and pasting them into a converter one at a time is not realistic when you have 50, 200, or 1,000 rows.",[15,19,20,21,26,27,31],{},"Township Canada's ",[22,23,25],"a",{"href":24},"\u002Fguides\u002Fgoogle-sheets-integration","Google Sheets add-on"," puts a conversion formula directly in your spreadsheet. Type ",[28,29,30],"code",{},"=TOWNSHIP(\"NW-25-024-01W5\")"," in a cell and get GPS coordinates back without leaving the sheet.",[33,34,36],"h2",{"id":35},"what-youll-learn","What You'll Learn",[15,38,39,40,44,45,49],{},"This guide covers two ways to convert legal land descriptions to GPS coordinates in Google Sheets: the Township Canada add-on (fastest) and a custom Apps Script function using the Township Canada API. Both methods work with ",[22,41,43],{"href":42},"\u002Flearn\u002Fsystems\u002Fdls","DLS",", ",[22,46,48],{"href":47},"\u002Flearn\u002Fsystems\u002Flsd","LSD",", NTS, Geographic Township, and River Lot descriptions.",[33,51,53],{"id":52},"option-1-township-canada-google-sheets-add-on","Option 1: Township Canada Google Sheets Add-On",[15,55,56],{},"The add-on is available on the Google Workspace Marketplace. Once installed, it adds custom spreadsheet functions that call the Township Canada API behind the scenes.",[58,59,61],"h3",{"id":60},"step-1-install-the-add-on","Step 1: Install the Add-On",[15,63,64,65,69,70,73],{},"Open your Google Sheet, go to ",[66,67,68],"strong",{},"Extensions → Add-ons → Get add-ons",", and search for \"Township Canada.\" Click ",[66,71,72],{},"Install"," and grant the required permissions. The add-on includes 10 free conversions per month — connect a Township Canada API key in the Settings dialog for unlimited use on any API plan.",[58,75,77],{"id":76},"step-2-use-the-formula","Step 2: Use the Formula",[15,79,80],{},"In any empty cell next to a legal land description, type:",[82,83,88],"pre",{"className":84,"code":86,"language":87},[85],"language-text","=TOWNSHIP(\"NW-25-024-01W5\")\n","text",[28,89,86],{"__ignoreMap":90},"",[15,92,93],{},"This returns the full GPS coordinate string. For individual fields, use:",[95,96,97,104,110],"ul",{},[98,99,100,103],"li",{},[28,101,102],{},"=TOWNSHIP_LAT(\"NW-25-024-01W5\")"," — returns latitude only",[98,105,106,109],{},[28,107,108],{},"=TOWNSHIP_LNG(\"NW-25-024-01W5\")"," — returns longitude only",[98,111,112,115],{},[28,113,114],{},"=TOWNSHIP_PROVINCE(\"NW-25-024-01W5\")"," — returns the province",[15,117,118,119,122],{},"You can also reference another cell: ",[28,120,121],{},"=TOWNSHIP(A2)"," pulls the description from cell A2, so you can drag the formula down a column to convert an entire list.",[58,124,126],{"id":125},"step-3-batch-convert-with-the-sidebar","Step 3: Batch Convert with the Sidebar",[15,128,129,130,134,135,138,139,142],{},"For larger jobs — say 200 legal land descriptions from a ",[22,131,133],{"href":132},"\u002Flearn\u002Fhow-to\u002Flegal-land-description-for-crop-insurance","crop insurance claim list"," — open the add-on sidebar from ",[66,136,137],{},"Extensions → Township Canada → Open Sidebar",". Select the cell range containing your descriptions, click ",[66,140,141],{},"Convert",", and the sidebar processes the batch with a progress indicator. Results fill into adjacent columns automatically.",[33,144,146],{"id":145},"option-2-apps-script-with-the-township-canada-api","Option 2: Apps Script with the Township Canada API",[15,148,149],{},"If you prefer direct API access or need more control over the output, you can write a short Apps Script function. This approach is useful for teams that already have a Township Canada API key and want to embed conversion into existing spreadsheet workflows.",[58,151,153],{"id":152},"step-1-open-the-script-editor","Step 1: Open the Script Editor",[15,155,156,157,160],{},"In your Google Sheet, go to ",[66,158,159],{},"Extensions → Apps Script",". This opens a code editor attached to your spreadsheet.",[58,162,164],{"id":163},"step-2-add-the-conversion-function","Step 2: Add the Conversion Function",[15,166,167],{},"Paste this function into the editor:",[82,169,173],{"className":170,"code":171,"language":172,"meta":90,"style":90},"language-javascript shiki shiki-themes material-theme-lighter vitesse-light vitesse-dark","function CONVERT_LLD(description) {\n  var apiKey = PropertiesService.getScriptProperties().getProperty('TC_API_KEY');\n  var url = 'https:\u002F\u002Fapi.townshipcanada.com\u002Fv1\u002Fsearch?q=' + encodeURIComponent(description);\n  var options = { headers: { 'X-API-Key': apiKey } };\n  var response = UrlFetchApp.fetch(url, options);\n  var data = JSON.parse(response.getContentText());\n  if (data.features && data.features.length > 0) {\n    var coords = data.features[0].geometry.coordinates;\n    return coords[1] + ', ' + coords[0];\n  }\n  return 'Not found';\n}\n","javascript",[28,174,175,202,250,283,323,355,388,432,470,505,511,526],{"__ignoreMap":90},[176,177,180,184,188,192,196,199],"span",{"class":178,"line":179},"line",1,[176,181,183],{"class":182},"s5Kfy","function",[176,185,187],{"class":186},"sljsM"," CONVERT_LLD",[176,189,191],{"class":190},"soVBu","(",[176,193,195],{"class":194},"sqOPj","description",[176,197,198],{"class":190},")",[176,200,201],{"class":190}," {\n",[176,203,205,208,212,215,218,221,224,228,230,233,235,239,243,245,247],{"class":178,"line":204},2,[176,206,207],{"class":182},"  var",[176,209,211],{"class":210},"sSC40"," apiKey",[176,213,214],{"class":190}," =",[176,216,217],{"class":210}," PropertiesService",[176,219,220],{"class":190},".",[176,222,223],{"class":186},"getScriptProperties",[176,225,227],{"class":226},"sLdnO","()",[176,229,220],{"class":190},[176,231,232],{"class":186},"getProperty",[176,234,191],{"class":226},[176,236,238],{"class":237},"sbYkP","'",[176,240,242],{"class":241},"sTbE_","TC_API_KEY",[176,244,238],{"class":237},[176,246,198],{"class":226},[176,248,249],{"class":190},";\n",[176,251,253,255,258,260,263,266,268,272,275,277,279,281],{"class":178,"line":252},3,[176,254,207],{"class":182},[176,256,257],{"class":210}," url",[176,259,214],{"class":190},[176,261,262],{"class":237}," '",[176,264,265],{"class":241},"https:\u002F\u002Fapi.townshipcanada.com\u002Fv1\u002Fsearch?q=",[176,267,238],{"class":237},[176,269,271],{"class":270},"sVsLi"," +",[176,273,274],{"class":186}," encodeURIComponent",[176,276,191],{"class":226},[176,278,195],{"class":210},[176,280,198],{"class":226},[176,282,249],{"class":190},[176,284,286,288,291,293,296,300,303,305,307,311,313,315,317,320],{"class":178,"line":285},4,[176,287,207],{"class":182},[176,289,290],{"class":210}," options",[176,292,214],{"class":190},[176,294,295],{"class":190}," {",[176,297,299],{"class":298},"suXOh"," headers",[176,301,302],{"class":190},":",[176,304,295],{"class":190},[176,306,262],{"class":237},[176,308,310],{"class":309},"sQtxO","X-API-Key",[176,312,238],{"class":237},[176,314,302],{"class":190},[176,316,211],{"class":210},[176,318,319],{"class":190}," }",[176,321,322],{"class":190}," };\n",[176,324,326,328,331,333,336,338,341,343,346,349,351,353],{"class":178,"line":325},5,[176,327,207],{"class":182},[176,329,330],{"class":210}," response",[176,332,214],{"class":190},[176,334,335],{"class":210}," UrlFetchApp",[176,337,220],{"class":190},[176,339,340],{"class":186},"fetch",[176,342,191],{"class":226},[176,344,345],{"class":210},"url",[176,347,348],{"class":190},",",[176,350,290],{"class":210},[176,352,198],{"class":226},[176,354,249],{"class":190},[176,356,358,360,363,365,368,370,373,375,378,380,383,386],{"class":178,"line":357},6,[176,359,207],{"class":182},[176,361,362],{"class":210}," data",[176,364,214],{"class":190},[176,366,367],{"class":210}," JSON",[176,369,220],{"class":190},[176,371,372],{"class":186},"parse",[176,374,191],{"class":226},[176,376,377],{"class":210},"response",[176,379,220],{"class":190},[176,381,382],{"class":186},"getContentText",[176,384,385],{"class":226},"())",[176,387,249],{"class":190},[176,389,391,395,398,401,403,406,409,411,413,415,417,421,424,428,430],{"class":178,"line":390},7,[176,392,394],{"class":393},"siDh9","  if",[176,396,397],{"class":226}," (",[176,399,400],{"class":210},"data",[176,402,220],{"class":190},[176,404,405],{"class":210},"features",[176,407,408],{"class":270}," &&",[176,410,362],{"class":210},[176,412,220],{"class":190},[176,414,405],{"class":210},[176,416,220],{"class":190},[176,418,420],{"class":419},"s131V","length",[176,422,423],{"class":190}," >",[176,425,427],{"class":426},"s7CZa"," 0",[176,429,198],{"class":226},[176,431,201],{"class":190},[176,433,435,438,441,443,445,447,449,452,455,458,460,463,465,468],{"class":178,"line":434},8,[176,436,437],{"class":182},"    var",[176,439,440],{"class":210}," coords",[176,442,214],{"class":190},[176,444,362],{"class":210},[176,446,220],{"class":190},[176,448,405],{"class":210},[176,450,451],{"class":226},"[",[176,453,454],{"class":426},"0",[176,456,457],{"class":226},"]",[176,459,220],{"class":190},[176,461,462],{"class":210},"geometry",[176,464,220],{"class":190},[176,466,467],{"class":210},"coordinates",[176,469,249],{"class":190},[176,471,473,476,478,480,483,485,487,489,491,493,495,497,499,501,503],{"class":178,"line":472},9,[176,474,475],{"class":393},"    return",[176,477,440],{"class":210},[176,479,451],{"class":226},[176,481,482],{"class":426},"1",[176,484,457],{"class":226},[176,486,271],{"class":270},[176,488,262],{"class":237},[176,490,44],{"class":241},[176,492,238],{"class":237},[176,494,271],{"class":270},[176,496,440],{"class":210},[176,498,451],{"class":226},[176,500,454],{"class":426},[176,502,457],{"class":226},[176,504,249],{"class":190},[176,506,508],{"class":178,"line":507},10,[176,509,510],{"class":190},"  }\n",[176,512,514,517,519,522,524],{"class":178,"line":513},11,[176,515,516],{"class":393},"  return",[176,518,262],{"class":237},[176,520,521],{"class":241},"Not found",[176,523,238],{"class":237},[176,525,249],{"class":190},[176,527,529],{"class":178,"line":528},12,[176,530,531],{"class":190},"}\n",[58,533,535],{"id":534},"step-3-set-your-api-key","Step 3: Set Your API Key",[15,537,538,539,542,543,545,546,550],{},"In the Apps Script editor, go to ",[66,540,541],{},"Project Settings → Script Properties"," and add a property named ",[28,544,242],{}," with your Township Canada API key as the value. API keys start at $20\u002Fmonth on the Build plan — see ",[22,547,549],{"href":548},"\u002Fdevelopers","API pricing"," for details.",[58,552,554],{"id":553},"step-4-use-it-in-your-sheet","Step 4: Use It in Your Sheet",[15,556,557,558,561],{},"Back in the spreadsheet, type ",[28,559,560],{},"=CONVERT_LLD(A2)"," in any cell. Google Sheets calls the function, hits the API, and returns the coordinates. Drag the formula down to convert multiple rows.",[15,563,564,567,568,574],{},[66,565,566],{},"Note:"," Apps Script has a ",[22,569,573],{"href":570,"rel":571},"https:\u002F\u002Fdevelopers.google.com\u002Fapps-script\u002Fguides\u002Fservices\u002Fquotas",[572],"nofollow","quota on external URL fetches"," — roughly 20,000 calls per day on a standard Google Workspace account. For lists over a few hundred rows, the add-on's sidebar batch converter is more efficient because it groups requests.",[33,576,578],{"id":577},"example-converting-a-list-of-alberta-quarter-sections","Example: Converting a List of Alberta Quarter Sections",[15,580,581,582,586],{},"A land agent receives a list of 15 quarter sections from a ",[22,583,585],{"href":584},"\u002Flearn\u002Fhow-to\u002Flegal-land-description-for-real-estate","real estate portfolio review",". The spreadsheet looks like this:",[588,589,590,606],"table",{},[591,592,593],"thead",{},[594,595,596,600,603],"tr",{},[597,598,599],"th",{},"A (Legal Description)",[597,601,602],{},"B (Latitude)",[597,604,605],{},"C (Longitude)",[607,608,609,619,628],"tbody",{},[594,610,611,615,617],{},[612,613,614],"td",{},"NW-25-024-01W5",[612,616],{},[612,618],{},[594,620,621,624,626],{},[612,622,623],{},"SE-12-030-04W5",[612,625],{},[612,627],{},[594,629,630,633,635],{},[612,631,632],{},"NE-33-048-07W5",[612,634],{},[612,636],{},[15,638,639,640,643,644,647],{},"After entering ",[28,641,642],{},"=TOWNSHIP_LAT(A2)"," in B2 and ",[28,645,646],{},"=TOWNSHIP_LNG(A2)"," in C2, then dragging both formulas down, every row has GPS coordinates within seconds. The agent can now sort by location, plot them on a map, or filter by region — all without leaving the spreadsheet.",[15,649,650,651,655],{},"For larger datasets — hundreds or thousands of rows — the ",[22,652,654],{"href":653},"\u002Flearn\u002Fhow-to\u002Fbatch-convert-legal-land-descriptions","batch conversion tool"," accepts CSV uploads directly and returns results in multiple export formats including KML, Shapefile, and GeoJSON.",[33,657,659],{"id":658},"common-mistakes-to-avoid","Common Mistakes to Avoid",[15,661,662,665,666,669,670,673],{},[66,663,664],{},"Formatting errors",": Google Sheets sometimes auto-formats legal land descriptions. A value like ",[28,667,668],{},"06-32-048-07W5"," may get interpreted as a date or number. Format the column as ",[66,671,672],{},"Plain Text"," before entering descriptions to prevent this.",[15,675,676,679,680,683,684,687,688,692],{},[66,677,678],{},"Missing meridian",": DLS descriptions require a meridian reference (W4, W5, W6). A description like ",[28,681,682],{},"NE-14-032-21"," without a meridian suffix won't resolve. Always include the full description — for example, ",[28,685,686],{},"NE-14-032-21W4",". See the ",[22,689,691],{"href":690},"\u002Flearn\u002Fhow-to\u002Ftownship-range-meridian-explained","township, range, and meridian guide"," for details on how the meridian system works.",[15,694,695,698],{},[66,696,697],{},"Mixed systems in one column",": The add-on handles mixed survey systems — DLS, NTS, Geographic Townships — in the same column. You don't need to separate them into different sheets. Just make sure each cell contains a single, complete legal land description.",[33,700,702],{"id":701},"try-it-yourself","Try It Yourself",[15,704,705,706,709,710,714],{},"Install the ",[22,707,708],{"href":24},"Township Canada Google Sheets add-on"," and convert your first legal land description. Or paste a description into the ",[22,711,713],{"href":712},"\u002F?example=NW-25-024-01W5","converter on the homepage"," to see it work before installing anything.",[716,717,718],"style",{},"html pre.shiki code .s5Kfy, html code.shiki .s5Kfy{--shiki-light:#9C3EDA;--shiki-default:#AB5959;--shiki-dark:#CB7676}html pre.shiki code .sljsM, html code.shiki .sljsM{--shiki-light:#6182B8;--shiki-default:#59873A;--shiki-dark:#80A665}html pre.shiki code .soVBu, html code.shiki .soVBu{--shiki-light:#39ADB5;--shiki-default:#999999;--shiki-dark:#666666}html pre.shiki code .sqOPj, html code.shiki .sqOPj{--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#B07D48;--shiki-default-font-style:inherit;--shiki-dark:#BD976A;--shiki-dark-font-style:inherit}html pre.shiki code .sSC40, html code.shiki .sSC40{--shiki-light:#90A4AE;--shiki-default:#B07D48;--shiki-dark:#BD976A}html pre.shiki code .sLdnO, html code.shiki .sLdnO{--shiki-light:#E53935;--shiki-default:#999999;--shiki-dark:#666666}html pre.shiki code .sbYkP, html code.shiki .sbYkP{--shiki-light:#39ADB5;--shiki-default:#B5695977;--shiki-dark:#C98A7D77}html pre.shiki code .sTbE_, html code.shiki .sTbE_{--shiki-light:#91B859;--shiki-default:#B56959;--shiki-dark:#C98A7D}html pre.shiki code .sVsLi, html code.shiki .sVsLi{--shiki-light:#39ADB5;--shiki-default:#AB5959;--shiki-dark:#CB7676}html pre.shiki code .suXOh, html code.shiki .suXOh{--shiki-light:#E53935;--shiki-default:#998418;--shiki-dark:#B8A965}html pre.shiki code .sQtxO, html code.shiki .sQtxO{--shiki-light:#E53935;--shiki-default:#B56959;--shiki-dark:#C98A7D}html pre.shiki code .siDh9, html code.shiki .siDh9{--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#1E754F;--shiki-default-font-style:inherit;--shiki-dark:#4D9375;--shiki-dark-font-style:inherit}html pre.shiki code .s131V, html code.shiki .s131V{--shiki-light:#90A4AE;--shiki-default:#998418;--shiki-dark:#B8A965}html pre.shiki code .s7CZa, html code.shiki .s7CZa{--shiki-light:#F76D47;--shiki-default:#2F798A;--shiki-dark:#4C9A91}html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"title":90,"searchDepth":204,"depth":204,"links":720},[721,722,727,733,734,735],{"id":35,"depth":204,"text":36},{"id":52,"depth":204,"text":53,"children":723},[724,725,726],{"id":60,"depth":252,"text":61},{"id":76,"depth":252,"text":77},{"id":125,"depth":252,"text":126},{"id":145,"depth":204,"text":146,"children":728},[729,730,731,732],{"id":152,"depth":252,"text":153},{"id":163,"depth":252,"text":164},{"id":534,"depth":252,"text":535},{"id":553,"depth":252,"text":554},{"id":577,"depth":204,"text":578},{"id":658,"depth":204,"text":659},{"id":701,"depth":204,"text":702},null,{"label":738,"href":712},"Try converting a legal land description now","Convert DLS, LSD, and NTS legal land descriptions to GPS coordinates directly in Google Sheets using the Township Canada add-on or custom formulas.","md",[742,743,744,745,746],"convert legal land descriptions google sheets","lsd to gps google sheets","legal land description spreadsheet conversion","dls coordinates google sheets","township canada google sheets add-on",{},true,"\u002Flearn\u002Fhow-to\u002Fconvert-legal-land-descriptions-google-sheets",[653,42,47,751,752,753],"\u002Flearn\u002Fhow-to\u002Flsd-to-lat-long","\u002Flearn\u002Findustries\u002Fagriculture","\u002Flearn\u002Findustries\u002Foil-and-gas","how-to",{"title":5,"description":739},"learn\u002Fhow-to\u002Fconvert-legal-land-descriptions-google-sheets",[43,48,758],"NTS","QEzZC0e0Wjc_qcYbfDaquVA7HpJH7rf48GhYeCd0OjI",[761,1068,1338],{"id":762,"title":763,"body":764,"category":754,"createdAt":736,"cta":736,"description":1055,"extension":740,"icon":736,"industry":736,"keywords":1056,"meta":1062,"navigation":748,"path":653,"province":1064,"relatedPages":736,"section":736,"seo":1065,"stem":1066,"systems":736,"updatedAt":736,"__hash__":1067},"learn\u002Flearn\u002Fhow-to\u002Fbatch-convert-legal-land-descriptions.md","Batch Convert Legal Land Descriptions — Process Thousands of LLDs at Once",{"type":7,"value":765,"toc":1043},[766,770,773,776,780,783,799,802,806,812,823,829,839,843,847,850,853,859,862,866,874,878,881,901,904,908,911,949,961,965,978,981,985,999,1015,1023,1031],[10,767,769],{"id":768},"batch-convert-legal-land-descriptions-to-gps-coordinates","Batch Convert Legal Land Descriptions to GPS Coordinates",[15,771,772],{},"If you have a spreadsheet of legal land descriptions that need GPS coordinates, converting them one at a time is not practical. A pipeline company with 2,000 DLS locations for a route survey, an insurance firm triaging 500 claims after a hailstorm, or a land department reconciling quarterly well licence filings — each of these jobs starts with the same problem: a column of LSD or quarter section references that need to become latitude and longitude values.",[15,774,775],{},"Township Canada's batch converter handles this in a single upload.",[33,777,779],{"id":778},"what-the-batch-converter-does","What the Batch Converter Does",[15,781,782],{},"The batch converter accepts a CSV or spreadsheet containing legal land descriptions in any standard Canadian format — DLS, LSD, NTS, quarter section, or Geographic Township. It processes each row, calculates the GPS coordinates from official survey data, and returns the results as a downloadable file.",[15,784,785,786,44,788,44,791,794,795,798],{},"Input formats are flexible. You can upload descriptions like ",[28,787,668],{},[28,789,790],{},"NE 14-032-21W4",[28,792,793],{},"NTS A-2-F\u002F93-P-8",", or ",[28,796,797],{},"Lot 12, Concession 3, Township of Essa"," — all in the same file. The converter identifies the survey system for each row automatically.",[15,800,801],{},"Output includes the original description, latitude, longitude, and a confidence flag for each record. Rows that don't match a known land parcel are flagged rather than silently dropped, so you know exactly which entries need review.",[33,803,805],{"id":804},"when-youd-need-batch-conversion","When You'd Need Batch Conversion",[15,807,808,811],{},[66,809,810],{},"Quarterly regulatory filings",": Oil and gas companies submit well location data to the AER, SK Ministry of Energy, or BC OGC using legal land descriptions. Before filing, teams often need to verify coordinates match the descriptions on record. Running the full list through batch conversion catches discrepancies before they become compliance issues.",[15,813,814,817,818,822],{},[66,815,816],{},"Post-event insurance triage",": After a major hailstorm in southern Alberta, an insurer might receive 300+ claims in a week, each referencing a quarter section or LSD. Plotting all of them on a map at once shows the geographic spread of damage and helps prioritize field adjuster routes. See our guide on ",[22,819,821],{"href":820},"\u002Fhow-to\u002Flegal-land-description-for-crop-insurance","how crop insurance uses legal land descriptions"," for more on this workflow.",[15,824,825,828],{},[66,826,827],{},"Farmland portfolio analysis",": Real estate firms or agricultural lenders managing hundreds of rural parcels need GPS coordinates for mapping, valuation, and due diligence. A CSV of quarter sections from land titles converts to a GeoJSON file that drops straight into GIS software.",[15,830,831,834,835,220],{},[66,832,833],{},"Survey project planning",": A surveying crew with 40 section corners to visit needs GPS coordinates for route planning. Upload the list, download as KML, and load it into a GPS device or mapping app. For individual lookups, see the ",[22,836,838],{"href":837},"\u002Fhow-to\u002Fsection-township-range-lookup","section township range lookup guide",[33,840,842],{"id":841},"how-to-batch-convert-with-township-canada","How to Batch Convert with Township Canada",[58,844,846],{"id":845},"step-1-prepare-your-file","Step 1: Prepare Your File",[15,848,849],{},"Create a CSV with one legal land description per row. The descriptions can be in any column — you'll select the right one after upload. If your file has headers, keep them; the converter will detect them.",[15,851,852],{},"A simple file might look like:",[82,854,857],{"className":855,"code":856,"language":87},[85],"location\n06-32-048-07W5\nNE 14-032-21W4\nSW 03-024-02W5\n11-22-034-04W4\n",[28,858,856],{"__ignoreMap":90},[15,860,861],{},"Mixed formats work too. DLS, LSD, NTS, and Ontario Geographic Township descriptions can all appear in the same column.",[58,863,865],{"id":864},"step-2-upload-to-the-batch-converter","Step 2: Upload to the Batch Converter",[15,867,868,869,873],{},"Go to the ",[22,870,872],{"href":871},"\u002Fapp\u002Fbatch","Township Canada batch converter"," and upload your CSV. Select the column containing the legal land descriptions. The converter previews the first few rows so you can confirm it picked the right data.",[58,875,877],{"id":876},"step-3-review-and-download-results","Step 3: Review and Download Results",[15,879,880],{},"Processing time depends on file size — a few hundred rows finish in seconds, and files with thousands of rows typically complete in under a minute. Once done, you can:",[95,882,883,889,895],{},[98,884,885,888],{},[66,886,887],{},"Preview"," results on an interactive map, with each point plotted at its GPS location",[98,890,891,894],{},[66,892,893],{},"Download"," as CSV (coordinates appended to your original data), KML, Shapefile, GeoJSON, or DXF",[98,896,897,900],{},[66,898,899],{},"Check"," the processing report for any rows that didn't match a known parcel",[15,902,903],{},"The processing report is especially useful for data cleanup. If 15 out of 2,000 rows fail, you can fix the formatting on just those 15 and re-run them rather than re-processing the entire file.",[33,905,907],{"id":906},"export-formats","Export Formats",[15,909,910],{},"The batch converter outputs in six formats, depending on where you need the data next:",[95,912,913,919,925,931,937,943],{},[98,914,915,918],{},[66,916,917],{},"CSV"," — for spreadsheets, databases, or further processing",[98,920,921,924],{},[66,922,923],{},"KML"," — for Google Earth and Google Maps",[98,926,927,930],{},[66,928,929],{},"Shapefile"," — for ArcGIS, QGIS, and other GIS platforms",[98,932,933,936],{},[66,934,935],{},"GeoJSON"," — for web maps and developer workflows",[98,938,939,942],{},[66,940,941],{},"DXF"," — for AutoCAD and CAD software",[98,944,945,948],{},[66,946,947],{},"PDF"," — for printed reports and documentation",[15,950,951,952,956,957,220],{},"Export formats beyond PDF require a ",[22,953,955],{"href":954},"\u002Fpricing","Business plan",". For more on what you can do with downloaded results, see the ",[22,958,960],{"href":959},"\u002Fguides\u002Fdownload-results","download results guide",[33,962,964],{"id":963},"example-converting-a-lease-block","Example: Converting a Lease Block",[15,966,967,968,44,971,44,974,977],{},"An Alberta land department needs to convert 150 LSD locations for a lease block review near Drayton Valley. Their spreadsheet has entries like ",[28,969,970],{},"14-27-048-05W5",[28,972,973],{},"15-27-048-05W5",[28,975,976],{},"16-27-048-05W5"," — a cluster of LSDs in Township 48, Range 5, West of the 5th Meridian.",[15,979,980],{},"After uploading the CSV, the batch converter returns GPS coordinates for all 150 parcels in 12 seconds. The team downloads the results as a Shapefile, loads it into ArcGIS, and overlays it with pipeline and wellbore data. Three rows had typos (a township number that doesn't exist), which the processing report flagged for manual correction.",[33,982,984],{"id":983},"try-batch-conversion-now","Try Batch Conversion Now",[15,986,987,988,990,991,993,994,998],{},"Upload your own CSV to the ",[22,989,872],{"href":871}," and get GPS coordinates for every legal land description in your file. Or start with a single conversion — enter ",[66,992,668],{}," into the ",[22,995,997],{"href":996},"\u002F","search bar"," to see how it works.",[15,1000,1001,1002,1005,1006,1010,1011,220],{},"Batch conversion is available on ",[22,1003,1004],{"href":954},"Business plans",". For converting locations one at a time, see the ",[22,1007,1009],{"href":1008},"\u002Fhow-to\u002Flsd-finder","LSD finder"," or ",[22,1012,1014],{"href":1013},"\u002Fhow-to\u002Fdls-to-gps-converter","DLS to GPS converter",[15,1016,1017,1018,1022],{},"If your data already lives in Snowflake or Databricks, you can skip the CSV step entirely — Township Canada's ",[22,1019,1021],{"href":1020},"\u002Fblog\u002Fsnowflake-dls-enrichment","Snowflake External Function"," converts DLS locations to GPS coordinates directly inside SQL queries.",[15,1024,1025,1026,1030],{},"For developers building batch conversion into their own applications, the ",[22,1027,1029],{"href":1028},"\u002Fblog\u002Fintegrate-legal-land-description-api-canada","API integration tutorial"," covers the Batch API endpoint with code examples.",[15,1032,1033,1034,1038,1039,1042],{},"If your data lives in Google Sheets, the ",[22,1035,1037],{"href":1036},"\u002Fblog\u002Fgoogle-sheets-add-on-convert-legal-land-descriptions","Township Canada Google Sheets Add-On"," converts legal land descriptions to GPS coordinates directly in your spreadsheet — type ",[28,1040,1041],{},"=TOWNSHIP(A1)"," in any cell or use the sidebar batch converter for up to 200 descriptions at once.",{"title":90,"searchDepth":204,"depth":204,"links":1044},[1045,1046,1047,1052,1053,1054],{"id":778,"depth":204,"text":779},{"id":804,"depth":204,"text":805},{"id":841,"depth":204,"text":842,"children":1048},[1049,1050,1051],{"id":845,"depth":252,"text":846},{"id":864,"depth":252,"text":865},{"id":876,"depth":252,"text":877},{"id":906,"depth":204,"text":907},{"id":963,"depth":204,"text":964},{"id":983,"depth":204,"text":984},"Convert hundreds or thousands of legal land descriptions to GPS coordinates at once. Upload a CSV and get results in seconds.",[1057,1058,1059,1060,1061],"batch convert legal land descriptions","bulk lsd to gps","batch lld converter","convert multiple land descriptions","csv legal land description conversion",{"system":1063},"dls","alberta",{"title":763,"description":1055},"learn\u002Fhow-to\u002Fbatch-convert-legal-land-descriptions","Q0bvX5JmDbZSn5Pb2GGiJI_sslAYimgigbAUQ0l55AY",{"id":1069,"title":1070,"body":1071,"category":754,"createdAt":736,"cta":736,"description":1325,"extension":740,"icon":736,"industry":736,"keywords":1326,"meta":1333,"navigation":748,"path":751,"province":1064,"relatedPages":736,"section":736,"seo":1335,"stem":1336,"systems":736,"updatedAt":736,"__hash__":1337},"learn\u002Flearn\u002Fhow-to\u002Flsd-to-lat-long.md","How to Convert LSD to Lat\u002FLong — Step-by-Step Guide",{"type":7,"value":1072,"toc":1312},[1073,1077,1080,1084,1094,1097,1100,1126,1130,1134,1141,1145,1148,1167,1171,1181,1184,1188,1191,1210,1214,1217,1233,1238,1242,1251,1254,1263,1266,1268,1288,1299,1303],[10,1074,1076],{"id":1075},"how-to-convert-lsd-to-latlong","How to Convert LSD to Lat\u002FLong",[15,1078,1079],{},"This guide walks you through converting an LSD (Legal Subdivision) number to latitude and longitude coordinates. Whether you have one LSD or a thousand, Township Canada returns precise GPS coordinates calculated from official survey data.",[33,1081,1083],{"id":1082},"what-is-an-lsd-and-why-convert-it","What Is an LSD, and Why Convert It?",[15,1085,1086,1087,1090,1091,220],{},"An LSD is a 40-acre parcel within the Dominion Land Survey system, used across Alberta, Saskatchewan, and Manitoba. The format is ",[66,1088,1089],{},"LSD-Section-Township-Range-Meridian"," — for example, ",[28,1092,1093],{},"07-25-024-01W5",[15,1095,1096],{},"LSD numbers are the standard way land is referenced on well licenses, surface lease agreements, crop insurance documents, and rural property titles across the prairies. But an LSD number alone doesn't tell you where to drive, what to pin on a map, or how to import the location into GIS software. For that, you need latitude and longitude.",[15,1098,1099],{},"Common situations where LSD-to-lat\u002Flong conversion is needed:",[95,1101,1102,1108,1114,1120],{},[98,1103,1104,1107],{},[66,1105,1106],{},"Field crews"," planning routes to well sites or pipeline inspection points",[98,1109,1110,1113],{},[66,1111,1112],{},"Claims adjusters"," confirming the location of a rural property before a site visit",[98,1115,1116,1119],{},[66,1117,1118],{},"Land agents"," verifying that a title's LSD matches the property on a satellite image",[98,1121,1122,1125],{},[66,1123,1124],{},"GIS analysts"," importing hundreds of well locations into ArcGIS or QGIS",[33,1127,1129],{"id":1128},"step-by-step-convert-a-single-lsd","Step-by-Step: Convert a Single LSD",[58,1131,1133],{"id":1132},"step-1-go-to-township-canada","Step 1: Go to Township Canada",[15,1135,1136,1137,1140],{},"Open ",[22,1138,1139],{"href":996},"Township Canada"," in your browser. The search bar accepts LSD input directly.",[58,1142,1144],{"id":1143},"step-2-enter-the-lsd-number","Step 2: Enter the LSD Number",[15,1146,1147],{},"Type the LSD in any common format. Township Canada recognizes:",[95,1149,1150,1155,1161],{},[98,1151,1152,1154],{},[28,1153,1093],{}," (standard dash-separated)",[98,1156,1157,1160],{},[28,1158,1159],{},"7-25-24-1-W5"," (without leading zeros)",[98,1162,1163,1166],{},[28,1164,1165],{},"LSD 7 Sec 25 Twp 24 Rge 1 W5M"," (long-form)",[58,1168,1170],{"id":1169},"step-3-get-your-coordinates","Step 3: Get Your Coordinates",[15,1172,1173,1174,1176,1177,1180],{},"The converter returns the latitude and longitude for the center of that LSD parcel. For ",[28,1175,1093],{},", you'd get approximately ",[66,1178,1179],{},"51.28°N, 114.15°W"," — a location west of Calgary near Cochrane, Alberta.",[15,1182,1183],{},"You'll also see the LSD outlined on the map with the survey grid overlay, so you can visually confirm it's the right spot.",[58,1185,1187],{"id":1186},"step-4-use-the-coordinates","Step 4: Use the Coordinates",[15,1189,1190],{},"Once you have the lat\u002Flong, you can:",[95,1192,1193,1196,1204],{},[98,1194,1195],{},"Copy the coordinates to paste into Google Maps, GPS devices, or field apps",[98,1197,1198,1199,1203],{},"Get ",[22,1200,1202],{"href":1201},"\u002Fguides\u002Fdirections","turn-by-turn directions"," directly from Township Canada",[98,1205,1206,1207,198],{},"Export as PDF, CSV, KML, Shapefile, or GeoJSON for use in GIS and CAD software (see ",[22,1208,1209],{"href":959},"export options",[33,1211,1213],{"id":1212},"converting-multiple-lsds-at-once","Converting Multiple LSDs at Once",[15,1215,1216],{},"If you have a list of LSDs — say from a regulatory filing or a pipeline route plan — you don't need to convert them one at a time.",[1218,1219,1220,1223,1230],"ol",{},[98,1221,1222],{},"Prepare a CSV file with your LSD descriptions in one column",[98,1224,1225,1226],{},"Upload it to Township Canada's ",[22,1227,1229],{"href":1228},"\u002Fguides\u002Fbatch-conversion","batch converter",[98,1231,1232],{},"Get lat\u002Flong coordinates for every row, returned as a downloadable file",[15,1234,1235,1236,220],{},"The batch converter handles thousands of records in a single upload. This feature is available on the ",[22,1237,955],{"href":954},[33,1239,1241],{"id":1240},"example-conversion","Example Conversion",[15,1243,1244,1247,1248],{},[66,1245,1246],{},"Input",": ",[28,1249,1250],{},"14-08-042-26W4",[15,1252,1253],{},"This is Legal Subdivision 14, Section 8, Township 42, Range 26, West of the 4th Meridian.",[15,1255,1256,1259,1260],{},[66,1257,1258],{},"Output",": approximately ",[66,1261,1262],{},"52.45°N, 113.53°W",[15,1264,1265],{},"That places this parcel near Ponoka in central Alberta — an area with significant oil and gas activity and mixed farmland. If you were a landman verifying well site locations for a new drilling program, this conversion tells you exactly where to go.",[33,1267,659],{"id":658},[95,1269,1270,1276,1282],{},[98,1271,1272,1275],{},[66,1273,1274],{},"Confusing LSD with quarter section",": An LSD is 40 acres (1\u002F16 of a section). A quarter section is 160 acres (1\u002F4 of a section). Make sure your input includes the LSD number (1-16), not just the quarter section abbreviation (NE, NW, SE, SW).",[98,1277,1278,1281],{},[66,1279,1280],{},"Mixing up meridians",": The meridian determines which reference line your township-range grid is measured from. W4 and W5 cover Alberta; W2 and W3 cover Saskatchewan. A wrong meridian puts you in the wrong province.",[98,1283,1284,1287],{},[66,1285,1286],{},"Reversed section and township",": The correct order is LSD-Section-Township-Range-Meridian. Switching section and township gives you a valid-looking but completely wrong location.",[15,1289,1290,1291,1294,1295,220],{},"For a broader overview of finding LSD locations on a map, see our ",[22,1292,1293],{"href":1008},"LSD finder guide",". If you're working with quarter sections rather than LSDs, check out the ",[22,1296,1298],{"href":1297},"\u002Fhow-to\u002Fquarter-section-finder","quarter section finder",[33,1300,1302],{"id":1301},"try-it-now","Try It Now",[15,1304,1305,1306,993,1308,1311],{},"Enter ",[66,1307,1093],{},[22,1309,1310],{"href":996},"Township Canada converter"," to see the lat\u002Flong result instantly. Or paste in any LSD from your own records and get GPS coordinates in seconds.",{"title":90,"searchDepth":204,"depth":204,"links":1313},[1314,1315,1321,1322,1323,1324],{"id":1082,"depth":204,"text":1083},{"id":1128,"depth":204,"text":1129,"children":1316},[1317,1318,1319,1320],{"id":1132,"depth":252,"text":1133},{"id":1143,"depth":252,"text":1144},{"id":1169,"depth":252,"text":1170},{"id":1186,"depth":252,"text":1187},{"id":1212,"depth":204,"text":1213},{"id":1240,"depth":204,"text":1241},{"id":658,"depth":204,"text":659},{"id":1301,"depth":204,"text":1302},"Convert any LSD (Legal Subdivision) to latitude and longitude coordinates. Step-by-step instructions with examples for Alberta, Saskatchewan, and Manitoba.",[1327,1328,1329,1330,1331,1332],"lsd to lat long","lsd to latitude longitude","convert lsd to gps","lsd to coordinates","legal subdivision to lat long","lsd gps conversion",{"system":1334},"lsd",{"title":1070,"description":1325},"learn\u002Fhow-to\u002Flsd-to-lat-long","rdeqUpWAuGIiLCYqQEyQqRWkIovHzNXtzpzYGyknhQo",{"id":1339,"title":1340,"body":1341,"category":736,"createdAt":736,"cta":1626,"description":1629,"extension":740,"icon":736,"industry":1630,"keywords":1631,"meta":1638,"navigation":748,"path":752,"province":1639,"relatedPages":1640,"section":1641,"seo":1642,"stem":1643,"systems":1644,"updatedAt":736,"__hash__":1645},"learn\u002Flearn\u002Findustries\u002Fagriculture.md","Legal Land Descriptions for Agriculture",{"type":7,"value":1342,"toc":1611},[1343,1346,1349,1352,1356,1359,1362,1366,1370,1373,1380,1387,1394,1400,1404,1407,1414,1418,1422,1425,1428,1454,1457,1464,1468,1471,1485,1488,1492,1495,1504,1508,1516,1522,1530,1540,1544,1547,1567,1570,1577,1581,1589],[10,1344,1340],{"id":1345},"legal-land-descriptions-for-agriculture",[15,1347,1348],{},"Prairie agriculture runs on quarter sections. From crop insurance forms to land lease agreements to Property Assessment Management Agency records, every field, every parcel, and every legal transaction involving farmland in Alberta, Saskatchewan, and Manitoba is identified by a legal land description in the Dominion Land Survey system.",[15,1350,1351],{},"A farmer who works 4,000 acres is managing roughly 16 quarter sections. Each one has a DLS address. Knowing how to read and convert those addresses — and being able to move quickly between the paper description and a map on your phone — matters when you are filing a hail claim, negotiating a cash lease, or mapping the field boundaries before seeding.",[33,1353,1355],{"id":1354},"why-legal-land-descriptions-matter-in-agriculture","Why Legal Land Descriptions Matter in Agriculture",[15,1357,1358],{},"The quarter section is the fundamental unit of prairie land ownership and agricultural administration. Provincial governments, crop insurance agencies, lenders, and land registries all use DLS notation as the primary identifier for agricultural land.",[15,1360,1361],{},"When Saskatchewan Crop Insurance Corporation (SCIC) processes a hail claim, the claim references the quarter section. When Alberta Agriculture and Forestry issues a soil conservation notice, it references the legal land description. When a chartered bank writes a farm mortgage, the security is described using DLS notation from the title. The legal description isn't bureaucratic overhead — it's the shared language that connects a field in the ground to every document, database, and transaction that touches it.",[33,1363,1365],{"id":1364},"survey-systems-used-in-agriculture","Survey Systems Used in Agriculture",[58,1367,1369],{"id":1368},"dls-the-quarter-section-grid","DLS — The Quarter Section Grid",[15,1371,1372],{},"The Dominion Land Survey divides the prairies into townships (36 square miles), sections (one square mile, 640 acres), and quarter sections (160 acres). Agricultural land is primarily described at the quarter section level — Northeast, Northwest, Southeast, or Southwest — because that's how most parcels were originally homesteaded and titled.",[15,1374,1375,1376,1379],{},"A typical agricultural legal description looks like ",[66,1377,1378],{},"NW 22-037-14W3",": the Northwest quarter of Section 22, Township 37, Range 14, West of the 3rd Meridian. That puts the parcel in the Outlook, Saskatchewan area — prime dryland grain country.",[15,1381,1382,1383,1386],{},"For Alberta parcels, the same notation uses W4, W5, or W6 depending on location. A parcel in the Lacombe area might read ",[66,1384,1385],{},"SE 14-039-26W4",": Southeast quarter, Section 14, Township 39, Range 26, West of the 4th Meridian.",[15,1388,1389,1390,1393],{},"See ",[22,1391,1392],{"href":42},"Understanding the DLS System"," for a full breakdown of how the grid is organized.",[1395,1396],"marketing-dls-grid-diagrams",{"highlighted-lsd":1397,"highlighted-quarter":1398,"highlighted-section":1399},"9","NW","22",[58,1401,1403],{"id":1402},"lsd-finer-subdivision","LSD — Finer Subdivision",[15,1405,1406],{},"When a quarter section has been subdivided — for a farmyard, a dugout, a lease parcel, or a road allowance — the description may reference a Legal Subdivision (LSD). Each quarter section contains four 40-acre LSDs, numbered within the larger section grid.",[15,1408,1409,1410,1413],{},"Crop insurance agencies sometimes require LSD-level identification when a field crosses a quarter section boundary or when only part of a quarter section is being seeded. Surface lease agreements for grain bins, irrigation pivot corners, or communication towers often reference a specific LSD rather than the full quarter. See ",[22,1411,1412],{"href":47},"How LSDs Are Numbered"," for the numbering pattern.",[33,1415,1417],{"id":1416},"real-world-scenarios","Real-World Scenarios",[58,1419,1421],{"id":1420},"scenario-1-crop-insurance-filing","Scenario 1: Crop Insurance Filing",[15,1423,1424],{},"It's late July in Saskatchewan and a hailstorm cuts through three townships east of Saskatoon. A grain farmer files a claim with SCIC covering damage across five fields. The claim form asks for the legal land description of each affected field.",[15,1426,1427],{},"The farmer's fields are:",[95,1429,1430,1436,1442,1448],{},[98,1431,1432,1435],{},[66,1433,1434],{},"NW 14-037-02W3"," — 155 acres spring wheat",[98,1437,1438,1441],{},[66,1439,1440],{},"SE 14-037-02W3"," — 160 acres canola",[98,1443,1444,1447],{},[66,1445,1446],{},"NE 23-037-02W3"," — 160 acres barley",[98,1449,1450,1453],{},[66,1451,1452],{},"SW 23-037-02W3"," — partial, 80 acres seeded",[15,1455,1456],{},"Each description identifies the parcel precisely for the SCIC adjuster who will visit the site. The adjuster uses the legal land description to pull the field boundary from provincial mapping, verify which crops were reported for that parcel, and navigate to the field using GPS coordinates. Township Canada converts each quarter section to GPS for both the farmer and the adjuster, eliminating any ambiguity about which field is which.",[15,1458,1459,1460,1463],{},"Try the ",[22,1461,1298],{"href":1462},"\u002Flearn\u002Fhow-to\u002Fquarter-section-finder"," to locate any NW, SE, NE, or SW quarter in the DLS grid.",[58,1465,1467],{"id":1466},"scenario-2-land-lease-agreement","Scenario 2: Land Lease Agreement",[15,1469,1470],{},"A farmer is renting two quarter sections from a neighbour who is semi-retired. The cash lease agreement needs to identify the land precisely enough to be legally enforceable. A description like \"the north two quarters at the corner of Highway 15 and the grid road\" is not adequate for a title document or a dispute resolution.",[15,1472,1473,1474,1477,1478,1481,1482,1484],{},"The legal description for the lease is drawn from the current title: ",[66,1475,1476],{},"NE 08-040-18W4"," and ",[66,1479,1480],{},"NW 08-040-18W4",", both in the Ponoka County area of Alberta. Enter those into ",[22,1483,1139],{"href":996}," to confirm the parcels, generate a map for the lease schedule, and verify that both parcels share a common boundary before signing.",[15,1486,1487],{},"Lenders financing the operation also want the DLS description on the security agreement. A clear legal description means no ambiguity if the lease or the loan goes to dispute.",[58,1489,1491],{"id":1490},"scenario-3-field-mapping-before-seeding","Scenario 3: Field Mapping Before Seeding",[15,1493,1494],{},"A farm manager is organizing the spring seeding plan across 22 quarter sections spread over three townships. Some fields have irregular shapes due to sloughs, road allowances, and municipal drains. Before assigning seeding crews and equipment to each block, the manager wants a map showing every parcel with GPS boundaries and area calculations.",[15,1496,1497,1498,1500,1501,1503],{},"Convert the full list of quarter sections through the ",[22,1499,1229],{"href":871}," to get GPS corner coordinates for each parcel. Export as KML and load into the farm management software to build the seeding map. Fields with internal obstacles can be flagged for adjusted seeding rates. For large farm operations running many quarters, the batch converter on the ",[22,1502,955],{"href":954}," handles the full list in one pass.",[33,1505,1507],{"id":1506},"how-township-canada-handles-agricultural-workflows","How Township Canada Handles Agricultural Workflows",[15,1509,1510,1513,1514,220],{},[66,1511,1512],{},"Quarter section lookup",": Enter any NW, NE, SW, or SE quarter in DLS format and get GPS coordinates for the parcel centre and corners. The map view shows surrounding parcels and landmarks. Use the ",[22,1515,1298],{"href":1462},[15,1517,1518,1521],{},[66,1519,1520],{},"Field verification",": Compare what a title says to what the GPS shows. If someone describes a parcel as \"the south half of Section 22, Township 37,\" Township Canada breaks it into the SE and SW quarters and shows both on the map.",[15,1523,1524,1527,1528,220],{},[66,1525,1526],{},"Batch conversion for lease schedules",": Upload a list of quarter sections from an annual crop input plan or a rental portfolio and download the GPS coordinates in one operation. Try ",[22,1529,871],{"href":871},[15,1531,1532,1535,1536,1539],{},[66,1533,1534],{},"LSD lookup for subdivided parcels",": When a crop insurance form or surface lease references a specific LSD rather than a full quarter, use the ",[22,1537,1009],{"href":1538},"\u002Flearn\u002Fhow-to\u002Flsd-finder"," to locate the exact 40-acre parcel.",[33,1541,1543],{"id":1542},"alberta-saskatchewan-and-manitoba-same-system-different-meridians","Alberta, Saskatchewan, and Manitoba — Same System, Different Meridians",[15,1545,1546],{},"The DLS grid covers all three prairie provinces, but the meridian changes as you move east:",[95,1548,1549,1555,1561],{},[98,1550,1551,1554],{},[66,1552,1553],{},"Alberta",": W4, W5, W6 (W4 along the SK border, W5 through central Alberta, W6 near the BC border)",[98,1556,1557,1560],{},[66,1558,1559],{},"Saskatchewan",": W2 (east) and W3 (west)",[98,1562,1563,1566],{},[66,1564,1565],{},"Manitoba",": W1 (most of the province)",[15,1568,1569],{},"A Saskatchewan land description will almost always end in W2 or W3. An Alberta description ends in W4, W5, or W6. If you receive a description without a meridian, the province of origin usually narrows it down. But always confirm — a W2 location in Saskatchewan and a W2-equivalent misread in Alberta would land you in completely different farming regions.",[15,1571,1389,1572,1576],{},[22,1573,1575],{"href":1574},"\u002Flearn\u002Fprovinces\u002Fsaskatchewan","Understanding Prairie Provinces and the DLS"," for province-specific detail.",[33,1578,1580],{"id":1579},"try-it-with-an-agricultural-location","Try It with an Agricultural Location",[15,1582,1305,1583,993,1586,1588],{},[66,1584,1585],{},"NW-22-037-14W3",[22,1587,1310],{"href":996}," to see a typical Saskatchewan dryland grain quarter. The result shows the parcel on the survey grid with GPS coordinates for the centre and corners — ready for a crop insurance form, a land lease schedule, or a seeding map.",[15,1590,1591,1592,1594,1595,1597,1598,1600,1601,1603,1604,1606,1607,1610],{},"For individual quarter sections, use the ",[22,1593,1298],{"href":1462},". For LSD-level lookups on subdivided parcels, try the ",[22,1596,1009],{"href":1538},". For full farm portfolios across many quarters, the ",[22,1599,1229],{"href":871}," is the fastest option on a ",[22,1602,955],{"href":954},". If your quarter section data is already in Google Sheets, the ",[22,1605,1037],{"href":1036}," lets you convert descriptions to GPS coordinates directly in your spreadsheet with ",[28,1608,1609],{},"=TOWNSHIP()"," formulas.",{"title":90,"searchDepth":204,"depth":204,"links":1612},[1613,1614,1618,1623,1624,1625],{"id":1354,"depth":204,"text":1355},{"id":1364,"depth":204,"text":1365,"children":1615},[1616,1617],{"id":1368,"depth":252,"text":1369},{"id":1402,"depth":252,"text":1403},{"id":1416,"depth":204,"text":1417,"children":1619},[1620,1621,1622],{"id":1420,"depth":252,"text":1421},{"id":1466,"depth":252,"text":1467},{"id":1490,"depth":252,"text":1491},{"id":1506,"depth":204,"text":1507},{"id":1542,"depth":204,"text":1543},{"id":1579,"depth":204,"text":1580},{"label":1627,"href":1628},"Find your quarter section","\u002F?example=NW-22-037-14W3","How farmers, agrologists, and agricultural lenders use DLS and LSD legal land descriptions for crop insurance, land leases, and field mapping across the prairies.","agriculture",[1632,1633,1634,1635,1636,1637],"agriculture legal land description","quarter section farming","crop insurance LSD","land lease legal description","field mapping DLS","Saskatchewan quarter section",{},"saskatchewan",[42,47,1574,1462],"industries",{"title":1340,"description":1629},"learn\u002Findustries\u002Fagriculture",[43,48],"0RPAuYg19Og8AzDw_hiIQoLSDG0MaT6usux17dh7bYs"]