diff --git a/clouds/snowflake/libraries/javascript/libs/h3_polyfill.js b/clouds/snowflake/libraries/javascript/libs/h3_polyfill.js index 93f3f60c0..aede4db5c 100644 --- a/clouds/snowflake/libraries/javascript/libs/h3_polyfill.js +++ b/clouds/snowflake/libraries/javascript/libs/h3_polyfill.js @@ -4,4 +4,4 @@ export default { polygon, intersect, geometryCollection -}; +}; \ No newline at end of file diff --git a/clouds/snowflake/libraries/javascript/test/h3.test.js b/clouds/snowflake/libraries/javascript/test/h3.test.js index ef089fa8f..7344fb74c 100644 --- a/clouds/snowflake/libraries/javascript/test/h3.test.js +++ b/clouds/snowflake/libraries/javascript/test/h3.test.js @@ -13,4 +13,4 @@ test('h3 library defined', () => { expect(isPentagonLib.h3IsPentagon).toBeDefined(); expect(kringDistancesLib.h3Distance).toBeDefined(); expect(uncompactLib.uncompact).toBeDefined(); -}); +}); \ No newline at end of file diff --git a/clouds/snowflake/modules/doc/h3/H3_POLYFILL.md b/clouds/snowflake/modules/doc/h3/H3_POLYFILL.md index a2855556a..2ba1d21cd 100644 --- a/clouds/snowflake/modules/doc/h3/H3_POLYFILL.md +++ b/clouds/snowflake/modules/doc/h3/H3_POLYFILL.md @@ -8,7 +8,7 @@ H3_POLYFILL(geography, resolution) Returns an array with all the H3 cell indexes **with centers** contained in a given polygon. It will return `null` on error (invalid geography type or resolution out of bounds). -* `geography`: `GEOGRAPHY` **polygon** or **multipolygon** representing the shape to cover. **GeometryCollections** are also allowed but they must only contain **polygon** or **multipolygon** geographies. +* `geography`: `GEOGRAPHY` **polygon** or **multipolygon** representing the shape to cover. **GeometryCollections** are also allowed but they should contain **polygon** or **multipolygon** geographies. Non-Polygon types will not raise an error but will be ignored instead. * `resolution`: `INT` number between 0 and 15 with the [H3 resolution](https://h3geo.org/docs/core-library/restable). **Return type**