-
Notifications
You must be signed in to change notification settings - Fork 123
Metadata PR for category: Geometry #378
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
tschie
merged 6 commits into
Esri:tschie/split
from
ChrisFrenchPDX:cff/metadata-review-geometry
Jul 3, 2019
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
14f9a7f
Metadata PR for category: Geometry
ChrisFrenchPDX 0ed0085
Update README.metadata.json
tschie 0b986fc
Update README.metadata.json
tschie ed77dd5
Update README.metadata.json
tschie 5fb4838
Update README.metadata.json
tschie e9eca9a
Update README.metadata.json
tschie File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"category": "Geometry", | ||
"description": "Combine buffers from multiple points individual buffer distances.", | ||
"ignore": false, | ||
"images": [ | ||
"BufferList.png" | ||
], | ||
"keywords": [ | ||
"Analysis", | ||
"Buffer", | ||
"GeometryEngine", | ||
"GeometryEngine" | ||
], | ||
"redirect_from": "/java/latest/sample-code/buffer-list.htm", | ||
"relevant_apis": [ | ||
"GeometryEngine" | ||
], | ||
"snippets": [ | ||
"src/main/java/com/esri/samples/buffer_list/BufferListSample.java", | ||
"src/main/java/com/esri/samples/buffer_list/BufferListLauncher.java" | ||
], | ||
"title": "Buffer list" | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"category": "Geometry", | ||
"description": "Create geodesic and planar buffers around a point.", | ||
"ignore": false, | ||
"images": [ | ||
"Buffer.png" | ||
], | ||
"keywords": [ | ||
"GeometryEngine", | ||
"GraphicsOverlay", | ||
"Point", | ||
"Polygon" | ||
], | ||
"redirect_from": "/java/latest/sample-code/buffer.htm", | ||
"relevant_apis": [ | ||
"GeometryEngine", | ||
"GraphicsOverlay", | ||
"Point", | ||
"Polygon" | ||
], | ||
"snippets": [ | ||
"src/main/java/com/esri/samples/buffer/BufferLauncher.java", | ||
"src/main/java/com/esri/samples/buffer/BufferSample.java" | ||
], | ||
"title": "Buffer" | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
{ | ||
"category": "Geometry", | ||
"description": "Clip a geometry to an envelope.", | ||
"ignore": false, | ||
"images": [ | ||
"ClipGeometry.png" | ||
], | ||
"keywords": [ | ||
"ArcGISMap", | ||
"Basemap", | ||
"Envelope", | ||
"Geometry", | ||
"GeometryEngine", | ||
"Graphic", | ||
"GraphicsOverlay", | ||
"MapView", | ||
"Point", | ||
"PointCollection", | ||
"Polygon", | ||
"Polyline", | ||
"SimpleFillSymbol", | ||
"SimpleLineSymbol", | ||
"SpatialReferences" | ||
], | ||
"redirect_from": "/java/latest/sample-code/clip-geometry.htm", | ||
"relevant_apis": [ | ||
"ArcGISMap", | ||
"Basemap", | ||
"Envelope", | ||
"Geometry", | ||
"GeometryEngine", | ||
"Graphic", | ||
"GraphicsOverlay", | ||
"MapView", | ||
"Point", | ||
"PointCollection", | ||
"Polygon", | ||
"Polyline", | ||
"SimpleFillSymbol", | ||
"SimpleLineSymbol", | ||
"SpatialReferences" | ||
], | ||
"snippets": [ | ||
"src/main/java/com/esri/samples/clip_geometry/ClipGeometryLauncher.java", | ||
"src/main/java/com/esri/samples/clip_geometry/ClipGeometrySample.java" | ||
], | ||
"title": "Clip Geometry" | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"category": "Geometry", | ||
"description": "Generate convex hull polygon(s) from multiple input geometries.", | ||
"ignore": false, | ||
"images": [ | ||
"ConvexHullList.png" | ||
], | ||
"keywords": [ | ||
"Analysis", | ||
"ConvexHull", | ||
"GeometryEngine", | ||
"GeometryEngine.ConvexHull", | ||
"GraphicsOverlay", | ||
"PointCollection" | ||
], | ||
"redirect_from": "/java/latest/sample-code/convex-hull-list.htm", | ||
"relevant_apis": [ | ||
"GeometryEngine", | ||
"GraphicsOverlay", | ||
"PointCollection" | ||
], | ||
"snippets": [ | ||
"src/main/java/com/esri/samples/convex_hull_list/ConvexHullListSample.java", | ||
"src/main/java/com/esri/samples/convex_hull_list/ConvexHullListLauncher.java" | ||
], | ||
"title": "Convex Hull List" | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"category": "Geometry", | ||
"description": "Calculate the convex hull for a set of points.", | ||
"ignore": false, | ||
"images": [ | ||
"ConvexHull.png" | ||
], | ||
"keywords": [ | ||
"GeometryEngine" | ||
], | ||
"redirect_from": "/java/latest/sample-code/convex-hull.htm", | ||
"relevant_apis": [ | ||
"GeometryEngine" | ||
], | ||
"snippets": [ | ||
"src/main/java/com/esri/samples/convex_hull/ConvexHullLauncher.java", | ||
"src/main/java/com/esri/samples/convex_hull/ConvexHullSample.java" | ||
], | ||
"title": "Convex Hull" | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"category": "Geometry", | ||
"description": "@@TODO: Create simple geometry types.", | ||
"ignore": false, | ||
"images": [ | ||
"CreateGeometries.png" | ||
], | ||
"keywords": [ | ||
"@@TODO: *** PLEASE ADD ADDITIONAL KEYWORDS ***", | ||
"Envelope", | ||
"Graphic", | ||
"Multipoint", | ||
"Point", | ||
"PointCollection", | ||
"Polygon", | ||
"Polyline" | ||
], | ||
"redirect_from": "/java/latest/sample-code/create-geometries.htm", | ||
"relevant_apis": [ | ||
"Envelope", | ||
"Graphic", | ||
"Multipoint", | ||
"Point", | ||
"PointCollection", | ||
"Polygon", | ||
"Polyline" | ||
], | ||
"snippets": [ | ||
"@@TODO: *** PLEASE VERIFY THE INCLUSION OF THESE SNIPPETS ***", | ||
"src/main/java/com/esri/samples/create_geometries/CreateGeometriesLauncher.java", | ||
"src/main/java/com/esri/samples/create_geometries/CreateGeometriesSample.java" | ||
], | ||
"title": "@@TODO: Create Geometries" | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
{ | ||
"category": "Geometry", | ||
"description": "@@TODO: Cut a geometry along a polyline.", | ||
"ignore": false, | ||
"images": [ | ||
"CutGeometry.png" | ||
], | ||
"keywords": [ | ||
"@@TODO: *** PLEASE ADD ADDITIONAL KEYWORDS ***", | ||
"ArcGISMap", | ||
"Basemap", | ||
"Geometry", | ||
"GeometryEngine", | ||
"Graphic", | ||
"GraphicsOverlay", | ||
"MapView", | ||
"Point", | ||
"PointCollection", | ||
"Polygon", | ||
"Polyline", | ||
"SimpleFillSymbol", | ||
"SimpleLineSymbol", | ||
"SpatialReferences" | ||
], | ||
"redirect_from": "/java/latest/sample-code/cut-geometry.htm", | ||
"relevant_apis": [ | ||
"ArcGISMap", | ||
"Basemap", | ||
"Geometry", | ||
"GeometryEngine", | ||
"Graphic", | ||
"GraphicsOverlay", | ||
"MapView", | ||
"Point", | ||
"PointCollection", | ||
"Polygon", | ||
"Polyline", | ||
"SimpleFillSymbol", | ||
"SimpleLineSymbol", | ||
"SpatialReferences" | ||
], | ||
"snippets": [ | ||
"@@TODO: *** PLEASE VERIFY THE INCLUSION OF THESE SNIPPETS ***", | ||
"CutGeometrySample.java", | ||
"src/main/java/com/esri/samples/cut_geometry/CutGeometryLauncher.java", | ||
"src/main/java/com/esri/samples/cut_geometry/CutGeometrySample.java" | ||
], | ||
"title": "@@TODO: Cut Geometry" | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{ | ||
"category": "Geometry", | ||
"description": "@@TODO: Modify a polyline while preserving its general shape.", | ||
"ignore": false, | ||
"images": [], | ||
"keywords": [ | ||
"@@TODO: *** PLEASE ADD ADDITIONAL KEYWORDS ***", | ||
"ArcGISMap", | ||
"Basemap", | ||
"GeometryEngine", | ||
"Graphic", | ||
"GraphicsOverlay", | ||
"MapView", | ||
"Multipoint", | ||
"Point", | ||
"PointCollection", | ||
"Polyline", | ||
"SimpleLineSymbol", | ||
"SimpleMarkerSymbol", | ||
"SpatialReference" | ||
], | ||
"redirect_from": "/java/latest/sample-code/densify-and-generalize.htm", | ||
"relevant_apis": [ | ||
"ArcGISMap", | ||
"Basemap", | ||
"GeometryEngine", | ||
"Graphic", | ||
"GraphicsOverlay", | ||
"MapView", | ||
"Multipoint", | ||
"Point", | ||
"PointCollection", | ||
"Polyline", | ||
"SimpleLineSymbol", | ||
"SimpleMarkerSymbol", | ||
"SpatialReference" | ||
], | ||
"snippets": [ | ||
"@@TODO: *** PLEASE VERIFY THE INCLUSION OF THESE SNIPPETS ***", | ||
"src/main/resources/densify_and_generalize.fxml", | ||
"src/main/java/com/esri/samples/densify_and_generalize/DensifyAndGeneralizeSample.java", | ||
"src/main/java/com/esri/samples/densify_and_generalize/DensifyAndGeneralizeLauncher.java", | ||
"src/main/java/com/esri/samples/densify_and_generalize/DensifyAndGeneralizeController.java" | ||
], | ||
"title": "@@TODO: Densify and Generalize" | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
{ | ||
"category": "Geometry", | ||
"description": "@@TODO: Calculate the geodesic path and distance between two points.", | ||
"ignore": false, | ||
"images": [ | ||
"GeodesicOperations.png" | ||
], | ||
"keywords": [ | ||
"@@TODO: *** PLEASE ADD ADDITIONAL KEYWORDS ***", | ||
"ArcGISMap", | ||
"GeodeticCurveType", | ||
"Geometry", | ||
"GeometryEngine", | ||
"Graphic", | ||
"GraphicsOverlay", | ||
"LinearUnit", | ||
"LinearUnitId", | ||
"MapView", | ||
"Point", | ||
"PointCollection", | ||
"Polyline", | ||
"SimpleLineSymbol", | ||
"SimpleMarkerSymbol" | ||
], | ||
"redirect_from": "/java/latest/sample-code/geodesic-operations.htm", | ||
"relevant_apis": [ | ||
"ArcGISMap", | ||
"GeodeticCurveType", | ||
"Geometry", | ||
"GeometryEngine", | ||
"Graphic", | ||
"GraphicsOverlay", | ||
"LinearUnit", | ||
"LinearUnitId", | ||
"MapView", | ||
"Point", | ||
"PointCollection", | ||
"Polyline", | ||
"SimpleLineSymbol", | ||
"SimpleMarkerSymbol" | ||
], | ||
"snippets": [ | ||
"@@TODO: *** PLEASE VERIFY THE INCLUSION OF THESE SNIPPETS ***", | ||
"src/main/java/com/esri/samples/geodesic_operations/GeodesicOperationsLauncher.java", | ||
"src/main/java/com/esri/samples/geodesic_operations/GeodesicOperationsSample.java" | ||
], | ||
"title": "@@TODO: Geodesic Operations" | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"category": "Geometry", | ||
"description": "@@TODO: Create geodesic sectors and ellipses.", | ||
"ignore": false, | ||
"images": [ | ||
"GeodesicSectorAndEllipse.png" | ||
], | ||
"keywords": [ | ||
"@@TODO: *** PLEASE ADD ADDITIONAL KEYWORDS ***", | ||
"GeodesicEllipseParameters", | ||
"GeodesicSectorParameters", | ||
"GeometryEngine", | ||
"GeometryType" | ||
], | ||
"redirect_from": "/java/latest/sample-code/geodesic-sector-and-ellipse.htm", | ||
"relevant_apis": [ | ||
"GeodesicEllipseParameters", | ||
"GeodesicSectorParameters", | ||
"GeometryEngine", | ||
"GeometryType" | ||
], | ||
"snippets": [ | ||
"@@TODO: *** PLEASE VERIFY THE INCLUSION OF THESE SNIPPETS ***", | ||
"src/main/resources/geodesic_sector_and_ellipse.fxml", | ||
"src/main/java/com/esri/samples/geodesic_sector_and_ellipse/GeodesicSectorAndEllipseLauncher.java", | ||
"src/main/java/com/esri/samples/geodesic_sector_and_ellipse/GeodesicSectorAndEllipseSample.java", | ||
"src/main/java/com/esri/samples/geodesic_sector_and_ellipse/GeodesicSectorAndEllipseController.java" | ||
], | ||
"title": "@@TODO: Geodesic Sector and Ellipse" | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"category": "Geometry", | ||
"description": "@@TODO: Simplify a polygon that has multiple parts.", | ||
"ignore": false, | ||
"images": [ | ||
"GeometryEngineSimplify.png" | ||
], | ||
"keywords": [ | ||
"@@TODO: *** PLEASE ADD ADDITIONAL KEYWORDS ***", | ||
"Geometry", | ||
"Graphic", | ||
"GraphicsOverlay", | ||
"MapView", | ||
"Point", | ||
"PointCollection", | ||
"SimpleLineSymbol", | ||
"SimpleFillSymbol" | ||
], | ||
"redirect_from": "/java/latest/sample-code/geometry-engine-simplify.htm", | ||
"relevant_apis": [ | ||
"Geometry", | ||
"Graphic", | ||
"GraphicsOverlay", | ||
"MapView", | ||
"Point", | ||
"PointCollection", | ||
"SimpleLineSymbol", | ||
"SimpleFillSymbol" | ||
], | ||
"snippets": [ | ||
"@@TODO: *** PLEASE VERIFY THE INCLUSION OF THESE SNIPPETS ***", | ||
"src/main/java/com/esri/samples/geometry_engine_simplify/GeometryEngineSimplifySample.java", | ||
"src/main/java/com/esri/samples/geometry_engine_simplify/GeometryEngineSimplifyLauncher.java" | ||
], | ||
"title": "@@TODO: Geometry Engine Simplify" | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This one was my bad. Not your script's fault.