Recent Releases of Half Earth
Half Earth - v8.2.0
What's Changed
- Share species detail link
- Mol API now accessible as ENV variable: VITE_APP_MOL_API
- Develop by @cmanciero in https://github.com/Vizzuality/half-earth-v3/pull/665
- Develop by @cmanciero in https://github.com/Vizzuality/half-earth-v3/pull/666
- Develop by @cmanciero in https://github.com/Vizzuality/half-earth-v3/pull/668
- Update CODEOWNERS by @johnWilshire in https://github.com/Vizzuality/half-earth-v3/pull/667
- Develop to main by @cmanciero in https://github.com/Vizzuality/half-earth-v3/pull/670
- Develop To Main by @cmanciero in https://github.com/Vizzuality/half-earth-v3/pull/676
- Develop by @cmanciero in https://github.com/Vizzuality/half-earth-v3/pull/678
- Develop to main by @cmanciero in https://github.com/Vizzuality/half-earth-v3/pull/679
- Develop by @cmanciero in https://github.com/Vizzuality/half-earth-v3/pull/681
- Develop - active layer by @cmanciero in https://github.com/Vizzuality/half-earth-v3/pull/685
- Develop by @cmanciero in https://github.com/Vizzuality/half-earth-v3/pull/695
- Radio-selection-update by @cmanciero in https://github.com/Vizzuality/half-earth-v3/pull/696
- Develop by @cmanciero in https://github.com/Vizzuality/half-earth-v3/pull/698
- display very high modification value and round up by @cmanciero in https://github.com/Vizzuality/half-earth-v3/pull/700
- Develop by @cmanciero in https://github.com/Vizzuality/half-earth-v3/pull/701
- Remove-map-member by @cmanciero in https://github.com/Vizzuality/half-earth-v3/pull/702
- Develop by @cmanciero in https://github.com/Vizzuality/half-earth-v3/pull/703
- Switching tabs, reset layers by @cmanciero in https://github.com/Vizzuality/half-earth-v3/pull/705
- Develop by @cmanciero in https://github.com/Vizzuality/half-earth-v3/pull/706
- update rangemap api endpoint for expanded info by @cmanciero in https://github.com/Vizzuality/half-earth-v3/pull/707
- Develop by @cmanciero in https://github.com/Vizzuality/half-earth-v3/pull/708
- Sprint 3 by @cmanciero in https://github.com/Vizzuality/half-earth-v3/pull/709
- Develop by @cmanciero in https://github.com/Vizzuality/half-earth-v3/pull/710
- Develop by @cmanciero in https://github.com/Vizzuality/half-earth-v3/pull/711
- Feature/share species detail by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/712
- Add MOL API as a env constant by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/715
New Contributors
- @johnWilshire made their first contribution in https://github.com/Vizzuality/half-earth-v3/pull/667
Full Changelog: https://github.com/Vizzuality/half-earth-v3/compare/v8.1.0...v8.2.0
Biosphere - Conservation and Restoration
- JavaScript
Published by Bluesmile82 about 1 month ago

Half Earth - 8.1.0
Main changes
- Update to About the Map members list
- Update to Search control for Analyze Area in Data Globe
- Display results containing search term, not just results that start with search term
- Ability to scroll list of search results
- Updated results to display more than 6 and allowed visitors to scroll
- Text wrap selected region/country name if too long
Biosphere - Conservation and Restoration
- JavaScript
Published by cmanciero 9 months ago

