Re: [Arches] Django not installed message

2017-12-07 Thread Roshan Bhurtha
Sorry, I meant  I will *NOW* try to do some basic customizations and import 
some of my Dublin Core based Metadata ( a simple set ) and see how this 
goes. 

On Thursday, 7 December 2017 11:02:49 UTC+2, Roshan Bhurtha wrote:
>
> Dear Adam 
> Thanks for delving in to this. Many apologies for this late reply.  As in 
> many small teams I have to get my hand in many pies and had to quickly jump 
> from one project to another.
>
> I have been able to install the latest  Arches version 4.0.1. I will not 
> try to do some basic customizations and import some of my Dublin Core based 
> Metadata ( a simple set ) and see how this goes. 
>
> Regards
> Roshan
>
> On Friday, 24 November 2017 17:56:21 UTC+2, Adam Cox wrote:
>>
>> Hi Roshan, I think the problem for you is that you have tried to run pip 
>> install arches and then pip install arches --no-binary :all: without 
>> running pip uninstall arches in between. Then, when you then tried to 
>> install 4.0b3 pip considered that to be a new package and ran the entire 
>> install process properly. So, it's not a difference with the Arches 
>> packages, but an issue with your virtualenv. To test this, make a fresh 
>> virtual environment and first run pip install arches --no-binaries :all: and 
>> you'll be able to import django.
>>
>> I will share some screenshots of my own retesting of this, demonstrating 
>> the need to uninstall the arches package.
>>
>> First with python 2.7.6 (which is my current global python)
>>
>> [image: Inline image 1]
>> etc.. (lots more uninstall messages)
>> [image: Inline image 2]
>>
>> And also with Python 2.7.13
>>
>> [image: Inline image 3]
>> etc.
>> [image: Inline image 4]
>>
>> You'll notice that in both environments, pip 9.0.1 is used as well.
>>
>> The reason for the no-binaries argument is that by default pip tries to 
>> use a different type installation process (using binaries) for all of the 
>> python packages listed in requirements.txt. Some of those packages 
>> apparently don't have binaries available, which (annoyingly) breaks the 
>> installation process for all of them. This is a strange and kind of opaque 
>> issue (also I believe pip behaves slightly differently on different 
>> operating systems), but we found that you can direct pip to not look for 
>> any binary distributions when it installs these python dependencies, which 
>> fixes the issue and is a safe course of action.
>>
>> Thanks for being diligent about trying to fix this issue. I strongly 
>> advise getting 4.0.1 to install correctly and that you do not use 4.0b3, as 
>> there were some important bugfixes applied in 4.0.1.
>>
>> Adam
>>
>> On Fri, Nov 24, 2017 at 2:59 AM, Roshan Bhurtha <rbhu...@gmail.com> 
>> wrote:
>>
>>> *An update on this:*
>>>
>>>  It seems that there is a hiccup with the command "pip install arches 
>>> --no-binary :all:"
>>>
>>> But if I run this command
>>>
>>> *pip install arches==4.0b3 --no-binary :all:*
>>>
>>> django is installed !
>>>
>>> I am not sure why the default version of Arches will not pull the 
>>> dependancies.
>>>
>>> regards
>>> Roshan
>>>
>>> On Wednesday, 22 November 2017 10:25:18 UTC+2, Roshan Bhurtha wrote:
>>>>
>>>> Dear Adam, 
>>>> Thanks for your reply. 
>>>> I ran  the "pip install arches --no-binary :all:"   command, and it 
>>>> said all "Requirement already satisfied", BUT django was not installed 
>>>> when 
>>>> I imported inside Python!
>>>> Have a look at this screenshot please.
>>>> Any ideas what I am doing wrong ?
>>>> Thanks 
>>>> Roshan
>>>>
>>>>
>>>> <https://lh3.googleusercontent.com/-du6pO4bvNz4/WhUz8c-Bn0I/CFE/ixs_rBOP8_0wx8WHijMs2M5n_R8tDbF9ACLcBGAs/s1600/django.png>
>>>>
>>>>
>>>> On Friday, 17 November 2017 18:40:22 UTC+2, Adam Cox wrote:
>>>>>
>>>>> Hi Roshan,
>>>>>
>>>>> Any command you run that references the manage.py file must be run 
>>>>> with the virtual environment activated, which will add the (ENV) prefix 
>>>>> to 
>>>>> your command prompt.
>>>>>
>>>>> To quickly test that Django (along with all other python dependencies) 
>>>>> has installed correctly, you can activate your virtual environme

Re: [Arches] Django not installed message

