Skip to content

Commit

Permalink
Readme edited
Browse files Browse the repository at this point in the history
  • Loading branch information
Sacchid committed Apr 13, 2019
1 parent db436d4 commit 885a625
Show file tree
Hide file tree
Showing 3 changed files with 77 additions and 76 deletions.
140 changes: 70 additions & 70 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions CHANGELOG.md
Expand Up @@ -7,4 +7,10 @@ As suggested by pub.dartlang.org analysis
## 1.0.2
As suggested by pub.dartlang.org analysis
- Removed some description from pubspec.yaml
## 1.0.3
Added following functions & examples for -
* [Exception handling](example/exception_handling.dart)
* [Easy Casting](example/easy_casting.dart)
* [Simple CSV](example/simple_csv.dart)
* [Conversion](example/conversion.dart)

7 changes: 1 addition & 6 deletions README.md
Expand Up @@ -56,7 +56,7 @@ A library for checking if given point(s) is present inside Polygon or not.
1. Correct casting
* casting `List<dynamic>` to `List<num>`
* casting `List<dynamic>` to `List<List<num>>`
``````

2. Passing `List` instead of `List<List>`
* Passing `List` instead of `List<List>` & casting it : throws `CastError` as shown below :
> type `int` is not a subtype of type `List<num>` in type cast
Expand Down Expand Up @@ -112,11 +112,6 @@ A library for checking if given point(s) is present inside Polygon or not.
4. `_CastError example` - casting `List<num>` to `List<List<num>`

### CSV
1.[`IsInsideResultWithXY_ToCSVString`](####`IsInsideResultWithXY_ToCSVString`)
2.[`csvToListOfList`](#### `csvToListOfList`)
3.[`csvToPoly`](####`csvToPoly`)
#### `IsInsideResultWithXY_ToCSVString`
* Returns result of `ArePointsInside` as CSV String which can be later saved or displayed
* Output CSV String will by default contain a header row - `latitude,longitude,isInside`
Expand Down

0 comments on commit 885a625

Please sign in to comment.