Half Earth - 8.0.0
Main changes
- Update node to 20.5
- Update birds south-america layer
- Updte ArcGIS js to 4.30
- Change bundler to Vite
- Change esri-loader to @arcgis-loader
- Update React to 17
Updates:
React updated to 17 (This change was made to support the Vite change)
Esri-loader library replaced by @arcgis/core This change was made because the esri-loader library was deprecated in arcgisjs 4.29.
Create react app (react-app-rewired) replaced by Vite. This change was made as react-app-rewired was "lightly maintained" as their page says. This made very difficult any further changes. With vite we have a simple packing system that we will be able to evolve. A further step could be using Next.js but that will require many more changes.
Removed unnecesary dependencies
Icons are now imported no more as:
import { ReactComponent as IconArrow } from 'icons/arrow_right.svg';
but now:
import IconArrow from 'icons/arrow_right.svg?react';
Important:
I have updated the environment variables on vercel, everything that started before REACT_APP_ should be VITE_APP_ now.
Vite creates the bundle on the dist directory so I added a vercel.json that overrides the folder build directory with the following content:
{
"outputDirectory": "dist"
}
Once this is deployed to production we will be able to change the folder build directory directly on Vercel and we won't need this file anymore.
Race condition problems with react 17
There were some race condition problems in React 17 with the system that we have to registry the redux modules based on http://nicolasgallagher.com/redux-modules-and-code-splitting/
Basically the data was tried to be loaded before the module was registered so it wasn't ready and empty once it was registered.
The temporary solution was to load the affected modules directly on the store file avoiding the redux splitting.
My recommendation is to change to redux-toolkit all the redux system and use slices so we have a more robust redux without sacrificing data splitting.
This also could bring us the opportunity to integrate it with react-query and improve the cache on each query.
What's Changed
- Gp changes by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/657
- Fix hide of Click options layers by @cmanciero in https://github.com/Vizzuality/half-earth-v3/pull/660
- Bug-fixes by @cmanciero in https://github.com/Vizzuality/half-earth-v3/pull/661
- Bump express from 4.18.2 to 4.19.2 by @dependabot in https://github.com/Vizzuality/half-earth-v3/pull/662
- Bump follow-redirects from 1.15.2 to 1.15.6 by @dependabot in https://github.com/Vizzuality/half-earth-v3/pull/658
- Bump webpack-dev-middleware from 5.3.3 to 5.3.4 by @dependabot in https://github.com/Vizzuality/half-earth-v3/pull/659
- Develop by @cmanciero in https://github.com/Vizzuality/half-earth-v3/pull/663
- minor formatting by @cmanciero in https://github.com/Vizzuality/half-earth-v3/pull/664
- More-ui-changes by @cmanciero in https://github.com/Vizzuality/half-earth-v3/pull/669
- update countries data url by @cmanciero in https://github.com/Vizzuality/half-earth-v3/pull/673
- Birds-south-america by @cmanciero in https://github.com/Vizzuality/half-earth-v3/pull/675
- Fix/nrc crash by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/677
- update layers and zoom by @cmanciero in https://github.com/Vizzuality/half-earth-v3/pull/680
- Set the active layer option in dropdown by @cmanciero in https://github.com/Vizzuality/half-earth-v3/pull/684
- Upgrade to node 20.5.0 by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/686
- Fix Map layers tab when we have cleared the analysis selection by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/687
- Fix stewardship typo in NRC by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/690
- Vite + Upgrade arcgis to 4.30 + esri-loader => @arcgis/loader by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/691
Full Changelog: https://github.com/Vizzuality/half-earth-v3/compare/v.7.15.0...v.8.0.0
Biosphere - Conservation and Restoration
- JavaScript
Published by Bluesmile82 10 months ago

Half Earth - v.7.15.0
What's Changed
- He updates by @cmanciero in https://github.com/Vizzuality/half-earth-v3/pull/654
- Feature/basemap performance by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/655
- remove layers on clear selection button click by @cmanciero in https://github.com/Vizzuality/half-earth-v3/pull/656
Full Changelog: https://github.com/Vizzuality/half-earth-v3/compare/v.7.14.0...v.7.15.0
Biosphere - Conservation and Restoration
- JavaScript
Published by Bluesmile82 about 1 year ago

Half Earth - 7.14.0
What's Changed
- add scrollbar style to nrc content page by @cmanciero in https://github.com/Vizzuality/half-earth-v3/pull/649
- Add new basemap for AOIs:
- (feat): Basemap selector [HE-813] by @anamontiaga in https://github.com/Vizzuality/half-earth-v3/pull/648
- recover basemap on load by @anamontiaga in https://github.com/Vizzuality/half-earth-v3/pull/650
- remove log by @anamontiaga in https://github.com/Vizzuality/half-earth-v3/pull/651
- Landcover legend [HE-813] by @anamontiaga in https://github.com/Vizzuality/half-earth-v3/pull/652
Full Changelog: https://github.com/Vizzuality/half-earth-v3/compare/v.7.13.0...v.7.14.0
Biosphere - Conservation and Restoration
- JavaScript
Published by Bluesmile82 over 1 year ago

