Docsity
Docsity

Prepare for your exams
Prepare for your exams

Study with the several resources on Docsity


Earn points to download
Earn points to download

Earn points by helping other students or get them with a premium plan


Guidelines and tips
Guidelines and tips

Conversion of Land Units in Agriculture: Acres to Hectares and Poles, Lecture notes of Elementary Mathematics

Information on the conversion of land units from acres to hectares and poles. It includes the size of one acre, one hectare, one pole, and one rope, as well as the conversion factors. The document also includes conditional statements for calculating the available, cultivated, and harvested land based on user input.

What you will learn

  • What is the size of one hectare in acres?
  • How many square yards are in one pole?
  • What is the size of one acre in square yards?

Typology: Lecture notes

2021/2022

Uploaded on 09/12/2022

shekhar_hin
shekhar_hin 🇺🇸

4.9

(9)

226 documents

1 / 2

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
*** ACRES... standard unit. ***
***HECTARES .... 1 hectare is 2.5 acres***
** POLES 1pole is 210feet by 210 feet, so 70 yards by 70 yards, so 4,900
square yards. 1 pole = 1.01 acres **
*** one ROPE 1 rope is 75 feet by 75 feet, or 25 yards by 25 yards... so 625
square yards. 1 rope = 0.12913
*** one plot... we don't know... it's only a few, so we'll just equate it to an
acre for now....
***** for 'other' it is always 'very small land', one says 6 meters squared (36
square meters), so about .01 acres...
IF (s4q3b=1) LandAvailable=s4q3a*2.5.
EXECUTE.
IF (s4q3b=2) LandAvailable=s4q3a.
EXECUTE.
IF (s4q3b=3) LandAvailable=s4q3a*1.01.
EXECUTE.
IF (s4q3b=4) LandAvailable=s4q3a* 0.12913.
EXECUTE.
IF (s4q3b=5) LandAvailable=s4q3a .
EXECUTE.
IF (s4q3b=6) LandAvailable=.01.
EXECUTE.
****** land cultivated 2008 ag season*****
IF (s4q4b=1) LandCultivated=s4q4a*2.5.
EXECUTE.
IF (s4q4b=2) LandCultivated=s4q4a.
EXECUTE.
IF (s4q4b=3) LandCultivated=s4q4a*1.01.
EXECUTE.
IF (s4q4b=4) LandCultivated=s4q4a* 0.12913.
EXECUTE.
IF (s4q4b=5) LandCultivated=s4q4a .
EXECUTE.
IF (s4q4b=6) LandCultivated=.01.
EXECUTE.
**** land harvested 2008 ag season ***
IF (s4q5b=1) LandHarvested=s4q5a*2.5.
EXECUTE.
IF (s4q5b=2) LandHarvested=s4q5a.
EXECUTE.
IF (s4q5b=3) LandHarvested=s4q5a*1.01.
EXECUTE.
IF (s4q5b=4) LandHarvested=s4q5a* 0.12913.
EXECUTE.
pf2

Partial preview of the text

Download Conversion of Land Units in Agriculture: Acres to Hectares and Poles and more Lecture notes Elementary Mathematics in PDF only on Docsity!

*** ACRES... standard unit. *** HECTARES .... 1 hectare is 2.5 acres ** POLES 1pole is 210feet by 210 feet, so 70 yards by 70 yards, so 4, square yards. 1 pole = 1.01 acres ** *** one ROPE 1 rope is 75 feet by 75 feet, or 25 yards by 25 yards... so 625 square yards. 1 rope = 0. *** one plot... we don't know... it's only a few, so we'll just equate it to an acre for now.... ***** for 'other' it is always 'very small land', one says 6 meters squared ( square meters), so about .01 acres... IF (s4q3b=1) LandAvailable=s4q3a2.5. EXECUTE. IF (s4q3b=2) LandAvailable=s4q3a. EXECUTE. IF (s4q3b=3) LandAvailable=s4q3a1.01. EXECUTE. IF (s4q3b=4) LandAvailable=s4q3a* 0.12913. EXECUTE. IF (s4q3b=5) LandAvailable=s4q3a. EXECUTE. IF (s4q3b=6) LandAvailable=.01. EXECUTE. ****** land cultivated 2008 ag season***** IF (s4q4b=1) LandCultivated=s4q4a2.5. EXECUTE. IF (s4q4b=2) LandCultivated=s4q4a. EXECUTE. IF (s4q4b=3) LandCultivated=s4q4a1.01. EXECUTE. IF (s4q4b=4) LandCultivated=s4q4a* 0.12913. EXECUTE. IF (s4q4b=5) LandCultivated=s4q4a. EXECUTE. IF (s4q4b=6) LandCultivated=.01. EXECUTE. **** land harvested 2008 ag season *** IF (s4q5b=1) LandHarvested=s4q5a2.5. EXECUTE. IF (s4q5b=2) LandHarvested=s4q5a. EXECUTE. IF (s4q5b=3) LandHarvested=s4q5a1.01. EXECUTE. IF (s4q5b=4) LandHarvested=s4q5a* 0.12913. EXECUTE.

IF (s4q5b=5) LandHarvested=s4q5a. EXECUTE. IF (s4q5b=6) LandHarvested=.01. EXECUTE. ****************************************************** looking at agricultural land only*********** USE ALL. COMPUTE filter_$=(s4q1 = 1). VARIABLE LABEL filter_$ 's4q1 = 1 (FILTER)'. VALUE LABELS filter_$ 0 'Not Selected' 1 'Selected'. FORMAT filter_$ (f1.0). FILTER BY filter_$. EXECUTE. CROSSTABS /TABLES=STRATA region ez EZUrbRur FCG.28.42.52 WI_quintiles Livelihood FHH BY s4q /FORMAT=AVALUE TABLES /CELLS=row /COUNT ROUND CELL.