お知らせ:
2025 年 4 月 15 日より前に Earth Engine の使用を登録したすべての非商用プロジェクトは、Earth Engine へのアクセスを維持するために
非商用目的での利用資格を確認する必要があります。
ee.Number.log10
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
入力の 10 を底とする対数を計算します。
例
コードエディタ(JavaScript)
print(ee.Number(0.1).log10()); // -1
print(ee.Number(1).log10()); // 0
print(ee.Number(10).log10()); // 1
print(ee.Number(100).log10()); // 2
Python の設定
Python API とインタラクティブな開発での geemap
の使用については、
Python 環境のページをご覧ください。
import ee
import geemap.core as geemap
Colab(Python)
print(ee.Number(0.1).log10().getInfo()) # -1
print(ee.Number(1).log10().getInfo()) # 0
print(ee.Number(10).log10().getInfo()) # 1
print(ee.Number(100).log10().getInfo()) # 2
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-26 UTC。
[null,null,["最終更新日 2025-07-26 UTC。"],[[["\u003cp\u003eThis function calculates the base-10 logarithm of a given number.\u003c/p\u003e\n"],["\u003cp\u003eThe input is a number, and the output is the base-10 logarithm of that number.\u003c/p\u003e\n"],["\u003cp\u003eExamples are provided in both JavaScript and Python demonstrating the usage of this function.\u003c/p\u003e\n"]]],[],null,["# ee.Number.log10\n\nComputes the base-10 logarithm of the input.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|------------------|---------|\n| Number.log10`()` | Number |\n\n| Argument | Type | Details |\n|---------------|--------|------------------|\n| this: `input` | Number | The input value. |\n\nExamples\n--------\n\n### Code Editor (JavaScript)\n\n```javascript\nprint(ee.Number(0.1).log10()); // -1\nprint(ee.Number(1).log10()); // 0\nprint(ee.Number(10).log10()); // 1\nprint(ee.Number(100).log10()); // 2\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\n### Colab (Python)\n\n```python\nprint(ee.Number(0.1).log10().getInfo()) # -1\nprint(ee.Number(1).log10().getInfo()) # 0\nprint(ee.Number(10).log10().getInfo()) # 1\nprint(ee.Number(100).log10().getInfo()) # 2\n```"]]