| Jira Id | Test Name |
|---|---|
| LVV-T23 | Verify implementation of Test Storing Approximations of Per-pixel Metadata (DMS-REQ-0326) |
| LVV-T24 |
| Jira Id | Test Name |
|---|---|
| LVV-T2 | LSP-00-00: Verification of the presence of the expected WISE data |
| LVV-T3 | [LSP-00-05: Demonstration of low-volume and/or indexed queries against th |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package foo | |
| import com.auth0.jwt.JWT | |
| import com.auth0.jwt.algorithms.Algorithm | |
| import com.auth0.jwt.exceptions.JWTVerificationException | |
| import org.apache.commons.codec.binary.Base64 | |
| import org.junit.Test | |
| import java.security.interfaces.RSAPublicKey | |
| import java.security.spec.RSAPublicKeySpec | |
| import java.math.BigInteger |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| latlng = pywraps2.S2LatLng_FromDegrees(24,42) | |
| latlng2 = pywraps2.S2LatLng_FromDegrees(40,60) | |
| latlng3 = pywraps2.S2LatLng_FromDegrees(26,46) | |
| distance = latlng.GetDistance(latlng2) | |
| # contains | |
| Circle = pywraps2.S2Cap | |
| circ_center = pywraps2.S2LatLng_FromDegrees(26,46).ToPoint() | |
| circ_angle = pywraps2.S1Angle.Degrees(10) |
Try this in GAVO Sync page (http://dc.zah.uni-heidelberg.de/__system__/tap/run/tap/async) at bottom, select HTML as output.
select ivoid, res_type, short_name, res_description, reference_url, content_type, res_version
from rr.resource
where ivoid like '%ivo://irsa.ipac/wise%'
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @Grab('org.liquibase:liquibase-core:3.5.1') | |
| import liquibase.database.core.* | |
| import liquibase.datatype.core.* | |
| def datatypes = [BooleanType,TinyIntType,SmallIntType,IntType,BigIntType, | |
| FloatType,DoubleType,DecimalType,NumberType, | |
| CharType,VarcharType,NCharType,NVarcharType, | |
| DateTimeType,TimeType,TimestampType,DateType, | |
| ClobType,BlobType,UUIDType] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Default Type Mappings for languages and frameworks: | |
| Type C++ Python Java JDBC SQLAlchemy[1] VOTable | |
| boolean bool bool boolean BOOLEAN BOOLEAN boolean | |
| byte int8 int byte TINYINT SMALLINT[2] unsignedByte | |
| short int16 int short SMALLINT SMALLINT short | |
| int int32 int int INTEGER INTEGER int | |
| long int64 int long BIGINT BIGINT long | |
| float float float float FLOAT FLOAT float | |
| double double float double DOUBLE FLOAT(precision=53) double |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import requests | |
| import json | |
| import jwt | |
| url = "https://example.com/protected/stuff/blah" | |
| scope = ["write:/stuff", "read:mysql://lsst-qserv:4040/"] | |
| subject = "bvan" | |
| demo_json = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import hudson.model.* | |
| def ciJobs = ['ScineceTools', "GlastRelease"] | |
| properties([ | |
| parameters([ | |
| stringParam( | |
| description: 'Github Payload', | |
| name: 'payload' |