-
Notifications
You must be signed in to change notification settings - Fork 18
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
Feature/create breaks #25
Conversation
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.
great start. and great job with the tests. that's going to make me really confident about this feature once it's merged.
don't forget to add to the readme and the changelog
src/executeQuery.js
Outdated
const _ = require('lodash') | ||
|
||
function breaksQuery (features, query, options) { | ||
// TODO: add check if query is valid (or should this have been handled in query?) |
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.
what types of validation are you interested in?
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.
I don't think we need this. We also may not need the check on the next line either.
src/executeQuery.js
Outdated
function breaksQuery (features, query, options) { | ||
// TODO: add check if query is valid (or should this have been handled in query?) | ||
const queriedData = standardQuery(features, query, options) | ||
if (queriedData === undefined || queriedData.features === undefined) throw new Error('query resposne undefined') |
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.
typo
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.
done.
src/executeQuery.js
Outdated
if (queriedData.features.length === 0) throw new Error('need features in order to classify') | ||
|
||
try { | ||
const classification = options.classificationDef |
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.
I'm not a fan of wrapping large chunks of code in try catch, what's your reasoning here?
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.
Understandable, but I couldn't find any catches in winnow. Throwing an error causes the tests to break. Alternative?
src/executeQuery.js
Outdated
return calculateClassBreaks(queriedData.features, classification) | ||
} else if (classification.type === 'uniqueValueDef') { | ||
const { options, query } = calculateUniqueValue(queriedData.features, classification) | ||
let thing = aggregateQuery(queriedData.features, query, options) |
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.
no need to define this variable
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.
testing artifact, already handled
src/generateBreaks/normalization.js
Outdated
const normField = classification.normalizationField | ||
if (normField) { | ||
const normValues = getFieldValues(features, normField) | ||
if (Array.isArray(normValues)) { |
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 function is tough to read, should probably be broken into a few smaller ones
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.
done.
test/aggregate.js
Outdated
t.equal(Array.isArray(results[0]), true) | ||
t.equal(results.length, 5) | ||
t.deepEqual(results[0], [0, 2.8]) | ||
t.deepEqual(results[4], [11.3, 14]) |
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.
I think its good to have at least one test that validates all of the individual breaks
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.
already done, just wasn't pushed
test/aggregate.js
Outdated
t.plan(1) | ||
const options = _.cloneDeep(classBreaks) | ||
options.classificationDef.classificationMethod = 'invalidMethod' | ||
const results = winnow.query(features, options) |
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 should throw an error
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.
done.
test/aggregate.js
Outdated
t.equal(Array.isArray(results), true) | ||
t.equal(typeof results === 'object', true) | ||
t.equal(results.length, 156) | ||
t.deepEqual(results[0], { Genus: 'MAGNOLIA', count: 3778 }) |
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.
what does the full response look like here?
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.
An array of objects with the aggregation value and field aggregated on.
[ { count: 3778, Genus: 'MAGNOLIA' }, { count: 7164, Genus: 'QUERCUS' }, { count: 84, Genus: 'XYLOSMA' }, ...]
"classificationMethod": "esriClassifyEqualInterval", | ||
"breakCount": 5 | ||
}, | ||
"where": "Trunk_Diameter<15", |
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.
would be good to do a test without a where clause and/or with where=1=1
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.
works when deleting where clause, but not where=1=1...
@@ -0,0 +1,28 @@ | |||
{ | |||
"classificationDef": { |
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.
it's good that we're supporting the geoservices version of a classification definition. we also want to support a simplified version within winnow. basically the pattern is to shorten the key names and smooth over any weird stuff from the geoservices api
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.
is this so that winnow isn't dependent on an input format from FS?
README.md
Outdated
##### `Class Breaks` | ||
_Class Breaks_ is used to classify numeric data based on a number of breaks and a statistical method. Features can also be normalized before being classified. | ||
|
||
```json |
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.
js instead of
json
We will likely need to add more tests. Close to finishing uniqueValue breaks, but not present in this PR.