Comparing version 3.0.15 to 3.0.16
{ | ||
"name": "@turf/tag", | ||
"version": "3.0.15", | ||
"version": "3.0.16", | ||
"description": "turf tag module", | ||
@@ -11,3 +11,3 @@ "main": "index.js", | ||
"type": "git", | ||
"url": "https://github.com/Turfjs/turf-tag.git" | ||
"url": "git://github.com/Turfjs/turf.git" | ||
}, | ||
@@ -27,7 +27,7 @@ "keywords": [ | ||
"bugs": { | ||
"url": "https://github.com/Turfjs/turf-tag/issues" | ||
"url": "https://github.com/Turfjs/turf/issues" | ||
}, | ||
"homepage": "https://github.com/Turfjs/turf-tag", | ||
"homepage": "https://github.com/Turfjs/turf", | ||
"dependencies": { | ||
"@turf/inside": "^3.0.15" | ||
"@turf/inside": "^3.0.16" | ||
}, | ||
@@ -34,0 +34,0 @@ "devDependencies": { |
@@ -1,11 +0,11 @@ | ||
# turf-tag | ||
# @turf/tag | ||
# tag | ||
Takes a set of [points](Point) and a set of [polygons](Polygon) and performs a spatial join. | ||
Takes a set of [points](http://geojson.org/geojson-spec.html#point) and a set of [polygons](http://geojson.org/geojson-spec.html#polygon) and performs a spatial join. | ||
**Parameters** | ||
- `points` **FeatureCollection<Point>** input points | ||
- `polygons` **FeatureCollection<Polygon>** input polygons | ||
- `points` **[FeatureCollection](http://geojson.org/geojson-spec.html#feature-collection-objects)<[Point](http://geojson.org/geojson-spec.html#point)>** input points | ||
- `polygons` **[FeatureCollection](http://geojson.org/geojson-spec.html#feature-collection-objects)<[Polygon](http://geojson.org/geojson-spec.html#polygon)>** input polygons | ||
- `field` **[string](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String)** property in `polygons` to add to joined Point features | ||
@@ -42,3 +42,3 @@ - `outField` **[string](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String)** property in `points` in which to store joined property from \`polygons | ||
Returns **FeatureCollection<Point>** points with `containingPolyId` property containing values from `polyId` | ||
Returns **[FeatureCollection](http://geojson.org/geojson-spec.html#feature-collection-objects)<[Point](http://geojson.org/geojson-spec.html#point)>** points with `containingPolyId` property containing values from `polyId` | ||
@@ -57,3 +57,3 @@ --- | ||
```sh | ||
$ npm install turf-tag | ||
$ npm install @turf/tag | ||
``` | ||
@@ -64,3 +64,3 @@ | ||
```sh | ||
$ npm install turf | ||
$ npm install @turf/turf | ||
``` |
7261
Updated@turf/inside@^3.0.16