Announcement: All noncommercial projects registered to use Earth Engine before April 15, 2025 must verify noncommercial eligibility to maintain Earth Engine access.
Stay organized with collections
Save and categorize content based on your preferences.
Generate a sequence of numbers from start to end (inclusive) in increments of step, or in count equally-spaced increments. If end is not specified it is computed from start + step * count, so at least one of end or count must be specified.
[[["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 2024-07-13 UTC."],[[["`ee.List.sequence` generates a list of numbers within a specified range, determined by `start`, `end`, `step`, and `count` parameters."],["You must define either the `end` or `count` parameter alongside the `start` parameter to determine the sequence range."],["The `step` parameter defines the increment between numbers in the sequence and defaults to 1 if not specified."],["When both `step` and `count` are specified, `step` is ignored and the sequence is divided into equally spaced increments based on `count`."],["You can provide arguments as a dictionary using keys like `start`, `end`, `step`, and `count` for better readability."]]],[]]