Half Earth - 7.13.0
What's Changed
- Feature/biodiversity toggle update by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/645
- Bump word-wrap from 1.2.3 to 1.2.4 by @dependabot in https://github.com/Vizzuality/half-earth-v3/pull/642
- Add SPI card on countries and regions by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/647
- Bump @babel/traverse from 7.20.5 to 7.23.2 by @dependabot in https://github.com/Vizzuality/half-earth-v3/pull/646
Full Changelog: https://github.com/Vizzuality/half-earth-v3/compare/v.7.12.0...v.7.13.0
Biosphere - Conservation and Restoration
- JavaScript
Published by Bluesmile82 over 1 year ago

Half Earth - 7.12.0
What's Changed
- Update information on About Modal by @cmanciero in https://github.com/Vizzuality/half-earth-v3/pull/643
- Recover HE logo by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/644
- Fix basemap
New Contributors
- @cmanciero made their first contribution in https://github.com/Vizzuality/half-earth-v3/pull/643
Full Changelog: https://github.com/Vizzuality/half-earth-v3/compare/v.7.11.0...v.7.12.0
Biosphere - Conservation and Restoration
- JavaScript
Published by Bluesmile82 over 1 year ago

Half Earth - 7.11.0
What's Changed
-
changes to documentation for new human pressures by @SofiaAldabet in https://github.com/Vizzuality/half-earth-v3/pull/641
Full Changelog: https://github.com/Vizzuality/half-earth-v3/compare/v.7.10.0...v.7.11.0
Biosphere - Conservation and Restoration
- JavaScript
Published by Bluesmile82 over 1 year ago

Half Earth - 7.10.0
What's Changed
- Update fonts to Open Sans by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/638
- Change logos in header and pdf by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/639
- Add cookies banner. Add GA scripts only on user consent by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/640
- Bump webpack from 5.75.0 to 5.77.0 by @dependabot in https://github.com/Vizzuality/half-earth-v3/pull/636
- Update onboardings
Full Changelog: https://github.com/Vizzuality/half-earth-v3/compare/v.7.9.3...v.7.10.0
Biosphere - Conservation and Restoration
- JavaScript
Published by Bluesmile82 almost 2 years ago

Half Earth - 7.9.3
What's Changed
Full Changelog: https://github.com/Vizzuality/half-earth-v3/compare/v.7.9.2...v.7.9.3
Biosphere - Conservation and Restoration
- JavaScript
Published by Bluesmile82 almost 2 years ago

Half Earth - 7.9.2
- Fix drop upload bug for the data globe AOI shapefiles
Full Changelog: https://github.com/Vizzuality/half-earth-v3/compare/v.7.9.1...v.7.9.2
Biosphere - Conservation and Restoration
- JavaScript
Published by Bluesmile82 almost 2 years ago

Half Earth - 7.9.1
Hotfix: Fix tooltips on SPS chart
Full Changelog: https://github.com/Vizzuality/half-earth-v3/compare/v.7.9.0...v.7.9.1
Biosphere - Conservation and Restoration
- JavaScript
Published by Bluesmile82 almost 2 years ago

