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\u003eThis function finds the starting position of the last occurrence of a target list within another list.\u003c/p\u003e\n"],["\u003cp\u003eIf the target list is not found within the main list, it returns -1.\u003c/p\u003e\n"],["\u003cp\u003eIt is used specifically for searching for a sublist within a larger list.\u003c/p\u003e\n"],["\u003cp\u003eThe function is called on a list object and takes the target list as an argument.\u003c/p\u003e\n"],["\u003cp\u003eThe return value is always an integer representing the index of the last occurrence or -1 if not found.\u003c/p\u003e\n"]]],["The `lastIndexOfSubList` function searches a list for the last occurrence of a target sublist. It takes two arguments: the main list and the target sublist. The function returns an integer representing the starting index of the target's last occurrence within the list. If the target is not found, it returns -1. The function is designed for lists and sublists.\n"],null,["# ee.List.lastIndexOfSubList\n\nReturns the starting position of the last occurrence of target within list, or -1 if there is no such occurrence.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|-----------------------------------|---------|\n| List.lastIndexOfSubList`(target)` | Integer |\n\n| Argument | Type | Details |\n|--------------|------|---------|\n| this: `list` | List | |\n| `target` | List | |"]]