Anuncio: Todos los proyectos no comerciales registrados para usar Earth Engine antes del
15 de abril de 2025 deben
verificar su elegibilidad no comercial para mantener el acceso a Earth Engine.
ee.Filter.intersects
Organiza tus páginas con colecciones
Guarda y categoriza el contenido según tus preferencias.
Crea un filtro unario o binario que se aprueba si la geometría de la izquierda interseca la geometría de la derecha.
Uso | Muestra |
---|
ee.Filter.intersects(leftField, rightValue, rightField, leftValue, maxError) | Filtro |
Argumento | Tipo | Detalles |
---|
leftField | Cadena, valor predeterminado: nulo | Es un selector para el operando izquierdo. No se debe especificar si se indica leftValue. |
rightValue | Objeto, valor predeterminado: nulo | Es el valor del operando derecho. No se debe especificar si se indica rightField. |
rightField | Cadena, valor predeterminado: nulo | Es un selector para el operando derecho. No se debe especificar si se indica rightValue. |
leftValue | Objeto, valor predeterminado: nulo | Es el valor del operando izquierdo. No se debe especificar si se indica leftField. |
maxError | ErrorMargin, opcional | Es el error de reproyección máximo permitido durante la aplicación del filtro. |
Salvo que se indique lo contrario, el contenido de esta página está sujeto a la licencia Atribución 4.0 de Creative Commons, y los ejemplos de código están sujetos a la licencia Apache 2.0. Para obtener más información, consulta las políticas del sitio de Google Developers. Java es una marca registrada de Oracle o sus afiliados.
Última actualización: 2025-07-26 (UTC)
[null,null,["Última actualización: 2025-07-26 (UTC)"],[[["\u003cp\u003eDefines a filter that selects geometries intersecting with another geometry, specified by either a field or a direct value.\u003c/p\u003e\n"],["\u003cp\u003eAllows for specifying both left and right operands using fields or values, but not both for the same side.\u003c/p\u003e\n"],["\u003cp\u003eAccepts an optional \u003ccode\u003emaxError\u003c/code\u003e parameter to control the allowed reprojection error during filtering.\u003c/p\u003e\n"]]],[],null,["# ee.Filter.intersects\n\nCreates a unary or binary filter that passes if the left geometry intersects the right geometry.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|--------------------------------------------------------------------------------------------------------|---------|\n| `ee.Filter.intersects(`*leftField* `, `*rightValue* `, `*rightField* `, `*leftValue* `, `*maxError*`)` | Filter |\n\n| Argument | Type | Details |\n|--------------|-----------------------|---------------------------------------------------------------------------------------|\n| `leftField` | String, default: null | A selector for the left operand. Should not be specified if leftValue is specified. |\n| `rightValue` | Object, default: null | The value of the right operand. Should not be specified if rightField is specified. |\n| `rightField` | String, default: null | A selector for the right operand. Should not be specified if rightValue is specified. |\n| `leftValue` | Object, default: null | The value of the left operand. Should not be specified if leftField is specified. |\n| `maxError` | ErrorMargin, optional | The maximum reprojection error allowed during filter application. |"]]