Releases: koopjs/koop
Releases · koopjs/koop
v2.6.1
v2.6.0
Fixed
- Parsing the logpath in
lib/Logger
needed to use slice instead of splice - Try to use latest WKID or WKID, whichever is available in esri-proj-codes
Added
- Tests for new method
lib/Exporter.js:createIdFilter
Changed
- refactored preview to incorporate breaking changes in esri-leaflet 1.0.0
- switched to using L.Icon.Default
- refactored the idFilter logic into a shared method in Exporter
createIdFilter
- logic for returning files was calling the callback with an error and causes a double response on export requests
Removed
- Leaflet image files
v2.5.3
v2.5.2
Added
Fixed
- Refactored library modules to catch uncaught errors and return early
- Updated and improve tests
Removed
- Deleted errant
pm2.json
file inlib
- Removed unused TopoJSON support lib
- Removed slashes from shapefile format in
lib/Exporter.js
Changed
- Moved repository from https://github.com/Esri/koop to https://github.com/koopjs/koop
v2.5.1
v2.5.0
v2.4.2
v2.4.1
v2.4.0
Changed
- Made metadata files on shp file exports have a "shp.xml" extension
- Using outSR in place of a URLs wkid to reproject data
Added
- A centralized spatial reference parsing class that is exposed in
lib/BaseModel.js
and used inlib/Exporter.js
- Adds support for options.wkid, options.wkt, or options.outSR in lib/Exporter.js
v2.3.0
Added
- If a provider passes in a metadata value to the Exporter then it will be used to create a metadata xml file for only shp exports.
- Added a
exportFile
method to BaseModel that providers a more simple interface to exporting methods. The goal will be to ultimately change the wayexportLarge
andexportToFormat
are called by providers.