2017-12-07 Thread Roshan Bhurtha
Dear Adam 
Thanks for delving in to this. Many apologies for this late reply.  As in 
many small teams I have to get my hand in many pies and had to quickly jump 
from one project to another.

I have been able to install the latest  Arches version 4.0.1. I will not 
try to do some basic customizations and import some of my Dublin Core based 
Metadata ( a simple set ) and see how this goes. 

Regards
Roshan

On Friday, 24 November 2017 17:56:21 UTC+2, Adam Cox wrote:
>
> Hi Roshan, I think the problem for you is that you have tried to run pip 
> install arches and then pip install arches --no-binary :all: without 
> running pip uninstall arches in between. Then, when you then tried to 
> install 4.0b3 pip considered that to be a new package and ran the entire 
> install process properly. So, it's not a difference with the Arches 
> packages, but an issue with your virtualenv. To test this, make a fresh 
> virtual environment and first run pip install arches --no-binaries :all: and 
> you'll be able to import django.
>
> I will share some screenshots of my own retesting of this, demonstrating 
> the need to uninstall the arches package.
>
> First with python 2.7.6 (which is my current global python)
>
> [image: Inline image 1]
> etc.. (lots more uninstall messages)
> [image: Inline image 2]
>
> And also with Python 2.7.13
>
> [image: Inline image 3]
> etc.
> [image: Inline image 4]
>
> You'll notice that in both environments, pip 9.0.1 is used as well.
>
> The reason for the no-binaries argument is that by default pip tries to 
> use a different type installation process (using binaries) for all of the 
> python packages listed in requirements.txt. Some of those packages 
> apparently don't have binaries available, which (annoyingly) breaks the 
> installation process for all of them. This is a strange and kind of opaque 
> issue (also I believe pip behaves slightly differently on different 
> operating systems), but we found that you can direct pip to not look for 
> any binary distributions when it installs these python dependencies, which 
> fixes the issue and is a safe course of action.
>
> Thanks for being diligent about trying to fix this issue. I strongly 
> advise getting 4.0.1 to install correctly and that you do not use 4.0b3, as 
> there were some important bugfixes applied in 4.0.1.
>
> Adam
>
> On Fri, Nov 24, 2017 at 2:59 AM, Roshan Bhurtha <rbhu...@gmail.com 
> > wrote:
>
>> *An update on this:*
>>
>>  It seems that there is a hiccup with the command "pip install arches 
>> --no-binary :all:"
>>
>> But if I run this command
>>
>> *pip install arches==4.0b3 --no-binary :all:*
>>
>> django is installed !
>>
>> I am not sure why the default version of Arches will not pull the 
>> dependancies.
>>
>> regards
>> Roshan
>>
>> On Wednesday, 22 November 2017 10:25:18 UTC+2, Roshan Bhurtha wrote:
>>>
>>> Dear Adam, 
>>> Thanks for your reply. 
>>> I ran  the "pip install arches --no-binary :all:"   command, and it 
>>> said all "Requirement already satisfied", BUT django was not installed when 
>>> I imported inside Python!
>>> Have a look at this screenshot please.
>>> Any ideas what I am doing wrong ?
>>> Thanks 
>>> Roshan
>>>
>>>
>>> <https://lh3.googleusercontent.com/-du6pO4bvNz4/WhUz8c-Bn0I/CFE/ixs_rBOP8_0wx8WHijMs2M5n_R8tDbF9ACLcBGAs/s1600/django.png>
>>>
>>>
>>> On Friday, 17 November 2017 18:40:22 UTC+2, Adam Cox wrote:
>>>>
>>>> Hi Roshan,
>>>>
>>>> Any command you run that references the manage.py file must be run 
>>>> with the virtual environment activated, which will add the (ENV) prefix to 
>>>> your command prompt.
>>>>
>>>> To quickly test that Django (along with all other python dependencies) 
>>>> has installed correctly, you can activate your virtual environment, then 
>>>> run python (which will open the python interpreter) then import django. 
>>>> If you get an error, then something didn't work during the pip install 
>>>> arches --no-binary :all: process. To exit the python interpreter, use 
>>>> exit().
>>>>
>>>> FYI, I have just finished an overhaul of the installation documentation 
>>>> that should clear up some issues that have come up, streamline the 
>>>> process, 
>>>> as well as a command to load an example package that we have made so it is 
>>>> easier to get up and running. You can find it here: 

Re: [Arches] Django not installed message

2017-11-24 Thread Roshan Bhurtha
*An update on this:*

 It seems that there is a hiccup with the command "pip install arches 
