<!-- 
RSS generated by JIRA (8.3.4#803005-sha1:1f96e09b3c60279a408a2ae47be3c745f571388b) at Sat Feb 10 16:46:21 JST 2024

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary append 'field=key&field=summary' to the URL of your request.
-->
<rss version="0.92" >
<channel>
    <title>PFS-JIRA</title>
    <link>https://pfspipe.ipmu.jp/jira</link>
    <description>This file is an XML representation of an issue</description>
    <language>en-us</language>    <build-info>
        <version>8.3.4</version>
        <build-number>803005</build-number>
        <build-date>13-09-2019</build-date>
    </build-info>


<item>
            <title>[SCIDB-81] select objects in a circular/rectangular region</title>
                <link>https://pfspipe.ipmu.jp/jira/browse/SCIDB-81</link>
                <project id="10601" key="SCIDB">Science Database</project>
                    <description>&lt;p&gt;hscMap can give users IDs of clicked objects on hscMap.&#160; Instead of clicking individual objects, let users select objects in a circular/rectangular region.&lt;/p&gt;</description>
                <environment></environment>
        <key id="14270">SCIDB-81</key>
            <summary>select objects in a circular/rectangular region</summary>
                <type id="10001" iconUrl="https://pfspipe.ipmu.jp/jira/secure/viewavatar?size=xsmall&amp;avatarId=10515&amp;avatarType=issuetype">Story</type>
                                            <priority id="10000" iconUrl="https://pfspipe.ipmu.jp/jira/images/icons/priorities/medium.svg">Normal</priority>
                        <status id="10002" iconUrl="https://pfspipe.ipmu.jp/jira/images/icons/statuses/generic.png" description="The issue is resolved, reviewed, and merged">Done</status>
                    <statusCategory id="3" key="done" colorName="green"/>
                                    <resolution id="10000">Done</resolution>
                                        <assignee username="michitaro">michitaro</assignee>
                                    <reporter username="msyktnk">Masayuki Tanaka</reporter>
                        <labels>
                    </labels>
                <created>Thu, 26 Mar 2020 07:23:39 +0000</created>
                <updated>Mon, 17 Aug 2020 04:59:22 +0000</updated>
                            <resolved>Mon, 17 Aug 2020 04:59:22 +0000</resolved>
                                                                        <due></due>
                            <votes>0</votes>
                                    <watches>2</watches>
                                                                <comments>
                            <comment id="17162" author="michitaro" created="Mon, 18 May 2020 11:45:45 +0000"  >&lt;p&gt;I think this issue should be in elip &apos;hscMap module&apos;.&lt;/p&gt;</comment>
                            <comment id="17165" author="michitaro" created="Mon, 18 May 2020 23:13:05 +0000"  >&lt;p&gt;We can access fov and rectangular selection through `.fov` and `.`rect_selection` like so:&lt;/p&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-python&quot;&gt;
&lt;span class=&quot;code-keyword&quot;&gt;import&lt;/span&gt; hscmap

w = hscmap.Window()
&lt;span class=&quot;code-object&quot;&gt;print&lt;/span&gt;(w.fov.cone_sql())
&lt;span class=&quot;code-object&quot;&gt;print&lt;/span&gt;(w.rect_selection.sql())
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;&lt;a href=&quot;https://drive.google.com/open?id=1HRivWzlHITTNntjUfBOAPoZyltG9wfhe&amp;amp;authuser=koike.michitaro.md@alumni.tsukuba.ac.jp&amp;amp;usp=drive_fs&quot; class=&quot;external-link&quot; rel=&quot;nofollow&quot;&gt;https://drive.google.com/open?id=1HRivWzlHITTNntjUfBOAPoZyltG9wfhe&amp;amp;authuser=koike.michitaro.md@alumni.tsukuba.ac.jp&amp;amp;usp=drive_fs&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="17406" author="michitaro" created="Tue, 30 Jun 2020 12:17:58 +0000"  >&lt;p&gt;Tanaka-san said at slack:&lt;/p&gt;

&lt;p&gt;About one of your tasks to pick objects from a circular/rectangular region.&#160; Let me explain step by step.&lt;br/&gt;
1 - select objects in, e.g., COSMOS from the database&lt;br/&gt;
2 - mark the selected objects in hscMap&lt;br/&gt;
3 - if you click an object on hscMap, you can get its object ID back in Compute&lt;br/&gt;
4 - Currently, there is no way to select multiple objects, and this is what we want to implement.&#160; A simple way to select multiple objects wold be to define a circular/rectangular region on hscMap, and get all objects in that region.&lt;br/&gt;
Is this clear?&lt;/p&gt;</comment>
                            <comment id="17414" author="michitaro" created="Tue, 30 Jun 2020 19:40:12 +0000"  >&lt;p&gt;I think the requirements of this issue can be covered by this issue.&lt;br/&gt;
&lt;a href=&quot;https://pfspipe.ipmu.jp/jira/browse/SCIDB-82&quot; class=&quot;external-link&quot; rel=&quot;nofollow&quot;&gt;https://pfspipe.ipmu.jp/jira/browse/SCIDB-82&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;To select objects spatially is task of numpy or SQL rather than hscMap&apos;s one.&lt;/p&gt;
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
res = hscdata.sql.query(&lt;span class=&quot;code-quote&quot;&gt;&apos;SELECT...&apos;&lt;/span&gt;)
where = (10 &amp;lt;= res.ra) &amp;amp; (11 &amp;lt; res.ra)
res = res[where]&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href=&quot;https://pfspipe.ipmu.jp/jira/browse/SCIDB-82&quot; class=&quot;external-link&quot; rel=&quot;nofollow&quot;&gt;https://pfspipe.ipmu.jp/jira/browse/SCIDB-82&lt;/a&gt;&#160;provides more visual method to select objects.&lt;/p&gt;</comment>
                            <comment id="17544" author="michitaro" created="Mon, 17 Aug 2020 04:59:22 +0000"  >&lt;p&gt;This issue can be closed because it can be covered with &quot;clickable object catalog&quot;, so we can close this ticket.&lt;/p&gt;</comment>
                    </comments>
                    <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                            <customfield id="customfield_10500" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10006" key="com.pyxis.greenhopper.jira:gh-epic-link">
                        <customfieldname>Epic Link</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>SCIDB-45</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_10010" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0|zzs0z4:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_10100" key="com.atlassian.jira.plugin.system.customfieldtypes:userpicker">
                        <customfieldname>Reviewers</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>msyktnk</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                </customfields>
    </item>
</channel>
</rss>