GeoGraphic Explorer
What does this solution intend to do?
GeoExplorer is intended to be a flexible way of mapping data on a geographic map.
Example 1: A government client was interested in right-sizing their spare parts inventories and we helped them show overlaps where the same parts were being stored in 2 close locations.
Example 2: Throughline’s smart remote work policies during Covid allowed many staff to re-locate to regions that we don’t have offices in, but we still want to understand where people are/ by skillset/ experience and get them together for work and social interaction.
How does it work?
GeoExplorer is made up of the following components.
GE Solution (Data Object in Pimcore)
slug/ name/ description/ status
card size/ cover/ sorting/ etc.
Map Settings (Mapbox Configurations)
Map Style/ Token/ Origin point/ etc.
JSON Data Files (Assets in Pimcore)
Location Data (where to map those locations)
Inventory Data (what is at those locations)
Totals Data (any calculations associated with the inventory data/ location combos)
Filter Data (the configuration we want for the custom filters in the UI) <--- this info could be moved into the data object if we think it would be better there.
Hover Selector - this selector is used to determine which metrics appear when hovering over a location. Each solution can label this with its own label like Perspective, ViewPoint, Angle, etc.
Example 1: Perspective (might be the leaders perspective, or the warehouse staff perspective - each of these would focus on different metrics/totals that apply to those locations - leaders might be focused on put away times and warehouse value, where staff might be more focused on inventory dates / volumes)
Example 2: ViewPoint (might be staffing viewpoint or social viewpoint - each of these would focus on different metrics/ totals - staffing might be focused on experience/skills, where social might be focused on shared interests)
Highlight Selector - this selector is used to determine which metric is driving the color of the location. Each solution can label this with its own label like Focus Metric or Spotlight
There are some thresholds in the data that drive how the color is determined as well. (probably needs to be better documented)
Dynamic Filters - this is an important capability. Because the data sets can be so different, we need a dynamic way to define/ implement filtering that works across solutions. <-- the specific way we store these is open to adjustment in json or in data object if that is better suited.
GE API Endpoints
Provide access to the data elements for the UI
GE UI
Requests the data elements to build the views
Hover Selector (ex. Perspective) - changes what the popup/ hover content is for each location
Highlight Selector (ex. Focus Metric) - changes which metric drives the coloring of each location’s map pin
Dynamic Filters - change which locations appear in the map view
Map View - Standard Google Maps style interface (leaflet based I think) with pan/zoom capability.
Styled by whatever Mapbox style is linked in the solution (highly customizable)
Data Table - makes the currently filtered data available
GeoExplorer Flexibility Better Explained through an example
Element | Explanation | Government | Hockey League | Throughliners |
Hover Filter Label | Just a title/label, pulled from filters.json | PERSPECTIVE | ANGLE | VIEWPOINT |
Hover Filter Values | This value drives the contents of the onhover action for a location. The filter needs to define which fields get displayed here. | Executive Warehouse Mgr | NHL Fans NHL Staff NHL Owners | Staffing Social Tribe |
Highlight Filter Label | Just a title/label, pulled from filters.json | FOCUS METRIC | SPOTLIGHT | SPOTLIGHT |
Highlight Filter Values | This value drives the color of the location. The filter needs to also define the thresholds/ color values too. | Accuracy Valuation Date of Last Inventory Ready for Issue Turnover Rate | Stadium Age Stadium Capacity | Years of Experience Years at Throughline |
FILTER JSON | name data source field thresh1 "<5" thresh1color "green" thresh2 "5-10" thresh2color "blue" thresh3 ">10" thresh3color "black" | |||
Secondary Filters (explained) | These values drive which locations appear... these are 100% flexible but they have to align with the inventory.json file to work. (see examples) | example: "Owning Org" filters.json would contain the label for this filter "Owning Org" and the source datafield it is tied to in the inventory.json "Owning Organization" | example: "Division" (not in current example on test but should be) NHL East NHL West and there should be a source datafiled in inventory.json to match it so each location would have that. | example: "Department" Design Design Strategy Content Strategy Accounts Extended Tribe Hobbies |
Secondary Filters (details) | Just a title/label, pulled from filters.json | PERSPECTIVE (should not be in secondary) LEADERSHIP METRIC MANAGER METRIC OWNING BSO INVENTORY SEGMENT ASSET CATEGORY OWNING ORG MANAGED BY | DIVISION (select from all actual values) SEATING CAPACITY (select from ranges that are defined in the filters.json ex. under 15000, 15001-17499, over 17500) STADIUM AGE (select from ranges defined in filters.json ex. before 1999, between 2000-2009, between 2010-2019, after 2019) | DEPARTMENT (select from actual values) Years of Experience (ranges) Years at Throughline (ranges)
|
Map Spots | On Open: There should be a plotted map spot for each item in the locations.json file On Filtering with secondary filters, the plots are reduced to match the filter criteria | |||
Map Spot Clustering | As we discussed - Leaflet is already handling clustering of close together markers and allowing you to zoom in to find things. | But this is not helpful when loading Throughliners because we only have city/state, not exact address. So we need to handle this case where markers are "stacked" Possible solution:Clustering - I found a way... demo here. this is called "spidering" apparently. lolhttp://jawj.github.io/OverlappingMarkerSpiderfier-Leaflet/demo.html | ||
Hover Content | Output is flexible here... filters.json setup for the Hover filter (perspective) will dictate which metrics get displayed here. | Ex. Perspective = Warehouse Mgr means that the hover state shows the name of the Location (the Warehouse name). And a series of "chiclets" with metrics:
filters.json should have all the information needed for the frontend to render this except the raw data that will be in inventory. BUT the executive perspective shows other chicklets. | Ex. Angle = Fans
filters.json would set the label for that, and set 3 thresholds like: (value<15000) = yellow (value>20000) = green (value >15000 and <20000 = blue
| Ex. ViewPoint = Tribe
|
Element | Explanation | Navy | NHL | Throughliners |
Data Tables Task 1 | Make the Tab Labels flexible. We should be able to set these in filters.json or something
| Tab 1: Results Tab 2: Plant Info | Tab 1: Roster Tab 2: Stadium Info | Tab 1: Key Skills Tab 2: Throughliner Info |
Data Tables Task 2 | Change the tab order (would be best if this was flexible based on how it is listed in the json)
| Tab 1: Plant Info Tab 2: Results | Tab 1: Stadium Info Tab 2: Roster | Tab 1: Throughliner Info Tab 2: Key Skills |
Data Tables Task 3 | Display all of the metrics from totals.json to the Location Info tab. | |||
Data Tables Task 4 | Allow for the tabs to be enabled/disabled in json. | We might disable Plant Info here and that means that tab would not show at all. | We might disable Roster here and that means that tab would not show at all. | So we might keep all tabs viewable here. |
Data Tables Task 5 | Allow for a third tab "Displayed Locations"
| Label: Visible Plants
| Label: Visible Stadiums 1 Row for each Stadium, with columns as dictated in json (example capacity, city/ state, team name) | Label: Visible Throughliners 1 Row for each Throughliner, with columns as dictated in json (example Name, city/ state, Department) |