--no-binary :all:"

But if I run this command

*pip install arches==4.0b3 --no-binary :all:*

django is installed !

I am not sure why the default version of Arches will not pull the 
dependancies.

regards
Roshan

On Wednesday, 22 November 2017 10:25:18 UTC+2, Roshan Bhurtha wrote:
>
> Dear Adam, 
> Thanks for your reply. 
> I ran  the "pip install arches --no-binary :all:"   command, and it said 
> all "Requirement already satisfied", BUT django was not installed when I 
> imported inside Python!
> Have a look at this screenshot please.
> Any ideas what I am doing wrong ?
> Thanks 
> Roshan
>
>
> <https://lh3.googleusercontent.com/-du6pO4bvNz4/WhUz8c-Bn0I/CFE/ixs_rBOP8_0wx8WHijMs2M5n_R8tDbF9ACLcBGAs/s1600/django.png>
>
>
> On Friday, 17 November 2017 18:40:22 UTC+2, Adam Cox wrote:
>>
>> Hi Roshan,
>>
>> Any command you run that references the manage.py file must be run with 
>> the virtual environment activated, which will add the (ENV) prefix to your 
>> command prompt.
>>
>> To quickly test that Django (along with all other python dependencies) 
>> has installed correctly, you can activate your virtual environment, then 
>> run python (which will open the python interpreter) then import django. 
>> If you get an error, then something didn't work during the pip install 
>> arches --no-binary :all: process. To exit the python interpreter, use 
>> exit().
>>
>> FYI, I have just finished an overhaul of the installation documentation 
>> that should clear up some issues that have come up, streamline the process, 
>> as well as a command to load an example package that we have made so it is 
>> easier to get up and running. You can find it here: 
>> http://arches4.readthedocs.io/en/latest/installation/ (as before).
>>
>> Adam
>>
>> On Fri, Nov 17, 2017 at 7:05 AM, Roshan Bhurtha <rbhu...@gmail.com> 
>> wrote:
>>
>>> Dear all
>>> I am trying to install arches( Windows 64-bit) and I am now at  the 
>>> stage where I have to create a project, with the command *"python 
>>> C:\Projects\ENV\Scripts\arches-project create my_project"*
>>> * , *as given on the arches website.
>>>
>>> I run into a problem here: I am assuming that I have to run the above 
>>> mentioned command OUT of the (*ENV) * that I created ?
>>>
>>> And if I do run this command from a normal windows command line (out of 
>>> the ENV) , i get the  error message  "ImportError: no module named django" 
>>> How do I proceed ? And at what stage was Django supposed to have been 
>>> installed in the process ?
>>> I am trying to do as diligently as possible and follow the steps given 
>>> exactly, but obviously I made am error(s) somewhere. Any help will be much 
>>> appreciated.
>>>
>>> thanks !
>>> Roshan
>>>
>>> -- 
>>> -- To post, send email to arches...@googlegroups.com. To unsubscribe, 
>>> send email to archesprojec...@googlegroups.com. For more information, 
>>> visit https://groups.google.com/d/forum/archesproject?hl=en
>>> --- 
>>> You received this message because you are subscribed to the Google 
>>> Groups "Arches Project" group.
>>> To unsubscribe from this group and stop receiving emails from it, send 
>>> an email to archesprojec...@googlegroups.com.
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>

-- 
-- To post, send email to archesproject@googlegroups.com. To unsubscribe, send 
email to archesproject+unsubscr...@googlegroups.com. For more information, 
visit https://groups.google.com/d/forum/archesproject?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Arches Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to archesproject+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[Arches] Re: Is Arches suitable for this project ?

2017-11-24 Thread Roshan Bhurtha
Hi Vincent. Thanks for taking the time to write a detailed answer. It's 
much appreciated.

Regarding the display of 3D models, I am familiar with 3D-HOP and have been 
using it for to display all our 3D models for a while now. Heva  look at 
our website when you can: 
http://www.zamaniproject.org/index.php/3d-model-viewer.html

Thanks a lot for the ideas regarding the documentation of the laser scans. 
It's also good to know that we can import our Dublin Core metadata in 
Arches. This will help a lot.

I will use Arches  V4, definitely. I will start by understanding and 
creating the resource file model, as you suggest. thanks!

Thanks again for your answers and will keep in touch.
regards
Roshan







