Demos http://forums.visokio.com/categories/demos/feed.rss Mon, 30 Oct 17 11:33:43 -0400 Demos en-CA Omniscope demo: loading xml URL feed from live CCTV and mapping the images http://forums.visokio.com/discussion/3179/omniscope-demo-loading-xml-url-feed-from-live-cctv-and-mapping-the-images Tue, 11 Oct 2016 13:13:29 -0400 paola 3179@/discussions https://s3-eu-west-1.amazonaws.com/jamcams.tfl.gov.uk/jamcams-camera-list.xml
(you may need to register on their website first)

Data preparation:
In the DataManager space you can use the Data file source block to point it to the URL location (link above), then load directly to Omniscope for further visualisation.
Data refresh options as displayed in the image will enable automatic data refresh, responding to the changes in the data source xml.

image

Right-click on the field [File] header in the Table view > Options > Show image >Add more
to configure the image set, as per image below, and display thumbnails in the Table view.

image

Data visualisation:
Add Map view - the feed already has [Lat] and [Lng] fields, that will be recognised as input by default to position the markers.

Add a Tile view, configured to look at "selected data" and display images that correspond to markers selected on the map.
Tile contents>select the image set (already configured)

image
]]>
Demo: Dynamic calculation of investments with different maturity dates http://forums.visokio.com/discussion/3033/demo-dynamic-calculation-of-investments-with-different-maturity-dates Tue, 17 Nov 2015 07:16:46 -0500 paola 3033@/discussions First step is calculation of number of days between today and the investment maturity date:
DATEDIFF(NOW, [Date], "days")  

By using NOW function, this calculation will keep the report up-to-date, always returning the latest breakdown.
It is also possible to 'fix' the date and use DATEVALUE("dd/MM/yyyy") instead of NOW, e.g. DATEDIFF(DATEVALUE("01/10/2015"), [Date], "days") .
Second step is to create irregular time intervals, that will 'bucket' the records and be used for sum calculation.

IF(
[Difference days]<1,"matured",
[Difference days]<2,"1 day",
[Difference days]<8,"1 week",
[Difference days]=<31,"1 month",
[Difference days]<92,"3 months",
[Difference days]<184,"6 months",
[Difference days]<366,"1 year",
[Difference days]<1096,"3 years",
[Difference days]<1827,"5 years",
[Difference days]<2557,"7 years",
[Difference days]=<3653,"10 years",
[Difference days]>3653,"over 10 years",
null)  

Aggregation and summing of investment amounts for each period is done in the Bar/Line view.]]>
Data animation: Climbing Everest-geospatial+time+human physiology http://forums.visokio.com/discussion/2750/data-animation-climbing-everest-geospatial-time-human-physiology Tue, 28 Oct 2014 08:55:33 -0400 mamillerpa 2750@/discussions
image

If you don't already have the Omniscope Desktop application installed on your computer, try this "custom jar" version that should work on computers with Java installed: https://www.dropbox.com/s/i298y4p64erp4q0/everest.jar?dl=0

If the custom jar doesn't work for you, you can get a free, 30 day, fully functional installer at http://www.visokio.com/download

Mark.Miller at Instem.com]]>
Demo: Build live RSS updating News app in Omniscope http://forums.visokio.com/discussion/2478/demo-build-live-rss-updating-news-app-in-omniscope Fri, 21 Feb 2014 13:59:04 -0500 paola 2478@/discussions
image
image]]>
Demo: Some geospatial demo files to share http://forums.visokio.com/discussion/2244/demo-some-geospatial-demo-files-to-share Tue, 16 Jul 2013 07:59:43 -0400 daniel 2244@/discussions
You can download them from github at:
https://github.com/ucfnlam/OmniscopeDemos?source=c

Or from my blog which has webstart links when you click on the icons:
http://spatiametrics.wordpress.com/omniscope-data-visualisations/

]]>
Demo: Content View - Creating Dynamic Tables http://forums.visokio.com/discussion/2231/demo-content-view-creating-dynamic-tables Fri, 05 Jul 2013 09:26:56 -0400 Bart 2231@/discussions Demo: Importing Image File Metadata & Map View http://forums.visokio.com/discussion/2112/demo-importing-image-file-metadata-map-view Fri, 26 Apr 2013 10:45:43 -0400 paola 2112@/discussions > images from a mobile phone are saved in a folder
> folder is added to DataManager workspace as File Metadata source
> Omniscope reads the metadata tags on import, including longitude/latitude tags recorded by the camera
(Important: make sure that geo-location function is enabled for your mobile phone camera).
> Map view and Tile view will display photos with their location fixed on the map
> Every time new geo-coded images are dropped in the folder, Omniscope will prompt a refresh from source and add the newcomers...


imageimage]]>
Demo: Content View - Using JavaScript arrays (2.8+) http://forums.visokio.com/discussion/1698/demo-content-view-using-javascript-arrays-2.8- Fri, 10 Aug 2012 07:15:58 -0400 CRead 1698@/discussions The result is the internal rate of return (IRR).
The data is a set of consecutive annual payments.
This is the same as the IRR function in Excel, so you can test against that for verification.

Further explanation:
http://office.microsoft.com/en-us/excel-help/irr-HP005209146.aspx
http://en.wikipedia.org/wiki/Internal_rate_of_return

Source code prior to adaptation:
http://code.google.com/p/npoi/source/browse/trunk/main/SS/Formula/Functions/Irr.cs?r=227]]>
Demo: Business Days Between Two Dates http://forums.visokio.com/discussion/1726/demo-business-days-between-two-dates Thu, 23 Aug 2012 07:13:10 -0400 CRead 1726@/discussions
This formula gives the same result as the NETWORKDAYS() function in Excel for all the dates I tested:

DECLARE(
ve,DECLARE(de,DATETOTEXT([End Date],'E'),IF(de='Mon',0,de='Tue',1,de='Wed',2,de='Thu',3,de='Fri',4,de='Sat',5,6)),
vs,DECLARE(ds,DATETOTEXT([Start Date],'E'),IF(ds='Mon',0,ds='Tue',1,ds='Wed',2,ds='Thu',3,ds='Fri',4,ds='Sat',5,6)),
5*INTFLOOR(DATEDIFF([Start Date],[End Date])/7) + VALUE(MID('1234555512344445123333451222234511112345001234550', 7*vs + ve + 1, 1))
)

Source of inspiration:
http://stackoverflow.com/questions/1828948/mysql-function-to-find-the-number-of-working-days-between-two-dates


====== Old version, recommended against! ========
Passing dates as dates into a script can cause odd behaviour in JavaScript. This demonstrates passing them as text, then converting in JavaScript to circumvent those issues.

The result is a calculation of the number of business days between two dates.
The script itself is a copy of:
http://partialclass.blogspot.co.uk/2011/07/calculating-working-days-between-two.html]]>
New 'Demos' category http://forums.visokio.com/discussion/1697/new-demos-category Fri, 10 Aug 2012 06:51:31 -0400 steve 1697@/discussions
This section is publicly available, so please only post suitable datasets. Visokio reserves the right to delete inappropriate posts.

To post, please Start a New Discussion and attach your file.]]>
Demo: Preserve local edits when refreshing from source? http://forums.visokio.com/discussion/2230/demo-preserve-local-edits-when-refreshing-from-sources Fri, 05 Jul 2013 09:07:22 -0400 pbalfe 2230@/discussions
At a high level - I have an input from a DB with some filters set up for calls for a service desk. I use the Field Organiser to add in 4 additional fileds - These will be Y/N tags for quality of certain fields in the DB. Loads into Omniscope no problem.
I then go into Omniscope and see all the data and the new fields. What I do then is get someone to look at a Table View and add a Y/N into the new columns. So far so good. I can report on them as usual.

But when I next do a refresh from the source data - naturally the information I added in Omniscope is not there and so everything is overwritten. What I want to do is find a way to 'protect' the data I add in Omniscope from not being over written... but cannot find out a setting of filter on how to do this? Any advice?]]>