Announcement: All noncommercial projects registered to use Earth Engine before April 15, 2025 must verify noncommercial eligibility to maintain Earth Engine access.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2023-10-06 UTC."],[[["\u003cp\u003e\u003ccode\u003eee.Number()\u003c/code\u003e constructs a new Earth Engine Number object from a number or a computed object.\u003c/p\u003e\n"],["\u003cp\u003eIt accepts a single argument, which can be a JavaScript Number, a Python number, or a computed object that resolves to a number.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eee.Number()\u003c/code\u003e is used in both JavaScript and Python Earth Engine APIs to create and manipulate numerical values in Earth Engine computations.\u003c/p\u003e\n"],["\u003cp\u003eYou can print or get the information of the created \u003ccode\u003eee.Number\u003c/code\u003e object using the print function in JavaScript or the \u003ccode\u003egetInfo()\u003c/code\u003e method in Python.\u003c/p\u003e\n"]]],[],null,["\u003cbr /\u003e\n\nConstructs a new Number.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|---------------------|---------|\n| `ee.Number(number)` | Number |\n\n| Argument | Type | Details |\n|----------|----------------|--------------------------------|\n| `number` | Number\\|Object | A number or a computed object. |\n\nExamples\n\nCode Editor (JavaScript) \n\n```javascript\nprint(ee.Number(0)); // 0\nprint(ee.Number(1)); // 1\nprint(ee.Number(0.0)); // 0\nprint(ee.Number(1.0)); // 1\nprint(ee.Number(-1.0)); // -1\nprint(ee.Number(Math.PI)); // 3.141592653589793\nprint(ee.Number(1.2e-35)); // 1.2e-35\nprint(ee.Number(3.4e10)); // 34000000000\n```\nPython setup\n\nSee the [Python Environment](/earth-engine/guides/python_install) page for information on the Python API and using\n`geemap` for interactive development. \n\n```python\nimport ee\nimport geemap.core as geemap\n```\n\nColab (Python) \n\n```python\nimport math\n\nprint(ee.Number(0).getInfo()) # 0\nprint(ee.Number(1).getInfo()) # 1\nprint(ee.Number(0.0).getInfo()) # 0\nprint(ee.Number(1.0).getInfo()) # 1\nprint(ee.Number(-1.0).getInfo()) # -1\nprint(ee.Number(math.pi).getInfo()) # 3.141592653589793\nprint(ee.Number(1.2e-35).getInfo()) # 1.2e-35\nprint(ee.Number(3.4e10).getInfo()) # 34000000000\n```"]]