1.0.3 • Published 8 years ago

esri-102718 v1.0.3

Weekly downloads
4
License
Unlicense
Repository
github
Last release
8 years ago

esri-102718

A convenience definition of the ESRI:102718 (NAD 1983 StatePlane New York Long Island FIPS 3104 Feet) coordinate system for use with Proj4.

Installing

Node

npm install esri-102718

If you intend to use this with proj4, you can install that, too:

npm install proj4

Browser

<script src="esri102718.js"></script>

If you are using proj4, be sure to include the proj4 library first:

<script src="proj4.js"></script>
<script src="esri102718.js"></script>

Using

Node

For example, to convert coordinates from ESRI:102718 to EPSG:4326, do the following:

var proj4 = require("proj4")
var esri102718 = require("esri-102718")

var transformed = proj4(esri102718, "EPSG:4326", [998497.6787480264, 191555.00621515533])
// [-73.94862225386562, 40.692439507265824]

Browser

The library will automatically add the ESRI:102718 definition to proj4, provided that you include the proj4 library first. You can then use it like so:

var transformed = proj4("ESRI:102718", "EPSG:4326", [998497.6787480264, 191555.00621515533])
// [-73.94862225386562, 40.692439507265824]

Alternatively, you can reference it by variable:

var transformed = proj4(esri102718, "EPSG:4326", [998497.6787480264, 191555.00621515533])
// [-73.94862225386562, 40.692439507265824]

More information

Unlicense

This is free and unencumbered software released into the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.

In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

For more information, please refer to http://unlicense.org/