Half Earth - 7.9.0
What's Changed
New AOI changes: human pressures, new species page, ...
NRC redesign fixes
Install typescript
- Feature/arcgis-upgrade by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/573
- Feature/new-nrc by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/574
- Fix/new-nrc-fixes by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/579
- (feat): NRC challenges redesign (recover) by @anamontiaga in https://github.com/Vizzuality/half-earth-v3/pull/578
- (fix): table scroll mask and loader by @anamontiaga in https://github.com/Vizzuality/half-earth-v3/pull/580
- (refactor): split component and improvements by @anamontiaga in https://github.com/Vizzuality/half-earth-v3/pull/581
- (feat): landing mobile by @anamontiaga in https://github.com/Vizzuality/half-earth-v3/pull/582
- Responsive fixes. Translate species. Label adjustment by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/583
- Fix/nrc-onboarding by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/584
- (feature): NRC landing mobile by @anamontiaga in https://github.com/Vizzuality/half-earth-v3/pull/585
- Create priority page. Update nrc landing by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/586
- Mobile height and sources fixes by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/588
- (feat): mobile country tooltip by @anamontiaga in https://github.com/Vizzuality/half-earth-v3/pull/587
- Feature/nrc-country-mobile by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/589
- Adjust height for small viewports by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/591
- (feat): mobile searcher by @anamontiaga in https://github.com/Vizzuality/half-earth-v3/pull/590
- Add feature tag and start species detail modal by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/593
- (feat): mobile landscape by @anamontiaga in https://github.com/Vizzuality/half-earth-v3/pull/592
- Fix/onboarding-disclaimer by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/594
- Fix missing translations by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/595
- Feature/typescript by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/597
- Fix/nrc-fixes by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/598
- (fix): show endemic marine mammals and fishes on marine by @anamontiaga in https://github.com/Vizzuality/half-earth-v3/pull/600
- Fix/nrc-adjustments by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/601
- (fix): mobile devices by @anamontiaga in https://github.com/Vizzuality/half-earth-v3/pull/596
- (feature): AOI new species info by @anamontiaga in https://github.com/Vizzuality/half-earth-v3/pull/599
- Fix/nrc-sort by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/604
- (fix): add SPI 0 case by @anamontiaga in https://github.com/Vizzuality/half-earth-v3/pull/603
- (fix): mobile (2) by @anamontiaga in https://github.com/Vizzuality/half-earth-v3/pull/606
- NRC Fixes (Metadata, ranking, ...) by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/608
- Fix/navigation-bugs by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/605
- (fix): zero cases on human modification indicator card by @anamontiaga in https://github.com/Vizzuality/half-earth-v3/pull/607
- (fix): NRC challenges chart area scale legend by @anamontiaga in https://github.com/Vizzuality/half-earth-v3/pull/609
- (feat): add protected area link to table by @anamontiaga in https://github.com/Vizzuality/half-earth-v3/pull/610
- (feat): under protection chart by @anamontiaga in https://github.com/Vizzuality/half-earth-v3/pull/611
- (feat): new AOI human impact sidebar section by @anamontiaga in https://github.com/Vizzuality/half-earth-v3/pull/612
- feat: goal sentence for custom areas + fix custom area under protection by @anamontiaga in https://github.com/Vizzuality/half-earth-v3/pull/613
- (fix): zoom out when AOI is a protected area by @anamontiaga in https://github.com/Vizzuality/half-earth-v3/pull/614
- (fix): improve protected areas AOI data loading by @anamontiaga in https://github.com/Vizzuality/half-earth-v3/pull/616
- Fix/nrc-translation-feedback by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/617
- (feat): protected attributes widget + translate human pressures chart titles by @anamontiaga in https://github.com/Vizzuality/half-earth-v3/pull/615
- Fix Aoi recover from DB by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/619
- Feature/sps-chart by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/602
- (fix): NRC feedback by @anamontiaga in https://github.com/Vizzuality/half-earth-v3/pull/618
- Fix loading with exception by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/620
- feat: round to integer every SPI on the site by @anamontiaga in https://github.com/Vizzuality/half-earth-v3/pull/622
- (fix): mobile height measures problems by @anamontiaga in https://github.com/Vizzuality/half-earth-v3/pull/623
- (fix): check landscape by @anamontiaga in https://github.com/Vizzuality/half-earth-v3/pull/621
- Fix/sps chart by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/624
- Prevent enter key from submitting the search form by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/625
- (fix): globes size on landing desktop by @anamontiaga in https://github.com/Vizzuality/half-earth-v3/pull/626
- (fix): country tooltip button is cut on mobile landscape by @anamontiaga in https://github.com/Vizzuality/half-earth-v3/pull/628
- Fix/sps-chart-filter by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/627
- Feature/ts-store by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/630
- Fix/nrc-layers by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/631
- feat: migrate services to ts by @anamontiaga in https://github.com/Vizzuality/half-earth-v3/pull/629
- Fix iphone safari by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/632
- documentation for the AOI summaries by @SofiaAldabet in https://github.com/Vizzuality/half-earth-v3/pull/634
- Feature/update human pressures sentence by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/635
Full Changelog: https://github.com/Vizzuality/half-earth-v3/compare/v.7.8.1...v.7.9.0
Biosphere - Conservation and Restoration
- JavaScript
Published by Bluesmile82 about 2 years ago

Half Earth - 7.8.1
- Round to integers on NRC tooltip
Biosphere - Conservation and Restoration
- JavaScript
Published by Bluesmile82 over 2 years ago

Half Earth - 7.8.0
What's Changed
Updated react-scripts to v5
- Fix PDF by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/570
- Feature/update-react-scripts by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/572
Full Changelog: https://github.com/Vizzuality/half-earth-v3/compare/v.7.7.0...v.7.8.0
Biosphere - Conservation and Restoration
- JavaScript
Published by Bluesmile82 over 2 years ago

Half Earth - 7.7.0
- New 1km layers
- Fix onboarding steps click
- Improve AOI drawing
What's Changed
- Feature/aoi-sketch by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/566
- Fix/retain-coords by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/567
- Add validation by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/568
- Fix/onboarding-steps-click by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/569
Full Changelog: https://github.com/Vizzuality/half-earth-v3/compare/v.7.6.1...v.7.7.0
Biosphere - Conservation and Restoration
- JavaScript
Published by Bluesmile82 over 2 years ago

Half Earth - HOTFIX v.7.6.1
What's Changed
Fix layers behaviour and other deployed changes
- Fix layers style by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/564
Full Changelog: https://github.com/Vizzuality/half-earth-v3/compare/v.7.6.0...v.7.6.1
Biosphere - Conservation and Restoration
- JavaScript
Published by Bluesmile82 over 2 years ago

Half Earth - v.7.6.0
- Disable mobile media queries
- Add mobile disclaimer
- Group taxa dropdowns
Full Changelog: https://github.com/Vizzuality/half-earth-v3/compare/v.7.5.0...v.7.6.0
Biosphere - Conservation and Restoration
- JavaScript
Published by Bluesmile82 over 2 years ago

Half Earth - v.7.5.0
What's Changed
- Translation in spanish
- New menus
- Merge national and subnational
Full Changelog: https://github.com/Vizzuality/half-earth-v3/compare/v.7.4.3...v.7.5.0
Biosphere - Conservation and Restoration
- JavaScript
Published by Bluesmile82 over 2 years ago

Half Earth - v.7.4.3
What's Changed
Full Changelog: https://github.com/Vizzuality/half-earth-v3/compare/v.7.4.2...v.7.4.3
Biosphere - Conservation and Restoration
- JavaScript
Published by Bluesmile82 over 2 years ago

Half Earth - 7.4.2
What's Changed
- documentation for the creation of the AOI lookup table by @SofiaAldabet in https://github.com/Vizzuality/half-earth-v3/pull/499
- Fix Featured Place content not loading by @pedrogpimenta in https://github.com/Vizzuality/half-earth-v3/pull/512
- Fix areatypeSelected matching by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/515
- Add STATUS and STATUS YEAR fields to PA table by @pedrogpimenta in https://github.com/Vizzuality/half-earth-v3/pull/517
- documentation for metadata to contentful by @SofiaAldabet in https://github.com/Vizzuality/half-earth-v3/pull/518
- Feature/integrate contentful metadata by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/520
- Add carbon layer sidebar by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/521
- Add new 1km layers and merge mammals by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/522
- feat: add tooltips to AOIs[HE-476] by @anamontiaga in https://github.com/Vizzuality/half-earth-v3/pull/524
- fix: eslint configuration by @anamontiaga in https://github.com/Vizzuality/half-earth-v3/pull/509
- enhancement: center richness & rarity US layers bbox [H-528] by @anamontiaga in https://github.com/Vizzuality/half-earth-v3/pull/530
- fix: recenter America on hummingbirds [HE-528] by @anamontiaga in https://github.com/Vizzuality/half-earth-v3/pull/531
- Docs/contentful by @SofiaAldabet in https://github.com/Vizzuality/half-earth-v3/pull/533
...
Full Changelog: https://github.com/Vizzuality/half-earth-v3/compare/v.7.4.1...v.7.4.2
Biosphere - Conservation and Restoration
- JavaScript
Published by Bluesmile82 over 2 years ago

