Skip to content
This repository was archived by the owner on Mar 9, 2021. It is now read-only.

Commit c7af311

Browse files
committed
📦 1.1.0
1 parent c454e11 commit c7af311

File tree

4 files changed

+26
-11
lines changed

4 files changed

+26
-11
lines changed

CHANGELOG.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## [unreleased]
66

7+
## [1.1.0] - 2018-07-09
8+
9+
### Added
10+
11+
* ArcGIS Extents/Envelopes are now converted to GeoJSON polygons 🙏CorinChappy🙏
12+
* great new command line demo app 🙏gseyffert🙏
13+
* an appropriate CRS is appended to output GeoJSON when web mercator geometries are encountered.
14+
15+
### Changed
16+
17+
* Ensure ring-order of GeoJSON is compliant with RFC 7946
18+
* web mercator northings/eastings are no longer reprojected during conversion.
19+
* TypeScript support files updated 🙏JeffJacobson🙏
20+
721
## [1.0.5] - 2016-08-16
822

923
### Fixed
@@ -14,17 +28,20 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1428
* typings for TypeScript folks (thx [@JeffJacobson](https://github.com/JeffJacobson)) [#34](https://github.com/Esri/terraformer-arcgis-parser/pull/34)
1529

1630
## [1.0.4] - 2014-06-17
31+
1732
### Fixed
1833
* Account for breaking change in `Terraformer`
1934

2035
### Added
2136
* support for `z` and `m` conversion
2237

2338
## [1.0.3] - 2015-02-24
39+
2440
### Fixed
2541
* valid output on both ends of conversion [#19](https://github.com/Esri/terraformer-arcgis-parser/issues/19)
2642

2743
## [1.0.2] - 2014-02-10
44+
2845
### Added
2946
* `parseCompressedGeometry()` [#10](https://github.com/Esri/terraformer-arcgis-parser/issues/10)
3047

@@ -33,6 +50,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
3350
* `parse()` now handles `compressedGeometry`
3451

3552
## [1.0.1] - 2013-12-04
53+
3654
### Fixed
3755
* `ReferenceError: sr is not defined` in `ArcGIS.convert()`
3856

@@ -45,7 +63,8 @@ npm install terraformer-arcgis-parser
4563
bower install terraformer-arcgis-parser
4664
```
4765

48-
[unreleased]: https://github.com/Esri/terraformer-arcgis-parser/compare/v1.0.5...HEAD
66+
[unreleased]: https://github.com/Esri/terraformer-arcgis-parser/compare/v1.1.0...HEAD
67+
[1.1.0]: https://github.com/Esri/terraformer-arcgis-parser/compare/v1.0.5...v1.1.0
4968
[1.0.5]: https://github.com/Esri/terraformer-arcgis-parser/compare/v1.0.4...v1.0.5
5069
[1.0.4]: https://github.com/Esri/terraformer-arcgis-parser/compare/v1.0.3...v1.0.4
5170
[1.0.3]: https://github.com/Esri/terraformer-arcgis-parser/compare/v1.0.2...v1.0.3

README.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,6 @@
1414

1515
In the browser, [Terraformer](http://github.com/esri/terraformer) is required.
1616

17-
You can use [Bower](http://bower.io/) to install the components if you like or download them and host them yourself.
18-
19-
```
20-
$ bower install terraformer-arcgis-parser
21-
```
22-
2317
## Documentation
2418

2519
For full documentation check out the [offical website](http://terraformer.io/arcgis-parser/).
@@ -46,10 +40,10 @@ var point = ArcGIS.convert({
4640
### Browser
4741
```html
4842
<!-- Load the main Terraformer library -->
49-
<script src="terraformer.min.js" type="text/javascript"></script>
43+
<script src="https://unpkg.com/terraformer/terraformer.js" type="text/javascript"></script>
5044

5145
<!-- Load the ArcGIS Parser -->
52-
<script src="terraformer-arcgis-parser.min.js" type="text/javascript"></script>
46+
<script src="https://unpkg.com/terraformer-arcgis-parser/terraformer-arcgis-parser.js" type="text/javascript"></script>
5347

5448
<!-- Use it! -->
5549
<script>
@@ -88,4 +82,6 @@ Esri welcomes contributions from anyone and everyone. Please see our [guidelines
8882

8983
## Licensing
9084

85+
Copyright &copy; 2013-2018 Esri
86+
9187
A copy of the license is available in the repository's [LICENSE](./LICENSE) file.

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "terraformer-arcgis-parser",
3-
"version": "1.0.5",
3+
"version": "1.1.0",
44
"description": "ArcGIS JSON format parser and converter",
55
"main": "terraformer-arcgis-parser.js",
66
"files": [

0 commit comments

Comments
 (0)