ee.Number.bitwiseAnd

מחשבת את הפעולה הבינארית AND של ערכי הקלט.

שימושהחזרות
Number.bitwiseAnd(right)מספר
ארגומנטסוגפרטים
זה: leftמספרהערך בצד ימין.
rightמספרהערך בצד שמאל.

דוגמאות

עורך הקוד (JavaScript)

/**
 * Unsigned 8-bit type example.
 *
 * 25 as binary:   00011001
 * 21 as binary:   00010101
 * Both digits 1?: 00010001
 *
 * 00010001 is unsigned 8-bit binary for 17.
 */

print(ee.Number(25).bitwiseAnd(21));

הגדרת Python

מידע על Python API ועל שימוש ב-geemap לפיתוח אינטראקטיבי מופיע בדף Python Environment.

import ee
import geemap.core as geemap

Colab (Python)

"""Unsigned 8-bit type example.

25 as binary:   00011001
21 as binary:   00010101
Both digits 1?: 00010001

00010001 is unsigned 8-bit binary for 17.
"""

print(ee.Number(25).bitwiseAnd(21).getInfo())