Half Earth - 7.4.1
What's Changed
- Update species order in AOI by @Bluesmile82 in https://github.com/Vizzuality/half-earth-v3/pull/496
Full Changelog: https://github.com/Vizzuality/half-earth-v3/compare/v.7.4.0...v.7.4.1
Biosphere - Conservation and Restoration
- JavaScript
Published by Bluesmile82 almost 3 years ago

Half Earth - 7.4.0
- Prepare marine data to show on production (fixes and layers)
- Update layers
- Add new 1km richness and rarity layers
Biosphere - Conservation and Restoration
- JavaScript
Published by Bluesmile82 almost 3 years ago

Half Earth - 7.3.0
Text changes
Biosphere - Conservation and Restoration
- JavaScript
Published by Bluesmile82 almost 3 years ago

Half Earth - 7.1.0
Show future places
Show landscape mode again
Biosphere - Conservation and Restoration
- JavaScript
Published by Bluesmile82 about 3 years ago

Half Earth - 7.0.0
CHANGELOG
MAJOR
- Cartographic review and style changes
- Remove legend
- Include AOIs section
MINOR
- Rotate globes on start
- Add NRC to the menu
- Update metadata
Biosphere - Conservation and Restoration
- JavaScript
Published by Bluesmile82 about 3 years ago

Half Earth - 6.0.0
CHANGELOG
MAJOR
- Biodiversity data scale upgraded to ~27 km2.
- Add new marine data layers (mammals and all marine vertebrates).
- Add NRC landing page with SPI layer.
- Add navigation main menu.
MINOR
- ArcgisJS API upgrade (4.20).
- Update biodiversity, human pressures and protection layers styles (following the outcomes of the cartographic review).
- Update mini globe and widgets layout.
Biosphere - Conservation and Restoration
- JavaScript
Published by weberjavi over 3 years ago

Half Earth - 5.0.1
Changelog
#295 // Release notes
Biosphere - Conservation and Restoration
- JavaScript
Published by weberjavi almost 4 years ago

Half Earth - Prepare the app to live on subdomain
Changelog
- #292 // Release notes
Biosphere - Conservation and Restoration
- JavaScript
Published by weberjavi almost 4 years ago

Half Earth - NRC sidebar height hotfix
CHANGELOG
MAJOR
No major updates
MINOR
no minor updates
PATCH
Biosphere - Conservation and Restoration
- JavaScript
Published by weberjavi almost 4 years ago

Half Earth - Initial docs and bugfixing
CHANGELOG
MAJOR
No major updates
MINOR
PATCH
Biosphere - Conservation and Restoration
- JavaScript
Published by weberjavi almost 4 years ago

Half Earth - NRC WDPA RAISG removal
CHANGELOG
MAJOR
No major updates
MINOR
No minor updates
PATCH
- Updated National Report Cards Protected Areas data layer to avoid displaying RAISG data.
Biosphere - Conservation and Restoration
- JavaScript
Published by weberjavi almost 4 years ago

Half Earth - HE-2020/21 FINAL RELEASE
CHANGELOG
MAJOR
- Add Priority global data 🐸 🐦 🐮 🐍
- Add marine human encroachment data 🚢 🎣
MINOR
- Add Cypress testing infrastructure.
- Global entry cards and sidebars redesign.
- InVision designs: entry cards, biodiversity sidebar, human encroachment, protected areas
- National Report Cards redesign
- Basecamp thread with design iterations and feedback.
- InVision designs: overview sidebar, challenges, SPI ranking
- Metadata updates.
- User research modal update and activation.
PATCH
- Copy editing fixes.
Biosphere - Conservation and Restoration
- JavaScript
Published by weberjavi almost 4 years ago

Half Earth - Data update
This release updates the data behind the map.
It uses the ~55km grid layer to drive the calculations on landscape sidebar widgets and also all the biodiversity layers are displayed with this precision.
All the layers displayed in the map are now stored on ESRI servers.
Urban pressures data has been updated, a new category (rangeland) has been added and the source of the data has changed to align with the data behind the future prioritisation data. This layers have been moved from a image service
on ESRI's servers to four different raster layers inside EOWBF organization on ArcGIS online.
Biosphere - Conservation and Restoration
- JavaScript
Published by weberjavi almost 5 years ago