On Sunday, 19 November 2017 21:35:38 UTC+2, Vincent Meijer wrote:
>
> Hello Roshan,
>
> Until recently I worked for CVAST and set up an initial (albeit 
> unfinished) first version of Arches for our 3D cultural heritage data. 
> What I did for our 3D models was set up the 3D web viewer called 3D HOP as 
> a plugin in Arches reports (a.k.a. detail page for heritage resource). 
> I am currently quite busy (moving oversees back to Europe), but I plan to 
> create a more detailed write-up of how I did that.
>
> In the meantime: 
> 3D HOP: http://vcg.isti.cnr.it/3dhop/ 
> For the best results, convert your 3D models to the Nexus (.nxs) format: 
> http://vcg.isti.cnr.it/nexus/ 
> I read (but have not tested) that the .nxs format can also handle point 
> clouds, which will come in handy for your heritage site models.
>
> Our Arches project source code: https://github.com/cvast/cvast-arches
> In particular:
>  - Html templates: 
> https://github.com/cvast/cvast-arches/tree/master/cvast_arches/cvast_arches/templates/views
>  - Javascript: 
> https://github.com/cvast/cvast-arches/tree/master/cvast_arches/cvast_arches/media/js
>  
>  - Django migration: 
> https://github.com/cvast/cvast-arches/blob/master/cvast_arches/cvast_arches/migrations/0001_report_template.py
>
>
>
> For documenting the 3D scans I had the following in mind:
> - Activity Resource: Describes the project in general (e.g. a field trip 
> of a month or a long-term project of scanning in a particular 
> area/country). 
> - Digitization Event: More detailed, short-term documentation of the 'how' 
> and 'when' of the scan sessions. With this you can e.g. document settings 
> in your scanners (to show how you created your 3D models) and also when 
> exactly you made the scan (mostly useful for yourself).
> - Architectural Resource: Documents sites, buildings, etc.
> - Heritage Object: Documents 'portable' heritage objects
> - File (set): The actual 3D model. This is where you upload the file and 
> record e.g. the file type and if it's a mesh or a point cloud. 
>
>
> <https://lh3.googleusercontent.com/-r4HTJcgb0-k/WhHXi1A5NgI/CE4/5quVbjZ_63ktFbqqHMDR75PvvRfmZ_7SACLcBGAs/s1600/Digitization%2BEvent.PNG>
>
>
>
>
> As for your first question: yes I think Arches is definitely worth your 
> while. 
> I would *strongly* recommend, though, to use Arches v4 instead of v3.
>  
> Regarding importing: it is definitely possible to import your data. 
> The process is described here: 
> http://arches4.readthedocs.io/en/latest/import-export/
> Personally I prefer to do a migration like this manually, ie. without 
> import scripts, just entering the data through the web frontend. 
> It gives more control and when the dataset is not too large it can be 
> faster than learning how to prepare the automated import.
>
> Regarding Dublin Core, it can definitely be mapped to CIDOC CRM. The 
> latter is quite more complex, but here is a useful article on how to map 
> the two:
> dcpapers.dublincore.org/pubs/article/download/3779/1969 
> More details (if required, but might make things overly complicated): 
> http://www.cidoc-crm.org/Resources/the-dublin-core-element-set
>
>
> And finally: suggestions. My pitfall was that I wanted to make things too 
> perfect and complete right from the start. 
> It's important here to take things in small steps, otherwise it can be 
> overwhelming. For example: start with creating just the File (set) resource 
> model. 
> This is the bare minimum to publish your 3D models to the world. The 
> metadata describing the site (e.g. Architectural Resource) and the scanning 
> process (Digitization Event) can follow later. 
>
>
> I hope this helps and I'll be in touch soon with a more detailed write-up 
> regarding 3D HOP!
>
> Vincent
>
>
> On Friday, 17 November 2017 07:54:02 UTC-5, Roshan Bhurtha wrote:
>>
>> Thanks Dennis.  I already had a look at the CVAST project. Impressive. 
>>
>> Warm regards
>> Roshan
>>
>> On Wednesday, 15 Novem

Re: [Arches] Django not installed message

2017-11-22 Thread Roshan Bhurtha
Dear Adam, 
Thanks for your reply. 
I ran  the "pip install arches --no-binary :all:"   command, and it said 
all "Requirement already satisfied", BUT django was not installed when I 
imported inside Python!
Have a look at this screenshot please.
Any ideas what I am doing wrong ?
Thanks 
Roshan

<https://lh3.googleusercontent.com/-du6pO4bvNz4/WhUz8c-Bn0I/CFE/ixs_rBOP8_0wx8WHijMs2M5n_R8tDbF9ACLcBGAs/s1600/django.png>


