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\u003eserialize()\u003c/code\u003e returns a string representation of a given \u003ccode\u003eFeatureCollection\u003c/code\u003e object.\u003c/p\u003e\n"],["\u003cp\u003eThis method can be used with an optional \u003ccode\u003elegacy\u003c/code\u003e Boolean argument to enable legacy formatting.\u003c/p\u003e\n"],["\u003cp\u003eExample code snippets are provided in JavaScript, Python, and Colab to demonstrate the usage of \u003ccode\u003eserialize()\u003c/code\u003e.\u003c/p\u003e\n"]]],["The `serialize()` method returns a string representation of a `FeatureCollection` object. It accepts an optional boolean argument, `legacy`, to enable a legacy format. The method is demonstrated using a `FeatureCollection` of Belgian power plants, filtered by the condition `country_lg == \"Belgium\"`. The examples show how to apply this function using both JavaScript (Code Editor) and Python (Colab) to generate a serialized string output.\n"],null,["\u003cbr /\u003e\n\nReturns the serialized representation of this object.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|-------------------------------------------|---------|\n| FeatureCollection.serialize`(`*legacy*`)` | String |\n\n| Argument | Type | Details |\n|------------------------|-------------------|------------------------------|\n| this: `computedobject` | ComputedObject | The ComputedObject instance. |\n| `legacy` | Boolean, optional | Enables legacy format. |\n\nExamples\n\nCode Editor (JavaScript) \n\n```javascript\n// FeatureCollection of power plants in Belgium.\nvar fc = ee.FeatureCollection('WRI/GPPD/power_plants')\n .filter('country_lg == \"Belgium\"');\n\nprint('Serialized representation of ee.FeatureCollection', fc.serialize());\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\n# FeatureCollection of power plants in Belgium.\nfc = ee.FeatureCollection('WRI/GPPD/power_plants').filter(\n 'country_lg == \"Belgium\"')\n\nprint('Serialized representation of ee.FeatureCollection:',\n fc.serialize())\n```"]]