I am using Mapbox in my virtual env with a python program using the Mapbox API. I am uploading new data every hour. It works. Using my bash console in the virtual environment, it picks up the my new geojson data file, and updates my mapbox map perfectly. When using the path below in the Tasks, it works, but I think it is stuck using the old geojson file rather than the new one I build every hour. The Mapbox python API communicates successfully In Tasks:
source virtualenvwrapper.sh && workon env_beach && python3.5 /home/kpilgrim1504/lake_model_2/mapbox/Uploads_Final.py
Im using OS path: filedir = os.path.dirname(file) filedir_mapbox_file = os.path.join(filedir, 'LakesGeoJSON4_end.geojson')
Is that my problem? Its strange because everything works, its just not picking up the newly generated file?