On Friday, 17 November 2017 18:40:22 UTC+2, Adam Cox wrote:
>
> Hi Roshan,
>
> Any command you run that references the manage.py file must be run with 
> the virtual environment activated, which will add the (ENV) prefix to your 
> command prompt.
>
> To quickly test that Django (along with all other python dependencies) has 
> installed correctly, you can activate your virtual environment, then run 
> python (which will open the python interpreter) then import django. If 
> you get an error, then something didn't work during the pip install 
> arches --no-binary :all: process. To exit the python interpreter, use 
> exit().
>
> FYI, I have just finished an overhaul of the installation documentation 
> that should clear up some issues that have come up, streamline the process, 
> as well as a command to load an example package that we have made so it is 
> easier to get up and running. You can find it here: 
> http://arches4.readthedocs.io/en/latest/installation/ (as before).
>
> Adam
>
> On Fri, Nov 17, 2017 at 7:05 AM, Roshan Bhurtha <rbhu...@gmail.com 
> > wrote:
>
>> Dear all
>> I am trying to install arches( Windows 64-bit) and I am now at  the stage 
>> where I have to create a project, with the command *"python 
>> C:\Projects\ENV\Scripts\arches-project create my_project"*
>> * , *as given on the arches website.
>>
>> I run into a problem here: I am assuming that I have to run the above 
>> mentioned command OUT of the (*ENV) * that I created ?
>>
>> And if I do run this command from a normal windows command line (out of 
>> the ENV) , i get the  error message  "ImportError: no module named django" 
>> How do I proceed ? And at what stage was Django supposed to have been 
>> installed in the process ?
>> I am trying to do as diligently as possible and follow the steps given 
>> exactly, but obviously I made am error(s) somewhere. Any help will be much 
>> appreciated.
>>
>> thanks !
>> Roshan
>>
>> -- 
>> -- To post, send email to arches...@googlegroups.com . To 
>> unsubscribe, send email to archesprojec...@googlegroups.com . 
>> For more information, visit 
>> https://groups.google.com/d/forum/archesproject?hl=en
>> --- 
>> You received this message because you are subscribed to the Google Groups 
>> "Arches Project" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to archesprojec...@googlegroups.com .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>

-- 
-- To post, send email to archesproject@googlegroups.com. To unsubscribe, send 
email to archesproject+unsubscr...@googlegroups.com. For more information, 
visit https://groups.google.com/d/forum/archesproject?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Arches Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to archesproject+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[Arches] Django not installed message

2017-11-17 Thread Roshan Bhurtha
Dear all
I am trying to install arches( Windows 64-bit) and I am now at  the stage 
where I have to create a project, with the command *"python 
C:\Projects\ENV\Scripts\arches-project create my_project"*
* , *as given on the arches website.

I run into a problem here: I am assuming that I have to run the above 
mentioned command OUT of the (*ENV) * that I created ?

And if I do run this command from a normal windows command line (out of the 
ENV) , i get the  error message  "ImportError: no module named django" 
How do I proceed ? And at what stage was Django supposed to have been 
installed in the process ?
I am trying to do as diligently as possible and follow the steps given 
exactly, but obviously I made am error(s) somewhere. Any help will be much 
appreciated.

thanks !
Roshan

-- 
-- To post, send email to archesproject@googlegroups.com. To unsubscribe, send 
email to archesproject+unsubscr...@googlegroups.com. For more information, 
visit https://groups.google.com/d/forum/archesproject?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Arches Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to archesproject+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[Arches] Re: Is Arches suitable for this project ?

2017-11-17 Thread Roshan Bhurtha
Thanks Dennis.  I already had a look at the CVAST project. Impressive. 

Warm regards
Roshan

