-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some questions #2
Comments
You'd have to update the trello sync app to upload the image as an attachment to a trello card as well. We did not target a system which needs permissions beyond those offered inherently by Trello. Your simplest bet is to figure out a way to split up your operations among different boards in Trello, and share all the boards with the administrator but only share particular boards with the farmer. You'd need to tweak the app to allow the district head to see multiple boards worth of data merged together. The "main remote db" is unnecessary: Trello is the main remote db. Complete with a handy admin system for editing! :). If you intend to use a different database, you'd need to write the code to sync with that database yourself. Having done this several times now, I'd recommend PouchDB on the client syncing back to a CouchDB server if you want to re-architect the app. Personally, I'd stick with Trello unless you have an extremely compelling reason not to: it's free, it's reliable and always-on, it has an authenticated API, it's easy to use..... Aaron
|
Thank you for answering me, I really really appreciate it. About my progress, I have first removed the trello db as I dont have experience in using it and I was able to make a local wifi(mobile-pc) sync work(for the moment). I added some stuff I was required and I changed and deleted the TableOperation to use Tableworkers instead. I guess my next and probably most challenging part I will be doing is having this main drawn polygon which would signify(total field|uneditable) and then later on have a person create job polygons(started|done) that cannot surpass the boundaries of that main polygon. In relation to that I noticed that in the ATKPointClusterer Class the ATKLib Module has a distanceBetween method and so would i need to make this method work or is there an easier way for me to do this? |
distanceBetween hasn't been implemented in ATKPointClusterer. It's not an overly difficult function to copy-paste from a quick Google search, but it doesn't sound like that's what you need. It sounds like you need an "isPointInsidePolygon" function instead, and don't allow a point to be moved if the destination location is outside the field polygon, or project it onto the appropriate line segment of the polygon to prevent points outside the polygon. Aaron
|
I have been trying to check out and see your TrialsTracker system but I really cant seem to make it work. I think the main reason is because i don't know what IDE or compiler you all are using. I've tried to look into node.js and kontatsu tool but nothing seems to make it run... |
Hi,
This was a quick overview, but should hopefully get you close to running Thanks, On Thu, Jul 14, 2016 at 1:20 PM, jartantupjar notifications@github.com
|
According to http://stackoverflow.com/questions/15126050/running-python-on-windows-for-node-js-dependencies, it looks like you might need to set your PYTHON environment variable. |
Ill try it out |
Looks like @sanoel forget to --save the csvjson module. npm install csvjson should do the trick. Sam, can you update the package.json for future reference? Thanks
|
Its probably not reading the BAIR100_2015_harvest.csv file and so it must be returning null |
From that most recent screenshot, it looks to be returning undefined on
csvJson. Make sure the library is loaded and that the variable name from
the import statement at the top of the file is also "csvJson." I was
looking at my code and noticed I no longer have the line shown in your
screenshot. I pushed a new version of csvConverter.js to git; try and
clone the new version to see if it runs.
Thanks,
Sam Noel
|
Hello, I have some questions that I have been having trouble with:
If I were to make the user add a picture to the current default image of a job/field would it still update in the trello sync?
Im also currently thinking of a way to add a farmer version of the current app as i need to have the app for 2 entities; one being the district head and another for the farmer and so i would need to have the farmer see only one part(operation) while the head would see all operations. What are the changes i would need to do to make the sync work?
Another critical thing is that I would require the main remote db to be in a web server which can be accessed and is administrated by PC Web users so will i still be able to use trello?
Thank you and sorry for all the trouble!!
The text was updated successfully, but these errors were encountered: