-
Notifications
You must be signed in to change notification settings - Fork 83
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
Fix Histogram Binning #2086
Fix Histogram Binning #2086
Changes from 24 commits
a3112bc
3fcf21d
50e32f1
a35074e
d03cdf9
6e47972
441fe20
69a5989
c69d13a
de8dbb6
79e56b2
483db7f
e4a9c10
acb6bd5
cdf3ec5
8a9088b
a295bb3
60610e5
2dfef78
5d41646
27622ab
5883cb8
3749c99
73fa537
7ec4df8
b4f4cd9
9fee1f8
01166ed
3788d06
92062b4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -105,6 +105,10 @@ message DisasterEventMapTileSpec { | |
repeated string event_type_keys = 1; | ||
} | ||
|
||
message HistogramTileSpec { | ||
string event_type_key = 1; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. super nit: please check indent spacing There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good eye! Fixed spacing |
||
} | ||
|
||
message TopEventTileSpec { | ||
// Key for event type specs defined in the PageMetadata that should be displayed | ||
// Ranked by severity prop. | ||
|
@@ -147,7 +151,7 @@ message Tile { | |
DESCRIPTION = 8; | ||
// allowed in BlockTypes: TYPE_NONE | ||
HISTOGRAM = 10; | ||
// allowed in BlockTypes: TYPE_NONE | ||
// allowed in BlockTypes: DISASTER_EVENT | ||
PLACE_OVERVIEW = 11; | ||
// allowed in BlockTypes: DISASTER_EVENT | ||
TOP_EVENT = 12; | ||
|
@@ -170,6 +174,7 @@ message Tile { | |
DisasterEventMapTileSpec disaster_event_map_tile_spec = 6; | ||
TopEventTileSpec top_event_tile_spec = 8; | ||
ScatterTileSpec scatter_tile_spec = 9; | ||
HistogramTileSpec histogram_tile_spec = 10; | ||
} | ||
} | ||
|
||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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.
you can delete this comment if it doesn't apply anymore (ditto for the rest)
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!