On Wednesday, 15 November 2017 19:47:31 UTC+2, Dennis Wuthrich wrote:
>
> Hi Roshan,
>
> I'm aware of at least 2 projects that use Arches in a way very similar to 
> your description:
> http://www.earlywatercraft.org/index.htm (using Arches v3)
> CVAST (https://cvast.usf.edu/news/)
>
> Hope this points you in the proper direction.
>
> -Dennis
>
> On Monday, November 13, 2017 at 3:03:39 AM UTC-8, Roshan Bhurtha wrote:
>>
>> Dear Forum users, 
>>
>> I have a couple of questions regarding the applicability of Arches to our 
>> spatial heritage documentation project. I want to know if you think, Arches 
>> is overkill or not applicable for our project.
>>
>> Website: www.zamaniproject.org
>>
>> Our team documents heritage sites and creates associated metadata using 
>> the Dublin Core Standards. 
>>
>> We create 
>>
>>1. 
>>
>>High resolution 3D models using laser scans (textured & untextured)
>>2. 
>>
>>Plans & sections derived from the laser scans
>>3. 
>>
>>GIS’s of the sites
>>4. 
>>
>>Full dome Panoramas
>>5. 
>>
>>Collection of Casual photos
>>6. 
>>
>>Drone imagery
>>
>>
>> I would like to use Arches to make our data more “visible” online. Our 
>> web site shows a sample of our data, but does not have any query 
>> functionality, login capability etc..
>>
>> I started installing Arches V3 on a local machine and got it to work 
>> partially, but took me some time to get it going. The effort to get Arches 
>> to work was then stopped as we are unsure if it is worthwhile.
>>
>> So my questions are: 
>>
>>- 
>>
>>Is it worthwhile for me to look further into Arches ?
>>- 
>>
>>Is there a possibility of importing, in a batch fashion, Dublin Core 
>>metadata ( xml or csv) into Arches easily ?
>>- 
>>
>>Any other suggestions ?
>>
>>
>> Thanks for your time
>>
>> Regards
>>
>> Roshan
>>
>> Zamani Project, Division of Geomatics
>>
>> University of Cape Town
>>
>>

-- 
-- To post, send email to archesproject@googlegroups.com. To unsubscribe, send 
email to archesproject+unsubscr...@googlegroups.com. For more information, 
visit https://groups.google.com/d/forum/archesproject?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Arches Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to archesproject+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[Arches] Is Arches suitable for this project ?

2017-11-13 Thread Roshan Bhurtha


Dear Forum users, 

I have a couple of questions regarding the applicability of Arches to our 
spatial heritage documentation project. I want to know if you think, Arches 
is overkill or not applicable for our project.

Website: www.zamaniproject.org

Our team documents heritage sites and creates associated metadata using the 
Dublin Core Standards. 

We create 

   1. 
   
   High resolution 3D models using laser scans (textured & untextured)
   2. 
   
   Plans & sections derived from the laser scans
   3. 
   
   GIS’s of the sites
   4. 
   
   Full dome Panoramas
   5. 
   
   Collection of Casual photos
   6. 
   
   Drone imagery
   

I would like to use Arches to make our data more “visible” online. Our web 
site shows a sample of our data, but does not have any query functionality, 
login capability etc..

I started installing Arches V3 on a local machine and got it to work 
partially, but took me some time to get it going. The effort to get Arches 
to work was then stopped as we are unsure if it is worthwhile.

So my questions are: 

   - 
   
   Is it worthwhile for me to look further into Arches ?
   - 
   
   Is there a possibility of importing, in a batch fashion, Dublin Core 
   metadata ( xml or csv) into Arches easily ?
   - 
   
   Any other suggestions ?
   

Thanks for your time

Regards

Roshan

Zamani Project, Division of Geomatics

University of Cape Town

-- 
-- To post, send email to archesproject@googlegroups.com. To unsubscribe, send 
email to archesproject+unsubscr...@googlegroups.com. For more information, 
visit https://groups.google.com/d/forum/archesproject?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Arches Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to archesproject+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[Arches] Re: Signing in

2016-07-11 Thread Roshan Bhurtha
Hi Vincent. Thanks for the welcome!
I am glad you like our web site, but as I have said previously there is a 
lot more to do . There are some bugs to be removed and our user interface 
for  3DHOP is primitive. It needs a good overhaul. Our primary objective 
was to show case a subset of our data, where users can then request more if 
they like it.

I will start a thread regarding the use of 3DHOP if anyone wants to talk 
about it. I also just started with the Arches install and don't have 
anything up & running.

Your facebook page has interesting projects and I am looking forward to see 
your web site !

regards
Roshan

On Thursday, 7 July 2016 16:31:59 UTC+2, Vincent Meijer wrote:
>
> Hi Roshan,
>
> Welcome to Arches! Your experience with documenting heritage and building 
> websites will be a valuable addition to the team. 
> Your website looks really good. I especially liked the animations where 
> the monument walls are stripped down to show what's behind them.
>
> We both have quite similar jobs: I work for the Center for Virtualization 
> and Applied Spatial Technologies (CVAST) at the University of South 
> Florida. The center collects GIS and 3D data of (archaeological) heritage 
> sites and objects. (No website live yet, but here's our Facebook page: 
> https://www.facebook.com/USFCVAST/ 
> <https://www.google.com/url?q=https%3A%2F%2Fwww.facebook.com%2FUSFCVAST%2F=D=1=AFQjCNHyVrGdjWloa9Bqhle2v_RlfsMZgw>
>  
> ) 
> Like you, I am tasked with anything IT, but I also go on field 
> expeditions. I just came back from a trip to Spain to scan monuments with 
> terrestrial laser scanners and photogrammetry. 
>
> I am also looking for ways of presenting our 3D data on Arches. For now I 
> plan on implementing 3DHOP for meshes and Potree for point clouds. I think 
> there are more people here interested in that, so I was hoping you could 
> start a new thread for us to explain how you integrated 3DHOP in your 
> current website. Have you automated anything? How do you store and deploy 
> the models? Things like that could be interesting for all of us. 
>
> Thanks and again: welcome to Arches!
>
> Vincent
>
>
> On Wednesday, 6 July 2016 05:59:35 UTC-4, Roshan Bhurtha wrote:
>>
>> Hi Ed.
>> I am Roshan Bhurtha, from the Zamani Project, Geomatics Division, 
>> University of Cape Town. I am an Electrical Engineer/Programmer and I work 
>> in a team which documents heritage sites in the Middle East and Africa.
>> We have been documenting heritage sites for more than a decade and worked 
>> with international institutions, incl. the Getty ( Valley of the Queens 
>> Project). My function in the team is: writing code when needed for our 
>> laser scan processing pipeline, processing 3D terrestrial lidar, automating 
>> processes, teaching programming, fieldwork (the most interesting part), 
>> metadata stuff,  and some admin :)
>>  
>> Arches looks like a very nice way to present our data to the public ( and 
>> we have a lot of it ). I want a system that can help me manage users with 
>> different access levels, with the possibility to upload download data and 
>> present our massive 3D data sets and GIS data on the web. We do that, 
>> partially on our web site, but there is lots of room for improvements (
>> www.zamaniproject.org) ! 
>> I currently use FTP when having to dish out data to people, but starts to 
>> be a pain.
>>
>> We are based at the beautiful University of Cape Town, at the foot of the 
>> Devil's Peak. Out of my window is, unfortunately, another set of ugly 
>> windows. But a 1 minute walk out of the office building gives me a nice 
>> panoramic view of the city.
>>
>> I look forward to Arches!
>> Roshan
>>
>>
>>
>>
>>
>>
>>  
>>
>> On Thursday, 22 August 2013 17:29:37 UTC+2, Edmund Lee wrote:
>>>
>>> Hello all, ... and welcome in particular to those who have joined the 
>>> Arches Discussion Forum recently.
>>>
>>> This online group was initially set up for the project team, and has 
>>> just recently been opened up as the public, so some of us haven't met 
>>> before. How about we all share a bit of background, just like we would if 
>>> we were meeting in the real world? If that sounds good to you, reply to 
>>> this thread and share with the group some or all of the following:
>>>
>>>- what is your interest in Arches?
>>>
>>>
>>>- where in the world are you working?
>>>
>>> and, just to make it a bit more fun,
>>>
>>>- what can you see out of the window? Is there any heritage in your 
&g

