Skip to content
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

Merged
merged 19 commits into from
Aug 3, 2017
Merged

Feature/create breaks #25

merged 19 commits into from
Aug 3, 2017

Conversation

thomas-hervey
Copy link
Member

We will likely need to add more tests. Close to finishing uniqueValue breaks, but not present in this PR.

@thomas-hervey thomas-hervey requested a review from dmfenton July 25, 2017 14:48
Copy link
Contributor

@dmfenton dmfenton left a 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

const _ = require('lodash')

function breaksQuery (features, query, options) {
// TODO: add check if query is valid (or should this have been handled in query?)
Copy link
Contributor

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?

Copy link
Member Author

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.

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')
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

typo

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done.

if (queriedData.features.length === 0) throw new Error('need features in order to classify')

try {
const classification = options.classificationDef
Copy link
Contributor

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?

Copy link
Member Author

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?

return calculateClassBreaks(queriedData.features, classification)
} else if (classification.type === 'uniqueValueDef') {
const { options, query } = calculateUniqueValue(queriedData.features, classification)
let thing = aggregateQuery(queriedData.features, query, options)
Copy link
Contributor

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

Copy link
Member Author

@thomas-hervey thomas-hervey Jul 27, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

testing artifact, already handled

const normField = classification.normalizationField
if (normField) {
const normValues = getFieldValues(features, normField)
if (Array.isArray(normValues)) {
Copy link
Contributor

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

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done.

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])
Copy link
Contributor

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

Copy link
Member Author

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

t.plan(1)
const options = _.cloneDeep(classBreaks)
options.classificationDef.classificationMethod = 'invalidMethod'
const results = winnow.query(features, options)
Copy link
Contributor

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

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done.

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 })
Copy link
Contributor

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?

Copy link
Member Author

@thomas-hervey thomas-hervey Jul 27, 2017

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",
Copy link
Contributor

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

Copy link
Member Author

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": {
Copy link
Contributor

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

Copy link
Member Author

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
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

js instead of json

@thomas-hervey thomas-hervey merged commit 73a6fb3 into master Aug 3, 2017
@thomas-hervey thomas-hervey deleted the feature/createBreaks branch August 3, 2017 13:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants