Notes.
Other presentations/slides: http://www.oscon.com/oscon2012/public/schedule/proceedings
| snap: | |
| <VirtualHost *:80> | |
| Redirect permanent / http://www.snap.uaf.edu | |
| ServerName snap.uaf.edu | |
| </VirtualHost> | |
| www.snap: | |
| <VirtualHost *:80> | |
| Redirect /home http://www.snap.uaf.edu | |
| ServerAdmin [email protected] |
Notes.
Other presentations/slides: http://www.oscon.com/oscon2012/public/schedule/proceedings
| ="'" & B4 & " to " & C4 & "' : '#" & DEC2HEX(D4, 2) & DEC2HEX(E4,2) & DEC2HEX(F4, 2) & "'," |
<target name="jasmine" description="Run unit tests with Jasmine">
<exec executable="${basedir}/tests/js/jasmine-reporters/test/phantomjs.runner.sh">
<env key="DISPLAY" value=":0" />
<arg line="${basedir}/tests/js/jasmine-reporters/test/JUnitRunner.html"/>
</exec>
<copy todir="${basedir}/build/test-results">
<fileset dir="${basedir}/tests/js/jasmine-reporters/test">
<include name="**/TEST*" />
</fileset>| Model = Backbone.Model.extend({ | |
| url: '/something' | |
| }); | |
| aModel = new Model({ id: 'else' }); | |
| FixturesSync = function(method, model, options) { | |
| var url = model.url || model.collection.url; | |
| switch (method) { | |
| case "read": |
| MAP | |
| NAME "WMSSNAPTest" | |
| STATUS ON | |
| EXTENT -2183223.206 158412.933 4280776.794 2556412.933 | |
| UNITS METERS | |
| WEB | |
| IMAGEPATH "/tmp/" | |
| METADATA | |
| "wms_title" "Testing" |
| # analysis of implicit object hierarchy for rayjanwilson/cudasar, with an eye towards creating a runtime-swappable algorithm for sar processing. | |
| # basic idea here is that we'll use Builder pattern to assemble a SarProcessor, | |
| # and make each distinct algorithm a little object hierarchy so that we can mix'n'match | |
| # standard + cuda + other approaches for more interesting benchmarking | |
| # the builder patterns | |
| class SarProcessor: | |
| def process(SarImage): | |
| return self.azimuthCompression( self.RangeCompression( SarImage ), SarImage.metadata ) # need to pass the whole SarImage to get the L0 |