[Arches] Re: Signing in

2016-07-11 Thread Roshan Bhurtha
Hi Ed. Thanks for the warm welcome. I am glad you like our web page but we 
have a lot more work to do on it.
I only started looking at Arches and going though the installation process 
and that of  *Arches-HIP <http://arches-hip.readthedocs.org/en/latest/>*

thanks!
Roshan

On Thursday, 7 July 2016 11:00:21 UTC+2, Edmund Lee wrote:
>
> Hi Roshan, and welcome to the Arches group! You are joining hundreds of 
> members from around the world who have an interest in the development of 
> the Arches software.
>
> I'm sorry to hear you don't have a great view from you window, but your 
> project website looks truly amazing. Many thanks for the link.
>
> There are many GIS experts here who can I'm sure contribute thoughts on 
> any question you may have. I'm less familiar with the potential for Arches 
> to handle large 3D datasets, though it's a proposal that has been discussed 
> previously here e.g. 
>
>
> https://docs.google.com/document/d/1Qa9cvqq3-8paIaD5yIi-qdjJdehylCp9mcZ8SEif2W4/edit
>
> Can anyone else on the project team comment on 3D data handling? Perhaps 
> we need a discussion thread to cover that?
>
> All good wishes
>
> Ed
>
> On Wednesday, July 6, 2016 at 10:59:35 AM UTC+1, Roshan Bhurtha wrote:
>
>> Hi Ed.
>> I am Roshan Bhurtha, from the Zamani Project, Geomatics Division, 
>> University of Cape Town. I am an Electrical Engineer/Programmer and I work 
>> in a team which documents heritage sites in the Middle East and Africa.
>> We have been documenting heritage sites for more than a decade and worked 
>> with international institutions, incl. the Getty ( Valley of the Queens 
>> Project). My function in the team is: writing code when needed for our 
>> laser scan processing pipeline, processing 3D terrestrial lidar, automating 
>> processes, teaching programming, fieldwork (the most interesting part), 
>> metadata stuff,  and some admin :)
>>  
>> Arches looks like a very nice way to present our data to the public ( and 
>> we have a lot of it ). I want a system that can help me manage users with 
>> different access levels, with the possibility to upload download data and 
>> present our massive 3D data sets and GIS data on the web. We do that, 
>> partially on our web site, but there is lots of room for improvements (
>> www.zamaniproject.org) ! 
>> I currently use FTP when having to dish out data to people, but starts to 
>> be a pain.
>>
>> We are based at the beautiful University of Cape Town, at the foot of the 
>> Devil's Peak. Out of my window is, unfortunately, another set of ugly 
>> windows. But a 1 minute walk out of the office building gives me a nice 
>> panoramic view of the city.
>>
>> I look forward to Arches!
>> Roshan
>>
>>
>>
>>
>>
>>
>>  
>>
>> On Thursday, 22 August 2013 17:29:37 UTC+2, Edmund Lee wrote:
>>>
>>> Hello all, ... and welcome in particular to those who have joined the 
>>> Arches Discussion Forum recently.
>>>
>>> This online group was initially set up for the project team, and has 
>>> just recently been opened up as the public, so some of us haven't met 
>>> before. How about we all share a bit of background, just like we would if 
>>> we were meeting in the real world? If that sounds good to you, reply to 
>>> this thread and share with the group some or all of the following:
>>>
>>>- what is your interest in Arches?
>>>
>>>
>>>- where in the world are you working?
>>>
>>> and, just to make it a bit more fun,
>>>
>>>- what can you see out of the window? Is there any heritage in your 
>>>view?
>>>
>>> I look forward to getting to know everyone a bit better!
>>>
>>>
>>> Ed
>>>
>>

-- 
-- To post, send email to archesproject@googlegroups.com. To unsubscribe, send 
email to archesproject+unsubscr...@googlegroups.com. For more information, 
visit https://groups.google.com/d/forum/archesproject?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Arches Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to archesproject+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[Arches] Re: Signing in

2016-07-06 Thread Roshan Bhurtha
Hi Ed.
I am Roshan Bhurtha, from the Zamani Project, Geomatics Division, 
University of Cape Town. I am an Electrical Engineer/Programmer and I work 
in a team which documents heritage sites in the Middle East and Africa.
We have been documenting heritage sites for more than a decade and worked 
with international institutions, incl. the Getty ( Valley of the Queens 
Project). My function in the team is: writing code when needed for our 
laser scan processing pipeline, processing 3D terrestrial lidar, automating 
processes, teaching programming, fieldwork (the most interesting part), 
metadata stuff,  and some admin :)
 
Arches looks like a very nice way to present our data to the public ( and 
we have a lot of it ). I want a system that can help me manage users with 
different access levels, with the possibility to upload download data and 
present our massive 3D data sets and GIS data on the web. We do that, 
partially on our web site, but there is lots of room for improvements 
(www.zamaniproject.org) ! 
I currently use FTP when having to dish out data to people, but starts to 
be a pain.

We are based at the beautiful University of Cape Town, at the foot of the 
Devil's Peak. Out of my window is, unfortunately, another set of ugly 
windows. But a 1 minute walk out of the office building gives me a nice 
panoramic view of the city.

I look forward to Arches!
Roshan






 

On Thursday, 22 August 2013 17:29:37 UTC+2, Edmund Lee wrote:
>
> Hello all, ... and welcome in particular to those who have joined the 
> Arches Discussion Forum recently.
>
> This online group was initially set up for the project team, and has just 
> recently been opened up as the public, so some of us haven't met before. 
> How about we all share a bit of background, just like we would if we were 
> meeting in the real world? If that sounds good to you, reply to this thread 
> and share with the group some or all of the following:
>
>- what is your interest in Arches?
>
>
>- where in the world are you working?
>
> and, just to make it a bit more fun,
>
>- what can you see out of the window? Is there any heritage in your 
>view?
>
> I look forward to getting to know everyone a bit better!
>
>
> Ed
>

-- 
-- To post, send email to archesproject@googlegroups.com. To unsubscribe, send 
email to archesproject+unsubscr...@googlegroups.com. For more information, 
visit https://groups.google.com/d/forum/archesproject?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Arches Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to archesproject+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.